
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: #7ca1b2;
    --black-color: #000000;
    --border: 0.1rem solid #b19393;
}

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}

/*! Base Html Codes */

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: 0.8rem;
    background-color: white;
}
html::-webkit-scrollbar-track{
    border-radius: 3rem;
    background-color: transparent;
}
html::-webkit-scrollbar-thumb{
    border-radius: 3rem;
    background-color: var(--black-color);
}


body{
    background-color: var(--main-color);
}
section{
    padding: 3.5rem 7%;
}

a{
    color: var(--black-color);
    text-decoration: none;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: white;
    background-color: var(--black-color);
    cursor: pointer;
}
.btn:hover{
    opacity: 0.8;

}
.heading{
    color: white;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid white;
}
.heading span{
    color: var(--black-color);
    text-transform: uppercase;
}

/*! Header Start */

.header .logo img{
    height: 10rem;
}
.header {       
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0,0,0,0.75);
    position: sticky;
    top: 0;
    z-index: 1000;

}
.header .navbar .active{
    right: 3rem;
}

.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 0.1rem solid transparent;
}

.header .navbar a:hover{
    border-color: var(--main-color);
    padding-bottom: 0.5rem;
}

.header .buttons button{
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;
    background-color: transparent;
}
.header #menu-btn{
    display: none;
}


/*! Header End */

/*! Home Start */

.home {
    min-height: 100vh;
    background: url(../img/home.jpg)
    no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    margin-top: -14.5rem;
    display: flex;
    align-items: center;
}

.home .content {
    max-width: 60rem; 
}
.home .content h3{
    font-size: 6rem;
    color: white;
}
.home .content p{
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    color: #1b1737;
}

/*! Home End */

/*! Qualifications Start */

.Qualifications .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.Qualifications .box-container .box{
    padding: 3rem;
    background-color: white;
    border-radius: 3rem;
    background-color: white;
    min-height: 60rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;


}

.Qualifications .box-container .box img{
    width: 100%;
    object-fit: cover;
}
.Qualifications .box-container .box .menu-category{
    font-size: 1.2rem;
}

.Qualifications .box-container .box h3{
    font-size: 3rem;
    padding: 1rem 0;
}
.Qualifications .box-container .box .price{
    font-size: 2.5rem;
    padding: 0.5rem 0;
}
.Qualifications .box-container .box .price span{
    font-size: 1.5rem;
    font-weight: 300;
}


/*! Qualifications End */

/*! education start */

.education .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.education .box-container .box {
    text-align: center;
    background-color: white;
    position: relative;
    border-radius: 3rem;
    height: 60rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;

}
.education .box-container .box .box-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}
.education .box-container .box .box-head .title {
    font-size: 1.4rem;
    color: var(--main-color);
}
.education .box-container .box .box-head a{
    font-size: 1.4rem;
    color: #000000;
}
.education .box-container .box .box-head .name {
    font-size: 4rem;
    font-weight: bold;
    text-align: start;
    overflow-wrap: anywhere;
}

.education .box-container img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    border-radius: 3rem;
}
.education .box-container .box-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}
.education .box-container .box-bottom .info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.education .box-container .box-bottom .info .price{
    font-size: 3rem;
}
.education .box-container .box-bottom .info .amount{
    font-size: 1.4rem;
    color: #5b5a5a;
}
.education .box-container .box-bottom .product-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 6.5rem;
    height: 6.5rem;
    border: 0.2rem solid var(--main-color);
}
.education .box-container .box-bottom .product-btn a i{
    font-size: 1.6rem;
    color: var(--main-color);
}

/*! education end */

/*! About Start */
.about .row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
}
.about .row .image{
    flex: 1 1 45rem;
    width: 100%;
}
.about .row img{
    width: 100%;
}
.about .row .content{
    flex: 1 1 45rem;
}
.about .row .content h3{
    font-size: 3rem;
    color: white;
}
.about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
}

/*! About end */

/*! career start */

.career .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}
.career .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 3rem;

}

.career .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 2rem 0;
}
.career .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}
.career .box-container .box h3{
    font-size: 2rem;
    padding: 1rem 0;
    color: red;
}
.career .box-container .box .stars i{
    font-size: 1.5rem;
    color: gold;

}
/*! career end */

/*! contact start */

.contact .row{
    display: flex;
    background-color: var(--black-color);
    flex-wrap: wrap;
    gap: 1rem;

}
.contact .row .map{
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}
.contact .row form{
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}
.contact .row form h3{
    text-transform: none;
    font-size: 1.5rem;
    color: white;
}

.contact .row form .btn{
    color: var(--main-color);
    background-color: white;
    font-weight: bold;
}


/*! contact end */

/*! footer start */
.footer{
    background-color: var(--black-color);
    text-align: center;
}
.footer .search{
    display: flex;
    justify-content: center;
}
.footer .search .search-input{
    width: 30rem;   
}
.footer .search .btn-primary{
    background-color: var(--main-color);
    padding: 1rem 2rem;
    margin-left: 1rem;
}
.footer .share{
    padding: 2rem 0;
}
.footer .share a{
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    color: white;
    font-size: 2rem;
    border: var(--border);
    border-radius: 50%;
    margin: 0.3rem;
}
.footer .share a:hover {
    background-color: var(--main-color);
}
.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;

}
.footer .links a{
    background-color: var(--main-color);
    padding: 0.7rem 2rem;
    color: white;
    font-size: 2rem;
    border: var(--border);
}
.footer .links a:hover{
    background-color: var(--black-color);
    opacity: 0.8;
}
.footer .links a.active{
    background-color: var(--black-color);
}
.footer .credit{
    padding: 2rem;
    color: white;
    font-weight: 300;
    padding-top: 1.5rem;
}
.footer .credit span{
    color: gold;
}
/*! footer end */

/*! responsive start */

@media (max-width: 991px){
html {
    font-size: 55%;
}
.header{
    padding: 1.5rem 2rem;
}
.header .logo img{
    height: 7rem;
}
section {
    padding: 2rem;
}
.education .box-container .box .box-head .name{
    font-size: 3.4rem;
}
}
@media (max-width: 768px){
.header #menu-btn{
    display: inline-block;
}
.header .navbar{
    position: absolute;
    top: 95%;
    background-color: white;
    height: calc(100vh - 9rem);
    width: 30rem;
    box-shadow: 0px 20px 14px 0px rgba(0,0,0,0.75);
    display: none;
}
.header .navbar.active{
    display: block;
    right: 3rem;
}

.header .navbar a{
    color: var(--black-color);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
}
 }

@media (max-width: 576px){
html {
    font-size: 50%;
}
.header #menu-btn{
    display: inline-block;
}
}
/*! responsive end */