/* font */
@font-face {
  font-family: 'Sabila Renytha Regular';
  font-style: normal;
  font-weight: normal;
  src: local('../fonts/Sabila Renytha Regular'), url('../fonts/Sabila Renytha.woff') format('woff');
  }
  @font-face {
    font-family: 'Sabila Renytha PERSONAL USE Regular';
    font-style: normal;
    font-weight: normal;
    src: local('../fonts/Sabila Renytha PERSONAL USE Regular'), url('../fonts/SabilaRenythaPersonalUseRegular-2OVD3.woff') format('woff');
    }
    @font-face {
    font-family: 'Sabila Renytha PERSONAL USE Italic';
    font-style: normal;
    font-weight: normal;
    src: local('../fonts/Sabila Renytha PERSONAL USE Italic'), url('../fonts/SabilaRenythaPersonalUseItalic-vm0Xy.woff') format('woff');
    }



* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font: inherit;
}

*::after,
*::before {
  box-sizing: border-box;
}

*:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

/* scroll color start */

* {
  scrollbar-width: 1.8rem;
  scrollbar-color: #e81814 #fff;
}

*::-webkit-scrollbar {
  width: 1.8rem;
}

*::-webkit-scrollbar-track {
  background-color: #fff;
}

*::-webkit-scrollbar-thumb {
  background-color: #e81814;
  border-radius: 10px;
  border: 1.5px solid #fff;
}

/* scroll color end */

html {
  font-size: 62.5%;
}

body {
  font-weight: normal;
  line-height: normal;
  font-size: 18px;
  font-family: "Rubik", serif;
  position: relative;
}
body::before {
  content: "";
  background: url(../images/before.webp) no-repeat;
  width: 100%;
  height: 6px;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
body::after {
  content: "";
  background: url(../images/before.webp) no-repeat;
  width: 100%;
  height: 6px;
  background-size: 100% 100%;
  position: absolute;
  /* top: auto; */
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.banner_sec {
  position: relative;
  overflow: initial;
  z-index: 1;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button,
input[type="submit"],
input[type="reset"],
a {
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

::-moz-selection {
  color: #fff;
  background: #ff0000c7;
}

::selection {
  color: #fff;
  background: #ff0000c7;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

/***************** FOR BOOTSTRAP ******************/
.container {
  max-width: 1560px;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

.navbar,
.nav-link {
  padding: 0;
  margin: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

/*As Per Design Change*/
#header_id {
  position: relative;
}

.cus_nav_outr {
  padding: 25px 0px;
  background: transparent;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
}

.cus_nav_innr {
  display: flex;
  justify-content: space-between;
  align-items: normal;
}

.right_nav {
  display: flex;
  align-items: center;
}

/*Header*/

.top_header {
  padding: 0;
}

/*zoom effect*/

.zoom_otr {
  overflow: hidden;
}

.bnr_pic {
  overflow: hidden;
}

.zoom {
  -webkit-animation: scale 20s linear infinite;
  animation: scale 20s linear infinite;
}

@-webkit-keyframes scale {
  50% {
    transform: scale(1.2);
  }
}

@keyframes scale {
  50% {
    transform: scale(1.2);
  }
}

/*Zoom effect*/
/* loader start */
#pre_Loader {
  position: fixed;
  inset: 0;
  background-color: #000;
  height: 100vh;
  z-index: 999999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 150px;
  width: 150px;
  background-color: #ffffff;
  background-image: linear-gradient(
    135deg,
    #ffffff 0%,
    #6284ff 34%,
    #ff0000 100%
  );
  border-radius: 50%;
  animation: rotate 3s linear infinite;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  color: #000;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.box-1::before {
  content: "";
  position: absolute;
  inset: 15px;
  background: #f5f5f5;
  border-radius: 50%;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.loader span {
  position: absolute;
  color: #000;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: text-animate412 3s linear infinite;
}
@keyframes text-animate412 {
  10% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/* loader end */
.bnr_content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
}

.bnr_otr {
  position: relative;
  /* overflow: hidden; */
}

/* Banner End */

/* cmn_margin & Padding */

.mt-40 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mt-50 {
  margin-top: 5rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.cmn_pdding {
  padding: 9rem 0;
}

/*----Common Header and Button----*/

.cmn_hdr h2 {
  font-size: 5.2rem;
  line-height: 1.3;
  color: #0a122a;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-family: "Rubik", serif;
  font-weight: 600;
}

.cmn_hdr.wht h2 {
  color: #fff;
}
.cmn_hdr h3 {
  font-size: 3.6rem;
  font-family: "Rubik", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #0a122a;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.cmn_hdr.wht h3 {
  color: #fff;
}
.cmn_hdr h4 {
  font-size: 3rem;
  font-family: "Rubik", serif;
  font-weight: 600;
  line-height: 1;
  color: #0a122a;
  padding-bottom: 10px;
}
.cmn_hdr.wht h6 {
  color: #fff;
}
.cmn_hdr h6 {
  color: #2b2b2b;
  font-size: 2.5rem;
  letter-spacing: 1px;
  line-height: 1.1;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-family: "Rubik", serif;
  font-weight: 500;
}
.cmn_hdr.wht h6 {
  color: #fff;
}
.cmn_hdr p {
  font-size: 18px;
  color: #444343;
  line-height: 1.3;
  padding-bottom: 15px;
  font-family: "Rubik", serif;
  font-weight: 400;
}

.cmn_hdr.wht p {
  color: #fff;
}

.cmn_btn {
  width: max-content;
  font-size: 17px;
  color: #ffffff;
  padding: 10px 20px;
  justify-content: space-between;
  display: flex;
  gap: 20px;
  background: #e33d3b;
  border: 1px solid #e33d3b;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  transition: 0.5s all;
  z-index: 1;
  border-radius: 27px;
  overflow: hidden;
  font-family: "Rubik", serif;
  background-size: 0 0;
  background-position: center;
  background-repeat: no-repeat;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  align-items: center;
}
.cmn_btn.wht {
  background: #fff;
  border: transparent;
  color: #000;
}
.cmn_btn.wht:hover {
  background: #e33d3b;
  color: #fff;
}
.cmn_btn.wht:hover span img {
  content: url(../images/white_span.png) !important;
}
.cmn_btn:hover {
  background-image: linear-gradient(0, #fff, #fff);
  background-size: 100% 100%;
  color: #e33d3b;
}
.cmn_btn.transparen {
  background: #0d1528;
  display: flex;
  align-items: center;
}
.cmn_btn.transparen:hover {
  background: #e33d3b;
  color: #fff;
}
/*----Common Header and Button End----*/

/* Animation Section */

/* Swing */

.swing:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: -14px;
  left: 54%;
  z-index: 5;
  border-radius: 50% 50%;
  background: #000;
}

@-webkit-keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
  }
}

.swing:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  top: -10px;
  left: 50%;
  z-index: 0;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.swing {
  -webkit-animation: swing ease-in-out 1s infinite alternate;
  animation: swing ease-in-out 1s infinite alternate;
  transform-origin: center -20px;
}

/* Rotate */

.rotate {
  -webkit-animation: rotation 12s infinite linear;
  animation: rotation 12s infinite linear;
}

@-webkit-keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* Floating */

.floating {
  -webkit-animation: floating ease-in-out 3s infinite;
  animation: floating ease-in-out 3s infinite;
}

@-webkit-keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/* Animation Section End */
/* scroll to top start */

#backToTop {
  width: 4rem;
  height: 4rem;
  background-color: #e81814;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 10px;
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  cursor: pointer;
  z-index: 5555;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
  border: 2px solid #e81814;
  font-size: 1.8rem;
}

/* scroll to top end */

/* custom nav style start */

/* test */
#nav-icon3 {
  width: 30px;
  height: 15px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  background: #ffff00;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 14.75px;
}

#nav-icon3 span:nth-child(4) {
  top: 25px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* custom nav style end */

.cmn_btn.transparen span {
  width: 30px;
  height: 30px;
}
.cmn_btn.transparen:hover span {
  border-color: #000;
}
.cmn_btn.transparen:hover img {
  content: url(../images/white_span.png) !important;
}
.nav_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.navbar-nav.line-outr,
.main_nav {
  gap: 3rem;
}
.nav-link {
  font-size: 17px;
  font-family: "Rubik", serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.call_ul li {
  color: #fff;
  font-size: 17px;
  font-family: "Rubik", serif;
  font-weight: 400;
  display: flex;
  gap: 10px;
  align-items: center;
}
.call_ul li a {
  text-transform: uppercase;
}
.call_ul li span {
  background-color: #11b0fb;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-link.active {
  color: #ffff00;
}
.logo_area {
  width: 23.3rem;
  height: 11.9rem;
}
.img-fluid {
  width: 100%;
  height: 100%;
}
.cmn_btn span {
  width: 25px;
  height: 25px;
}

.cmn_btn:hover img {
  content: url(../images/span_red.png) !important;
}
.bnr_content h1 {
  color: #fff;
  font-size: 6rem;
  font-family: "Rubik", serif;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.bnr_content h1 span {
  color: #ffff00;
}
.bnr_content p {
  color: #fff;
  font-size: 2.4rem;
  font-family: "Rubik", serif;
  font-weight: 400;
  padding-bottom: 20px;
}
.bnr_rigt_img {
  position: absolute;
  top: 21%;
  right: 238px;
  filter: drop-shadow(0px -9px 62px rgb(163, 163, 98));
  width: 58rem;
}
/* .bnr_rigt_img::after {
  content: "";
  background: url(../images/rating.png) no-repeat !important;
  width: 191px;
  display: block;
  height: 159px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
} */
/* .banner_sec::after {
  content: "";
  background: url(../images/aa.png) no-repeat;
  width: 100%;
  height: 234px;
  position: absolute;
  bottom: -104px;
  background-size: cover;
  z-index: 1;
} */
.abt_innr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.abt_l,
.abt_r {
  width: 48%;
}
/* .abt_l{
  position: relative;
} */
.about_sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 247px;
  width: 57.5rem;
  height: 40rem;
  background-color: #00adef;
}
.cmn_hdr p.bold {
  font-size: 19px;
  font-weight: 500;
}

#about_counter {
  max-width: 100%;
  display: flex;
  margin-top: 35px;
  gap: 5rem;
}
#about_counter li {
  border-left: 2px solid #a64785;
  padding-left: 15px;
}

#about_counter span.percent.rr:after {
  content: "+";
  display: inline-block;
}
#about_counter li span {
  font-size: 6rem;
  font-family: "Rubik", serif;
  font-weight: 600;
}
.counter h6 {
  color: #a64785;
  font-size: 2.4rem;
  font-family: "Rubik", serif;
  font-weight: 500;
}
.about_sec.cmn_pdding {
  padding-block: 0 20rem;
  position: relative;
}
.about_sec::after {
  content: "";
  position: absolute;
  background: url(../images/abc.png) no-repeat;
  width: 100%;
  height: 240px;
  bottom: -100px;
}
.application_sec {
  background: #f0f0f0;
}
.appli_innr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.appli_box {
  position: relative;
  transition: 0.4s ease-in-out;
}
.appli_box:hover {
  transform: scale(1.06);
}
.aqppli_text {
  position: absolute;
  bottom: 10px;
}
/* .banner_sec::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: #11b0fb;
  } */
.aqppli_text {
  position: absolute;
  bottom: 64px;
  width: max-content;
  left: 0;
  right: 0;
  margin: auto;
}
.color_text {
  margin: auto;
  width: auto;
  display: block;
  /* border: 1px solid #fff; */
}
.color_text img {
  margin: auto;
}
.aqppli_text.cmn_hdr.wht p {
  color: #ffff00 !important;
}
.service_sec {
  position: relative;
}
.appli_innr.srvc_innr .aqppli_text {
  margin: unset;
  left: 30px;
  width: 85%;
  bottom: -20px;
}
.srvc_innr .appli_img img {
  border-radius: 35px;
}
.srvc_innr .aqppli_text.cmn_hdr h3 {
  color: #ffff00;
  font-weight: 500;
  font-size: 3rem;
}
.srvc_innr .aqppli_text.cmn_hdr p {
  color: #fff;
  padding-bottom: 20px;
}
.appli_innr.srvc_innr {
  margin-top: 5rem;
}
.service_sec::after {
  content: "";
  background: url(../images/srvc_off_aftr.png) no-repeat;
  position: absolute;
  bottom: -220px;
  width: 100%;
  height: 231px;
  z-index: 1;
}
.bfr_aftr {
  background: #efefef;
  margin-top: 217px;
  padding-top: 0;
}
.bfr_aftr_innr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 3.5rem;
}
.ing_l,
.ing_r {
  width: 50%;
  position: relative;
}
.ing_l .imgae_div img {
  border-top-left-radius: 70px;
  border-bottom-left-radius: 70px;
  overflow: hidden;
}
.ing_r .imgae_div img {
  border-top-right-radius: 70px;
  border-bottom-right-radius: 70px;
  overflow: hidden;
}
.bfr_aftr_innr::after {
  content: "";
  background: url(../images/bfr_after.png) no-repeat;
  width: 102px;
  height: 146px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.bfr_txt {
  position: absolute;
  top: 20px;
  right: 9px;
  padding: 12px 30px;
  background-color: #fff;
}
.bfr_txt h5 {
  color: #000;
  font-size: 19px;
  text-transform: uppercase;
  font-family: "Rubik", serif;
  font-weight: 500;
  letter-spacing: 1.1px;
}
.ing_r .bfr_txt {
  left: 0;
  right: auto;
}
.reasn_img {
  width: 47rem;
  height: 47rem;
  margin: auto;
  position: relative;
}
.reasn_img img {
  width: 100%;
  height: 100%;
}
.reason_innr {
  margin-top: 5rem;
}
.reasns_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 507px;
  z-index: 1;
  left: -405px;
}
.r_span_img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.reasns_div.cmn_hdr h6 {
  padding-bottom: 0;
}
.r_span_img::after {
  content: "";
  width: 100px;
  top: 50px;
  background-color: #ccc;
  left: -100px;
  position: absolute;
  height: 2px;
}
.r_span_img::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #11b0fb;
  border-radius: 50%;
  top: 46px;
  left: -110px;
  position: absolute;
}
.reasns_div:nth-child(1) {
  top: 50px;
  text-align: right;
}
.reasns_div:nth-child(2) {
  top: 194px;
  left: -369px;
  text-align: right;
  width: 420px;
}
.reasns_div:nth-child(2) .r_span_img::before,
.reasns_div:nth-child(5) .r_span_img::before {
  background: #a54785;
}
.reasns_div:nth-child(3) {
  top: 345px;
  left: -439px;
  text-align: right;
  width: 560px;
}
.reasns_div:nth-child(3) .r_span_img::before,
.reasns_div:nth-child(6) .r_span_img::before {
  background: #e9652b;
}
.reasns_div:nth-child(4) {
  top: 50px;
  right: -375px;
  text-align: left;
  width: 480px;
  left: auto;
  flex-direction: row-reverse;
}
.reasns_div:nth-child(4) .r_span_img::after,
.reasns_div:nth-child(5) .r_span_img::after,
.reasns_div:nth-child(6) .r_span_img::after {
  left: auto;
  right: -100px;
}
.reasns_div:nth-child(4) .r_span_img::before,
.reasns_div:nth-child(5) .r_span_img::before,
.reasns_div:nth-child(6) .r_span_img::before {
  top: 46px;
  left: auto;
  right: -110px;
}
.reasns_div:nth-child(5) {
  top: 194px;
  left: auto;
  right: -490px;
  flex-direction: row-reverse;
  width: 545px;
}
.reasns_div:nth-child(6) {
  top: 345px;
  left: auto;
  right: -465px;
  flex-direction: row-reverse;
  width: 585px;
}
.reason_choose {
  position: relative;
}
.reason_choose::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: url(../images/mo.webp) no-repeat;
  width: 100%;
  bottom: -150px;
  height: 24.1rem;
}
.clnt_innr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 100px;
}
.clint_div {
  /* width: 24%; */
  background: #fd6955;
  border-bottom: 8px solid #e9652b;
  border-radius: 200px;
  min-height: 600px;
}
.c_rvw {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding-inline: 2rem;
  text-align: center;
  margin-top: -24px;
  position: relative;
  top: -30px;
}
.clnt_img {
  width: 11.1rem;
  height: 11rem;
  margin-inline: auto;
}
.clnt_img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #fff;
  object-fit: cover;
}
.clnt_quote,
.ggle_i {
  width: max-content;
  margin-inline: auto;
}
.c_rvw p {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 19px;
  color: #fff;
}
.rating span {
  color: yellow;
}
.clnt_sec {
  margin-top: 150px;
  position: relative;
  padding-bottom: 9rem;
}
.client_rvw_btn {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  margin-inline: auto;
}
.client_rvw_btn img {
  cursor: pointer;
}
.client_rvw_btn_prev img {
  transform: rotate(180deg);
}
.client_rvw_btn_prev1 img {
  transform: rotate(180deg);
}
.clnt_quote {
  width: 6rem;
  height: 5rem;
}
.clnt_quote img {
  width: 100%;
  height: 100%;
}
/* m 8.2.25 */
/* .glry_img{
  width: 71.8rem;
  height: 47.0rem;
} */
.glry_img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.explore_gllry_sec {
  position: relative;
  padding-bottom: 14px;
}
.explore_gllry_sec .client_rvw_btn img {
  filter: brightness(0.5);
}
.center_btn {
  margin-top: 5rem;
  margin-inline: auto;
  width: max-content;
}
.explore_gllry_sec::after {
  content: "";
  background: url(../images/srvc_off_aftr.png) no-repeat;
  position: absolute;
  bottom: -220px;
  width: 100%;
  height: 231px;
  z-index: 1;
}
.hw_hngng_wrks_sec {
  background-color: #efefef;
  margin-top: 140px;
  position: relative;
  padding-bottom: 5rem;
}
.hngng_innr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.hng_txt {
  position: relative;
  top: -50px;
}
.cmn_hdr.hng_txt h4 {
  text-transform: uppercase;
  color: #fff;
}
.cmn_hdr.hng_txt p {
  font-weight: 500;
  padding-block: 25px 0;
}
.hw_hngng_wrks_sec .center_btn {
  margin-top: 20px;
}
.hw_hngng_wrks_sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  /* background: url(../images/bg.webp) no-repeat; */
  background: url(../images/prmnt_aftr.webp) no-repeat;
  width: 100%;
  bottom: -274px;
  height: 275px;
}
.clnt_sltn_innr {
  position: relative;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  margin-top: 220px;
}
.clnt_l {
  width: 40%;
}
.clnt_r {
  width: 555px;
  position: relative;
  z-index: 11;
}
.clnt_r h2 {
  font-size: 4.8rem;
  font-family: "Rubik", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
}
.frm_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.frm_row input,
.frm_row textarea {
  width: 49%;
  border: 1px solid #ec9c77;
  background: transparent;
  padding: 15px 20px;
  color: #fff;
  border-radius: 25px;
  font-size: 16px;
  font-family: "Rubik", serif;
  font-weight: 400;
}
.frm_row input::placeholder,
.frm_row textarea::placeholder {
  color: #fff;
  font-size: 16px;
  font-family: "Rubik", serif;
  font-weight: 400;
}
.frm_row.sub input,
.frm_row.sub textarea {
  width: 100%;
}
.frm_row.sub textarea {
  height: 170px;
  resize: none;
}
.clnt_r .cmn_btn.wht {
  margin-inline: auto;
  margin-top: 30px;
}
.frm_div {
  width: 90%;
  margin-inline: auto;
  margin-top: 23px;
  margin-right: 40px;
}
.center_img {
  position: absolute;
  left: 44%;
  z-index: 1;
}
.get_sec {
  margin-top: 225px;
}
.get_sec .cmn_btn {
  width: max-content;
  margin-inline: auto;
}
.footer {
  background-color: #000;
  padding-bottom: 30px;
}
.ftr_innr {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #37393f;
  padding-bottom: 5rem;
}
.ftr_div {
  width: 19%;
}
.ftr_div p {
  color: #928f8f;
  font-size: 16px;
  font-family: "Rubik", serif;
  font-weight: 400;
}
.hdr h4 {
  color: #fff;
  font-size: 20px;
  font-family: "Rubik", serif;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.ftr_img img {
  margin-bottom: 15px;
}
.ftr_div ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.ftr_div ul li a,
.ftr_div ul li span {
  color: #928f8f;
  font-size: 16px;
  font-family: "Rubik", serif;
  font-weight: 400;
}
.ftr_div ul li span.spn_img {
  background-color: #131a32;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: 0.5s ease-in-out;
}
.ftr_div:nth-child(2) {
  width: 25%;
}
.ftr_div:nth-child(1) {
  width: 23%;
}
.ftr_div:nth-child(3),
.ftr_div:nth-child(4) {
  width: 15%;
}
.ftr_div ul li a:hover {
  color: #ffff00;
}
.ftr_div ul li:hover span.spn_img {
  transform: rotate(280deg);
}
.ftr_inpt {
  margin-block: 20px;
}
.ftr_inpt input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #37393f;
  color: #b9b9bc;
  font-size: 14px;
  font-weight: 400;
  font-family: "Rubik", serif;
}
.ftr_inpt input {
  width: 100%;
  background-color: transparent;
  border: 1px solid #37393f;
  color: #b9b9bc;
  font-size: 14px;
  font-weight: 400;
  font-family: "Rubik", serif;
  padding: 15px 15px;
  border-radius: 25px;
}
.footer hr {
  color: #00adef;
}
.btm_ftr p,
.btm_ftr p a {
  padding-top: 3rem;
  color: #928f8f;
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", serif;
  text-align: center;
}
.btm_ftr p a:hover {
  color: #ffff00;
}
.abt_imgg {
  width: 70.6rem;
  height: 70.5rem;
}
.abt_imgg img {
  width: 100%;
  height: 100%;
}
.clnt_sltn_innr::after {
  content: "";
  position: absolute;
  width: 584px;
  height: 626px;
  background: #e9652b;
  top: -37px;
  right: 1px;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
  z-index: 0;
}
.cntct_sltn_sec {
  position: relative;
}
.cntct_sltn_sec::after {
  content: "";
  position: absolute;
  background: url(../images/sltn_aftr.webp) no-repeat;
  bottom: -225px;
  width: 100%;
  height: 22.9rem;
}
.nav-link:hover {
  color: #ffff00;
}
.dropdown-menu.servive_drp.show {
  background: #0000ff4d;
  padding: 0;
  left: 18px;
  border: 1px solid red;
  border-radius: 10px;
  top: 40px;
}
.servive_drp .dropdown-item {
  font-size: 17px;
  font-family: "Rubik", serif;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #e33d3b;
  padding-block: 10px;
}
.dropdown-item:last-child {
  border-bottom: none;
}

.ggle_div {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  left: 204px;
  bottom: -43px;
}
.ggle_div .rating span {
  color: #f4b85a;
  font-size: 20px;
}
.ggle_div img {
  margin: auto;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 5px;
}
.ggle_div h5 {
  font-size: 20px;
  font-family: "Rubik", serif;
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
}
.ggle_div h5 span {
  font-weight: 600;
  font-size: 22px;
}
/* holiday(11.2.25) */

/* m 11.2.25 */
.hldy .bnr_content {
  width: 680px;
}
.abt_cnt_sec {
  background-color: #f0f0f0;
  position: relative;
  padding-block: 3rem 8rem;
}
.hoilid_instl {
  display: flex;
  justify-content: space-between;
}
.holi_rgt {
  position: relative;
}
.holi_rgt.clnt_r::after {
  content: "";
  position: absolute;
  width: 583px;
  height: 738px;
  background: #00aeef;
  top: -90px;
  right: 1px;
  border-bottom-left-radius: 300px;
  border-bottom-right-radius: 300px;
  z-index: -1;
}
.holi_lft {
  width: 48%;
}
.abt_cnt_ing {
  position: absolute;
  top: -174px;
  right: 387px;
  z-index: 11;
}
.abt_cnt_ing img {
  border-radius: 22px;
}
.abt_cnt_sec .frm_row input,
.abt_cnt_sec .frm_row textarea {
  border-color: #fff;
}
.holi_rgt.clnt_r {
  width: 576px;
}
.big_fnt h2 {
  font-size: 15rem;
  font-weight: 600;
  font-family: "Rubik", serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: -17px;
  text-align: center;
}
.big_fnt {
  position: relative;
  bottom: -118px;
}
.benefit_sec .r_span_img {
  width: 16px;
  height: 16px;
  background: #00aeef;
  border-radius: 50%;
}
.benefit_sec .r_span_img::after {
  background: url(../images/dooted.png) no-repeat;
}
.benefit_sec .r_span_img::before {
  background: url(../images/red_check.png) no-repeat;
}
.benefit_sec .reasns_div:nth-child(1) {
  left: -630px;
  width: 719px;
}
.benefit_sec .reasns_div:nth-child(2) {
  left: -599px;
  width: 611px;
}
.benefit_sec .reasns_div:nth-child(3) {
  left: -610px;
  width: 650px;
}
.reasns_div:nth-child(4) {
  width: 562px;
  right: -643px;
}
.benefit_sec .r_span_img::after,
.benefit_sec .reasns_div:nth-child(2) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(3) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(4) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(7) .r_span_img::after {
  width: 102px;
  top: 9px;
  left: -105px;
}
.benefit_sec .r_span_img::before,
.benefit_sec .reasns_div:nth-child(2) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(3) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(4) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(7) .r_span_img::before {
  width: 29px;
  height: 29px;
  top: -8px;
  left: -138px;
}
.benefit_sec .reasns_div:nth-child(2) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(3) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before {
  background: url(../images/red_check.png) no-repeat;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before {
  left: 137px;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img,
.benefit_sec .reasns_div:nth-child(5) .r_span_img,
.benefit_sec .reasns_div:nth-child(6) .r_span_img {
  position: relative;
  left: -154px;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::after {
  left: 20px;
  transform: rotate(180deg);
}
.benefit_sec .reasns_div:nth-child(4) {
  width: 482px;
  right: -562px;
}
.benefit_sec .reasns_div:nth-child(5) {
  right: -615px;
  width: 545px;
}
.benefit_sec .reasns_div:nth-child(6) {
  right: -594px;
  width: 503px;
}
.benefit_sec .reasns_div:nth-child(7) {
  flex-direction: column-reverse;
  width: max-content;
  left: -229px;
  bottom: -152px;
}
.benefit_sec .reasns_div:nth-child(7) .r_span_img::after {
  top: 70px;
  transform: rotate(270deg);
  left: -42px;
  height: 2px;
}
.benefit_sec .reasns_div:nth-child(7) .r_span_img::before {
  left: -4px;
  top: 75px;
}
.benefit_sec .reasns_div:nth-child(7) h6 {
  margin-top: 95px;
}
.cnt_btn {
  margin-block: 190px 0;
}
.cnt_btn a {
  margin-inline: auto;
}
.benefit_sec {
  position: relative;
}
.benefit_sec::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  background: url(../images/benefit.jpg) no-repeat;
  height: 271px;
  width: 100%;
}
.hustel_sc {
  background: url(../images/hustel_bg.png) no-repeat;
  width: 100%;
  height: 1030px;
  background-size: 100% 100%;
}
.abt_cnt_sec .cmn_hdr h2 {
  position: relative;
}
.abt_cnt_sec .cmn_hdr h2::before {
  content: "";
  background: url(../images/tringle.jpg) no-repeat;
  top: -90px;
  left: 86px;
  position: absolute;
  width: 17.7rem;
  height: 10.5rem;
  z-index: 1;
}
.hustel_l::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 270px;
  background: #e9652b;
  top: -61px;
  left: 34px;
  z-index: 0;
}
.hustel_innr {
  display: flex;
  justify-content: space-between;
  padding-top: 9rem;
}
.hsl_r {
  width: 40%;
}
.hustel_l {
  position: relative;
}
.hustel_l::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 281px;
  background: #e9652b;
  top: -61px;
  left: 34px;
  z-index: 0;
}
.hsl_l_img {
  position: relative;
}
.blu_txt_bg {
  margin-top: 9rem;
  background-color: #0a122a;
  padding: 2rem 3rem;
  border-radius: 20px;
}
.hdrr {
  display: flex;
  justify-content: space-between;
}
.cmn_hdr .hdrr h3 {
  color: #fff;
  padding-bottom: 0;
}
.cmn_hdr .blu_txt_bg p {
  color: #fff;
  padding-bottom: 0;
  padding-top: 15px;
}
.hsl_l_img {
  width: 66.2rem;
  height: 66.8rem;
}
.hsl_l_img img {
  width: 100%;
  height: 100%;
}
.why_h {
  position: absolute;
  bottom: 64px;
  width: 77%;
  left: 0;
  right: 0;
  margin: auto;
}
.why_h.cmn_hdr h3 {
  font-size: 3rem;
}
.why_chs_hld_sec {
  position: relative;
  padding-top: 15px;
}
.why_chs_hld_sec::after {
  content: "";
  position: absolute;
  background: url(../images/abc.png) no-repeat;
  width: 100%;
  height: 240px;
  bottom: -147px;
}
.why_chs_hld_sec .cnt_btn {
  margin-top: 50px;
}
.advange_of_hldy_sec {
  background: #f0f0f0;
  margin-top: 133px;
  padding-top: 0;
  position: relative;
}
.red_check {
  color: #e33e3b;
  display: block;
  font-size: 40px;
  padding-bottom: 12px;
}
.advange_of_hldy_sec .appli_innr.srvc_innr .aqppli_text {
  bottom: auto;
  top: 35px;
}

.advange_of_hldy_sec::after {
  content: "";
  position: absolute;
  background: url(../images/hg.jpg) no-repeat;
  bottom: -170px;
  width: 100%;
  height: 24rem;
}
.get_sec.hldy {
  margin-top: 80px;
}
.benefit_sec .reasns_div:nth-child(2) .r_span_img::after {
  width: 50px;
  left: -48px;
}
.benefit_sec .reasns_div:nth-child(2) .r_span_img::before {
  left: -63px;
}
.benefit_sec .reasns_div:nth-child(3) {
  left: -565px;
  width: 604px;
}
.benefit_sec .reasns_div:nth-child(3) .r_span_img::after {
  width: 74px;
  left: -73px;
}
.benefit_sec .reasns_div:nth-child(3) .r_span_img::before {
  left: -92px;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img {
  left: -166px;
}
.benefit_sec .reasns_div:nth-child(5) .r_span_img::after {
  width: 50px;
}
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before {
  left: 67px;
}
.benefit_sec .reasns_div:nth-child(5) .r_span_img {
  left: -82px;
}
.benefit_sec .reasns_div:nth-child(6) .r_span_img::after {
  width: 75px;
}
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before {
  left: 95px;
}
.benefit_sec .reasns_div:nth-child(6) .r_span_img {
  left: -130px;
}
.advange_of_hldy_sec .cnt_btn {
  margin-block: 60px 0;
}
/* christmas */

/* 11 late m  */
.hustel_sc.hng .hsl_r {
  width: 50%;
}

.hustel_sc.hng .hsl_l_img {
  width: 65rem;
  height: 65rem;
}
.hustel_sc.hng .hustel_innr {
  align-items: center;
}
.hustel_sc.hng .blu_txt_bg {
  margin-top: 5rem;
  border: 5px solid #fff;
  border-radius: 30px;
}
.benefit_sec.hng {
  z-index: 4;
}
.hustel_sc.hng {
  position: relative;
  background: #f0f0f0;
  height: 700px;
  z-index: 1;
}
.prblm_secc {
  margin-top: -92px;
  position: relative;
  padding-bottom: 0;
}
.hustel_sc.hng .cmn_hdr .blu_txt_bg p {
  width: 80%;
}
.prllm_innr {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: max-content;
  margin-inline: 0 auto;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
}
.prblm_secc .cnt_btn {
  margin-top: 20px;
}
/* m 12.2.25 */
.instl_incld_sec {
  background: #f0f0f0;
  position: relative;
}
.instll_inerr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2rem;
  margin-top: 4rem;
}
.i_div {
  width: 19%;
  position: relative;
  transition: 0.5s ease all;
}
.i_image {
  width: 100%;
  margin-inline: auto;
}
.i_image img {
  width: 100%;
}
.i_texts {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.i_texts span {
  color: #ed1b23;
  font-size: 45px;
  display: flex;
  justify-content: center;
}
.i_texts h6 {
  color: #ffff00;
  font-size: 20px;
  font-family: "Rubik", serif;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
.cus_nav_outr.outdr_hdr .cnt_btn {
  margin-block: 0 0;
}
/* .cnt_btn {
  margin-block: 0 0;
} */
.i_div:hover {
  transform: scale(1.04);
}
.instl_incld_sec::after {
  content: "";
  position: absolute;
  background: url(../images/hg.jpg) no-repeat;
  bottom: -170px;
  width: 100%;
  height: 24rem;
}
.new_btn {
  margin-top: 4rem;
}
.new_btn a {
  margin-inline: auto;
}
.benefit_sec.hng.christ .reasns_div:nth-child(1) {
  left: -511px;
  width: 597px;
  top: 22px;
}

.benefit_sec.hng.christ .reasns_div:nth-child(2) {
  left: -503px;
  width: 524px;
  top: 132px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(3) {
  left: -513px;
  width: 528px;
  top: 252px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(3) .r_span_img::after {
  width: 65px;
  left: -58px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(3) .r_span_img::before {
  left: -70px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(7) {
  flex-direction: row;
  width: 543px;
  left: -470px;
  bottom: 35px;
  text-align: right;
  align-items: center;
}
.benefit_sec.hng.christ .reasns_div:nth-child(7) .r_span_img::after {
  top: 9px;
  transform: none;
  left: -103px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(7) .r_span_img::before {
  left: -123px;
  top: -5px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(7) h6 {
  margin-top: 0;
}
.benefit_sec.hng.christ .reasns_div:nth-child(4) {
  width: 445px;
  right: -499px;
  top: 36px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(4) .r_span_img {
  left: -147px;
  top: -19px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(5) {
  right: -462px;
  width: 358px;
  top: 148px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(6) {
  right: -496px;
  width: 405px;
  top: 267px;
}

.benefit_sec.hng.christ .reasns_div:nth-child(6) .r_span_img::after {
  width: 61px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(6) .r_span_img {
  left: -108px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(6) .r_span_img::before {
  left: 69px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(8) {
  flex-direction: row-reverse;
  bottom: 21px;
  right: -457px;
  width: 402px;
  left: auto;
}
.benefit_sec.hng.christ .reasns_div:nth-child(8) .r_span_img {
  left: -134px;
  position: relative;
  bottom: 8px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(8) .r_span_img::after {
  left: 16px;
  transform: rotate(180deg);
}
.benefit_sec.hng.christ .reasns_div:nth-child(8) .r_span_img::before {
  left: 130px;
}
.benefit_sec.hng.christ ::after {
  bottom: -200px;
}
/* christmas end */

/* outdoor led light */
/* shreyasi(11.2.25) */
.chrstmas_bnr {
  position: relative;
}
.chrstmas_bnr::after {
  position: absolute;
  content: "";
  background: url(../images//chrstmas_bnr_aftr.webp) no-repeat;
  width: 100%;
  height: 100%;
  margin-top: -165px;
}
.chrstmas_bnr .bnr_image {
  position: relative;
  z-index: 9;
}
.chrstmas_bnr .bnr_content,
.chrstmas_bnr .bnr_rigt_img {
  z-index: 99;
}
.chrstmas_bnr .ggle_div {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  z-index: 99;
  bottom: -725px;
  left: auto;
  right: 135px;
}
.chrstmas_cntct .clnt_sltn_innr {
  margin-top: 0;
}
.chrstmas_cntct .clnt_sltn_innr::after {
  background: #00adef;
  width: 579px;
}
.chrstmas_cntct .clnt_l {
  width: 48%;
}
.cntct_sltn_sec.chrstmas_cntct {
  z-index: 99;
}
.cntct_sltn_sec.chrstmas_cntct::after {
  display: none;
}
.cntct_sltn_sec.chrstmas_cntct .clnt_r {
  margin-top: 0;
}
.cntct_sltn_sec.chrstmas_cntct .frm_row input,
.frm_row textarea {
  border: 1px solid #ec9c77;
}
.cntct_sltn_sec.chrstmas_cntct {
  background-color: #efefef;
}
.cntct_sltn_sec.chrstmas_cntct.cmn_pdding {
  margin-top: 58px;
  padding-top: 0;
  padding-bottom: 0;
}
.cntct_sltn_sec.chrstmas_cntct .cmn_hdr h2 {
  position: relative;
}
.cntct_hdng_head {
  position: absolute;
  top: -84px;
  left: 53px;
}
.cntct_outdr_big_text h2 {
  font-size: 15rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 0.7;
}
.cntct_sltn_sec.chrstmas_cntct .clnt_sltn_innr {
  margin-bottom: 73px;
}
.outdoor_benefit .reasn_img {
  position: relative;
}
.outdoor_benefit .bnft_logo {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
}
.outdoor_benefit .reason_innr {
  margin-top: 2rem;
}
.outdoor_benefit .cmn_hdr h6 {
  font-size: 19px;
}

/* moumi start */
.benefit_sec .r_span_img {
  width: 16px;
  height: 16px;
  background: #00aeef;
  border-radius: 50%;
}
.benefit_sec .r_span_img::after {
  background: url(../images/dooted.png) no-repeat;
}
.benefit_sec .r_span_img::before {
  background: url(../images/red_check.png) no-repeat;
}
.benefit_sec .reasns_div:nth-child(1) {
  left: -650px;
  width: 719px;
}
.benefit_sec .reasns_div:nth-child(2) {
  left: -705px;
  width: 719px;
}
.benefit_sec .reasns_div:nth-child(3) {
  left: -593px;
  width: 650px;
}
.reasns_div:nth-child(4) {
  width: 562px;
  right: -643px;
}
.benefit_sec .r_span_img::after,
.benefit_sec .reasns_div:nth-child(2) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(3) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(4) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(7) .r_span_img::after {
  width: 102px;
  top: 9px;
  left: -105px;
}
.benefit_sec .r_span_img::before,
.benefit_sec .reasns_div:nth-child(2) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(3) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(4) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(7) .r_span_img::before {
  width: 29px;
  height: 29px;
  top: -8px;
  left: -138px;
}
.benefit_sec .reasns_div:nth-child(2) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(3) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before {
  background: url(../images/red_check.png) no-repeat;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::before,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::before {
  left: 137px;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img,
.benefit_sec .reasns_div:nth-child(5) .r_span_img,
.benefit_sec .reasns_div:nth-child(6) .r_span_img {
  position: relative;
  left: -150px;
}
.benefit_sec .reasns_div:nth-child(4) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(5) .r_span_img::after,
.benefit_sec .reasns_div:nth-child(6) .r_span_img::after {
  left: 20px;
  transform: rotate(180deg);
}
.benefit_sec .reasns_div:nth-child(4) {
  width: 510px;
  right: -589px;
}
.benefit_sec .reasns_div:nth-child(5) {
  right: -681px;
  width: 545px;
}
.benefit_sec .reasns_div:nth-child(6) {
  right: -620px;
  width: 526px;
}
.benefit_sec .reasns_div:nth-child(7) {
  flex-direction: column-reverse;
  width: max-content;
  left: -249px;
  bottom: -152px;
}
.benefit_sec .reasns_div:nth-child(7) .r_span_img::after {
  top: 70px;
  transform: rotate(270deg);
  left: -42px;
  height: 2px;
}
.benefit_sec .reasns_div:nth-child(7) .r_span_img::before {
  left: -4px;
  top: 75px;
}
.benefit_sec .reasns_div:nth-child(7) h6 {
  margin-top: 95px;
}
.cnt_btn {
  margin-block: 190px 0;
}
.cnt_btn a {
  margin-inline: auto;
}
.benefit_sec {
  position: relative;
}
.benefit_sec::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 0;
  background: url(../images/benefit.jpg) no-repeat;
  height: 271px;
  width: 100%;
}
/* moumi end */
/* s.c */
.benefit_sec .bnft_innr .reasns_div:nth-child(2) {
  left: -503px;
  width: 514px;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(1) {
  left: -514px;
  width: 592px;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(3) {
  left: -497px;
  width: 544px;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(7) {
  width: 598px;
  left: -67px;
  bottom: -145px;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(7) .r_span_img::after {
  top: 47px;
  left: -20px;
  width: 55px;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(7) h6 {
  text-align: center;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(4) {
  width: 385px;
  right: -461px;
}
.benefit_sec .bnft_innr .reasns_div:nth-child(5) {
  right: -495px;
  width: 354px;
}

.benefit_sec .bnft_innr .reasns_div:nth-child(6) {
  right: -457px;
  width: 348px;
}
.benefit_sec.outdoor_benefit {
  background-color: #fff;
}
.outdr_hdr .cnt_btn {
  margin-block: 0;
}
.outdr_hdr .nav_area {
  justify-content: flex-start;
}
.outdr_trim.about_sec::before {
  display: none;
}
.outdr_trim.about_sec .abt_imgg {
  width: 66.8rem;
  height: 66.8rem;
}
.outdr_trim.about_sec .abt_l {
  margin-top: 143px;
  margin-left: 8px;
}
.outdr_trim.about_sec.cmn_pdding {
  position: static;
}
.get_sec.outdr_get {
  margin-top: 0;
}
.get_sec.outdr_get.cmn_pdding {
  padding-top: 0;
}
.outdr_trim.about_sec::after {
  display: none;
  background: none;
}
/* outdoor end */
/* shreyasi(holiday) */
.hldy_lght .holi_rgt.clnt_r::after {
  width: 589px;
}
.hldy_hdr .cnt_btn {
  margin-top: 0;
}
/* christmas(sc) */
/* .chrstms_hustl .blu_txt_bg {
  margin-top: 2rem;
} */

/* fixing css  moumi*/
.benefit_sec.hng.christ .reasns_div:nth-child(2) .r_span_img::after {
  width: 50px;
  left: -48px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(2) .r_span_img::before {
  left: -76px;
}
.benefit_sec.hng.christ .reasn_img {
  width: 51.9rem;
  height: 51.9rem;
}
.benefit_sec.hng.christ .reasns_div:nth-child(5) .r_span_img::after {
  width: 50px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(5) .r_span_img::before {
  left: 67px;
}
.benefit_sec.hng.christ .reasns_div:nth-child(5) .r_span_img {
  left: -122px;
  top: -6px;
}
.hustel_sc.hng .hustel_l::before {
  left: 42px;
  width: 584px;
}

.mob_img {
  display: none;
}
.mob_imgg {
  display: block;
}
/* s.c(13.2.25) */
.cntct_sltn_sec.chrstmas_cntct .frm_row input,
.chrstmas_cntct .frm_row textarea {
  border: 1px solid #fff;
}
.abt_mbl,
.reasn_ln_mbl {
  display: none;
}
.reasns_div:nth-child(4) {
  width: 489px;
  right: -385px;
}
/* md(13.2) */
.mob_img {
  display: none;
}
.mob_imgg {
  display: none;
}
.banner_sec.hldy .mdls_img {
  display: none;
}
.benefit_sec.newholiday .reasn_img .reasn_ln {
  display: block;
}
.benefit_sec.newholiday .reasn_ln_mbl.holiday_mbl {
  display: none;
}
.navbar-expand-lg .navbar-nav .nav-link:focus {
  color: #ffff00;
}
.servive_drp .dropdown-item:hover,
.servive_drp .dropdown-item:focus,
.servive_drp .dropdown-item:focus-visible,
.servive_drp .dropdown-item:focus-within {
  color: #ffff00;
}

.benefit_sec.hng.christ.christt .reasn_ln {
  display: block;
}
.benefit_sec.hng.christ.christt .reasn_ln_mbl.christmas_mbl {
  display: none;
}
.chri_bnr_mobile {
  display: none;
}
.chri_bnr_mdl {
  display: none;
}
.bnr_image_desktop,
.bnr_image_mobile {
  display: none;
}
.prblmii_img_mbl {
  display: none;
}
/* shreyasi */
/* contact us(17.2.25) */
.new_cntct_info .abt_cnt_ing {
  left: 400px;
  right: auto;
  top: -262px;
}
.cntct_crcl_bnr_img {
  position: absolute;
  bottom: -20px;
  right: 189px;
}
/* .new_cntct_info .holi_rgt.clnt_r::after {
  width: 574px;
  right: -1px;
} */
.new_cntct_info .holi_rgt.clnt_r::after {
  width: 578px;
  right: -13px;
}
.new_cntct_info .holi_rgt.clnt_r {
  margin-top: -80px;
}
.new_cntct_info .holi_lft {
  margin-top: 60px;
}
.abt_cnt_sec.new_cntct_info .cmn_hdr h2::before {
  left: 71px;
}
.cntct_info_total_dtls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.contact__info {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact__info__text h6,
.contact__info__text a {
  font-family: "Rubik", serif;
  font-size: 18px;
  font-weight: 400;
  color: #444343;
}
.contact__info__text h6 {
  padding-bottom: 0;
}
.contact__Info__img span {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background-color: #fff;
}
.contact__Info__img span svg {
  font-size: 28px;
}
.contact__info:first-child .contact__Info__img span {
  border: 1px solid #a74c88;
}
.contact__info:nth-child(2) .contact__Info__img span {
  border: 1px solid #ea7a49;
}
.contact__info:last-child .contact__Info__img span {
  border: 1px solid #07afef;
}
.contact__info:last-child .contact__info__text a {
  color: #e33e3b;
  font-weight: 600;
}
.contact__info:last-child .contact__info__text a:hover {
  color: #0c142a;
}
.contact__info:nth-child(2) .contact__info__text a {
  color: #0c142a;
  font-weight: 600;
}
.contact__info:nth-child(2) .contact__info__text a:hover {
  color: #e33e3b;
}
.visit_info {
  border: 3px solid #e9652b;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}
.new_cntct_info .big_fnt {
  margin-top: 55px;
}
.instl_incld_sec.new_visit {
  background-color: transparent;
}
.new_visit.instl_incld_sec::after {
  background: url(../images/visit_aftr.webp) no-repeat;
}
.cntct_tab,
.cntct_mbl{
  display: none;
}
/* gallery & review css(moumi) */
.bnr_rigt_img.gallery {
  top: auto;
  bottom: 0;
}
.photos_innr {
  display: flex
;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3rem;
  margin-top: 40px;
}
.phtos_div {
  width: 48%;
  position: relative;
  transition: 0.4s ease all;
}
.phtos_div:hover{
  transform: scale(1.04);
}
.gallery_photos_sec{
  background: #EFEFEF;
  position: relative;
  padding-bottom: 0;
}
.gallery_photos_sec::before {
  content: "";
  background: url(../images/bg_bfr.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}
.photos_img {
  width: 100%;
  height: 48.4rem;
  border: 1px solid transparent;
  border-radius: 20px;
  overflow: hidden;
}
.photos_img img{
  width: 100%;
  height: 100%;
}
.photos_text {
  position: absolute;
  bottom: 25px;
  left: 20px;
}
.photos_text.cmn_hdr h6{
  text-transform: uppercase;
}
.photos_otr{
  position: relative;
}
.gallery_photos_sec .big_fnt h2 {
  line-height: 0.9;
}
.gallery_photos_sec .big_fnt {
  bottom: 0;
}
.vdeo_play {
  display: flex
;
  text-align: center;
  flex-direction: column;
  position: absolute;
  justify-content: center;
  top: 50%;
  left: 0;
  right: 0;
  margin-inline: auto;
  transform: translateY(-50%);
  display: none;
}
.gllry_div{
  position: relative;
}
.play_img {
  width: 12.1rem;
  height: 11.8rem;
  margin-inline: auto;
}
.play_img img{
  width: 100%;
  height: 100%;
}
.vdeo_play h2{
  font-size: 7.2rem;
  color: #fff;
  font-family: 'Sabila Renytha Regular';
}
.swiper-slide.swiper-slide-active .vdeo_play{
  display: block;
}
.explore_gllry_sec.gallery_page {
  background: url(../images/gallery_sldr_back.webp) no-repeat;
  width: 100%;
  height: 840px;
}
.explore_gllry_sec.gallery_page::after{
  background: url(../images/gallery_get_bfr.png) no-repeat;
}
.get_sec.gallery_pg {
  margin-top: 202px;
}
.customer_review_innr {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 3rem;
  gap: 3rem;
}
.review_div {
  width: 32%;
  background-color: #fff;
  padding: 4rem;
  display: flex
;
  flex-direction: column;
  border-radius: 20px;
  gap: 2rem;
  align-items: center;
  text-align: center;
  transition: 0.4s ease all;
}
.review_div:hover{
  transform: scale(1.04);
}
.img_diiv {
  width: 23.4rem;
  height: 14.3rem;
  position: relative;
}
.img_diiv img{
  width: 100%;
  height: 100%;
}
.cus_img {
  position: absolute;
  left: 0;
  right: 0;
  width: 11.9rem;
  height: 12rem;
  margin-inline: auto;
  top: 10px;
}
.review_div span {
  color: #FFC107;
  font-size: 20px;
}
.review_div p {
  font-style: italic;
  font-family: "Rubik", serif;
  font-size: 18px;
  color: #444343;
  /* min-height: 155px; */
}
.cus_info {
  display: flex
;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid dotted;
  width: 100%;
  border-top: 1px dotted #000;
  padding-top: 2rem;
}
.cus_info h4{
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", serif;
  text-transform: uppercase;
}
.cus_info h6{
  color:#444343;
  font-size: 17px;
  font-weight: 400;
  font-family: "Rubik", serif;
}
.gallery_photos_sec.customer_review::after{
  background: url(../images/review_page_rvw_after.webp) no-repeat;
  content: "";
    position: absolute;
    bottom: -220px;
    width: 100%;
    height: 231px;
    z-index: 1;
}

.review_div span.date{
  font-family: "Rubik", serif;
  color: #948b8b;
  /* font-weight: 500; */
}
.get_sec.review_pg{
  margin-top: 202px;
}
/*moumi 18.2.25  */
	.hustel_sc.hng.christt .hustel_l::before {
    left: 50px !important;
    width: 584px !important;
}
.hustel_sc.hng.christt .hustel_innr {
    padding-top: 12rem !important;
}
.c_rvw p{
	height: 270px !important;
    overflow-y: scroll !important;
}

.c_rvw p.bld{
	height: auto !important;
    overflow-y: none !important;
}
.c_rvw p {
  width: 100% !important;
  height: 232px !important;
  overflow-y: scroll !important;
}

.c_rvw p.bld{
	height:auto !important;
	overflow-y:none !important;

}
.img_diiv{display:none;}

/*  20.2.25 */
.christt  .holi_rgt.clnt_r::after {
  width: 588px;
}
.get_sec.christmass {margin-top:153px;}
.instll_inerr.visit_info iframe
{
width:100%; 
height:600px;
}
/* M 11.3.25 */
.bnr_image img{
  width: 100%;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
  color:#ffff00 !important;
}
.read-more-button {
  color: #00adef;
  padding-top: 10px;
  display: inline-block;
}