*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,body{
    width: 100%;
    height: 100%;
}
.form{
    height: 100vh;
    width: 100%;
    background-color: #00000063;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    transition: display ease 0.3s;
}
.form .container{
    height: 66.5vh;
    width: 41%;
    background-color: #fff;
    box-shadow: 0px 0px 5px #9c9b9b;
    border-radius: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 25px;
}
.container h4{
    font-weight: 550;
    color: rgba(0, 0, 0, 0.7);
}
.container input{
    background-color: #efeff0;
    border: none;
    outline: none;
    height: 15%;
    font-size: 16px;
    padding: 0 15px;
    border-bottom: 2px solid transparent;
    transition: border ease 0.1s;
}
.container input:focus{
    border-color: #1967D2;
}
.container .btns{
    height: 10%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.btns button{
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 550;
    cursor: pointer;
}
.btns button:nth-child(2){
    color: #dadada;
}
#main{
    height: 100vh;
    width: 100%;
    /* background-color: #000; */
}
#main .nav{
    height: 11.4vh;
    width: 100%;
    /* background-color: #eceaea; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 2px solid #eceaea;
}
.nav .left{
    height: 100%;
    width: 13%;
    /* background-color: #1967D2; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left .logo{
    display: flex;
    align-items: center;
    gap: 5px;
}
.left svg{
    cursor: pointer;
}
.left svg:hover{
    background-color: #dadada;
}
.left img{
    height: 28px;
    cursor: pointer;
    /* border: none; */
}
.left h3{
    color: rgba(0, 0, 0, 0.5);
}
.nav .right{
    height: 100%;
    width: 10%;
    /* background-color: #1967D2; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.right svg{
    height: 24px;
    cursor: pointer;
}
.right svg:hover{
    background-color: #dadada;
}
.right img{
    border-radius: 50%;
    cursor: pointer;
}
#main .hero{
    width: 100%;
    height: calc(100% - 11.4vh);
    /* background-color: #1967D2; */
    padding: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.hero .card{
    width: 25%;
    height: 50vh;
    /* background-color: #fff; */
    border: 1px solid #dadce0;
    border-radius: 10px;
    overflow: hidden;
}
.card .top{
    width: 100%;
    height: 30%;
    background: url(https://www.gstatic.com/classroom/themes/img_learnlanguage.jpg);
    background-size: cover;
    background-position: center end;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
.top .txt{
    color: #fff;
}
.top .icon svg{
    cursor: pointer;
}
.card .middle{
    width: 100%;
    height: 50%;
    /* background-color: greenyellow; */
    border-bottom: 1px solid #dadce0;
}
.card .bottom{
    width: 100%;
    height: 20%;
    /* background-color: blue; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    gap: 20px;
}
.bottom svg{
    cursor: pointer;
}