@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;
  text-decoration: none !important;
}

:root {
  --blue: #3665c1;
}

/* ***************************************NAVBAR****************************************************** */
.center-class {
  overflow: hidden;
}

.logo_img {
  width: 9.5vw;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  background-color: #f6f6f6;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
  padding: 15px 20px;
  height: 22vh;
}

.links {
  display: flex;
  margin: 0;
  padding: 0;
}

.navLink {
  list-style: none;
  font-family: var(--lato);
  font-size: 1.8vw;
}

.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(--blue);
  border-radius: 5px;
  color: white !important;
  cursor: pointer;
}

.callBtn button {
  background: var(--blue);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: var(--lato);
  font-size: 1.8vw;
  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;
  border-bottom: #3665c1 2px solid;
  color: white !important;
  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(--blue);
  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/Home/banner.webp);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.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;
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
}

.button_icon {
  font-size: 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;
  background-color: var(--blue);
  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(--blue);
  font-size: 2vw;
  font-weight: 700;
  text-align: start;
}

.service_h4 {
  color: var(--blue);
  font-size: 1.5vw;
  font-weight: 700;
  text-align: start;
}

.aboutTitle {
  font-weight: 800;
  font-size: 3.3vw;
  width: 100%;
}

.service_h1 {
  font-weight: 800;
  font-size: 2vw;
  width: 100%;
}

.aboutPara {
  font-size: 1vw;
  line-height: 2.5vw;
  font-weight: 600;
  text-align: justify;
  color: #636363;
}

.knowmore_button button {
  padding: 15px 50px;
  background-color: var(--blue);
  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;
  margin-top: 2vw;
}

.knowmore_button:hover {
  color: white;
}

.achivements {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f6f6f6;
}

.comment_img {
  width: 3vw;
}

.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(--blue);
  font-size: 3.3vw;
  font-weight: 700;
}

.why_choose {
  /* background-color: #efefef; */
  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;
}

.yt_container {
  padding-bottom: 5%;
  width: 100% !important;
}

.Customer_top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5%;
}

.Customer_h1 {
  color: var(--blue);
  font-weight: 600;
  font-size: 2vw;
  text-align: center;
}

.slide_content {
  border-radius: 20px;
  background-color: white;
  padding: 2vw 1vw;
}

.slider_content_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8vw 2vw;
}

.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(0.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);
}

.form-side {
  background-color: #073452;
  padding-top: 5%;
  padding-bottom: 5%;
}

.invalid-feedback {
  font-size: 0.9vw;
  font-family: var(--poppins);
  margin-top: 0.5vw;
}

#home_gallery_img {
  scale: 0.92;
  transition: 0.5s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#home_gallery_img:hover {
  scale: 1;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.footer_heading {
  font-size: medium;
  font-weight: 600;
  color: var(--blue);
}

.footer_right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  column-gap: 10px;
  row-gap: 20px;
}

@media (max-width: 1200px) {
  .footer_right {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}

@media (max-width: 992px) {
  .footer_right {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
  }
}

@media (max-width: 768px) {
  .footer_right {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(11, auto);
  }
}

@media (max-width: 576px) {
  .footer_right {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

@media screen and (min-width: 2560px) {
  .footer_heading {
    font-size: xx-large !important;
    font-weight: 600;
    color: var(--blue);
  }
}

.bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg_video:hover .bg_dark_shade {
  display: block;
}


/* ****************************************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: 2vw;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--lato);
}

.contact_head2 {
  margin-top: 2vw;
  font-size: 2.4vw;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--lato);
}

.join_us_head {
  font-size: 3.33vw;
  font-weight: 600;
  color: white;
  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;
}

.contact_input::placeholder {
  color: #000 !important;
}

.joinUs_input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding: 10px;
  font-size: 1vw;
  color: white;
}

.file_textarea {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding: 10px;
  font-size: 1vw;
  color: white;
}

.joinUs_input::placeholder {
  color: rgba(255, 255, 255, 0.719);
}

textarea::placeholder {
  color: rgba(255, 255, 255, 0.719) !important;
}

.send_button {
  width: 100%;
  background: var(--blue);
  border: none;
  outline: none;
  font-size: 1vw;
  color: white;
  padding: 15px;
}

.joinUs_button {
  width: 100%;
  background: var(--blue);
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1vw;
  color: white;
  padding: 15px;
}

.joinUs-form {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.backgroundcolors {
  width: 14.1vw;
  height: 43.64vw;
  background-color: var(--blue);
  z-index: 0;
}

.join_ush2 {
  font-size: 3.33vw;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
}

.join_us_para {
  font-weight: 500;
  font-size: 1vw;
  line-height: 2vw;
}

.join_p {
  margin: 0;
  padding: 0;
  font-weight: 800;
}

.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.webp");
  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;
}

/* ***************************************About******************************************* */
.about_main {
  background-image: url("../img/About/aboutBg.webp");
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_container {
  padding-top: 7%;
}

.about_page_img {
  width: 40vw;
}

.about_head {
  color: black;
  background-color: white;
  padding: 0.7vw 1vw;
  font-weight: 700;
}

.about_title_para {
  font-weight: 700;
  color: white;
  font-size: 3vw;
  padding: 0 1vw;
  line-height: 4vw;
}

.about_para_green {
  color: #86bb46;
  font-size: 1.5vw;
  width: 80%;
  font-weight: 700;
  padding: 0vw 1vw;
}

.about_para {
  color: #636363;
  font-size: 1.3vw;
  padding: 0vw 1vw;
  width: 100%;
  font-weight: 400;
  line-height: 2.4vw;
}

.about_para_bottom {
  padding: 2% 0px;
  color: #636363;
  font-size: 1.3vw;
  width: 90%;
}

.about_para_bottom2 {
  padding: 2% 0px;
  color: #636363;
  font-size: 1.3vw;
  width: 90%;
  margin: auto;
}

.about_para2 {
  width: 80%;
  color: #636363;
  font-size: 1.3vw;
  padding: 0vw 1vw;
  width: 100%;
  font-weight: 400;
  line-height: 2.4vw;
}

.home_about_img2 {
  width: 35vw;
}

.vision_main {
  background-color: #f6f6f6;
  padding-top: 3%;
  padding-bottom: 2%;
}

.whyChoose_top {
  width: 80%;
  margin: auto;
}

.offer_para {
  color: #636363;
  font-size: 1.3vw;
  padding: 0vw 1vw;
  font-weight: 400;
  line-height: 2.4vw;
  text-align: center;
}

.about_h1_green {
  font-size: 3.5vw;
  font-weight: 700;
  color: #86bb46;
}

.about_h1_blue {
  font-size: 3.5vw;
  font-weight: 700;
  color: #3665c1;
}

.black-text {
  color: #000;
}

.OurPartner_main {
  padding-top: 1%;
  padding-bottom: 4%;
}

.partner_h1 {
  font-weight: 800;
  text-transform: uppercase;
  margin: 3vw;
}

.partner_img {
  width: 20vw;
}

.partner_img_sm {
  width: 12vw !important;
}

.Aligned_main {
  padding-top: 5%;
  background-color: #f6f6f6;
  padding-bottom: 5%;
}

.aligned_h1 {
  margin: auto;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  width: 50%;
}

.alignedItem {
  width: 70%;
  margin: auto;
  font-size: 1.3vw;
  padding: 1% 0;
  font-weight: 700;
}

/* ***************************************SERVICE******************************************* */
.service {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f6f6f6;
}

.Home_service {
  padding-top: 5%;
  padding-bottom: 5%;
  background-color: #f8f5f0;
  background-image: url("../img/Home/our_services/home_service_solar.webp");
  background-repeat: no-repeat;
  background-size: contain;
}

.service_banner {
  background-image: url("../img/service/service_banner.webp");
  width: 100%;
  height: 5vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.serviceCard {
  background-image: var(--backgroundImg);
  width: 100%;
  height: 30vw;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-top: 2%;
}

.service_img {
  width: 35vw;
}

/* .autoView{
  animation: autoViewAnimation linear;
  animation-timeline: scroll();
  transform: translateY(100px) scale(.7)
}
@keyframes autoViewAnimation {
  to {
    opacity: 1;
    transform: translateX(0px) scale(1);

  }
} */

.autoView {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.9s ease-out, transform 0.6s ease-out;
}

.autoView.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service_title {
  font-weight: 700;
  font-size: 2.5vw;
}

.service_para {
  font-size: 1.3vw;
  color: #636363;
  width: 90%;
}

.banner_title {
  color: white;
  font-weight: 700;
}

.serviceIcon {
  position: absolute;
  top: 0%;
  left: 5%;
  transform: translate(0%, -50%);
  width: 15vw;
}

.service_h3 {
  font-weight: 700;
  padding-top: 1vw;
  font-size: 1.4vw;
}

.service_p {
  font-size: 1vw;
  color: #636363;
}

.serviceContent {
  width: 85%;
  background-color: #f6f6f6;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0%);
}

.serviceBtn button {
  background-color: #000000;
  color: white;
  width: 100%;
  padding: 0.7vw;
  border: none;
}

.serviceTitle {
  padding: 7%;
}

.service_mini_img {
  width: 4vw;
}

/* ****************************************FOOTER******************************************* */
.footer-content {
  width: 100%;
  display: flex;
  padding: 6% 0;
  justify-content: space-around;
  color: black;
}

.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;
  }

  .banner_buttons {
    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;
  }

  /* ************************************************HOME******************************************* */
  .baner_h2 {
    font-size: 5vw;
  }

  .admission_button {
    padding: 2vw 3vw;
  }

  .banner_a {
    width: 6vw;
    height: 10vw;
    display: none;
  }

  .button_icon {
    font-size: 3vw;
  }

  .banner_a:hover {
    width: 30vw !important;
  }

  .banner_a:hover .hidden_text {
    font-size: 2vw;
  }

  .aboutHeading {
    font-size: 5vw;
    font-weight: 800;
    text-align: center;
    margin: 0;
  }

  .aboutTitle {
    font-weight: 700;
    font-size: 4vw;
    width: 100%;
    text-align: center;
    margin-bottom: 2vw !important;
  }

  .aboutPara {
    font-size: 2.2vw;
    line-height: 4.5vw;
    font-weight: 500;
    text-align: justify;
  }

  .aboutRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3vw;
  }

  .Home_service {
    background-size: 0%;
  }

  .service_h4 {
    color: var(--blue);
    font-size: 3.4vw;
    font-weight: 800;
    text-align: center;
  }

  .service_h1 {
    font-weight: 800;
    font-size: 3vw;
    width: 100%;
    text-align: center;
  }

  .serviceCard {
    width: 100%;
    height: 50vw;
    margin-top: 5%;
  }

  .serviceContent {
    width: 85%;
    background-color: #f6f6f6;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  .service_h3 {
    font-size: 2.5vw;
    font-weight: 800;
  }

  .service_mini_img {
    width: 6vw;
  }

  .service_p {
    font-size: 2vw;
    margin: 0;
  }

  .serviceBtn button {
    padding: 1.7vw;
  }

  .choose_h1 {
    font-size: 3.5vw;
    font-weight: 800;
  }

  .choose_img {
    width: 14vw;
  }

  .choose_para {
    font-size: 2.5vw;
    margin: 0;
  }

  .choose_items {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 40px 0px;
  }

  .offer_h1 {
    font-size: 5.3vw;
    font-weight: 800;
  }

  .Customer_h1 {
    font-size: 5vw;
    font-weight: 700;
  }

  .customer_comment {
    padding: 1vw 10vw;
    font-size: 2.3vw;
  }

  .slider_content_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8vw 4vw;
  }

  .comment_img {
    width: 7vw;
  }

  .gallery_top {
    width: 90%;
    padding-bottom: 5%;
  }

  .gallery_para {
    font-size: 2.5vw;
    text-align: center;
  }

  /* **********************************************ABOUT**************************************** */
  .about_main {
    margin-top: 15vw;
  }

  .about_page_img {
    width: 65vw;
  }

  .about_para_green {
    color: #86bb46;
    font-size: 3vw;
  }

  .about_para {
    font-size: 2vw;
    width: 100%;
    line-height: 4.4vw;
  }

  .about_para_bottom {
    font-size: 2vw;
    width: 85%;
  }

  .offer_para {
    color: #636363;
    font-size: 2vw;
    padding: 0vw 1vw;
    font-weight: 400;
    line-height: 3.4vw;
    text-align: center;
  }

  .about_h1_blue,
  .about_h1_green {
    font-size: 7.5vw;
    text-align: center;
  }

  .partner_img_sm {
    width: 15vw !important;
  }

  .aligned_h1 {
    width: 70%;
    padding-bottom: 3vw;
  }

  .alignedItem {
    font-size: 1.8vw;
  }

  .about_para2 {
    width: 100%;
    color: #636363;
    font-size: 2.5vw;
    line-height: 5.4vw;
  }

  .about_title_para {
    font-size: 4vw;
    line-height: 5vw;
  }

  .home_about_img2 {
    width: 50vw;
  }

  .about_para_bottom2 {
    color: #636363;
    font-size: 3vw;
    padding: 0vw 1vw;
    font-weight: 400;
    line-height: 5vw;
    text-align: center;
  }

  /* ****************************************GALLERY**************************************** */
  .gallery_banner_video {
    height: 25vh;
  }

  .gallery_banner_content {
    color: white;
    font-size: 2.3vw;
  }

  .Gallery_h1 {
    font-size: 4vw;
  }

  /* ****************************************SERVICE**************************************** */
  .service_banner {
    height: 15vw;
    margin-top: 15vh;
  }

  .service_title {
    font-weight: 700;
    font-size: 4.5vw;
    text-align: center;
  }

  .service_para {
    font-size: 2vw;
    color: #636363;
    width: 100%;
  }

  .service_img {
    margin: 5vw;
    width: 60vw;
  }

  /* ****************************************CONTACT**************************************** */
  .contact_banner {
    margin-top: 15vh;
    background-color: #f6f6f6;
  }

  .contact_head,
  .contact_head2 {
    font-size: 2.9vw;
  }

  .contactinput_head {
    width: 100%;
  }

  .contact_input {
    font-size: 2.5vw;
  }

  .backgroundcolors {
    width: 14.1vw;
    height: 55vw;
  }

  .infoConatct_head {
    font-size: 4vw;
  }

  .Emailcontact_para {
    font-size: 2vw;
  }

  .black_contact {
    padding: 4vw;
    width: 45vw;
  }

  .logo_img {
    width: 12vw;
  }

  .footer_para {
    text-align: center;
    margin: 0px auto;
    font-size: medium;
  }

  .sitemap_head {
    font-size: 3.4vw;
  }

  .footer_link {
    font-size: 2.5vw;
    margin-top: 7%;
  }

  .Footer-container {
    background: var(--blue);
  }

  .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: 38vw;
    margin: 0vw 1vw;
  }

  .gallery_img_lg {
    width: 36.9vw;
  }

  .gallery_img {
    width: 77vw;
    margin: 2vw;
  }

  .play_btn {
    width: 7vw;
  }

  .join_p {
    font-size: 1.7vw;
  }

  .join_ush2 {
    font-size: 3.5vw;
    font-weight: 800;
  }

  .join_us_para {
    font-weight: 700;
    font-size: 2vw;
    line-height: 4vw;
  }

  .joinUs_input {
    font-size: 1.5vw;
  }
}

/* ********************************************************RESPONSIVE MOBILE******************************************* */
@media screen and (max-width: 600px) {
  .logo {
    width: 15vw;
  }

  .header_mobile ul.menu li.menu-item a {
    font-size: 6vw;
  }

  .menu-open .closed {
    font-size: 10vw;
  }

  .banner_a {
    width: 10vw;
    height: 15vw;
    display: none;
  }

  .hamburger {
    font-size: 9vw;
  }

  .aboutPara {
    font-size: 3.7vw;
    line-height: 6.5vw;
    font-weight: 500;
    text-align: justify;
  }

  .knowmore_button button {
    padding: 10px 35px;
  }

  .serviceCard {
    width: 100%;
    height: 80vw;
    margin-top: 5%;
  }

  .serviceBtn button {
    padding: 3.7vw;
  }

  .service_p {
    font-size: 3vw;
    margin: 0;
  }

  .service_mini_img {
    width: 12vw;
  }

  .service_h3 {
    font-size: 5.5vw;
    font-weight: 800;
  }

  .service_h4 {
    color: var(--blue);
    font-size: 7.4vw;
    font-weight: 800;
    text-align: center;
  }

  .service_h1 {
    font-weight: 800;
    font-size: 5vw;
    width: 100%;
    text-align: center;
  }

  .rating_para {
    margin: 0px;
    color: black;
    font-size: 8vw;
  }

  .projects_para {
    font-size: 5.5vw;
  }

  .join_us_para {
    font-weight: 700;
    font-size: 3vw;
    line-height: 6vw;
  }

  .join_ush2 {
    font-size: 9.5vw;
    text-align: center;
  }

  .join_p {
    font-size: 3.7vw;
    font-weight: 600;
    margin: 3vw 0px;
  }

  .join_us_head {
    font-size: 6.33vw;
  }

  .joinUs_input {
    font-size: 3.5vw;
  }

  .joinUs_button {
    font-size: 3vw;
  }

  .joinUs-form {
    padding: 5vw 0px;
  }

  .about_main {
    margin-top: 15vh;
    background-size: cover;
  }

  .about_page_img {
    width: 85vw;
    margin: auto;
  }

  .about_head {
    padding: 4vw;
    font-weight: 800;
    font-size: 8vw;
  }

  .about_para {
    font-size: 3.5vw;
    line-height: 6vw;
    color: white;
    padding: 0px 4vw;
    width: 100%;
  }

  .about_para2 {
    width: 100%;
    color: #636363;
    font-size: 3.5vw;
    line-height: 5.4vw;
  }

  .about_para_bottom {
    font-size: 3.5vw;
    line-height: 6vw;
    color: white;
    padding: 0px 4vw;
    width: 90%;
    margin-top: 2vw;
    text-align: center;
  }

  .about_title_para {
    font-size: 5vw;
    line-height: 7vw;
    padding: 0px 4vw;
  }

  .about_para_green {
    color: #86bb46;
    font-size: 5vw;
    width: 100%;
    padding: 0px 4vw;
  }

  .offer_h1 {
    font-size: 8.3vw;
  }

  .whyChoose_top {
    width: 100%;
  }

  .offer_para,
  .about_para_bottom2 {
    font-size: 4vw;
    line-height: 6.4vw;
  }

  .choose_items {
    justify-content: center;
    padding: 2vw 0px;
  }

  .choose_img {
    width: 20vw;
  }

  .choose_h1 {
    font-size: 4.5vw;
  }

  .choose_para {
    font-size: 3.5vw;
  }

  .about_para {
    font-size: 3.5vw;
    line-height: 6vw;
    color: rgb(255, 255, 255);
  }

  .partner_h1 {
    margin: 3vw 0px;
  }

  .partner_img {
    width: 35vw;
  }

  .aligned_h1 {
    width: 90%;
    padding-bottom: 7vw;
  }

  .alignedItem {
    font-size: 4vw;
  }

  .gallery_banner_content {
    color: white;
    font-size: 4vw;
    text-align: center;
  }

  .gallery_img_lg {
    width: 42vw;
  }

  .gallery_img {
    width: 83vw;
  }

  .gallery_img_sm {
    width: 41vw;
  }

  .contact_head,
  .contact_head2 {
    font-size: 4.9vw;
    text-align: center;
    font-weight: 700 !important;
    margin: 5vw 0px;
  }

  .contact_input {
    font-size: 4.5vw;
  }

  .send_button {
    font-size: 4vw;
  }

  .black_contact {
    padding: 4vw;
    width: 90vw;
    display: none;
  }

  .backgroundcolors {
    background-color: transparent;
    display: none;
  }

  .service_title {
    font-weight: 700;
    font-size: 7vw;
    text-align: center;
  }

  .service_para {
    font-size: 3.5vw;
    color: #636363;
    width: 100%;
    text-align: center;
  }

  .service_img {
    margin: 5vw;
    width: 80vw;
  }

  .Footer-container {
    background: var(--blue);
  }

  .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;
  }

  .footerend_parra {
    font-size: 3vw;
    padding: 15px;
  }
}