html, body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.375;
    color: #242424;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity .5s ease-in;
}

body.loaded {
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin: 0;
    padding-left: 23px;
}

p {
    margin-bottom: 20px;
}

:focus {
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
    -moz-transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
    -o-transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
    transition: color 0.25s, border-color 0.25s, background-color 0.25s, opacity 0.25s, width 0.25s ease 0s;
}

a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
    color: #FC6736;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 600;
    color: #242424;
}

.container {
    max-width: 1450px;
    --bs-gutter-x: 40px;
    width: 100%;
}

.row {
    --bs-gutter-x: 30px;
}

@media (max-width: 1199px) {
    .row {
        --bs-gutter-x: 20px;
    }
}

@media (max-width: 767px) {
    html, body {
        font-size: 13px;
    }
}

/**/
a.cta-button {
    display: inline-block;
    background-color: #FC6736;
    color: #fff;
    font-weight: 500;
    line-height: 30px;
    padding: 5px 18px;
    border-radius: 20px;
}

a.cta-button:hover {
    background-color: #000;
}

a.cta-button > svg {
    margin-right: 5px;
    vertical-align: middle;
}

a.cta-button span {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: top;
    padding: 6px;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 18px;
    margin-right: -10px;
}

a.cta-button span svg {
    vertical-align: top;
    color: #FC6736;
}

a.cta-button:hover span svg {
    color: #000;
}

.section-highlight {
    font-weight: 800;
    font-size: 150px;
    background: linear-gradient(180deg, #FC6736 31.73%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -36px;
}

.section-title {
    font-size: 50px;
    line-height: 1.36;
    margin-bottom: 10px;
}

.desc {
    color: #555555;
    font-size: 18px;
    line-height: 25px;
    max-width: 860px;
    margin: 0 auto;
}

.name {
    font-size: 21px;
    line-height: 29px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .section-highlight {
        font-size: 100px;
        line-height: 1.25;
        margin-bottom: -15px;
    }

    .section-title {
        font-size: 36px;
    }

    .name {
        font-size: 18px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .desc {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .section-highlight {
        font-size: 60px;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 22px;
    }

    .name {
        font-size: 15px;
    }

    a.cta-button {
        padding: 0 18px;
    }

    a.cta-button span {
        width: 20px;
        height: 20px;
        margin-left: 10px;
        margin-right: -10px;
        margin-top: 5px;
        padding: 1px;
    }
}

/**/
.header {
    border-bottom: 1px solid #D9D9D9;
    padding-top: 20px;
    padding-bottom: 20px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 99;
}

.header .header-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.header .menu-toggle {
    display: none;
}

.header .main-menu {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 0 50px;
    justify-content: center;
}

.header .main-menu .menu-item {
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 767px) {
    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header .menu-top {
        display: flex;
        flex-flow: row wrap;
        padding: 0;
        background: #f6f6f6;
    }

    .header .menu-toggle {
        display: flex;
    }

    .header .menu-close {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        height: 60px;
        width: 60px;
        color: #000;
        cursor: pointer;
        margin-left: auto;
    }

    .header .menu-mobile {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 99;
        transform: translateX(-100%);
        transition: transform .5s cubic-bezier(.645, .045, .355, 1);
    }

    .header .header-menu.open .menu-mobile {
        transform: translateX(0);
        box-shadow: -3px 0 21px rgba(63, 63, 63, .15);
    }

    .header .main-menu {
        gap: 10px 0;
        flex-direction: column;
    }

    .header .main-menu li {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 1px solid #d9d9d9;
        padding: 15px 20px;
        line-height: 22px;
    }

    .header .header-button {
        text-align: right;
        display: flex;
        gap: 10px;
    }

    .header .header-logo svg {
        height: 30px;
        width: auto;
    }
}

/**/
.hero {
    padding-top: 110px;
    padding-bottom: 170px;
}

.hero .hero-info {
    width: 49.64539%;
    padding-right: 20px;
    color: #333333;
}

.hero .hero-image {
    width: 50.35461%;
}

.hero .hero-wrap {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
}

.hero .main-title {
    margin: 15px 0 35px;
    font-size: 42px;
    line-height: 57px;
    font-weight: 800;
}

.hero .main-title span {
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #FC6736;
    text-underline-offset: 6px;
}

.hero ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 50px;
    line-height: 20px;
}

.hero ul svg {
    vertical-align: top;
    margin-right: 8px;
}

.hero a.cta-button {
    margin-top: 35px;
    margin-bottom: 44px;
}

.hero .hero-slide {
    position: relative;
    aspect-ratio: 800/519;
    margin: 0 auto 40px auto;
    perspective: 550px;
    pointer-events: none;
}

.hero .hero-slide img {
    position: absolute;
    z-index: 5;
    animation: moveAndZoom 10s ease-in-out infinite;
    animation-delay: 0s;
    opacity: 1;
    transform: translateY(0) translateX(0) translateZ(0px) scale(1);
}

.hero .hero-slide img:nth-child(1) {
    animation-delay: -8s;
    opacity: 1;
    visibility: visible;
}

.hero .hero-slide img:nth-child(2) {
    animation-delay: -6s;
    transform: translateY(30px) translateX(0) translateZ(-30px) scale(1);
    opacity: .95;
    z-index: 4;
}

.hero .hero-slide img:nth-child(3) {
    animation-delay: -4s;
    transform: translateY(50px) translateX(0) translateZ(-50px) scale(1);
    z-index: 3;
    opacity: .9;
}

.hero .hero-slide img:nth-child(4) {
    animation-delay: -2s;
    z-index: 2;
}

.hero .hero-slide img:nth-child(5) {
    animation-delay: 0s;
    z-index: 1;
}

@keyframes moveAndZoom {
    0% {
        opacity: 0
    }
    20% {
        transform: translateY(100px) translateX(0) translateZ(-150px) scale(1);
        opacity: 0;
        z-index: 2
    }
    25% {
        transform: translateY(70px) translateX(0) translateZ(-100px) scale(1);
        opacity: 0;
        z-index: 2
    }
    30% {
        transform: translateY(50px) translateX(0) translateZ(-50px) scale(1);
        z-index: 3;
        opacity: .9
    }
    45% {
        transform: translateY(50px) translateX(0) translateZ(-50px) scale(1);
        z-index: 3;
        opacity: .9
    }
    50% {
        transform: translateY(30px) translateX(0) translateZ(-30px) scale(1);
        opacity: .95;
        z-index: 4
    }
    65% {
        transform: translateY(30px) translateX(0) translateZ(-30px) scale(1);
        opacity: .95;
        z-index: 4
    }
    70% {
        opacity: 1;
        transform: translateY(0) translateX(0) translateZ(0px) scale(1);
        z-index: 5
    }
    85% {
        opacity: 1;
        transform: translateY(0) translateX(0) translateZ(0px) scale(1);
        z-index: 6
    }
    90% {
        opacity: 0;
        transform: translateY(-40px) translateX(0) translateZ(10px) scale(1.01);
        z-index: 6
    }
    100% {
        opacity: 0
    }
}

@media (max-width: 1199px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .hero .main-title {
        font-size: 36px;
        line-height: 1.25;
        margin: 15px 0 20px;
    }

    .hero a.cta-button {
        margin-bottom: 0;
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .hero .hero-info {
        width: 100%;
        padding-right: 0;
        padding-bottom: 35px;
    }

    .hero .hero-image {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero .main-title {
        font-size: 26px;
    }
}

/**/
.fun-facts {
    background-color: #141C3E;
    padding-top: 60px;
    padding-bottom: 62px;
}

.fun-facts .row {
    row-gap: 30px;
    justify-content: center;
}

.fun-facts .col-fun-facts {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    width: 20%;
}

.fun-facts .fun-facts-box {
    background-color: #2C3352;
    border-radius: 15px;
    padding: 40px 10px;
    text-align: center;
}

.fun-facts .number {
    color: #FC6736;
    font-size: 45px;
    line-height: 61px;
    font-weight: 600;
}

.fun-facts .text {
    margin: 10px 0 15px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 1440px) {
    .fun-facts .text {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .fun-facts .text {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .fun-facts .col-fun-facts {
        width: 33.3333333%;
    }

    .fun-facts .col-fun-facts:nth-last-child(2) {
        width: 50%;
    }

    .fun-facts .col-fun-facts:last-child {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .fun-facts .row {
        row-gap: 20px;
    }

    .fun-facts .col-fun-facts {
        width: 50%;
    }

    .fun-facts .col-fun-facts:last-child {
        width: 100%;
    }

    .fun-facts .fun-facts-box {
        padding: 15px 5px 20px;
    }

    .fun-facts .number {
        font-size: 40px;
        line-height: 1.25;
    }

    .fun-facts .text {
        font-size: 12px;
        margin: 5px 0 10px;
    }

    .fun-facts svg {
        width: 40px;
        height: auto;
    }
}

/**/
.demo {
    padding-top: 50px;
    padding-bottom: 74px;
}

.demo .row {
    padding-top: 55px;
    row-gap: 35px;
}

.demo .thumb {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    box-shadow: 0 0 10px 0 #0000001A;
    display: block;
    overflow: hidden;
}

.demo .thumb img {
    width: 100%;
}

.demo .demo-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #333333;
    margin: 15px 0 0;
}

/**/
.elementor {
    background-color: #F4E5EB;
    padding-top: 56px;
    padding-bottom: 80px;
    text-align: center;
}

.elementor svg {
    margin-bottom: 10px;
}

.elementor .elementor-thumb {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-top: 80px;
}

@media (max-width: 767px) {
    .elementor .elementor-thumb {
        padding-top: 30px;
        gap: 30px 20px;
    }
}

@media (max-width: 575px) {
    .elementor .elementor-thumb {
        flex-direction: column;
    }
}

/**/
.ald {
    padding-top: 52px;
    padding-bottom: 60px;
}

.ald .ald-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 58px 40px 82px 39px;
    background: linear-gradient(180deg, #FFEEE9 0%, #FFDCD0 100%);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.ald .ald-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/ald-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.ald .ald-image {
    position: relative;
    width: 33.1329827%;
}

.ald .ald-info {
    position: relative;
    width: 66.8670173%;
    padding-left: 31px;
}

.ald .section-title {
    line-height: 1.3;
}

.ald .section-title span {
    position: relative;
    display: inline-block;
}

.ald .section-title span::before {
    content: '';
    background-image: url("../images/ald-line.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: -2px;
    left: 0;
}

@media (max-width: 1199px) {
    .ald .ald-wrap {
        padding: 30px 20px;
    }

    .ald .ald-info {
        padding-left: 20px;
    }
}

@media (max-width: 575px) {
    .ald .ald-image {
        width: 100%;
    }

    .ald .ald-info {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }
}

/**/
.happy {
    padding-bottom: 90px;
}

.happy .section-title {
    margin-top: 15px;
    line-height: 1.3;
    max-width: 570px;
}

/**/
.features {
    background-color: #EFEFEE;
    padding-top: 80px;
    padding-bottom: 80px;
}

.features .row {
    row-gap: 30px;
    padding-top: 80px;
}

.features .features-box {
    text-align: center;
    padding: 35px 20px;
    background-color: #F6F6F6;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
}

.features .thumb {
    margin-bottom: 24px;
}

.features .thumb-wrap {
    padding-bottom: 65.3658537%;
    position: relative;
}

.features .thumb img {
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.features .features-box.horizontal {
    background-image: url('../images/features-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .features .features-box.horizontal {
        text-align: left;
        padding-left: 35px;
    }

    .features .features-box.horizontal .thumb {
        float: left;
        margin-bottom: 0;
        width: 51.3142857%;
    }

    .features .features-box.horizontal .thumb-wrap {
        padding-bottom: 84.6325167%;
    }

    .features .features-box.horizontal .inner {
        overflow: hidden;
        padding-left: 37px;
        padding-top: 65px;
    }
}

@media (max-width: 767px) {
    .features {
        padding-top: 50px;
    }

    .features .row {
        padding-top: 30px;
    }

    .features .features-box {
        padding: 20px 10px;
    }
}

/**/
.other {
    padding-top: 40px;
    text-align: center
}

.other .row {
    padding-top: 60px;
    row-gap: 70px;
}

@media (max-width: 767px) {
    .other .row {
        padding-top: 20px;
        row-gap: 30px;
    }

    .other svg {
        width: 60px;
        height: auto;
    }
}

/**/
.cta {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

@media (max-width: 767px) {
    .cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/**/
.footer {
    background-color: #060E30;
    color: #fff;
    padding-top: 60px;
    font-size: 18px;
    line-height: 21px;
}

.footer h3 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin: 23px 0 30px;
}

.footer p {
    margin-bottom: 0;
}

.footer .row {
    row-gap: 10px;
}

.footer .col-logo {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    width: 33.1034483%;
}

.footer .col-logo p {
    margin: 30px 0 20px;
}

.footer .social {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 10px 25px;
}

.footer .col-support {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    width: 41.3793103%;
}

.footer .col-policy {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    width: 25.5172414%;
}

.footer .col-policy ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer .copyright {
    border-top: 2px solid #2C3352;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 52px;
    text-align: center;
}

@media (max-width: 991px) {
    .footer .col-logo,
    .footer .col-support,
    .footer .col-policy {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer {
        font-size: 13px;
    }

    .footer .col-logo .footer-logo svg {
        width: 150px;
        height: auto;
    }

    .footer h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer .copyright {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}