
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Roboto Condensed', sans-serif;
}

.header-video{
  background: url("../assets/images/header-bg/trees.png") no-repeat center ;
  background-size: cover;
}

/* ===== hero section ===== */

.hero{
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content-wrapper{
  width: 75%;
  text-align: center;

}
.hero-heading{
  text-transform: uppercase;
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;

}
.hero-heading span{
  display: block;
}
.hero-subheading{
  margin: 18px 0;
}


@media screen and (max-width:1100px){
  .hero-content-wrapper{
    width: 95%;
  }
  .hero-heading{
    font-size: 1.4rem;
  }
}
@media screen and (max-width:780px){

  .hero{
    padding: 0 2%;
    height: 350px;
  }
  .hero-content-wrapper{
    width: 100%;
  }
  .hero-heading{
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
  }
  .hero-heading > span{
    display: inline;
  }
  .hero-subheading{
    margin: 18px 2%;
    text-align: center;
    font-size: 0.9rem;
  }
}
@media screen and (max-width:400px){
  .hero{
    padding: 0 2%;
    height: 320px;
  }
}


/* ===== hero section ends ===== */


/* ===== about section ===== */
.about-section-heading{
  /* border: 2px solid red; */
  /* height: 0px; */
  margin-top: 20px;
  margin-bottom: 60px;
  display: flex;
  
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.about-section-heading > span {
  margin:  0 5px;
}
.about-content{
  /* background-color: lavender; */
  /* height: 500px; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 15vw 0px 20vw;
  /* border: 2px solid blue; */
  margin-bottom: 150px;
  overflow-x: hidden;

}
.about-image{
  /* border: 2px solid red; */
  display: flex;
  justify-content: center;
  align-items: flex-end;

}
.about-image > img {
  width: 90%;
}
@media screen and (max-width:1044px){
  .about-content{
    padding: 0 2vw 0px 8vw;
  }
} 

.about{
  /* border: 2px solid black; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.box1{
  /* border: 2px solid red; */
}
.title{
  font-size: 1.2rem;
}
.title > span {
  font-weight: bold;
}
.social-links{
  margin: 10px 0;
  font-size: 1.2rem;
  
}
.social-links > a {
  text-decoration: none;
  color: #000;
  margin-right: 4px;
}


.insta-ico:hover{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.linkedIn-ico:hover{
  color: #2867B2;
}


@media screen and (max-width:768px){
  .about-section-heading{
    flex-direction: column;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .about-section-heading > span {
    display: block;
  }
  .about-content{
    grid-template-columns: 1fr;
    padding: 0 ;
    margin-bottom: 50px;
  }  
  .about-image{
    padding: 10vw;
  
  }
  .about-image > img {
    width: 90%;
  }
  .box1{
    padding-left: 15vw;
    margin-bottom: 30px;

  }
  .title{
    font-style: italic;
  }
  .description{
    text-align: center;
    padding: 0 8vw;
    
  }


}
@media screen and (max-width:400px){
  .description{
    padding: 0 20px;
    
  }

}


/* ===== bottom section ===== */
.bg-white{
  background-color: #fff;
}
.bottom-section{
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  
  padding: 10vh 10vw;
  height: fit-content;
}
.bottom-heading{
  text-transform: uppercase;
  font-weight: normal;
  font-family: 'Montserrat', sans-serif;

}
.bottom-section-image{
  width: 250px;
  margin: 50px  0 20px 0;
  /* border: 2px solid red; */
}


@media screen and (max-width:768px){
  .bottom-section{
    padding: 50px 2vw 50px 30px ;
  }
  .bottom-heading{
    font-size: 1.6rem;
  }
  .bottom-section-image{
    width: 200px;
    margin: 5vh 0;
  }
  .bottom-text > span {
    font-size: 14px;
  }
  .bg-white{
    background-color: #f2f2f2 !important;
    padding-bottom: 100px;
    
  }
}
@media screen and (min-width:400px){
  .bottom-text > span {
    display: block;
  }
}





.learn-more-btn{
  display: block;
  font-size: 14px;
  font-family: "montserrat";
  text-decoration: none;
  margin: 30px 0;
  margin-bottom: 0;
  color: black;
  border: 1px solid #000;
  
  text-transform: uppercase;
  overflow: hidden;
  transition: 1s all ease;
  position: relative;
  width: 150px;
  height: 50px;
}
.learn-more-btn::before{
  background: #000;
  color: white;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  transition: all 0.6s ease;
}
.learn-more-btn> span {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  /* background-color: red; */
  width: 100%;
  text-align: center;
}

.learn-more-btn:hover{
  color: white ;
  
}

.learn-more-btn::before{
  width: 100%;
  height: 0%;
  transform: translate(-50%,-50%) rotate(45deg);
}
.learn-more-btn:hover::before{
  height: 380%;
}


@media screen and (max-width:768px){
  .learn-more-btn {
    width: 120px;   
    height: 40px;
    font-size: 13px;
  }
  
}







/* 
.btn1::before {
  width: 0%;
  height: 100%;
}

.btn1:hover::before {
  width: 100%;
}

.btn2::before {
  width: 100%;
  height: 0%;
}
.btn2:hover::before {
  height: 100%;
}

.btn3::before {
  width: 100%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn3:hover::before {
  height: 380%;
}

.btn4::before {
  width: 100%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn4:hover::before {
  height: 380%;
} */
