.prevent-select {
  -webkit-user-select: none; /* Safari */ /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none; /* Standard syntax */
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav {
  display: flex;
  gap: clamp(60px, 7vw, 115px);
}
header .nav li .link {
  font-size: clamp(14px, 1.3vw, 20px);
}
header .nav li.has_child {
  position: relative;
}
header .nav li.has_child .child {
  position: absolute;
  top: 25px;
  left: 0;
  border-radius: 0.5rem;
}
header .nav li.has_child .child ul li a {
  font-size: clamp(14px, 4vw, 20px);
  white-space: pre;
  width: 100%;
}

.about_section {
  background: url("../../assets/images/about.webp");
  position: relative;
}
.about_section::before {
  background: rgba(0, 0, 0, 0.86);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Portfolio Box SASS Start */
.portfolio_box {
  width: 100%;
  overflow: hidden;
}
.portfolio_box a {
  position: relative;
  transition: 0.2s all linear;
}
.portfolio_box a img {
  transition: 0.2s all linear;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio_box a:hover img {
  transform: scale(1.1);
}
.portfolio_box a:hover::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.portfolio_box a:hover::after {
  content: "Preview";
  position: absolute;
  background: url("../../assets/images/books/search.webp");
  background-repeat: no-repeat;
  height: 160px;
  width: 90px;
  top: -30px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: grid;
  color: #fff;
  text-align: center;
  line-height: 33px;
  background-position: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  z-index: 99;
  margin: auto;
  align-items: end;
  background-size: 70%;
}

/* Portfolio Box SASS End */
.banner_slider .owl-dot {
  display: block;
}
.banner_slider .owl-dots .owl-dot.active span {
  background: #FF8400 !important;
  width: 74px !important;
  height: 4px !important;
}
.banner_slider .owl-dots .owl-dot span {
  background: #8D8D8D !important;
  width: 20px !important;
  height: 4px !important;
}

input,
textarea {
  background-color: #fff;
  max-height: 64px;
  min-height: 46px;
  border: none;
  border-radius: 50px !important;
  padding: 0px 25px;
  color: #1E1E1E;
}
input:focus,
textarea:focus {
  border: none;
  outline: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Poppins";
  color: #1E1E1E;
  font-size: 13px;
}

input::placeholder,
textarea::placeholder {
  color: #1E1E1E;
  font-size: 13px;
  font-family: "Poppins";
}

.lpService .vscomp-ele {
  max-width: 100% !important;
  height: 36px !important;
}
.lpService .vscomp-ele .vscomp-toggle-button {
  padding: 0px 28px;
  color: #1E1E1E;
  height: 45px;
  border-radius: 100px;
  font-size: 13px;
  font-family: "Poppins" !important;
}

/* Banner SASS Start */
/* Banner SASS End */
@keyframes slideShake {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(2px, 1px);
  }
  50% {
    transform: translate(-2px, -1px);
  }
  75% {
    transform: translate(2px, -1px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.banner_form > div .hd1 {
  font-size: 28px;
  margin-bottom: 4px;
}
.banner_form > div .hd2 {
  font-size: 35px;
  line-height: 41px;
}
.banner_form > div input {
  height: 36px;
  font-size: 12px;
}
.banner_form > div input::-moz-placeholder {
  font-size: 12px;
}
.banner_form > div input::placeholder {
  font-size: 12px;
}
.banner_form > div .lpService.vscomp-ele .vscomp-toggle-button {
  height: 36px;
  font-size: 12px;
}
.banner_form > div p {
  font-size: 12px;
  font-weight: 300;
  padding: 0px 5px;
}
.banner_form > div button {
  text-transform: uppercase;
  padding: 4px;
  margin-top: 4px;
}
.banner_form > div form {
  gap: 10px;
}

.brand_inner .brands_element {
  padding-block: 15px;
}

.contact_banner > div {
  max-width: 380px;
}
.contact_banner > div P {
  font-size: 13px;
  padding: 0px 65px;
}
.contact_banner > div input {
  height: 39px;
  font-size: 13px;
}
.contact_banner > div input::-moz-placeholder {
  font-size: 12px !important;
}
.contact_banner > div input::placeholder {
  font-size: 12px !important;
}
.contact_banner > div .lpService.vscomp-ele .vscomp-toggle-button {
  height: 39px;
  font-size: 13px;
}
.contact_banner > div form {
  gap: 10px;
}
.contact_banner > div button {
  margin-top: 5px;
}

@media only screen and (max-width: 992px) {
  .nav_mobile {
    position: absolute;
    top: 56px;
    left: 0px;
    right: 0px;
    background-color: white;
    border-radius: 0px;
    border-top: 1px solid silver;
    display: block;
    z-index: 9999;
    transform: scaleY(0);
    transition: 0.2s all linear;
    transform-origin: top;
  }
  .nav_mobile .nav {
    flex-direction: column;
    padding: 18px 30px 25px 30px;
    gap: 10px;
  }
  .banner-bg .banner_img_wrapper:before {
    height: 159px;
  }
  .show_menu {
    transform: scaleY(1);
  }
  .banner_img {
    width: 50% !important;
    height: 50%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-bg .banner_img_wrapper:before {
    display: none;
  }
  .background_img {
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100vw;
  }
  .banner_right_shape {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .contact_banner > div P {
    padding: 0px 15px;
  }
}
.iti {
  width: 100%;
}

.lpService .vscomp-ele {
  max-height: 40px !important;
  min-height: 42px !important;
  height: 42px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-300px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce-in-down {
  animation: bounceInDown 1.5s ease;
}

.dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dots .dot {
  height: 5px;
  display: inline-block;
  width: 20px;
  background-color: #8D8D8D;
  border-radius: 20px;
  /* same as primary color */
}

.dots .dot.active {
  width: 70px;
  height: 5px;
  background-color: #ff8400;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.banner-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: width 1.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease-in-out;
}
.banner-bg .banner_img_wrapper {
  position: relative;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
}
.banner-bg .banner_img_wrapper:before {
  position: absolute;
  top: 0;
  width: 38vw;
  bottom: 0;
  left: 0;
  content: "";
  background: url("../images/banner/overlay.png");
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.banner_img_wrapper {
  width: 100% !important;
}
.banner_img_wrapper.expand::after {
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 0;
  content: "";
  height: inherit;
  background: #FFF6ED;
  animation-name: beforeSlide;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

@keyframes beforeSlide {
  0% {
    width: 0vw;
  }
  100% {
    width: 61.6vw;
  }
}
@media only screen and (max-width: 992px) {
  .banner-bg {
    width: 100vw !important;
    height: 25vh !important;
  }
  .home_dots {
    display: none;
  }
  .banner-bg::before {
    content: none !important;
    width: 100% !important;
  }
  .banner_img_wrapper.expand::after {
    display: none;
  }
}
.controls button {
  display: none;
}

#customSlider .slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease;
}

#customSlider .slide.active {
  opacity: 1;
  position: relative;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-300%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-line {
  opacity: 0;
}/*# sourceMappingURL=style.css.map */