
.contact-landpage{
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    background-color: black;
    height: 100vh;
    border-bottom: 4px solid rgb(48, 48, 48);
}
.contact-text-container{
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
}
.contact-text-container h1{
    font-family:varela round;
    padding-bottom: 10px;
    border-bottom: 5px solid rgb(202, 6, 98);
    color: white;
    text-transform: capitalize;
    font-size: 1.5rem;
    width: 100px;
    margin-bottom: 120px;
    margin-right: 65%;
}
.contact-text-container h2{
    color: white;
    margin-bottom: 40px;
    font-family: poppins;
    font-size: 2rem;
    text-transform: capitalize;
    width: 80%;
}
.contact-text-container p{
    line-height: 25px;
    font-family: roboto;
    width: 80%;
    color: rgb(214, 214, 214);
}
.form-container{
    width: 50%;
    /* background-color: green; */
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}
.contact-form{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    /* background-color: red; */
    flex-direction: column;
    backdrop-filter: blur(5px);
}
.contact-input{
    outline: none;
    border: none;
    height: 45px;
    width: 80%;
    border-radius: 5px;
    background-color: rgba(221, 221, 221, 0.924);
    text-indent: 20px;
    font-family: roboto;
    font-size: 1rem;
    padding: 10px;
    text-transform: capitalize;
}
.text-area{
    width: 80%;
    height: 60%;
    outline: none;
    text-indent: 10px;
    font-family: roboto;
    font-size: 1rem;
    padding: 10px;
    background-color: rgba(221, 221, 221, 0.924);
    border-radius: 5px;
}
label{
    padding-top: 20px;
    padding-bottom: 20px;
    width: 80%;
    color: white;
    font-family: varela round;
}
.submit-btn{
    height: 45px;
    width: 20%;
    background-color: rgb(175, 2, 69);
    margin-left: 60%;
    outline: none;
    font-family: varela round;
    font-size: 1.2rem;
    text-transform: capitalize;
    text-align: center;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 3px;
}
.recommendation-section{
    height: 120vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 40px;
}
.recommendation-text{
    width: 90%;
    height: 20%;
    /* background-color: red; */
}
.recommendation-text h1{
    font-family: poppins;
    color: white;
    text-align: center;
    text-transform: capitalize;
    font-size: 2rem;
}
.recommendation-text p{
    color: rgb(195, 195, 195);
    font-family: roboto;
    line-height: 25px;
    width: 70%;
    text-align: center;
    margin: auto;
}
.recommendation-card-container{
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    /* background-color: pink; */
}
.recommendation-card{
    height: 85%;
    width: 40%;
    background-color: white;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px;
}
.rank-container{
    width: 90%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.star{
    height: 25px;
    width: 25px;
    margin-right: 15px;
}
.rec-card-body{
    height: 50%;
    border-image-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.rec-card-body h1{
    width: 90%;
    font-family: varela round;
    text-transform: capitalize;
}
.rec-card-body p{
    width: 90%;
    color: rgb(37, 37, 37);
    font-family: poppins;
    line-height: 20px;
    font-size: .85rem;
}
.profile-info{
    height: 40%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile-img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.person-name{
    font-weight: bold;
    font-family: varela round;
    text-transform: capitalize;
    color: black;
    font-size: 1.2rem;
}
.profile-info p{
    font-size: .9rem;
    color:rgb(46, 46, 46);
    font-family: roboto;
    padding-left: 10px;
    max-width: 100%;
}
@media screen and (max-width:900px) {
    .menu-container{
        width: 60px;
        height: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        cursor: pointer;
     
    }
    .menu-line{
        height: 4px;
        width: 35px;
        border-radius: 5px;
        background-color: white;
        margin: 3px;
    }
    .navbar{
        width: 0%;
        overflow-x: hidden;
    }
    .search-container{
        display: none;
    }
    .menu-list{
        width: 0%;
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        background:rgba(0, 0, 0, 0.897);
        height: 100%;
        z-index: 100;
        overflow-x: hidden;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        transition: .5s ease-in-out;
        z-index: 200;
    }
    
    .list-items{
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        height: 60%;
       
    }
    .menu-list li{
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 2px solid rgba(56, 56, 56, 0.794);
        padding-bottom: 10px;
    }
   
    .menu-list a{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1rem;
        font-family: ubuntu;
    }
    .arrow{
        width: 5%;
        margin-left: auto;
        max-height: 80%;
        object-fit: contain;
    }
    .menu-list-login{
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        height: 40%;
        overflow-x: hidden;
        background-color: rgba(0, 0, 0, 0.897);
        padding: 10px;
    }
    .close-btn{
        width: 40px;
        height: 40px;
        background-color: white;
        border-radius: 10px;
        margin-left: auto;
        cursor: pointer;
    }
    .navbar{
        display: none;
    }  
    .contact-landpage{
        flex-direction: column;
        height: auto;
        padding-bottom: 20px;
    }  
    .contact-text-container{
        width: 100%;
        padding-top: 30px;
    }
    .contact-text-container h1{
        margin-bottom: 30px;
        margin-left:20px ;
    }
    .contact-text-container h2{
        font-size: 1.5rem;
    }
    .form-container{
        width: 100%;
        padding: 0px;
        margin-top: 30px;
    }
    .contact-form{
        width: 100%;
    }
    .recommendation-section{
        height: auto;
    }
    .recommendation-text h1{
        font-size: 1.8rem;
    }
    .recommendation-text p{
        width: 90%;
    }
    .recommendation-card-container{
        flex-direction: column;
        height: auto;
        width: 100%;
        margin-top: 30px;
    }
    .recommendation-card{
        width: 85%;
        height: 400px;
    }

}

/* resume page css  */

.resume-landpage{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
    height: 100vh;
    width: 100%;
    padding-top: 50px;
}
.resume-text-container{
    width: 80%;
    height: 30%;
}
.resume-text-container h1{
    font-family: poppins;
    color: white;
    margin-bottom: 30px;
    text-transform: capitalize;
    border-bottom: 5px solid rgb(196, 4, 106);
    width: 100px;
}
.resume-text-container p{
    color: white;
    font-family: roboto;
    width: 80%;
}
.resume-doc-container{
    height: 70%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}