@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
}

:root {
    --primary-color: #002347;
    --orange: #FD7702;
    --orange-800: #FD9608;
    --blue: #134676;
    --blue-50: #E4E9EE;
    --blue-200: #90A3BB;
    --blue-300: #6680A0;
    --blue-500: #1B4D7E;
    --blue-600: #134676;
    --blue-700: #073D6B;
    --blue-800: #01345F;
    --text-sm: 14px;
    --text-md: 16px;
    --text-lg: 22px;
    --text-xl: 36px;
    --general-transition: all 0.3s ease;

}

a {

    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
select {
    outline: none;
    border: none;
    background-color: transparent;
}

.general-title {
    line-height: 78px;
    color: var(--blue);
    font-weight: 600;
    font-size: 74px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.general-title.orange-title {
    color: var(--orange-800);
}

.download-links {
    gap: 20px;
    display: flex;
}

.download-links a {
    width: 175px;
    height: 55px;
}

.download-links a img {
    width: 100%;
    height: 100%;
}

/* header */
header {
    height: 80px;
    background-color: var(--primary-color);
    transition: var(--general-transition);
    transform-origin: top;

}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    bottom: auto;
    bottom: 31px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

header .header-content {
    padding: 0 42px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.header-content .header-logo {
    width: 131px;
    height: 32px;
}

.header-content .header-logo img {
    width: 100%;
    height: 100%;
}

.header-content .nav-list {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-content .nav-link {
    font-size: var(--text-sm);
    font-weight: 400;
    transition: var(--general-transition);
    color: var(--blue-50);
}

.header-content .nav-link:hover {
    color: var(--orange);
}

.header-content .lang {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    height: 35px;
    justify-content: center;
}

.header-content .lang  span{
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--blue-50);
    line-height: 24px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-right: 1px solid var(--blue-500);
}

.header-content .lang li a:hover {
    color: var(--orange);
}

.header-content .lang li:last-child a {
    border: none;
}


.header-content .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-right .btn {
    padding: 8px 16px 8px 16px;
    font-weight: 400;
    border-radius: 6px;
    font-size: 12px;
    transition: var(--general-transition);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 16px;
}

.header-right .download {
    color: var(--orange);
}

.header-right .download:hover {
    background-color: var(--orange);
    color: var(--primary-color);
}

.header-right .join-us {
    background-color: var(--orange);
    color: var(--primary-color);
    border: 1px solid transparent;
}

.header-right .join-us:hover {
    color: var(--orange);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    background-color: var(--primary-color);
    border-color: var(--orange);
}

header .mobile-header {
    background-color: var(--primary-color);
    width: 100%;
    z-index: 333333;
    text-align: center;
    color: #ffff;
    height: 100vh;
    position: relative;
    padding: 12px 24px 12px 24px;
    display: none;
}

.mobile-header .nav-link {
    font-size: var(--text-lg);
    font-weight: 500;
    letter-spacing: .8px;
    display: flex;
    align-items: center;
    color: var(--blue-50);
    height: 60px;
    justify-content: center;
    line-height: 26px;
}

.mobile-header .nav-link:hover {
    color: var(--orange);
}

.mobile-header .lang {
    display: flex;
    align-items: center;
    margin-top: 30px;
    text-transform: uppercase;
    height: 35px;
    justify-content: center;
}

.mobile-header .lang li span{
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--blue-50);
    line-height: 24px;
    width: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--blue-500);
}

.mobile-header .lang li a:hover {
    color: var(--orange);
}

.mobile-header .lang li:last-child a {
    border: none;
}

header .menu-icon {
    display: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    border-radius: 3px;
    height: 3px;
    background: var(--orange);
    transition: all .3s;
    position: relative;
}

.menu-icon span+span {
    margin-top: 5px;
}

.menu-icon.active span:nth-child(1) {
    animation: ease .7s top forwards;
}

.menu-icon.not-active span:nth-child(1) {
    animation: ease .7s top-2 forwards;
}

.menu-icon.active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}

.menu-icon.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}

.menu-icon.active span:nth-child(3) {
    animation: ease .7s bottom forwards;
}

.menu-icon.not-active span:nth-child(3) {
    animation: ease .7s bottom-2 forwards;
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0);
    }

    50% {
        top: 22px;
        transform: rotate(0);
    }

    100% {
        top: 13px;
        transform: rotate(45deg);
    }
}

@keyframes top-2 {
    0% {
        top: 22px;
        transform: rotate(45deg);
    }

    50% {
        top: 22px;
        transform: rotate(0deg);
    }

    100% {
        top: 0;
        transform: rotate(0deg);
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0);
    }

    50% {
        bottom: 22px;
        transform: rotate(0);
    }

    100% {
        bottom: 3px;
        transform: rotate(135deg);
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 22px;
        transform: rotate(135deg);
    }

    50% {
        bottom: 22px;
        transform: rotate(0);
    }

    100% {
        bottom: 0;
        transform: rotate(0);
    }
}

@keyframes scaled {
    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

/* banner */
.banner {
    background-position: top right, 65% bottom;
    background-repeat: no-repeat;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    padding: 0 42px;
}

.banner-shadow {
    display: flex;
    justify-content: flex-end;
}

.banner-content .banner-left {
    width: 580px;
}

.banner-content .banner-right {
    width: 556px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
}

.banner-content .banner-right img {
    width: 100%;
    height: 100%;
}

.banner-content .banner-right .small-img {
    display: none;
}

.banner-content .primary-text {
    color: var(--blue-50);
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 24px;
    font-size: var(--text-xl);
}

.banner-content .secondary-text {
    color: var(--blue-200);
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 50px;
    font-size: var(--text-lg);
}

/* about */
.about {
    padding: 40px 0 60px;
}

.about .general-title {
    text-align: right;
}

.about .general-title {
    margin-bottom: -73px;
}

.about .about-container {
    padding-right: 42px;
}

.about .about-content {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-end;
}

.about .swiper-wrapper {
    padding-bottom: 75px;
}

.about-content .about-text {
    width: 800px;
}

.about-content .about-title {
    font-size: 38px;
    line-height: 42px;
    color: var(--blue-50);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content .about-description {
    font-size: var(--text-lg);
    line-height: 26px;
    color: var(--blue-200);
    font-weight: 400;
}

.about-content .about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about .swiper-pagination-bullet {
    height: 8px;
    width: 46px;
    border-radius: 9px;
    transition: var(--general-transition);
    background-color: var(--blue-200);
    opacity: 1;
}

.about .swiper-pagination-bullet-active,
.about .swiper-pagination-bullet:hover {
    background-color: var(--blue);
}

/* services */
.services .services-content {
    padding: 0 42px;
}

.services .services-info {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.services-info .service-card {
    width: 586px;
    height: 520px;
    padding: 42px;
    background-color: var(--blue-700);
    margin-bottom: 24px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--general-transition);
}

.services-info .service-card:hover {
    background-color: var(--orange);
    cursor: pointer;
}

.services-info .service-card .service-num {
    font-weight: 600;
    font-size: 128px;
    color: var(--blue-300);
    line-height: 132px;
}

.services-info .service-card .service-desc {
    font-weight: 500;
    font-size: var(--text-lg);
    color: var(--blue-200);
    line-height: 26px;
}

.services-info .service-card:hover .service-desc {
    color: #333;
}

/* join us */
.join-us {
    padding: 0 42px;
    margin: 90px 0;
}

.join-us .download-links {
    justify-content: center;
}

.join-us .join-us-content {
    border-radius: 53px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-800);
    padding: 42px;
    padding-bottom: 0;
}

.join-us .text {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

.join-us .join-us-desc {
    color: var(--blue-200);
    font-weight: 500;
    font-size: var(--text-lg);
    line-height: 26px;
    text-align: center;
    margin-bottom: 30px;
}

.join-us .images {
    overflow: hidden;
}

.join-us .images img {
    width: 100%;
    height: 100%;
    margin-bottom: -190px;
}

.join-us .images .small-img {
    display: none;
}

/* driver */
.driver .driver-content {
    margin-top: 50px;
    padding-left: 42px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.driver .left {
    width: 650px;
}

.driver .right {
    width: 544px;
    height: 572px;
}

.driver .right img {
    width: 100%;
    height: 100%;
    border-radius: 40px 0 0 40px;
}

.driver .driver-desc {
    color: var(--blue-200);
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 25px;
}

/* footer */
footer {
    padding: 40px 0;
}

footer .footer-content {
    padding: 0 42px;
}

footer .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 131px;
    height: 32px;
}

footer .footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-content .footer-top {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.footer-top .column-title {
    color: var(--blue-600);
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-top .contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-top .contact li span {
    color: var(--blue-200);
    font-size: 20px;
    font-weight: 400;
}

.footer-top .shortucts li {
    color: var(--blue-200);
    font-size: 20px;
    font-weight: 400;
}

.footer-top .shortucts li a {
    transition: var(--general-transition);
}

.footer-top .shortucts li a:hover {
    color: var(--orange);
}

.footer-top .follow-us {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-top .follow-us img {
    border-radius: 50%;
    transition: var(--general-transition);
}

.footer-top .follow-us img:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.footer-content .footer-bottom {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.footer-bottom {
    color: var(--blue-200);
    font-size: var(--text-md);
    line-height: 20px;
    font-weight: 400;
}

.footer-bottom .links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom a {
    transition: var(--general-transition);
}

.footer-bottom a:hover {
    color: var(--orange);
}