*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Mulish, sans-serif;
}

body{
    width: 100%;
    overflow-x: hidden;
    color: #fff;
}

/* header */

.header-mobile{
    display: none;
}

.header{
    padding: 1.5rem 2.5rem;
    position: absolute;
    z-index: 5;
    width: 100%;
    transition: background-color .35s, padding .35s, color .35s;
}

.header-sticky{
    background-color: #60A5AA;
    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 1.1rem 2.5rem;

}

nav{
    display: flex;
    align-items: center;
}

.left-nav{
    display: flex;
    align-items: center;
    gap: 10rem;
}

.logo{
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
}

.header-sticky .logo::before{
    top: -1rem;
    bottom: -0.95rem;
    left: -100vw;
    right: -4.8rem;
    content: "";
    background-color: #EB5A2D;
    position: absolute;
}

a{
    text-decoration: none;
    color: white;
}

.logo-text{
    font-size: 1.5rem;
    z-index: 2;
    letter-spacing: -.1rem;
}

.logo-text span{
    letter-spacing: 0;
}

.logo-image{
    width: 4rem;
    z-index: 2;
    fill: #fff;
}

.left-nav-links{
    display: flex;
    align-items: center;
    gap: 3rem;
}

.left-nav-link{
    font-size: 1.1rem;
    font-weight: 500;
   
}

.left-nav-link,.right-nav-link{
    background-image: linear-gradient(#EB5A2D, #EB5A2D);
    background-size: 0% 1px;
    background-position-y: 100%;
    background-position-x: 0%;
    background-repeat: no-repeat;
    transition: all 0.5s ease-in-out;
    display: block;
}

.left-nav-link:hover, .right-nav-link:hover{
    background-size: 100% 1px;
}

.right-nav{
    margin-left: auto;
    display: flex;
    gap: 3rem;
}

.right-nav-link{
    font-size: .8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.bi-list{
    display: none;
}

.padding-inner{
    max-width: 122rem;
    padding: 0 10rem;
    margin: 0 auto;
}



/* footer */

footer{
    font-size: 1.4rem;
    line-height: 1.5;
    background: #02464a;
    position: relative;
    padding-bottom: 2rem;
}

footer::before{
    height: var(--footer-before-height);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background: #fff;
}

.subscribe-widget{
    display: flex;
    position: relative;
    align-items: center;
    background: #60A5AA;
    border-radius: .4rem;
    z-index: 4;
}

.subscribe-widget-image{
    margin-right: 5.8%;
    position: absolute;
    border-radius: .4rem 0 0 .4rem;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    width: 28.4%;
}

.subscribe-widget-image img{
    width: 100%;
    vertical-align: top;
    border-radius: .4rem 0 0 .4rem;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.subscribe-widget-content{
    padding: 3rem 3rem 3rem 0;
    margin-left: 34.2%;
}

.label{
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.widget-cta{
    color: #fff;
    max-width: 80%;
    margin-bottom: 3rem;
}

.widget-cta h3{
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
}

form input{
    outline: none;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: top;
    background: rgba(255, 255, 255, .2);
    line-height: 2.2rem;
    width: 56%;
    margin-right: 11%;
    border: none;
    border-radius: .4rem;
    padding: .5rem;
    color: #fff;
    font-size: 1rem;
}

form input::placeholder{
    color: #fff;
}

.subscribe-widget-content button{
    background: 0 0;
    padding: .8rem 5.7rem .8rem 2.4rem;
    font-family: "Mulish", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 3.2rem;
    border: 1px solid #c5d2e7;
    color: #fff;
    display: inline-block;
    position: relative;
    text-align: left;
    box-sizing: border-box;
    cursor: pointer;
    width: 26.5%;
    -webkit-appearance: none;
}

.subscribe-widget-content button::before{
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: url("arrow-right-short.svg") no-repeat 0 0;
    width: 1.3rem;
    height: 1.1rem;
    transition: all .3s ease-in-out;
}

.subscribe-widget-content button:hover::before{
    right: 0;
}

.footer-grid{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    padding-top: 6.4rem;
    padding-bottom: 6rem;
}

.footer-logo{
    width: 30%;
    display: flex;
    align-items: center;
}

.footer-logo img{
    width: 70px;
}

.footer-logo p{
    letter-spacing: -.1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.footer-logo span{
    letter-spacing: 0;
}

.footer-link-group{
    width: 23.3%;
    padding-top: .6rem;
}

.footer-group-heading{
    font-size: 1.1rem;
    letter-spacing: .2rem;
    color: #c5d2e7;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 400;
}

.links{
    list-style: none;
}

.link-item{
    margin-bottom: 1rem;
}

.link-item a{
    font-size: 1rem;
    line-height: 1.5;
}

@media screen and (max-width: 1160px) {
    .header-mobile{
        display: block;
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 5;
        background-color: #60A5AA;
        transition: 0.8s ease-in-out;
    }

    .header-sticky .logo::before{
        top: -0.7rem;
        bottom: -0.6rem;
        left: -100vw;
        right: -4.8rem;
        content: "";
        background-color: #EB5A2D;
        position: absolute;
    }

    .menu-mobile-active{
        left: 0;
    }

    .padding-inner{
        padding: 0 1rem;
    }

    @keyframes menu-fade-in {
        to{
            opacity: 1;
        }
    }


    .mobile-menu-logo{
        padding-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .bi-x-lg{
        padding-right: 1rem;
        font-size: 1.6rem;
        cursor: pointer;
    }

    .header-mobile ul{
        list-style: none;
        padding: 3rem 1rem;
    }

    .header-mobile li{
        margin-bottom: 2rem;
        display: flex;
        justify-content: space-between;
    }

    .header-mobile li a{
        font-size: 1.6rem;
        font-weight: 500;
    }

    .bi-caret-right{
        font-size: 1.6rem;
    }
    
    .left-nav-links{
        display: none;
    }

    .right-nav-link{
        display: none;
    }

    .header{
        padding: .5rem 1rem;
        padding-left: .2rem;
    }

    .bi-list{
        font-size: 2.3rem;
        display: block;
        cursor: pointer;
        opacity: 0;
    }

    .socials{
        padding-inline: 1rem;
    }

    .socials a{
        font-size: 1.3rem;
        margin-right: 1rem;
    }

    .footer-widgets{
        width: 100%;
    }

    footer .padding-inner{
        max-width: 97vw;
        width: 100%;
    }

    .subscribe-widget-image{
        position: relative;
        width: auto;
        margin-right: 0;
        height: 10rem;
        border-radius: 0;
    }

    .subscribe-widget-image img{
        position: relative;
        top: initial;
        bottom: 100%;
        left: initial;
        transform: initial;
        border-radius: 0;
    }

    .subscribe-widget{
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-widget-content{
        margin-left: 0;
        padding: 2rem 1rem;
        width: 100%;
    }

    .widget-cta{
        max-width: none;
        margin-bottom: 1rem;
    }
    
    .label{
        font-size: .9rem;
        margin-bottom: 1rem;
    }

    .widget-cta h3{
        font-size: 1rem;
        font-weight: 600;
    }

    /* .padding-inner{
        max-width: 100%;
    } */

    form input{
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .subscribe-widget-content button{
        width: 100%;
    }

    .footer-grid{
        padding-top: 3rem;
    }

    .footer-logo{
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-logo img{
        width: 50px;
        margin-left: -.7rem;
    }

    .footer-logo p{
        font-size: 1.3rem;
    }

    .footer-group-heading{
        margin-bottom: 1rem;
    }
}

@media screen and (max-width:560px) {
    .footer-link-group{
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .footer-link-group{
        width: 100%;
    }
}

