:root{
    --pastel-pink: #FFEDDB;
    --npink: #EDCDBB;
    --nude-pink: #E3B7A0;
    --nude: #BF9270;
    --redish-brown: #9b523c;
    --menu-bg: #D0AF95;
    --maroon: #320000;
}


*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
 }
 html{
    font-size: 62.5%;
    overflow-x: hidden;
 }
 
 html::-webkit-scrollbar{
   width: 1rem;
 }
 
 html::-webkit-scrollbar-track{
    background-image: url(img/bg.png);
 }
 
 html::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
 }
 
 section{
   padding:5rem 10%;
 }
 
 @keyframes fadeIn {
   0%{
       transform: scale(0);
       opacity: 0;
   }
 }
 
 .heading{
   background-size: cover !important;
   background-position: center !important;
   padding-top: 10rem;
   padding-bottom:15rem;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .heading h1{
   font-size: 10rem;
   text-transform: uppercase;
   color:var(--white);
   text-shadow: var(--text-shadow);
 }
 
 .btn{
   display: inline-block;
   background: var(--black);
   margin-top: 1rem;
   color:var(--white);
   font-size: 1.7rem;
   padding:1rem 3rem;
   cursor: pointer;
 }
 
 .btn:hover{
   background: var(--main-color);
 }
 
 .heading-title{
   text-align: center;
   margin-bottom: 3rem;
   font-size: 6rem;
   text-transform: uppercase;
   color:var(--black);
 }
 
 .header{
   position: sticky;
   top:0; left:0; right:0;
   z-index: 1000;
   background-color: var(--menu-bg);
   display: flex;
   padding-top: 2rem;
   padding-bottom: 2rem;
   box-shadow: var(--box-shadow);
   align-items: center;
   justify-content: space-between;
 }
 
 .header .logo{
   font-size: 2.5rem;
   color:var(--black);
 }
 
 .header .navbar a{
   font-size: 2rem;
   margin-left: 2rem;
   color:var(--black);
 }
 
 .header .navbar a:hover{
   color:var(--redish-brown);
 }
 
 #menu-btn{
   font-size: 2.5rem;
   cursor: pointer;
   color:var(--black);
   display: none;
 }

.about_us{
    display: absolute;
    margin-top: 60%;
    
}

.about_us h1{
    font-size: 52px;
    margin-bottom: 60px;
    text-align: center;
}

.des_cont {
    background: white;
    margin: 15px;
    margin-bottom: 20px;
    padding: 20px;
    line-height: 20px;
    display: flex;
    justify-content: center;
    width: auto;
    text-align: center;
    flex-wrap: wrap;
}

.description p{
    color: black; 
    opacity: 1;
}

.description{
    margin-bottom: 10px;
}

.wrapper{
    margin-top: 10px;
}

.wrapper h1{
    font-size: 45px;
    margin-bottom: 10px;
    text-align: center;
}

.wrapper p{
	text-align: center;
	font-size: 18px;
	margin-bottom: 20px;
}

.team{
    display: flex;
    justify-content: center;
    width: auto;
    text-align: center;
    flex-wrap: wrap;
}

.team .team_member{
    background: #fff;
    margin: 50px;
    margin-bottom: 50px;
    width: 300px;
    padding: 20px;
    line-height: 20px;
    color: #8e8b8b;  
    position: relative;
}

.team .team_member h3{
    color: var(--redish-brown);
    font-size: 26px;
    margin-top: 60px;
}

.team .team_member p.role{
    color: #ccc;
    margin: 12px;
    font-size: 12px;
    text-transform: uppercase;
}

.team .team_member .team_img{
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
}

.team .team_member .team_img img{
    width: 100px;
    height: 100px;
    padding: 5px;
}

.team .team_member p{
	margin-bottom: 30px;
}

.social {
    width: 100%;
    color: gray;
    text-align: center;
    font-size: 40px;
    text-decoration: none;
}

.footer{
    background: var(--maroon) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer .credit p{
    text-align: center;
    padding-top: 20px;
    color:var(--white);
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 /* media queries  */
 
 @media (max-width:1200px){
 
    section{
       padding:3rem 5%;
    }
 
 }
 
 @media (max-width:991px){
 
    html{
       font-size: 55%;
    }
 
    section{
       padding:3rem 2rem;
    }
 
    .home .slide .content h3{
       font-size: 10vw;
    }
 
 }
 
 @media (max-width:768px){
 
    .heading h1{
       font-size: 4rem;
    }
 
    #menu-btn{
       display: inline-block;
       transition: .2s linear;
    }
 
    #menu-btn.fa-times{
       transform: rotate(180deg);
    }
 
    .header .navbar{
       position: absolute;
       top:99%; left:0; right:0;
       background-color: var(--white);
       border-top: var(--border);
       padding:2rem;
       transition: .2s linear;
       clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
 
    .header .navbar.active{
       clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
 
    .header .navbar a{
       display: block;
       margin:2rem;
       text-align: center;
    }
 
 }
 
 @media (max-width:450px){
 
    html{
       font-size: 50%;
    }
 
    .heading-title{
       font-size: 3.5rem;
    }
 
 }