@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

:root {
  --primary: #4db549;
}
/* ***************************************NAVBAR****************************************************** */
.center-class{
    overflow: hidden;
}
.logo_img {
  width: 4.5vw;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #f6f6f6;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
  padding: 10px 50px;
}

.links {
  display: flex;
  margin: 0;
  padding: 0;
}

.navLink {
  list-style: none;
  font-family: var(--lato);
  /* font-size: 1.2vw; */
}

.navLink a {
  padding: 5px 20px;
  text-decoration: none;
  color: black;
  margin: 0 5px;
  position: relative;
}

.navLink :hover {
  transition: 0.1s ease-in-out;
  background: var(--primary);
  border-radius: 5px;
  color: white !important;
  cursor: pointer;
}

.callBtn button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: var(--lato);
  /* font-size: 1.2vw; */
  cursor: pointer;
}

.callIcon {
  margin-right: 5px;
  width: 1.5vw;
}

.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80%;
  border-radius: 5px;
  color: white !important;
  border-bottom: var(--primary) 2px solid;
  cursor: pointer;
}

/* *******************************************************MOBILE NAVBAR************************************************* */
.mobile_container {
  display: none;
}

.mobile_container .header_mobile {
  position: fixed !important;
  display: block;
  top: 0;
  left: 0;
  overflow-x: hidden !important;
  z-index: 999;
}

.content {
  padding: 40px 5% 20px;
  text-align: justify;
  max-height: 100%;
  color: #333;
  overflow-y: scroll;
}

.content img {
  width: 100%;
  position: relative;
  display: block;
  margin: 40px auto 30px;
}

/* End container/placeholder */

/* Menu header_mobile */
.header_mobile {
  background: #ffffff;
  overflow: hidden !important;
  height: 15vh;
  width: 100%;
  z-index: 1;
  position: fixed !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-out, background 1s ease-out;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
}

.header_mobile.menu-open {
  height: 100%;
  background: var(--primary);
  transition: all 0.45s ease-out, background 0.8s ease-out;
}

/* Menu List items */
.mobile-menu {
  clear: both;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100vh;
}

.header_mobile ul.menu {
  position: relative;
  margin-bottom: 40vw;
  padding: 0px 40px 0;
  list-style: none;
}

.header_mobile ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #fff;
  text-align: right;
  text-decoration: none;
  font-size: 5vw;
  line-height: 2.8;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.header_mobile ul.menu li.menu-item {
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
    -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.header_mobile ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.35s;
}

.header_mobile ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.3s;
}

.header_mobile ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.25s;
}

.header_mobile ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.2s;
}

.header_mobile ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.15s;
}

.header_mobile ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.1s;
}

.header_mobile ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item {
  opacity: 1;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.1s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.15s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.2s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.25s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.3s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.35s;
}

.hamburger {
  font-size: 7vw;
  color: #000000;
}

/* Menu Icon */
.icon-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.icon-container #menuicon {
  width: 20px;
  height: 10px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}

.closed {
  display: none;
}

#menuicon .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#menuicon .bar.bar1 {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

#menuicon .bar.bar2 {
  -webkit-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

#menuicon .bar.bar3 {
  -webkit-transform: translateY(12px) rotate(0deg);
  transform: translateY(12px) rotate(0deg);
}

.menu-open .closed {
  display: block;
  font-size: 8vw;
  float: right;
  color: #fff;
}

.menu-open .icon-container .hamburger {
  display: none;
}

.menu-open .logo {
  display: none !important;
  transition: all 0.5s ease;
}

.menu-open .icon-container #menuicon .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.1s;
}

.menu-open .icon-container #menuicon .bar.bar1 {
  -webkit-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.menu-open .icon-container #menuicon .bar.bar2 {
  -webkit-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
}

.mobile_pallete {
  height: 15vh;
}

.logo {
  width: 13vw;
  transition: all 0.5s ease;
}

/* ****************************************HOME******************************************* */

.banner {
  background: url(../img/backGround.png);
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  margin-bottom: 5%;
}

.bottom_banner {
  position: absolute;
  bottom: -30px;
  width: 100%;
  z-index: -1;
}

.banner-content {
  height: 100%;
}
.banner_text_container {
  border-left: #fff002 10px solid;
  padding: 30px 0px 30px 50px;
  position: relative;
}
.banner_text_container::before{
    content: "";
    width: 10%;
    position: absolute;
    top: 0;
    left: 0;
    border-top: #fff002 10px solid;
}
.banner_text_container::after{
    content: "";
    width: 10%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: #fff002 10px solid;
}
.baner_h2 {
  color: white;
  font-size: 2vw;
  font-weight: 700;
}

.baner_para {
  color: white;
  font-size: 3vw;
  font-weight: 700;
  width: 80%;
}

.baner_h3 {
  color: white;
  font-size: 40px;
  font-weight: 700;
}

.banner_a {
  background-color: var(--bg-img);
  border-radius: 10px;
  width: 5vw;
  height: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  font-size: 1vw;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
}
.button_icon{
    width: 2vw;
}
.hidden_text {
  display: none;
}
.banner_a:hover {
  width: 17vw;
  color: white;
}
.banner_a:hover .hidden_text {
  display: block;
}

.banner_a_link {
  color: white;
  text-decoration: none;
  font-size: 1vw;
  font-weight: 700;
}
.banner_buttons {
  position: fixed;
  top: 40%;
  right: 0;
  transform: translate(0%, -40%);
  z-index: 99;
}
.admission_button {
  padding: 20px 50px;
  /* width: 25%; */
  background-color: var(--primary);
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--Open_Sans);
  text-decoration: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
}

.admission_button:hover {
  color: white;
}

.AboutContainer{
    padding-top: 10%;
    padding-bottom: 5%;
    
}
.aboutHeading{
    color: var(--primary);
    font-size: 2vw;
    font-weight: 700;
    text-align: start;
}
.aboutTitle{
    font-weight: 800;
    font-size: 3.3vw;
    width: 100%;
}
.aboutPara{
    font-size: 1vw;
    width: 80%;
    line-height: 2.5vw;
}
.knowmore_button button {
    padding: 20px 50px;
    /* width: 25%; */
    background-color: var(--primary);
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--Open_Sans);
    text-decoration: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
  }
  
  .knowmore_button:hover {
    color: white;
  }
  .achivements {
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: #f6f6f6;

  }
  
  .rating_para {
    margin: 0px;
    color: black;
    font-size: 2vw;
    font-weight: 600;
  }
  
  .projects_para {
    font-size: 1.5vw;
    font-weight: 600;
    color: #636363;
  }


  .offer_h1 {
    text-align: center;
    color: var(--primary);
    font-size: 3.3vw;
    font-weight: 700;
  }
  .why_choose {
    background-color: #fffbf5;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .choose_items {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
  }
  
  .choose_img {
    width: 6vw;
    padding: 12px;
  }
  
  .choose_h1 {
    font-size: 1.2vw;
    font-weight: 800;
  }
  
  .choose_para {
    font-size: 1vw;
  }

  .Customer_container{
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: #f6f6f6;
  }
  .Customer_top{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
  }
  .Customer_h1{
    color: var(--primary);
    font-weight: 600;
    font-size: 2vw;
    text-align: center;
  }
  .slide_content{
    border-radius: 20px;
    background-color: white;
    margin: 0px 1vw;
  }
  .slider_content_top{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .8vw 0px;

  }
  .customer_comment{
    color: black;
    padding: 1vw 2vw;
    font-size: 1vw;
  }

  .customer_name{
    color: black;
    margin: 0;
    font-weight: 700;
}
.customer_location{
    color: #9747ff;
    margin: 0;
    font-weight: 600;
  }
  .center-slider .slick-slide,
  .center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
    transform: scale(.8);
    transition: all 0.4s ease-in-out;
    height: 50%;
  }
  .center-slider .slick-center,
  .center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
    transform: scale(1);
  }
  .center-slider .slick-current.slick-active{
    transform: scale(1);

  }
  /* ****************************************TAB******************************************* */
  .main-contact {
    width: 100%;
    height: 100vh;
    background-color: #fffbf5;
    margin-top: 12vh;
  }
  
  .black {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 55%;
    transform: translate(-0%, -50%);
    width: 40vw;
  }
  
  .black-img {
    width: 35vw;
  }
  
  .client-box {
    border: 1px solid black;
    height: 10vw;
    position: relative;
    margin-top: 2%;
  }
  
  .client_img {
    position: absolute;
    top: -40%;
    left: 1vw;
    border: 10px solid white;
    border-radius: 50px;
  }
  
  .client_para {
    text-align: center;
    /* margin: 0px; */
    font-size: 1.2vw;
    margin: 0px 2.5vw;
  }
  
  .contact_banner {
    /* background: rgb(240, 227, 204); */
    /* min-height: 100vh; */
    position: relative;
  }
  
  .contact_head {
    font-size: 3.33vw;
    font-weight: 600;
    /* width: 50%; */
    text-transform: uppercase;
  }
  
  .contactinput_head {
    width: 80%;
    margin-top: 3vw;
  }
  
  .contact_input {
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid black;
    padding: 10px;
    font-size: 1vw;
  }
  
  .send_button {
    width: 100%;
    background: var(--primary);
    border: none;
    outline: none;
    font-size: 1vw;
    color: white;
    padding: 15px;
  }
  
  .backgroundcolors {
    width: 14.1vw;
    height: 43.64vw;
    background-color: var(--primary);
    z-index: 0;
  }
  
  .black_contact {
    display: flex;
    flex-direction: column;
    justify-content: start;
    background-color: black;
    padding: 3vw;
    z-index: 2;
    width: 41.1vw;
    transform: translate(-0%, -0%);
    position: absolute;
    align-items: start;
  }
  
  .infoConatct_head {
    font-size: 2vw;
    color: white;
  }
  
  .Emailcontact_para {
    font-size: 1.4vw;
    color: white;
    margin: 0.5vw;
  }
  
  .position_relavi {
    position: relative;
  }
  .gallery{
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .gallery_img_sm{
    width: 19vw;
  }
  .gallery_img_lg{
    width: 18.9vw;
  }
  .gallery_img{
    width: 43vw;
  }
  .gallery_top{
    width: 70%;
    padding-bottom: 5%;
  }
  .gallery_para{
    font-size: 1vw;
    text-align: center;
  }
  .gallery_banner_top{
    padding: 2% 0px;
  }
  .Gallery_h1{
    font-size: 3vw;
    font-weight: 700;
    text-transform: uppercase;
  }
  .gallery_banner_video{
    background-image: url("../img/Home/gallery/gallery_banner_video.png");
    width: 100%;
    height: 20vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column ;
  }
  .gallery_banner_content{
    color: white;
    font-size: 1.3vw;
  }
/* ****************************************FOOTER******************************************* */
.footer-content {
    width: 100%;
    display: flex;
    padding: 3% 0;
    justify-content: space-around;
    color: black;
    background-color: #f6f6f6;
  }
  .footer-menu {
    color: black;
    text-decoration: none;
  }
  
  .footer-ul {
    padding: 0;
  }
  
  .footer-ul li {
    list-style: none;
    padding: 1vh;
  }
  
  .link_all {
    color: inherit;
    text-decoration: none;
  }
  
  .link_all:hover {
    color: inherit;
    text-decoration: none;
  }
  
  .footer_link {
    /* font-size: 1vw; */
    margin-top: 10%;
  }
  
  .sitemap_head {
    /* font-size: 1.4vw; */
    color:  black;
    font-weight: 700;
  }
  
  .bottomslg_footer {
    text-align: center;
  }
  
  .footer_logo {
    width: 10vw;
  }
  
  .map_footer {
    margin-top: 10%;
    width: 15vw;
    height: 10vw;
  }
  
  .footer_end {
    border-top: 2px solid rgb(0, 0, 0);
    margin-top: 3%;
  }
  
  .footerend_parra {
    padding: 20px;
    text-align: center;
    /* font-size: 1vw; */
  }
  .footer_para{
    text-align: justify;
    /* font-size: 1vw; */
  }
/* ****************************************TAB******************************************* */
@media screen and (max-width: 990px) {
  .nav {
    display: none;
  }

  .mobile_container {
    display: block;
  }

  .logo {
    width: 10vw;
  }
  .header_mobile ul.menu li.menu-item a {
    /* font-size: 3vw; */
  }

  .menu-open .closed {
    font-size: 6vw;
  }

  .hamburger {
    font-size: 5vw;
  }
  .mobile_logo {
    width: 10vw;
  }

  .footerLogoImg {
    width: 20vw;
    margin: 0px auto;
  }

  .footerPara {
    color: white;
    font-size: 2vw;
    font-weight: 400;
    line-height: 3vw;
    text-align: center;
  }

  .Footer-container {
    background: var(--primary);
  }

  .footerMap {
    width: 100%;
    height: 25vw;
    border-radius: 5px !important;
  }

  .footerNavHeading {
    color: white !important;
    font-size: 2.6vw;
  }

  .footerNavItem a,
  .footermail {
    text-decoration: none !important;
    color: white !important;
    font-size: 2vw;
  }

  .footerBottomPara {
    color: white !important;
    margin: 0;
    font-size: 2vw;
  }
  .gallery_banner_top {
    margin-top: 16vw;
}
  .gallery_img_sm {
    width: 37vw;
}
.gallery_img_lg {
  width: 36.9vw;
}
.gallery_img {
  width: 77vw;
  margin-top: 2vw;
}
.play_btn{
  width: 7vw;
}
}

/* ********************************************************RESPONSIVE MOBILE******************************************* */
@media screen and (max-width: 600px) {
  .logo {
    width: 45vw;
  }

  .hamburger {
    font-size: 9vw;
  }

  .Footer-container {
    background: var(--primary);
  }

  .contactItemIcon {
    width: 7vw;
  }

  .footerLogoImg {
    width: 45vw;
  }

  .footerPara {
    font-size: 3.5vw;
    line-height: 6vw;
  }

  .footerNavHeading {
    color: white;
    font-size: 5.5vw;
  }

  .footerNavItem a,
  .footermail {
    text-decoration: none !important;
    color: white !important;
    font-size: 3vw;
  }

  .footerBottomPara {
    /* font-size: 3vw; */
  }

  .footerMap {
    width: 100%;
    height: 45vw;
    border-radius: 5px !important;
  }
}
