@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: 'Manrope', sans-serif;
}
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding:40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}
.header:before{
    content: "";
    width: 100%;
    height: 400px;
    background: linear-gradient(0deg, transparent, #fff);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.logo{
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.logo img{
    width: 100px;
    
}
.hero-container{
    height: 100svh;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.hero-container:before{
    content: "";
    width: 100%;
    /* height: 75px; */
    background: linear-gradient(180deg, transparent, #fff);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.hero-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}
.header-social ul{
    display: flex;
    gap: 20px;
    list-style: none;
    margin:0;
    padding:0;
}
.header-social ul a{
    text-decoration: none;
    color: #222;
    font-size: 20px;
}
.menu-trigger{
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.menu-trigger span{
    display: block;
    height: 1px;
    border-bottom: 2px solid #222;
    position: relative;
    width: 100%;
}
.menu-trigger span:before{
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #222;
    margin-top: -8px;
    transition: all 0.3s ease-out;
}
.menu-trigger span:after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: block;
    height: 2px;
    background: #222;
    margin-top: 8px;
    transition: all 0.3s ease-out;
}
.menu-trigger:hover span:before,
.menu-trigger:hover span:after{
    width: 70%;
}
.hero-content{
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: translateY(-50%); */
    max-width: 1000px;
    background: #1367b2a8;
    width: 100%;
    backdrop-filter: blur(4px);
    padding: 80px;
}
.page-container{
    max-width: 1280px;
    width: 90%;
    margin:0 auto;
}
.hero-content h1{
    color: #fff;
    font-weight: 800;
    font-size: 50px;
    line-height: 1;
    /* padding: 80px; */
    line-height: 1.1;
    letter-spacing: -3px;
}
.scroll-down{
    position: absolute;
    bottom: 60px;
    /* left: 50%; */
    right: 60px;
    /* transform: translateX(-50%); */
}
.scroll-down span{
    display: block;
    width: 30px;
    height: 60px;
    border:2px solid #fff;
    border-radius: 60px;
}
.scroll-down span:before{
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation:scroll 2s ease-in-out infinite alternate;
}
@keyframes scroll{
    0%{
        top: 10px;
    }
    100%{
        top: calc(100% - 20px);
    }
}
body{
    counter-reset: section;
}
.content{
    padding:40px 0;
    counter-increment: section;
}
.content p:before{
    content: "0"counter(section);
    position: absolute;
    top: -77px;
    right: 0;
    color: #222;
    opacity: 0.1;
    font-size: 12rem;
    z-index: -1;
    pointer-events: none;
    line-height: 1;
    font-weight: 900;
}
.content-wrapper{
    display: flex;
    gap: 60px;
    align-items: center;
}
.content-wrapper > div{
    flex:1;
}
.section-image{
    position: relative;
}
.section-image:before{
    content: "";
    width: 155px;
    aspect-ratio: 1/1;
    background: rgb(9 170 143 / 45%);
    backdrop-filter: blur(4px);
    position: absolute;
    bottom: 0;
    left: 0;
}
.section-image img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}
.content-wrapper p{
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    position: relative;
}
.contact-col a{
    font-weight: 500;
    color: #222;
    text-decoration: none;
}
.content-wrapper p span{
    font-weight: 500;
}
.contact-col{
    background: #f3f3f3;
    padding: 60px;
    margin-top: 40px;
}
.contact-col h2{
    color: #222;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}
.contact-col p{
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    position: relative;
}
.links{
    padding:80px 0;
}
.section-title{
    margin-bottom: 60px;
}
.section-title h2{
    color: #222;
    font-size: 40px;
}
.home-links{
    list-style: none;
    margin:0;
    padding:0;
    display: grid;
    flex-direction: column;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    line-height: 1.4;
}
.home-links li{
    background: #f3f3f3;
    /* padding: 20px; */
}
.home-links li a{
    display: block;
    color: #222;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    padding: 20px 60px 20px 20px;
    transition: all 0.3s ease-out;
}
.home-links li a:hover{
    color: #1367b2;
}
.home-links li a svg{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 19px;
    pointer-events: none;
    height: auto;
    transition: all 0.3s ease-out;
}
.home-links li a:hover svg{
    margin-top: -5px;
    margin-right: -5px;
}
.home-links li a svg *{
    fill: #222;
}
.footer-text{
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}
.footer-text a{
    color: #1367b2;
    text-decoration: none;
}
.footer{
    text-align: center;
    padding-bottom: 60px;
}
.side-navigation{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
    width: 100%;
    height: 100vh;
    background: rgba(113 113 113 / 50%);
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s 0.3s ease-out;
}
.side-navigation nav{
    max-width: 400px;
    width: 100%;
    height: 100%;
    padding: 60px;
    overflow-y: auto;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.3s ease-out;
}
.side-navigation nav ul{
    list-style: none;
    padding:0;
    margin:0;
    
    
}
.side-navigation.active{
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s ease-out;
}
.side-navigation nav > ul{
    transition: all 0.3s ease-out;
    opacity: 0;
}
.side-navigation.active nav{
    transform: scaleX(1);
    transition: all 0.3s 0.3s ease-out;
}
.side-navigation.active nav > ul{
    opacity: 1;
    transition: all 0.3s 0.6s ease-out;
}
.side-navigation.active .close-navigation{
    opacity: 1;
    transition: all 0.3s ease-out;
}
.side-navigation nav > ul > li > a{
    display: block;
    color: #222;
    font-size: 27px;
    padding: 7px 0;
    text-decoration: none;
    transition: all 0.3s ease-out;
    position: relative;
}
.side-navigation nav > ul > li > a.withDropdown:after{
    content: "\eab2";
    font-family: Icofont!important;
    speak: none;
    margin-left: 10px;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    transition: all 0.3s ease-out;
    display: inline-block;

}
.side-navigation nav > ul > li > a.withDropdown.dropped:after{
    transform: rotate(180deg);
}
.side-navigation nav > ul > li > a:hover{
    color: #1367b2;
}
.side-navigation nav > ul > li > ul{
    margin:10px 0;
    display: none;
}
.side-navigation nav > ul > li > ul a{
    color: #222;
    font-size: 19px;
    opacity: 0.8;
    display: block;
    padding:4px 0;
    text-decoration: none;
}
.close-navigation{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s 0.6s ease-out;
}
.close-navigation svg{
    width: 30px;
    height: auto;
}
.contact-form{
    max-width: 80%;
    margin:60px auto 0 auto;
}
.contact-form form{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.contact-form form > div:nth-child(4),
.contact-form form > div:nth-child(5){
    grid-column: 1/4;
}
.contact-form form label{
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    color: #222;
    font-weight: 600;
}
.contact-form form input[type="text"],
.contact-form form input[type="email"]{
    width: 100%;
    height: 45px;
    background: #fff;
    border:none;
    color: #222;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    padding:0 20px;
}
.contact-form form textarea{
    width: 100%;
    background: #fff;
    border:none;
    color: #222;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    padding:20px;
}
.contact-form form button{
    display: inline-block;
    background: #1367b2;
    color: #fff;
    padding:15px 30px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    border:none;
    transition: all 0.3s ease-out;
}
.contact-form form button:hover{
    background: #222;
}