*{
    margin: 0;
    padding: 0;
}

:root{
    --primary-color: #F4612C;
    --secondry-color: #004F6E;
    --tertiary-color: #485259;
    --bg-color: #ffffff;
    --font-size-vs: 12px;
    --font-size-sm: 14px;
    --font-size-normal: 16px;
    --font-size-lg: 18px;
    --font-size-headings: 36px;
    --font-size-banner-heading: 75px;
    --font-size-card-heading: 27px;
    --section-spacing: 60px;
    --border-radius-images: 32px;
    --primary-button-height: 48px;
    --header-button-height: 38px;
    --banner-button-height: 50px;
    --content-spacing: 24px;
    --font-size-banner-content: 20px;
    --line-height-banner-content: 36px;
    --line-height-banner-heading: 88px;
    --line-height-section-heading: 42px;
    --line-height-content: 30px;
    --border-radius-left-image-section: 0 32px 32px 0;
    --border-radius-right-image-section: 32px 0 0 32px;
    --width-section-parts: 50%;
}

@media only screen and (max-width: 1440px) {
    :root{
        --font-size-banner-heading: 54px;
        --line-height-banner-heading: 48px;
        --font-size-banner-content: 18px;
        --line-height-banner-content: 32px;
        --content-spacing: 12px;
        --font-size-banner-heading: 45px;
        --font-size-lg: 16px;
        --font-size-card-heading: 24px;
    }
}

@media only screen and (max-width: 1200px){
    :root{
        --font-size-card-heading: 18px;
        --line-height-section-heading: 30px;
        --font-size-lg: 14px;
        --line-height-content: 24px;
        --font-size-normal: 14px;
        --primary-button-height: 40px;
        --font-size-headings: 26px;
    }
}

@media only screen and (max-width: 880px){
    :root{
        --border-radius-left-image-section: 32px 32px 0 0;
        --border-radius-right-image-section: 32px 32px 0 0;
        --width-section-parts: 100%;
    }
}

@media only screen and (max-width: 680px){
    :root{
        --font-size-banner-heading: 32px;
        --line-height-banner-heading: 40px;
        --font-size-banner-content: 14px;
        --line-height-banner-content: 26px;
        --banner-button-height: 40px;
    }
}

.main-res{
    height: 100vh;
    overflow: hidden;
}

.nav-res{
    height: 100vh;
    align-items: baseline;
}

.btn-li-res{
    width: 100%;
    margin-top: 8px;
}

.container-full{
    width: 1323px;
}

.section-spacing{
    margin-bottom: var(--section-spacing);
}

.content{
    font-family: 'Inter';
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: var(--line-height-content);
    color: var(--tertiary-color);
    margin-bottom: var(--content-spacing);
}

.section-heading{
    font-family: 'Raleway';
    font-size: var(--font-size-headings);
    color: var(--secondry-color);
    font-weight: 700;
    margin-bottom: var(--content-spacing);
    line-height: var(--line-height-section-heading);
}

.primary-button{
    position: relative;
    z-index: 1;
    height: var(--primary-button-height);
    padding: 10px 28px;
    gap: 10px;
    border-radius: 24px;
    font-family: 'Inter';
    font-size: var(--font-size-normal);
    font-weight: 600;
    color: var(--bg-color);
    background: linear-gradient(180deg, var(--primary-color) 0%, #DB0C06 100%);
    border: 0;
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease; /* Safari */
    -moz-transition: background 0.3s ease; /* Firefox */
    -o-transition: background 0.3s ease; /* Opera */
}

.primary-button:hover{
    background: linear-gradient(180deg,  #DB0C06 0% , var(--primary-color) 100%);
}

.text-section{
    padding: 0 70px;
}

.width-section-parts{
    width: var(--width-section-parts);
}

.img-full-width{
    width: 100%;
}

.left-image-section{
    border-radius: var(--border-radius-left-image-section);
    overflow: hidden;
}

.right-image-section{
    border-radius: var(--border-radius-right-image-section);
    overflow: hidden;
}

/* header  */

header{
    font-family: 'Inter';
    margin-bottom: 16px;
}

header .logo{
    width: 120px;
}

header .navbar{
    padding: 0;
}

header ul li a{
    color: var(--primary-color) !important;
    font-size: var(--font-size-sm) !important;
    font-weight: 500 !important;
    line-height: 16px;
}

header ul li{
    margin-left: 24px;
    position: relative;
}

._active::after{
    position: absolute;
    bottom: 2px;
    content: "";
    left: 7%;
    border-radius: 1px;
    height: 2px;
    width: 88%;
    background: linear-gradient(90deg, #DE1505 0%, #F45E03 100%);
}

header ul .hover-property::after{
    position: absolute;
    bottom: 2px;
    content: "";
    left: 7%;
    border-radius: 1px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #DE1505 0%, #F45E03 100%);
    transition: width 0.3s ease, left 0.3s ease;
}

header ul .hover-property:hover::after{
    width: 88%;
}

header .header-button{
    height: var(--header-button-height);
    border-radius: 19px;
    background: linear-gradient(90deg, #DB0C06 0%, #F86903 100%);
    color: var(--bg-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 16px;
    padding: 10px 21px;
    box-sizing: border-box;
    border: 0;
    width: 100%;
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease; /* Safari */
    -moz-transition: background 0.3s ease; /* Firefox */
    -o-transition: background 0.3s ease; /* Opera */
}


header .header-button:hover{
    background: linear-gradient(90deg, #F86903 0% , #DB0C06 100%);
}

/* banner  */

.banner .left{
    position: relative;
    width: 45%;
    padding: 0 0 0 1.5rem;
    margin-top: 70px;
}

.banner .top-spacing{
    margin-top: 130px;
}

.banner .left .arrow-img{
    position: absolute;
    top: 35%;
    left: 80%;
}

.banner .content{
    width: 80%;
    font-size: var(--font-size-banner-content);
    line-height: var(--line-height-banner-content);
}

.banner .right{
    position: relative;
    width: 55%;
    text-align: end;
}

.banner .right .stars{
    padding-right: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.banner .left .banner-heading{
    font-family: "Raleway", sans-serif;
    font-size: var(--font-size-banner-heading);
    font-weight: 700;
    line-height: var(--line-height-banner-heading);
    color: var(--primary-color);
    margin-bottom: var(--content-spacing);
}

.banner .for-sm-screen{
    display: none;
}

.banner .left .banner-heading .part-two{
    color: var(--secondry-color);
}

.banner .left .banner-heading .part-three{
    color: var(--secondry-color);
    font-weight: 800;
}

.banner-button{
    height: var(--banner-button-height);
    border-radius: 7px;
    font-family: 'Inter';
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 0px 18px;
    position: relative;
    z-index: 1;
}

.banner-button-primary{
    color: var(--bg-color);
    background: linear-gradient(180deg, #F4612C 0%, #E63418 100%);
    border: 0;
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease; /* Safari */
    -moz-transition: background 0.3s ease; /* Firefox */
    -o-transition: background 0.3s ease; /* Opera */
}

.banner-button-primary:hover{
    background: linear-gradient(180deg, #E63418 0% , #F4612C 100%);
}

.banner-button-secondry{
    color: var(--secondry-color);
    background-color: var(--bg-color);
    border: 1px solid var(--primary-color);
    transition: background-color 0.3s ease;
    -webkit-transition: background 0.3s ease; /* Safari */
    -moz-transition: background 0.3s ease; /* Firefox */
    -o-transition: background 0.3s ease; /* Opera */
}

.banner-button-secondry:hover{
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* cards  */

.cards{
    display: grid;
    grid-template-columns: repeat(3, 32%);
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.cards .inner-card{
    background-color: #F4F8F9;
    border-radius: 16px;
    box-shadow: 1px 4px 32.9px 8px #00000012;
    text-align: center;
    overflow: hidden;
}

.cards .content{
    line-height: 24px;
}

.cards .inner-card .card-content{
    padding: 40px 35px;
}

.cards .inner-card .card-heading{
    font-family: 'Raleway';
    font-size: var(--font-size-card-heading);
    color: var(--secondry-color);
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 12px;
}

/* contact-us  */

.contact-us{
    background-color: #F4F8F9;
}

.contact-us .contact img{
    margin-right: 8px;
}

.contact-us .title-contact{
    font-family: 'Raleway';
    font-size: var(--font-size-headings);
    font-weight: 700;
    line-height: 60px;
    color: var(--secondry-color);
    margin: 0;
}

.contact-us .contact{
    font-family: 'Inter';
    font-size: var(--font-size-normal);
    font-weight: 600;
    line-height: 24px;
    color: var(--secondry-color);
    margin: 0;
}

.contact-us .contact span{
    color: var(--primary-color);
}

.contact-us .earn-n-explore{
    font-family: 'Inter';
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.contact-us .earn{
    color: #525252;
}

.contact-us .explore{
    color: var(--primary-color);
}

.contact-us .get-from-logos{
    margin-top: 18px;
}

/* footer  */

.footer{
    box-sizing: border-box;
}


.footer .footer-text{
    font-family: 'Inter';
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    color: #485259;
    width: 60%;
    margin: 0;
}

.footer .footer-text .copyright{
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    color: #485259;
    opacity: 62%;
    display: inline-block;
    margin-top: 8px;
}

.footer .first-line{
    list-style-type: none;
    margin: 0 0 -24px 0;
    padding: 0;
}

.footer .first-line li{
    margin-right: 12px;
}

.footer .first-line li a{
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

.footer .first-line li:last-child{
    margin: 0;
}

.footer .footer-logos{
    display: flex;
    gap: 12px;
}

.footer .footer-logos img:hover{
    opacity: 70%;
    cursor: pointer;
}

/* efficient-transport  */

.efficient-transport .inner-box{
    position: absolute;
    top: 0;
    bottom: 0;
    height: fit-content;
    right: 60px;
    padding: 48px;
    border-radius: 32px;
    width: 60%;
    margin: auto;
    background-color: var(--bg-color);
}

.efficient-transport{
    padding: 0 32px !important;
}

/* blur effects  */

.legal-compliance-blur-right{
    position: absolute;
    right: 0;
    bottom: -115px;
    z-index: -1;
}

.customized-options-blur-right{
    position: absolute;
    right: 0;
    bottom: -100px;
    z-index: -1;
}

.logistic-solutions-blur-right{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.banner .banner-blur-right{
    position: absolute;
    right: 0;
    bottom: -190px;
    z-index: -1;
}

.cards-blur-left{
    position: absolute;
    left: 0;
    top: -435px;
    z-index: -1;
}

.supply-chain-blur-left{
    position: absolute;
    left: 0;
    top: -335px;
    z-index: -1;
}

.customer-support-blur-left{
    position: absolute;
    left: 0;
    bottom: -30px;
    z-index: -1;
}

/* responsive  */

@media only screen and (max-width: 1440px){
    .container-full{
        width: 1123px;
    }

    .banner .left .arrow-img{
        display: none;
    }

    .text-section {
        padding: 0 40px;
    }

    .efficient-transport .inner-box{
        padding: 24px;
        width: 80%;
    }

    .footer .footer-text {
        width: 80%;
    }

    .cards .inner-card .card-content {
        padding: 20px;
    }

    .banner .content{
        width: 100%;
    }
}

@media only screen and (max-width: 1200px){
    .container-full{
        width: 873px;
    }

    .cards .inner-card .card-heading{
        line-height: 24px;
    }

    .primary-button{
        padding: 8px 18px;
    }
}

@media only screen and (max-width: 992px){
    ._active::after {
        left: -1px;
        width: 0;
    }

    header .header-button {
        margin-top: 4px;
    }

    header ul li {
        margin-bottom: 8px;
    }

    header ul li a{
        font-size: 22px !important;
        font-weight: 500 !important;
        line-height: 22px;
    }

    header ul li{
        margin-left: 0px;
        position: relative;
    }

    header ul .hover-property::after{
        left: -1px;
    }

    header ul .hover-property:hover::after{
        width: 0;
    }
}

@media only screen and (max-width: 880px){

    .efficient-transport{
        padding: 0 !important;
    }

    .container-full{
        width: 100%;
        padding: 0 32px;
        box-sizing: border-box;
    }

    .res-contact-us{
        padding: 36px 32px !important;
    }

    .banner .right .stars {
        display: none;
    }

    .cards{
        grid-template-columns: repeat(1, 100%);
        gap: 40px;
    }

    .text-section {
        padding: 36px 0 0 0;
    }

    .responsive-section{
        flex-direction: column;
    }

    ._order-one{
        order: 1;
    }

    ._order-two{
        order: 2;
    }

    .efficient-transport .inner-box{
        width: 85%;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0%);
    }

    .banner .left{
        width: 100%;
        padding: 0 32px;
        margin-top: 45px;
    }
    
    .banner .top-spacing{
        margin-top: 0px;
    }
    
    .banner .content{
        width: 100%;
        font-size: var(--font-size-banner-content);
        line-height: var(--line-height-banner-content);
    }
    
    .banner .right{
        width: 100%;
    }

    .banner .for-lg-screen{
        display: none;
    }

    .banner .for-sm-screen{
        display: block;
    }

    .footer{
        text-align: center;
    }

    .footer .first-line{
        justify-content: center;
        flex-direction: column;
    }

    .footer .first-line li{
        margin: 0;
    }

    .footer .footer-text {
        width: 100%;
    }

    .footer-logos{
        margin-top: 12px;
    }

    .footer-spacing{
        margin-bottom: 20px !important;
    }

    .contact-us .title-contact {
        line-height: 30px;
        margin: 12px 0px;
    }
}

@media only screen and (max-width: 680px){
    .efficient-transport img{
        height: 300px;
    }
}

@media only screen and (max-width: 460px){
    .efficient-transport img {
        height: 360px;
    }
}

@media only screen and (max-width: 367px){
    .apple-img {
        margin-bottom: 16px;
    }
}

