html {
    scroll-behavior: smooth;
}
body.hidden {
    overflow: hidden;
}
body {
    background: #F1F3F8;
}
.page {
    overflow: hidden;
    position: relative;
}
.header {
    position: relative;
    z-index: 1;
    line-height: 0;
}
.title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: initial;
    color: #fff;
}
.desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: initial;
    color: #fff;
}
.mob {
    display: none;
}
button,
a {
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: .3s;
}
a:hover  {
    opacity: .5;
}
.wrapper {
    max-width: 1280px;
    margin: 0 auto;
}
.section {
    padding: 0 16px;
}
.button {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #FFFFFF;
    transition: .3s;
    background: #0153FD;
    position: relative;
    border-radius: 27px;
    padding: 16px;
    min-width: 200px;
    text-align: center;
}
.button:hover {
    opacity: 1;
}

/* header */
.header {
    padding: 38px 16px;
}
.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .wrapper>div {
    flex: 1;
}
.logo img {
    width: 202px;
}
.nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav__item + .nav__item  {
    margin-left: 50px;
}
.nav__item a {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: initial;
    color: #ABAEB5;
    font-weight: 700;
}

/* hero section */
.hero-section {
    background: url('../assets/hero.png');
    background-position: center;
    background-size: cover;
    min-height: calc(100vh - 124px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-section .wrapper {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}
.hero-section .title {
    max-width: 1130px;
    margin: 0 auto;
}
.hero-section .desc {
    max-width: 740px;
    margin: 36px auto 0;
}
.hero-section .button {
    margin: 42px auto 0;
}
.hero-section .down {
    width: 68px;
    height: 68px;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: url('../assets/down-arrow.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}


/* aabout section */
.about-section .wrapper {
    padding: 90px 0;
    text-align: center;
}
.about-section .title {
    font-size: 74px;
    color: #0153FD;
}
.about-section .desc {
    margin: 36px auto 0;
    color: #7F8798;
    font-size: 14px;
    max-width: 850px;
}
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.about-wrapper >div {
    flex: 1;
}
.about-wrapper .left {
    border-radius: 22px;
    background: #fff;
    padding: 85px 60px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: left;
    position: relative;
    z-index: 1;
}
.about-wrapper .left .title {
    color: #0153FD;
    font-size: 34px;
}
.about-wrapper .left .desc {
    margin-top: 24px;
}
.about-wrapper .right {
    flex-direction: column;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.about-wrapper .right img {
    width: calc(100% + 50px);
    height: calc(100% - 100px);
    border-radius: 16px;
    object-fit: cover;
}
.about-wrapper2 {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 110px;
}
.about-wrapper2 .title {
    font-size: 42px;
    color: #282E38;
    margin: 0;
}
.about-wrapper2 .desc {
    color: #7F8798;
    max-width: 344px;
    text-align: left;
    margin: 0;
}

/* services section */
.services-section {
    background: url('../assets/services.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}
.services-section .wrapper {
    padding: 105px 0;
}
.services-section .img {
    width: 1255px;
    max-width: 100%;
}
.services-section .title {
    max-width: 1060px;
    margin: -60px auto 0;
}
.services-section .desc {
    margin: 32px auto 0;
    max-width: 924px;
}
.services-carousel .wrapper {
    padding: 100px 0 60px;
}
.services-carousel .title {
    font-size: 24px;
    color: rgba(40, 46, 56, .35);
    width: 573px;
    min-height: 67px;
    transition: .3s;
    padding-left: 92px;
    position: relative;
    display: flex;
    align-items: center;
}
.services-carousel .title::before {
    content: '';
    width: 68px;
    height: 68px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../assets/right-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}
.services-carousel .item:hover .title {
    color: #282E38;
}
.services-carousel .item:hover .title::before,
.services-carousel .item.active .title::before {
    background-image: url('../assets/right-arrow-black.svg');
}
.services-carousel .item.active .title {
    color: #0153FD;
}
.services-carousel .card {
    text-align: left;
    position: relative;
    padding: 40px 35px;
    width: 573px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px #1C30581A;
    border-radius: 22px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.services-carousel .item.active .card {
    opacity: 1;
    visibility: visible;
}
.services-carousel .desc {
    font-size: 14px;
    color: #7F8798;
}
.services-carousel .item {
    padding: 0 38px;
}
.services-carousel img {
    width: 72px;
}
.services-carousel .slick-track {
    padding-bottom: 50px;
}
.services-carousel .slick-list {
    overflow: visible;
}
.services-end {
    display: flex;
    padding: 0;
}
.services-end a {
    display: table;
}
.services-end > div {
    width: 50%;
}
.services-end .left {
    background: url('../assets/services2.jpg');
    background-size: cover;
    background-position: center;
}
.services-end .right {
    background: #0153FD;
    padding: 148px 65px 165px 65px;
}
.services-end .right .desc {
    max-width: 550px;
    font-size: 24px;
    font-family: 'Red Hat Display', sans-serif;
    line-height: 44px;
}
.services-end .right .button {
    background: #fff;
    color: #0153FD;
    margin-top: 30px;
    box-shadow: 0px 10px 24px rgb(8, 28, 70, .3);
}


/* contact */
.contact-section .wrapper {
    padding: 130px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1120px;
    gap: 16px;
}
.contact-section .wrapper .left {
    width: calc(30% - 8px);
}
.contact-section .wrapper .left .title {
    font-size: 24px;
    color: #282E38;
    margin-top: 46px;
}
.contact-section .wrapper .left .title:first-child {
    margin-top: 0;
}
.contact-section .wrapper .left .desc {
    margin-top: 24px;
    color: #7F8798;
    font-size: 14px;
    max-width: 250px;
}
.contact-section .wrapper .left .link {
    color: #0153FD;
    display: table;
}
.contact-section .wrapper .left .img {
    width: 42px;
}
.contact-section .wrapper .left .list {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    margin-top: 48px;
}
.contact-section .right {
    border-radius: 24px;
    width: calc(70% - 8px);
    background: linear-gradient(#fff, #fff, rgba(255,255,255, 0));
    padding: 75px 80px 56px;
}
.contact-section .right .title {
    font-size: 48px;
    color: #282E38;
    margin-top: 24px;
}
.contact-section .right .title.small {
    font-size: 24px;
    margin-top: 50px;
}
.contact-section .right .link {
    font-size: 22px;
    color: #0153FD;
    margin-top: 0;
}
.contact-section .right form {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
}
.contact-section .right label {
    width: 50%;
    margin-bottom: 16px;
}
.contact-section .right label:nth-child(even) {
    padding-left: 8px;
}
.contact-section .right label:nth-child(odd) {
    padding-right: 8px;
}
.contact-section .right .full {
    width: 100%;
    padding: 0 !important;
}
.contact-section .right .checkbox {
    width: 100%;
    padding: 0 !important;
}
.contact-section .right input,
.contact-section .right textarea {
    background: #F1F3F8;
    box-shadow: inset 0px 0px 12px #8A97B114;
    border-radius: 8px;
    line-height: 48px;
    padding: 0 16px;
    color: #000;
    width: 100%;
    border: 0;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}
.contact-section .right textarea {
    line-height: initial;
    padding: 16px;
    resize: none;
    min-height: 90px;
}
.contact-section .right .desc {
    color: #A5A9AA;
    margin-bottom: 10px;
    font-size: 14px;
}
.contact-section .right .checkbox .link {
    font-size: 12px;
}
.contact-section .right .checkbox .desc {
    padding-left: 38px;
    position: relative;
}
.contact-section .right .checkbox input {
    display: none;
}
.contact-section .right .checkbox .desc::before {
    content: '';
    width: 28px;
    height: 28px;
    box-shadow: inset 0px 0px 12px #8A97B114;
    background: #F1F3F8;
    border-radius: 8px; 
    position: absolute;
    left: 0;
    top: 0;
}
.contact-section .right .checkbox input:checked + .desc:before {
    background-image: url('../assets/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 11px;
}
.text-block {
    margin-top: 56px;
    display: flex;
    gap: 36px;
    width: 100%;
}
.contact-section .wrapper .text-block > div {
    width: 50%;
}
.contact-section .wrapper .text-block .left a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    color: rgba(40, 46, 56, .35);
}
.contact-section .wrapper .text-block .left a::after {
    content: '';
    width: 68px;
    height: 68px;
    background: url('../assets/right-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.contact-section .wrapper .text-block .left a:hover::after {
    background-image: url('../assets/right-arrow-black.svg');
    transform: rotate(-90deg);
}
.contact-section .wrapper .text-block .left a:hover {
    color: #282E38;
    opacity: 1;
}
.text-block a + a {
    margin-top: 30px;
}
.text-section {
    padding-top: 48px;
}
.text-section .title {
    color: #000;
    font-size: 36px;
}
.text-section .title.small {
    font-size: 24px;
    margin-top: 16px;
}
.text-section .desc {
    color: #000;
    font-size: 16px;
    margin-top: 16px;
}
.text-section .desc b {
    font-weight: 700;
}
.text-section .wrapper {
    max-width: 1120px;
}
.text-section .desc ul {
    list-style: disc;
}
.text-section .desc ul.num {
    list-style: none;
}
.text-section .desc li + li {
    margin-top: 16px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .popup-overlay .popup {
    display: inline-block;
    width: 600px;
    max-width: 100%;
    min-height: 200px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .popup p {
    flex: 0 1 100%;
    padding: 0 1rem;
    margin: 0;
    margin-top: 1rem;
    color: #000;
  }
  
  a.close,
  a.submit {
    margin-top: 0;
    display: inline-block;
    margin: 1rem;
  }

@media screen and (max-width: 900px) {
    .header .wrapper {
        flex-direction: column;
    }
    .header .wrapper .right {
        margin-top: 16px;
    }
    .nav {
        flex-direction: column;
    }
    .nav__item + .nav__item {
        margin: 16px 0 0;
    }
    .header {
        padding: 16px;
    }
    .logo img {
        width: 140px;
    }
    .title {
        font-size: 32px;
    }
    .hero-section {
        min-height: 0;
        padding: 48px 16px;
    }
    .hero-section .down {
        display: none;
    }
    .about-section .wrapper {
        padding: 48px 0;
    }
    .about-section .title {
        font-size: 36px;
        text-align: center;
    }
    .about-section .desc {
        margin: 16px auto 0;
        text-align: center;
    }
    .about-wrapper {
        margin-top: 32px;
        flex-direction: column;
    }
    .about-wrapper .left {
        padding: 16px;
    }
    .about-wrapper .left .title {
        font-size: 28px;
    }
    .about-wrapper .right img {
        width: 100%;
        height: auto;
        margin-top: 24px;
    }
    .about-wrapper2 {
        margin-top: 24px;
        flex-direction: column;
        gap: 0;
    }
    .services-section .wrapper {
        padding: 48px 0;
    }
    .services-section .title {
        margin-top: -20px;
    }
    .services-carousel .wrapper {
        padding: 48px 0 0;
    }
    .services-carousel .title::before {
        width: 32px;
        height: 32px;
    }
    .services-carousel .title {
        width: auto;
        font-size: 18px;
        padding-left: 45px;
        max-width: 80vw;
    }
    .services-carousel .card {
        width: auto;
        max-width: 80vw;
        padding: 16px;
    }
    .services-carousel .item {
        padding: 0 8px;
    }
    .services-carousel img {
        width: 42px;
    }
    .services-end {
        flex-direction: column;
    }
    .services-end > div {
        width: 100%;
    }
    .services-end .right {
        padding: 24px 16px;
        text-align: center;
    }
    .contact-section .wrapper {
        padding: 48px 0;
        flex-direction: column;
    }
    .contact-section .wrapper .left {
        width: 100%;
        text-align: center;
    }
    .contact-section .right {
        width: 100%;
    }
    .contact-section .wrapper .left .desc {
        margin: 24px auto 0;
    }
    .contact-section .wrapper .left .list {
        justify-content: center;
    }
    .contact-section .right {
        padding: 24px 16px;
        margin-top: 24px;
    }
    .contact-section .right .title {
        font-size: 32px;
    }
    .contact-section .right label:nth-child(odd) {
        padding-right: 0;
    }
    .contact-section .right label:nth-child(even) {
        padding-left: 0;
    }
    .contact-section .right label {
        width: 100%;
    }
    .text-block {
        flex-direction: column;
        margin-top: 32px;
    }
    .contact-section .wrapper .text-block > div {
        width: 100%;
    }
    .contact-section .wrapper .text-block .left a::after {
        width: 42px;
        height: 42px;
    }
}
#overlay {
    font-family: 'Open Sans', sans-serif;
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
#overlay .pop {
    background: #fff;
    max-width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 50px 50px 50px;
    border-radius: 6px;
    display: none;
}
#overlay .pop .close {
    position: absolute;
    right: 25px;
    top: 20px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
    cursor: pointer;
}
#overlay .pop .close:hover {
    opacity: 1;
}
#overlay .pop .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #333;
}
#overlay .pop .close:before {
    transform: rotate(45deg);
}
#overlay .pop .close:after {
    transform: rotate(-45deg);
}
#overlay .pop .message {
    text-align: center;
    font-size: 18px;
}