/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* variable declarations  */
:root{
    --Primary: #e52165;
    --primary-light: #e521668a;
    --Secondary: #0d1137;
    --secondary-light: #0d1137be;
}

.fa-bars{
    color: white;
}


/* remove browser style  */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

li{
    list-style-type: none;
}

a{
    text-decoration: none;
}

img{
    width: 100%;
    height: 100%;

}

header{
    /* background-color: brown; */
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.167),rgba(0, 0, 0, 0.811)),url(image/background.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;


}

.header-content{
    padding: 0 2rem;
    background-color: var(--Secondary);
    height: 12vh;
}

.logo{
    height: 65px;
}

.nav-links{
    /* background: white; */
    width: 60%;
   
}

.nav-links a {
    color:white;

}

.nav-links li::after{
    content: '';
    display: block;
    background-color: var(--Primary);
    height: 2px;
    width: 0%;
    transition: width 0.3s;
}

.nav-links li:hover::after{
    width: 100%;
}
 
.footer-links a {
    color: white;
}
.footer-links li::after{
    content: '';
    display: block;
    background-color: var(--Primary);
    height: 2px;
    width: 0%;
    transition: width 0.3s;
}
.footer-links li:hover::after{
    width: 100%;

}
.burger{
    display: none;
    cursor: pointer;
}

.text-center {
    color: white;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
    transition: all 300ms;
}

.text-center h1{
    margin: 1rem 0;
}

.content {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    
}

.cost-img {
    display: grid;
    grid-column-gap: 5px;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
}


.fac-img {
    
        display: grid;
        grid-column-gap: 5px;
        grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    

}

.mb{
    margin-bottom: 5rem;
}

.mt{
    margin-top: 5rem;
}
.heading{
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo{
    height: 150px;
    width: 150px;
}

.footer-top{
    background-color:var(--Secondary);
    color: white;
}

.footer-links a{
    color: white;
}

.footer-top-container {
    display: flex;
}

.footer-bottom{
    background-color: var(--secondary-light);
    text-align: center;
    color: white;
    padding: 0.6rem 0;
}
            
.founder-text{
    width: 100%;
    padding: 2rem ;
    line-height: 1.7rem;
}


.about-img{
    flex-basis: 40%;
    
}

.management-img{
    flex-basis: 60%;
    width: 40%;
    height: 70%;
}


.mang-text{
    padding: 2rem;
    line-height: 1.8rem;
    width: 100%;
}
input,textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 6px;
    border: none;
    border-bottom:1px solid var(--primary-light);
}


input:focus,textarea:focus{
    border: none;
    outline: none;
    background-color: var(--primary-light);
    border-bottom: 2px solid var(--Primary);
}

.map-loc{
    padding: 2rem;
    line-height: 5rem;
}


/* Media queries */

@media only screen and (max-width:894px) {
    .founder-content{
        flex-direction: column;
    }

}

@media only screen and (max-width:894px) {
    .text-center{
        width: 100%;
    }
}

@media only screen and (max-width:762px) { 
    .footer-top-container {
        flex-direction: column;
    }
    .footer-links{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .footer-company{
        text-align: center;
    }
}



@media only screen and (max-width:600px) { 
    .text-center{
        font-size: 20px;
    }
    .nav-links {
        /* display: none; */
        position: absolute;
        flex-direction: column;
        background-color: var(--secondary-light);
        right: -10rem;
        top: 12vh;
        height: 50vh;
        width: 0%;
        padding: 1.5rem 0;
        transition: all  400ms;
        z-index: 2;
        text-align: left;
    }
    .burger{
       display: block;
    }
   
}

.nav-show {
    width: 100%;
    right: 0px;
    
}

.textareahide{
    left: -20rem;
}

.flex-design{
    display: flex;
    justify-content: space-between;
    align-items: center;
}