@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');


*{
    margin: 0;
    padding: 0;
    font-family: "Martel Sans", sans-serif; 
}
html,body{
    overflow-x: hidden;
}
body{
    background-color: #E3F2FD;
}
.header{
    /* overflow: hidden; */
    /* position: static; */
    width: 100%;
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:lightblue;
}
.logo{
    height: 10rem;
    width: 8rem;
    object-fit: cover;
    margin-left: 1rem;
}
.navbar{
    padding: 1rem;
    margin-right: 2rem;
}
.navbar-list{
    display: flex;
    list-style: none;
    gap: 4rem;
}
li a,a:visited{
    text-decoration: none;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s;
}
.navbar-list li a:hover{
    opacity: 50%;
    text-decoration: underline;
}
.content{
    overflow-x: hidden; 
    padding: 5rem 1.5rem;
    height: 100vh;
    font-weight: bold;
    background:#ffe681;
    background-position: center;
    /* background-size: cover; */
    background-repeat: repeat;
    object-fit: cover;
    width: 95vw;
    margin: auto;
    position: relative;
}
.form-box{
    width: 90%;
    height: 90vh;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(173, 216, 230, 0.849) ;
    padding: 50px 60px 70px;
    text-align: center;
}
.form-box h1{
    margin-bottom: 60px;
    position: relative;
}
.form-box h1::after{
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: black;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.input-group{
    height: 290px;
}
.input-field{
    background: rgb(165, 198, 209);
    margin: 10px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: #999;
    max-height: 55px;
    transition: max-height 0.5s;
    overflow: hidden;
}
input, select{
    color: #7b7b7b;
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
}
option{
    background: lightblue;
}
form p{
    text-align: left;
    color: rgb(8, 8, 140);
    font-size: 13px;
}
.btn-field{
    width: 100%;
    display: flex;
    justify-content: center;
}
.btn-field button{
    margin-left: 10px;
    flex-basis: 48%;
    background: rgba(230, 193, 91, 0.813);
    cursor: pointer;
    height: 40px;
    border-radius: 20px;
    border: 0;
    overflow: 0;
    transition: background 1s;
}
.btn-field button.disable{
    background: rgba(230, 193, 91, 0.468);
}
.footer{
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 16rem;
    background-color: lightblue;
    gap: 1rem;
}
.logo2{
    height: 6rem;
    width: 9rem;
    object-fit: cover;
}
.icons .fa-brands{
    font-size: 2rem;
    padding: 0.5rem;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: #000;
    background: white;
    -webkit-background-clip: #fff;
    -webkit-text-fill-color: black;
}
.follow-us{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.copyright{
    font-size: 1.1rem;
}
/* footer ends */

/*Hamburger*/
.mobile-btn{
    /* display: flex; */
    cursor: pointer;
    gap: 1rem;
    margin-right: 1rem;
    display: none;
}
.fa-solid{
    font-size: 2rem;
}

.fa-bars, .fa-xmark{
    border: 3px solid #000;
    padding: 0.4rem;
}

@media (max-width:670px) {
    .fa-solid.fa-xmark{
        display: none;
    }
    .navbar{
        /* display: none; */
        width: 100%;
        height: 100vh;
        background-color: beige;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        /* to get transition */
        transform: translateX(100%);
        transition: all 0.6s linear;
        opacity: 0;
        visibility: hidden;
    }
    .navbar-list{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    li a,a:visited{
        font-size: 1.2rem;
    }
    .active .navbar{
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .heads{
        display: none;
    }
    .active .fa-solid.fa-xmark{
        display: block;
        border: 3px solid black;
        font-size: 2rem;
    }
    .active .fa-bars{
        display: none;
    }
    .mobile-btn{
        display: flex;
    }
}