* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth !important;
}

.map,
.row,
.col-lg-12,
iframe {
  margin: 0;
  padding: 0;
}

/*-- ==================== Banner Section  ====================== --*/

.banner {
  background-color: RED;
  background-image: url(../images/about-png.webp);
  background-size: contain;
  background-position: center;
  height: 40vh;
  display: grid;
  place-items: center;
}

.banner .data {
  display: grid;
  place-items: center;
}

.banner h2 {
  font-size: clamp(27px, 3vw, 120px);
  color: white;
  font-weight: 700;
}

.banner p {
  color: var(--white-color);
  font-size: 20px;
}

.banner p i {
  color: var(--main);
}

.banner a {
  color: var(--white);
}

/*-- ================== Gallery Section ==================== --*/

.gallery_page {
  position: relative;
}

.gallery_page .main_heading h3 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  display: inline;
  border: 2px solid var(--main);
  padding: 8px 10px;
  border-radius: 10px;
}

.gallery_page .shape-1 {
  position: absolute;
  z-index: -1;
  left: 0;
}

.gallery_page .shape-2 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  height: 300px;
}

.gallery_page h2 {
  font-size: clamp(24px, 2.2vw, 100px);
  font-weight: 700;
}

.gallery_page .image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f4f4f4;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
}

.gallery_page .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms;
}

.gallery_page .image:hover img {
  scale: 1.2;
}

/*-- ===================== Our Clients Page CSS ======================= --*/

.client {
  position: relative;
}

.client .shape-1 {
  position: absolute;
  z-index: -1;
  left: 0;
}

.client .shape-2 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  height: 300px;
}


.client .main_heading h3 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  display: inline;
  border: 2px solid var(--main);
  padding: 8px 10px;
  border-radius: 10px;
}

.client .main_heading h2 {
  font-size: clamp(24px, 2.2vw, 100px);
  font-weight: 700;
}

.client .img-box {
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  padding: 15px;
  border-radius: 40px 0px 40px 0px;
  transition: all .5s ease-in-out;
}

.client .img-box:hover {
  transform: translateY(-4px);
}

.client .img-box .imagee {
  height: 180px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: aliceblue;
  margin: 15px 0;
}

.client .img-box .imagee img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}


/*-- ===================== Enquiry Form Page CSS===================== --*/

.enquiry {
  position: relative;
}

.enquiry .shape-1 {
  position: absolute;
  z-index: -1;
  left: 0;
  height: 300px;
}

.enquiry .shape-2 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}

.enquiry .main_heading h3 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  display: inline;
  border: 2px solid var(--main);
  padding: 8px 10px;
  border-radius: 10px;
}

.enquiry .main_heading h2 {
  font-size: clamp(24px, 2.2vw, 100px);
  font-weight: 700;
}

.enquiry input,
textarea {
  color: #000;
  border-radius: 6px;
  width: 100%;
  height: 58px;
  background: var(--white-color);
  border: 1px solid #edeee7;
  padding: 0 15px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.enquiry input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #004949;
}

.enquiry textarea {
  width: 100%;
  height: 120px;
  padding-top: 15px;
}

.enquiry .contact__area-left {
  background: #F5F6F0;
  padding: 40px;
  border-radius: 15px;
}


.enquiry .contact__area-left .subtitle {
  background: var(--white-color);
}

.enquiry .image-1 {
  overflow: hidden;
  border-radius: 20px 0px 20px 0px;
}

.enquiry .image-1 img {
  transition: all .5s ease-in-out;
  overflow: hidden;
  cursor: pointer;

}

.enquiry .image-1 img:hover {
  transform: scale(1.1);
}

.enquiry .mt-25 {
  margin-top: 25px;
}

.enquiry h2 {
  font-size: 54px;
  line-height: 64px;
  padding: 0;
  margin: 0;
  color: var(--footer);
  font-weight: 700;
}

.enquiry .subtitle {
  color: #004949;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
  border-radius: 50px;
  display: inline-flex;
  background: #fcfcfa;
  padding: 2px 22px;
  border: 1px solid #e6e7e1;
  position: relative;
  align-items: center;
  gap: 10px;
}

.enquiry .subtitle::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #004949;
  display: block;
  border-radius: 50%;
}

.header-button {
  border: none !important;
  outline: none !important;
}

.header-button {
  display: inline-block;
  font-size: 16px;
  color: var(--black);
  font-weight: bold;
  background: #f0da69;
  padding: 12px 31px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

.header-button:hover {
  color: var(--black);
}

.header-button::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 50%;
  top: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
  border-radius: 30px;
}

.header-button:hover::before {
  width: 100%;
  left: 0;
}

.enquiry .input-icon {
  position: relative;
}

.enquiry .input-icon input,
.enquiry .input-icon textarea {
  padding-right: 45px !important;
}

.enquiry .input-icon i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--main);
  pointer-events: none;
}

/*-- ================ About Us Paage CSS=================== --*/

.benefits .main_heading h3 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  display: inline;
  border: 2px solid var(--main);
  padding: 8px 10px;
  border-radius: 10px;
}

.benefits .main_heading h2 {
  font-size: clamp(24px, 2.2vw, 100px);
  font-weight: 700;
}

.benefits {
  background-color: #f4f4f4;
}

.benefits .timeline {
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.benefits .timeline1,
.benefits .timeline2 {
  padding: 70px 0;
}

.benefits .timeline1::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ccc;
  right: 8px;
  z-index: 1;
}

.benefits .timeline2::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ccc;
  left: 8px;
  z-index: 1;
}

.benefits .timeline1 .timeline-item {
  position: relative;
  padding-right: 50px;
}

.benefits .timeline2 .timeline-item {
  position: relative;
  padding-left: 50px;
}

.benefits .timeline .timeline-item:not(:last-child) {
  margin-bottom: 40px;
}

.benefits .timeline1 .timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid var(--main);
  right: 0px;
  top: 50%;
  /* transform: translateY(-50%); */
  z-index: 2;
}

.benefits .timeline2 .timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid var(--main);
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.benefits .timeline .timeline-content {
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 8px;
  box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.1) !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
  transition: all .5s ease-in;
}

.benefits .timeline .timeline-content:hover {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  background-color: #fff !important;
  /* border: 2px solid red; */
  transform: translateY(-2px);
}

.benefits .timeline .timeline-content h3 {
  margin: 0;
  font-size: 17px !important;
  color: black;
  font-weight: 500;
}

.benefits .middle {
  position: relative;
}

.benefits .middle .image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.benefits .middle img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*-- ================ Contact Us Paage =================== --*/

.get_in_touch{
  position: relative;
}
.get_in_touch .heading h2{
  font-size: clamp(24px, 2.2vw, 100px);
  font-weight: 700;
}
.get_in_touch .data .icon{
  margin: opx;
}
.get_in_touch .data .icon i{
font-size: 40px;
}

.get_in_touch .data p{
color: var(--main);
font-weight: 700;
}

.get_in_touch .data a{
  color: var(--main);
}

.get_in_touch .data a:hover{
color: var(--second);
text-decoration: underline;
}

.get_in_touch .map {
height: 800px;
width: 90%;
margin-left: auto;
border-radius: 20px;
}


.get_in_touch .shape-1 {
  position: absolute;
  z-index: -1;
  left: 0;
}

.get_in_touch .shape-2 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  height: 300px;
}

.get_in_touch .map iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 20px;
}

/*-- =================  Media Query ==================== --*/

@media (max-width: 1199px) {
  .enquiry h2 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media(max-width:991px) {

  .banner {
    background-size: cover;
    background-repeat: no-repeat;
  }

  .benefits .middle {
    height: 300px;
  }

  .benefits .middle .image {
    border-radius: 12px;
  }

  .benefits .timeline1 {
    padding: 60px 0 43px 0;
  }

  .benefits .timeline1 .timeline-item {
    padding-right: 0;
  }

  .benefits .timeline2 {
    padding: 0 0 20px 0;
  }

  .benefits .timeline1::after {
    left: 8px;
  }

  .benefits .timeline1 .timeline-item {
    padding-left: 50px;
  }

  .benefits .timeline1 .timeline-item::after {
    left: 0px;
  }
  .get_in_touch .map {
    width: 100%;
      height: 400px;
  }
}

@media(max-width:767px) {

  .enquiry h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .enquiry .contact__area-left {
    padding: 35px 25px;
  }

  .benefits .timeline .timeline-content {
    justify-content: left !important;
    text-align: left;
  }
}

@Media(max-width:450px) {

  .benefits .timeline1 .timeline-item {
    padding-left: 30px;
  }

  .benefits .timeline2 .timeline-item {
    padding-left: 30px;
  }

  .benefits .middle {
    height: 200px;
  }

  .benefits .middle h6 {
    font-size: 30px;
    padding: 50px;
  }

}

@media (max-width: 576px) {
  
  .gallery_page .main_heading h3 {
    font-size: 20px;
  }

  .enquiry .main_heading h3 {
    font-size: 20px;
  }

  .client .main_heading h3 {
    font-size: 20px;
  }

  .benefits .main_heading h3 {
    font-size: 20px;
  }
}




