:root {
    --container: 1320px;
    --gradient: linear-gradient(90deg, #05529B, #021C35);
    --orange: #FFA600;
}

@media (max-width: 1140px) {
    :root {
        --container: 1140px;
    }
}

* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

body {
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


.pageLoader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}

.pageLoader.darken {
    backdrop-filter: blur(10px);
}

#loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px solid #293895;
    transition: 300ms;
    animation: l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }
    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }
    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }
    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }
    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }
    49.99% {
        transform: scaleY(1) rotate(135deg)
    }
    50% {
        transform: scaleY(-1) rotate(0deg)
    }
    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

.wow {
    visibility: hidden;
}

.menu-toggle,
.menu-bar {
    display: none;
}


.main-header {
    position: relative;
    background-image: var(--gradient);
}

.main-header .header-container {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .header-container .logo {
    width: 200px;
}

.main-header .header-container .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.main-header .header-container .menu > ul > li {
    position: relative;
}

.main-header .header-container .menu > ul > li > a {
    color: #fff;
    font-size: 14px;
    transition: 300ms;
    padding: 8px 16px;
    border-radius: 12px;
}

.main-header .header-container .menu > ul > li a.action {
    background: var(--orange);
}

.main-header .header-container .menu > ul > li:hover > a {
    background: var(--orange);
}

.main-sliders {
    position: relative;
}

.main-sliders img {
    width: 100%;
    object-fit: cover;
}

.main-about {
    background-image: var(--gradient);
    padding: 120px 0;
}

.main-about .about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.main-about .about-container > div {
    flex: 1;
    color: #fff;
}

.main-about .about-container > div h1 {
    margin-bottom: 30px;
}

.main-about .about-container .info {
    position: sticky;
    top: 15px;
}

.main-services {
    position: relative;
}

.main-services .section-header {
    background-image: var(--gradient);
    text-align: center;
    padding-bottom: 120px;
}

.main-services .section-header h2 {
    margin: 0;
    font-size: 125px;
    font-weight: 700;
    letter-spacing: 15px;
    opacity: .2;
}

.main-services .services {
    margin-top: -60px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.main-services .services > .service-item {
    width: calc(50% - 40px);
    margin: 20px;
    position: relative;
    cursor: pointer;
}

.main-services .services > .service-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: 300ms;
    border-radius: 8px;
}

.main-services .services > .service-item .title {
    position: absolute;
    left: 50%;
    bottom: -22px;
    max-width: 100%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
    transition: 300ms;
}

.main-services .services-descriptions > div {
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.main-services .services-descriptions > div.active {
    max-height: 10000vh;
    opacity: 1;
    visibility: visible;
}

.main-counter {
    background: #EBF3FA;
    text-align: center;
    padding: 120px 0;
    margin: 120px 0;
}

.main-counter .image img {
    width: 50%;
}

.main-counter .counter {
    font-size: 60px;
    font-weight: 600;
    margin: 20px 0;
}

.main-achievements {
    margin: 120px 0;
}

.main-achievements h4 {
    font-size: 125px;
    font-weight: 700;
    text-align: center;
    opacity: .1;
    margin-bottom: -40px;
}

.main-achievements .achievement {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-achievements .achievement .number {
    font-size: 45px;
    font-weight: 700;
    width: 70px;
    text-align: center;
}

.main-achievements .achievement .info {
    width: calc(100% - 90px);
    background: #D9D9D9;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
}

.main-achievements .achievement .info .name,
.main-achievements .achievement .info .goal {
    margin: 0;
}

.main-testimonials {
    position: relative;
    margin-bottom: 120px;
}

.main-testimonials .section-title {
    text-align: center;
    position: relative;
    font-size: 26px;
    margin-bottom: 30px;
    padding-top: 50px;
}

.main-testimonials .section-title:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 370px;
    height: 4px;
    background: #054F95;
}

.main-testimonials .name {
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 500;
}

.main-footer {
    background-image: var(--gradient);
    padding: 120px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.main-footer .footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 70%;
}

.main-footer .footer-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-container .menu ul a {
    color: #fff;
    display: block;
    margin: 15px 0;
    transition: 300ms;
}

.main-footer .footer-container .menu ul a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin-right: 5px;
}

.main-footer .footer-container .menu ul a:Hover,
.main-footer .footer-container .contacts ul a:hover {
    color: var(--orange);
}

.main-footer .footer-container .contacts ul a {
    color: #fff;
    margin: 15px 0;
    transition: 300ms;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.main-footer .footer-container .contacts .action {
    color: #fff;
    transition: 300ms;
    padding: 8px 16px;
    border-radius: 12px;
    margin-top: 20px;
    background: var(--orange);
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 700;
}

.main-footer .footer-container .contacts .action:Hover {
    box-shadow: 0 0 30px var(--orange);
    transform: scale(1.1);
}

.main-footer .copyright {
    margin-top: 60px;
    padding-top: 60px;
    position: relative;
}

.main-footer .copyright:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    background: #fff;
    height: 1px;
    opacity: .5;
}

.main-footer .copyright p {
    margin: 0;
    font-size: 14px;
}

.main-footer:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('mask.svg');
    opacity: .2;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    z-index: -1;
}

#getMobileAppModal .store-redirect {
    max-width: 280px;
    margin: 30px auto;
    display: block;
    transition: 300ms;
}

#getMobileAppModal .store-redirect:hover {
    opacity: .5;
}

@media (max-width: 992px) {
    .main-services .section-header h2 {
        font-size: 30px;
        left: 0;
    }

    .main-achievements h4 {
        font-size: 30px;
        letter-spacing: 0;
        margin-bottom: -10px;
    }

    .main-footer .footer-container {
        flex-wrap: wrap;
    }

    .main-header .header-container .menu > ul > li a:not(.action) {
        display: none;
    }

    .main-header .header-container .menu > ul > li > a {
        white-space: nowrap;
    }

    .main-about {
        padding: 30px 0;
    }

    .main-about .about-container {
        flex-direction: column;
        gap: 30px 0;
    }


    .main-services .services > .service-item {
        width: 100%;
    }

    .main-counter .counter {
        font-size: 35px;
    }

    .main-testimonials .section-title:before {
        left: 0;
        width: 100%;
        transform: translateX(0);
    }

    .main-footer {
        padding: 40px 0;
        overflow: hidden;
    }

    .main-footer:before {
        height: 380px;
        width: 100%;
        background-position: left -150px;
        transform: rotate(-25deg);
    }

    .main-counter {
        margin: 30px 0;
        padding: 60px 0;
    }

    .main-testimonials {
        margin-bottom: 60px;
    }

    .main-services .section-header {
        padding-bottom: 50px;
    }
}
