@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
section
{
    position: relative;
    width: 100%;
    min-height: 10vh;
    padding: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #80b1df ;
    transition: 0.5s;
}
header
{
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0%;
    width: 100%;
    padding: 10px 100px;
    justify-content: space-between;
    align-items: center;
}
li{
    list-style: none;
}
a{
    color: #080a32 ;
    text-decoration: none;
    font-weight: 600;
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.nav-link {
    transition: 0.7s ease;
}
.nav-link:hover {
    color: dodgerblue;
}

header .logo
{
    position: relative;
    max-width: 125px;
}

 
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #080a32;
}

@media(max-width:768px){
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu{
        position:fixed;
        left:  -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width:  100%;
        text-align: center;
        transition: 0.3s;  
    }
    .nav-item {
        margin: 16px 0;
    }
    .nav-menu.active {
        left: 0;
    }
}

.content
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.content .textBox
{
    position: relative;
    max-width: 500px;
}
.content .textBox h2
{
    color: #fff;
    font-size: 4em;
    line-height: 1.5em;
    font-weight: 900;
    margin-left: -250px;
    margin-top: -100px;
    text-transform: uppercase;
}
.content .textBox h2 span
{
    font-size: 2em;
}
.content .textBox p
{
    color: #fff;
    margin-left: -250px;
}
.content .textBox a
{
    display: inline-block;
    margin: 10px;
    padding: 8px 20px;
    background: #fff;
    color: #111;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}
.content .imgBox
{
    width: 60px;
    display: flex;
    padding: 2px;
    margin-top: 5px;
    justify-content: flex-end;
}
.content .imgBox img
{
    max-width: 260px;
}
.thumb
{
    position: absolute;
    left: 30%;
    bottom: 1px;
    transform: translateX(-50%);
    display: flex;
}
.thumb li   
{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
    transition: 0,5s;
}
.thumb li:hover
{
    transform: translateY(-15px);
}
.thump li img
{
    max-width: 40px;
}
.sci
{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sci li
{
    list-style: none;
}
.sci li a 
{
    display: inline-block;
    filter: invert(1);
    margin: 5px 0;
    transform: scale(0.6);
}
.contact-box
{
    width: 500px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #999;
    top: 63%;
    left: 40%;
    transform: translate(-50%, -50%);
    position: absolute;
}
form 
{
    margin: 35px;
}
.input-field
{
    width: 400px;
    height: 40px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #777;
    border-radius: 14px;
    outline: none;
}
.textarea-field
{
    height: 150px;
    padding-top: 10px;
}
.btn 
{
    border-radius: 20px;
    color: #fff;
    margin-top: 18px;
    padding: 10px;
    background-color: #80b1df;
    font-size: 12px;
    border: none;
    cursor: pointer;
}
.btn:hover
{
    color: #080a32;
}