﻿@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&amp;display=swap";
@import "component.min.css";
@import "layout.min.css";
:root {
  --blue: #16295c;
  --green: #62e389;
  --yellow: #edcf4b;
  --primary: #f89b09;
  --secondry: #2d353f;
  --black: #000;
  --text-color: #828282;
  --white: #fff;
}
::selection {
  background: var(--primary);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.8);
}
.text-yellow {
  color: var(--primary);
}
.text-blue {
  color: var(--blue);
}
.fw-bolder {
  font-weight: 800 !important;
}
html {
  font-size: 16px;
  line-height: 1;
}
body {
  background: var(--white);
  color: #030303;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover,
button:hover {
  text-decoration: none;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0;
  color: var(--text-color);
}
img {
  max-width: 100%;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
section {
  padding: 3rem 0;
  position: relative;
}
h3 {
  font-size: 1.87rem;
  color: var(--secondry);
}
h4 {
  font-size: 2.5rem;
  color: var(--secondry);
  font-weight: 600;
  /* text-transform: capitalize; */
}
h6 {
  font-size: 1.25rem;
  color: var(--secondry);
  font-weight: 600;
  margin-bottom: 1rem;
}
a.logo {
  width: 160px;
}
.home-banner {
  background: url('../images/wall.png') no-repeat center/cover;
  min-height: calc(100dvh - 70.53px);
  padding-top: clamp(2rem, 7vw, 6rem);
  padding-bottom: 2rem;
}
.home-banner .banner-wood {
  margin-top: 40px;
}
@media screen and (min-width: 1800px) {
  .home-banner .banner-wood {
    margin-top: 66px;
  }
}
@media screen and (max-width: 768px) {
  .home-banner h1 {
    font-size: 3rem;
  }
}
.text-green {
  color: var(--green) !important;
}
.bannerContnt h2 {
  font-size: 32px;
}
.bannerContnt h4 {
  font-size: 22px;
}
.bannerContnt li {
  font-size: 16px;
  line-height: 1.5 !important;
}
.slide-cover {
  object-fit: contain;
  z-index: 1;
  margin-bottom: -265px;
  width: 430px;
  height: auto;
  max-width: max-content;
}
@media screen and (min-width: 1400px) {
  .slide-cover {
    margin-bottom: -105px;
    width: 650px;
    height: 428px;
  }
}
.mainBanner {
  background: #2d343f url(../images/banner/banner.webp) center/cover no-repeat;
  height: calc(100% - 8.125rem);
  display: flex;
  align-items: center;
  min-height: 33rem;
  position: relative;
  align-items: center !important;
  padding: 125px 0 0 0;
}
.mainBanner h4 {
  font-size: 2.5rem;
  color: var(--white);
}
.mainBanner h6 {
  font-weight: 600;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: left;
  margin: 1rem 0;
}
.mainBanner p {
  color: var(--white);
  width: 80%;
}
.mainBanner figure {
  margin: 0;
}
.lpBanner {
  height: calc(100% - 4.5rem);
}
.lpBanner h4 {
  margin: 0 0 1rem 0;
}
.lpBanner h4 + h6 {
  margin: 3rem 0 1.5rem;
}
.lpBanner h4 span {
  color: var(--primary);
}
.lpBanner h6 {
  margin: 0;
}
.lpBanner .btnSec {
  margin-top: 4rem;
}
@keyframes disc {
  0% {
    color: var(--primary);
    border-color: var(--primary);
  }
  50% {
    color: var(--white);
    border-color: var(--white);
  }
  100% {
    color: var(--primary);
    border-color: var(--primary);
  }
}
.lpBanner .listStyled {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lpBanner .listStyled li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lpBanner .listStyled li p {
  margin: 0;
}
.lpBanner .listStyled li p strong {
  font-weight: 600;
  color: var(--primary);
  transition: ease all 0.5s;
  animation: blink 1s infinite;
}
@keyframes blink {
  0% {
    color: #fff;
  }
  50% {
    color: var(--primary);
  }
  100% {
    color: #fff;
  }
}
.lpBanner .listStyled li i {
  color: var(--white);
  position: relative;
  top: 4px;
}
.btnSec {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}
.logoSec {
  padding: 2rem 0 2rem;
  background-color: #f5f6f0;
}
.logoSec h3 {
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  margin-bottom: 2rem;
}
.logoSec h2 {
  font-weight: 600;
  font-size: 2.5rem;
}
.logoSlider .slick-slide img {
  margin: 0 auto;
}
.logoSlider {
  pointer-events: none;
}
.logoSec p {
  margin: 0 0 26px;
}
.abtArrow {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: auto;
  bottom: 0;
}
.abtSec figure {
  position: relative;
}
.abtSec {
  margin-bottom: 3rem;
}
.publishSec {
  background: url("../images/WhatAwaits.webp") left top/cover fixed no-repeat;
}
.pubHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.pubBox {
  background: var(--white);
  border-radius: 5px;
  padding: 1.5rem 2rem;
  padding-bottom: 0;
  height: 100%;
  transition: all 0.5s ease;
}
.pubBox .pubHead h6 {
  margin: 0;
}
.publishSec h3 {
  color: var(--white);
  margin-bottom: 2rem;
}
.pubBox:hover {
  transform: scale(1.04);
}
.portfolioSec .slick-prev:before,
.portfolioSec .slick-next:before {
  content: "";
  color: var(--primary);
  font-family: "Font Awesome 5 Pro";
  font-size: 3rem;
}
.portfolioSec .slick-next:before {
  content: "";
}
.portfolioSec .slick-prev.slick-arrow {
  top: -5rem;
  left: 0;
}
.portfolioSec .slick-next.slick-arrow {
  right: 2rem;
  top: -5rem;
}
.portfolioSlider {
  margin-top: 10rem;
}
.portfolioSlider img {
  margin: 0 auto;
}
.portfolioSec .slick-dots {
  bottom: auto;
  top: -7rem;
  display: flex;
  justify-content: center;
}
.portfolioSec .slick-dots li button {
  width: 0.2rem;
  height: 2rem;
  background: var(--secondry);
}
.portfolioSec .slick-dots li.slick-active button {
  width: 0.2rem;
  height: 5rem;
  background: var(--primary);
}
.portfolioSec .btnSec {
  justify-content: center;
  margin-top: 1rem;
}
.publisherSec {
  background: var(--primary);
  padding: 10px 0;
}
.pubLogoCarousel .slick-track {
  display: flex;
  align-items: center;
}
.publisherSec img {
  filter: brightness(0) invert(0);
  margin: 0 auto;
}
.publisherSec:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 30%;
  background: linear-gradient(45deg, var(--primary), rgba(255, 255, 255, 0));
}
.publisherSec:after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 30%;
  background: linear-gradient(270deg, var(--primary), rgba(255, 255, 255, 0));
}
.provideBox {
  background: rgba(0, 0, 0, 0);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  border: 3px solid rgba(0, 0, 0, 0);
  position: relative;
  margin: 0rem 1rem 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.provideBox .themeBtn {
  width: 100%;
  display: none;
  text-align: center;
  opacity: 0;
  transition: all 0.8s ease;
  position: relative;
  bottom: -6rem;
  margin: 1.5rem 0 0;
}
.provideBox h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.provideBox h6 {
  font-size: 1rem;
}
.provideBox ul li i {
  transform: rotate(-34deg);
  color: var(--primary);
}
.provideBox p {
  color: #030303;
}
.provideBox ul li {
  padding: 5px 0;
  display: flex;
  gap: 7px;
  align-items: baseline;
  line-height: 1.5;
}
.provideBox img {
  position: relative;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
  filter: brightness(0);
}
.provideBox::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0 2rem;
  background: var(--primary);
  width: 12%;
  height: 14%;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.provideBox:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  inset: 0;
  z-index: -1;
  background: var(--secondry);
}
.provideBox:hover {
  border-color: var(--primary);
}
.provideBox:hover * {
  color: var(--white);
}
.provideBox:hover img {
  filter: invert(1) brightness(50);
}
.provideBox:hover .themeBtn {
  opacity: 1;
  color: var(--secondry);
  bottom: 0;
}
.provideSec .btnSec {
  justify-content: center;
  margin: 0;
}
.exceptionalSec {
  background: url('../images/WhyAmz.webp') top center/cover fixed no-repeat;
  margin-bottom: 10rem;
}
.exceptionalSec h4 {
  color: var(--white);
  margin-bottom: 3rem;
}
.exceptionalSec ul {
  background: var(--secondry);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin-bottom: -11rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.exceptionalSec ul li {
  color: var(--white);
  text-align: center;
  flex: 0 0 22%;
  line-height: 1.3;
}
.exceptionalSec ul li p span {
  font-weight: 700;
  display: block;
  min-height: 2rem;
}
.exceptionalSec ul li p {
  color: var(--white);
  margin-bottom: 0;
}
.exceptionalSec ul li img {
  display: block;
  margin: 0 auto;
}
.countSec h5 {
  color: var(--text-color);
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.countSec ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5rem;
}
.countSec ul li img {
  margin-bottom: 1rem;
}
.countSec ul li {
  border-right: 2px solid rgba(0, 0, 0, 0.1411764706);
  flex: 0 0 20%;
  padding: 0 1rem;
  text-align: center;
}
.countSec ul li:last-child {
  border: none;
}
.countSec ul li h6 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondry);
}
.bookKindBox h3 {
  font-size: 1.75rem;
  text-align: center;
  display: block;
  margin: 1rem 0;
  color: var(--black);
  font-weight: 600;
  text-transform: capitalize;
}
.bookKindBox {
  margin: 1rem 1rem 3rem;
  position: relative;
}
.bookKindBox img {
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1098039216);
  width: 100%;
}
.bookKindBox figure {
  position: relative;
}
.bookKindBox figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  z-index: 1;
  transition: all 0.5s ease;
}
.bookKindBox:hover figure::before {
  background: rgba(0, 0, 0, 0);
}
.teamSec .title :is(h2, h5) {
  color: var(--black);
}
.teamSec .nav-tabs {
  justify-content: center;
  margin-bottom: 1rem;
  border: none;
  gap: 1.5rem;
}
.teamSec .nav-tabs .nav-link {
  background: var(--primary);
  border-radius: 5px;
  border: 0;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 500;
  position: relative;
  transition: all 0.5s ease;
}
.teamSec .nav-tabs .nav-item.show .nav-link,
.teamSec .nav-tabs .nav-link.active {
  background: var(--secondry);
  color: var(--primary);
}
.teamBox {
  position: relative;
  margin: 2rem 0;
  overflow: hidden;
  transition: ease all 0.5s;
  border-radius: 20px;
}
.teamBox:hover {
  transform: scale(1.05);
}
.teamBox .overlay-text {
  padding: 4px;
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--primary);
  position: absolute;
  z-index: 1;
  border-radius: 0;
  bottom: 0;
  width: 100%;
}
.teamBox .overlay-text:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--theme-color), transparent);
  z-index: 0;
}
.teamBox .overlay-text p {
  font-size: 1rem;
}
.teamBox .overlay-text:after {
  position: absolute;
  inset: 3px 3px 0 3px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  z-index: 1;
}
.teamBox .overlay-text * {
  color: var(--secondry);
  margin: 0;
  position: relative;
  z-index: 2;
  text-transform: capitalize;
}
.teamSec h5 {
  font-weight: 300;
}
.teamBox img {
  width: 100%;
  height: 100%;
}
.teamSec .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  inset: 0.5rem -0.5rem -0.5rem 0.5rem;
  border: 2px solid var(--primary);
  border-radius: 5px;
}
.teamSec .nav-tabs .nav-item.show .nav-link::before,
.teamSec .nav-tabs .nav-link.active::before {
  inset: 0;
  border-color: var(--primary);
}
.teamBox .overlay-text h4 {
  font-size: 1.25rem;
  text-transform: capitalize;
  margin: 0;
}
.teamBox figure {
  margin: 0;
}
.teamBox figure img {
  border-radius: 30px;
}
.contactSec h4 {
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 3rem;
}
.contactSec h3 {
  margin-bottom: 1rem;
}
.contactSec p {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 3rem;
}
.leadForm input:not(.iti__search-input) {
  width: 100%;
  height: 3.5rem;
  padding-left: 1rem;
  border-radius: 10px;
  border: 1px solid #fff;
}
.leadForm .accordionStyle {
  margin: 5px 0 0;
}
.leadForm.accordionStyle .accordion-item {
  margin: 10px 0 0 0;
  border-radius: 10px;
  background: #292f38;
  border: 1px solid rgba(255, 255, 255, 0.568627451);
}
.leadForm .accordionStyle .accordion-item .accordion-button {
  margin: 0;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0);
  color: #383737;
  font-weight: 300;
}
.leadForm
  .accordionStyle
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  filter: grayscale(1);
}
.leadForm
  .accordionStyle
  .accordion-item
  .accordion-button[aria-expanded="true"]:hover {
  color: rgba(216, 216, 216, 0.5019607843);
  background: rgba(0, 0, 0, 0);
}
.leadForm .accordionStyle .accordion-item .accordion-button:hover {
  background: rgba(0, 0, 0, 0);
  color: #9a9a9a;
}
.leadForm .accordionStyle .show .accordion-body {
  background: rgba(0, 0, 0, 0);
  border: none;
  padding-top: 0;
}
.leadForm .servicesList li {
  flex: 0 0 100%;
  margin: 0;
}
.leadForm .servicesList .checkBoxStyle label {
  color: #9a9a9a;
}
.leadForm .accordionStyle .accordion-body {
  background: none;
  border: none;
}
.leadForm .accordionStyle .accordion-item .accordion-button::after {
  filter: brightness(0);
}
.leadForm .form-control:focus,
.leadForm .accordion-button:focus {
  border: none;
}
.leadForm .accordionStyle .accordion-item {
  background: #fff;
  border-radius: 10px;
  margin: 0 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.568627451);
  padding: 0.2rem;
}
.contactSec .accordionStyle .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.168627451);
  background: #f4f4f4;
  border-radius: 10px;
}
.contactSec .accordionStyle .accordion-item .accordion-button {
  margin: 0;
  border-radius: 10px;
  background: #f4f4f4;
}
.leadForm button:not(.iti__selected-country) {
  width: 100%;
  margin: 5px 0;
  border: none;
}
.accordionStyle .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--black);
  border-radius: 30px;
  box-shadow: none;
}
.accordionStyle .accordion-item {
  margin: 5px 0;
  border: none;
  border-radius: 30px;
}
.accordionStyle .accordion {
  --bs-accordion-border-color: none;
}
.accordionStyle .accordion-item:first-of-type .accordion-button,
.accordionStyle .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 30px;
}
.accordionStyle .accordion-button {
  border-radius: 30px;
}
.accordion-button::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  background: var(--primary);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--white);
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(90deg);
}
.ctaSec {
  background: var(--secondry);
  margin-top: 2rem;
  padding: 0;
}
.ctaSec img {
  margin-bottom: -1rem;
  margin-top: -4rem;
  width: 20rem;
  scale: 1.1;
}
.ctaSec h4 {
  color: var(--white);
}
.ctaSec h6 {
  color: var(--primary);
}
.inputGroup {
  margin-top: 1rem;
}
.servicesList li {
  position: relative;
  margin: 0;
  border-radius: 0;
}
.servicesList li input,
.questionList li input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.servicesList .checkBoxStyle {
  display: flex;
  align-items: center;
  position: relative;
  padding: 14px 2rem;
  justify-content: space-between;
}
.servicesList li:last-child .checkBoxStyle {
  border-bottom: 0;
}
.servicesList .checkBoxStyle label {
  font-size: 1.125rem;
  font-weight: 500;
}
.servicesList .checkBoxStyle i {
  font-size: 1.25rem;
  color: #d6d6d6;
}
.servicesList li input:checked + .checkBoxStyle i {
  color: var(--primary);
}
.servicesForm .form-control,
.inputGroup .form-control {
  font-size: 0.9rem;
  height: 3rem;
  border-radius: 10px;
}
.inputGroup label {
  font-size: 1rem;
  font-weight: 500;
}
.inputGroup .form-control {
  margin: 10px 0;
}
.stepTwo .servicesForm .themeBtn2 {
  width: 35%;
}
.contactBoxs .accordion-button::after {
  color: var(--primary);
  background: none;
  font-size: 1.4rem;
  transform: rotate(90deg);
}
.reviewHead {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviewHead img {
  border: 3px solid var(--primary);
  border-radius: 50%;
  width: 5rem;
}
.reviewHead h3 {
  font-size: 1.45rem;
  color: var(--primary);
}
.reviewBox {
  padding: 2rem 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1411764706);
  border-radius: 10px;
  background: var(--white);
  margin: 1rem;
  min-height: 22rem;
  border: 1px solid var(--primary);
}
.reviewBox p {
  margin-top: 2rem;
}
.stepSec {
  background: url(../images/bg/7.webp) top right/cover fixed no-repeat;
}
.stepBox img {
  filter: brightness(0) invert(1);
}
.stepBox h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-top: 2rem;
  text-transform: capitalize;
}
.stepBox p {
  color: var(--white);
  margin: 1rem 0 0;
}
.arrow {
  margin-top: 2rem;
}
.stepSec h4 {
  color: var(--white);
}
.stepSec h6 {
  color: var(--white);
  font-size: 1.26rem;
  letter-spacing: 2px;
  font-weight: 300;
}
.infoBox i {
  font-size: 1.5rem;
  color: var(--primary);
}
.infoBox p {
  font-size: 1.15rem;
  color: var(--primary);
}
.infoBox {
  background: var(--white);
  padding: 10px;
  border-radius: 30px;
  text-align: center;
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(248, 155, 9, 0.2392156863);
}
.contactInner {
  margin-top: -7rem;
}
.blogBox h3 {
  margin: 1.8rem 0;
  font-size: 2.25rem;
  font-weight: 600;
}
.blogBox p {
  color: var(--black);
}
.blogBox .btnBlog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.blogBox .btnBlog span {
  font-size: 1.25rem;
  font-weight: 400;
}
.blogBox .btnBlog .themeBtn {
  padding: 1.25rem 3rem;
}
.blogBox {
  padding: 0 2rem;
  margin: 2rem 0;
}
.blogContnt {
  min-height: 16rem;
}
.portInner .blueBox {
  position: relative;
  padding: 3rem 0 2rem 2rem;
}
.portInner .blueBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.5411764706);
  right: -30%;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.5s ease;
}
.portInner .blueBox-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.5411764706);
  left: -30%;
  border-radius: 30px;
  z-index: -1;
  transition: all 0.5s ease;
  right: -10%;
}
.portInner .blueBox h4 {
  font-size: 2rem;
}
.portInner .blueBox p {
  font-size: 1.11rem;
}
.portInner .blueContnt {
  text-align: center;
}
.portInner .blueContnt h4 {
  color: var(--primary);
  margin-top: 3rem;
  font-size: 1.5rem;
}
.portInner .blueBox:hover::before {
  background: var(--secondry);
}
.portInner .blueBox:hover * {
  color: var(--white);
}
.portInner .blueBox-2 {
  padding: 3rem 2rem 2rem 0;
}
.reviewSlider {
  position: relative;
  padding: 10rem 0 0rem;
}
.portfolioSlider div {
  margin: 0 1rem;
}
.stepBanner {
  position: relative;
}
.stepBanner {
  background: url(../images/banner/33.webp) center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.stepBanner * {
  color: var(--white);
  margin: 0 auto;
}
.stepBanner p {
  font-size: 1.5rem;
}
.stepBanner.congbanner p {
  font-size: 1.25rem;
  margin: 10px 0;
  line-height: 1.4;
}
.stepBanner .bookBannerOne {
  position: absolute;
  left: 10%;
  top: 40%;
  width: 5rem;
}
.stepBanner .bookBannerTwo {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 15rem;
  z-index: 1;
}
.stepBanner .bookBannerThree {
  position: absolute;
  left: 8%;
  bottom: 5%;
  width: 5rem;
  z-index: 1;
}
.servicesForm h2 {
  font-size: 1.65rem;
  background: #fff;
  position: absolute;
  top: -1rem;
  padding: 0 11px;
}
.discountStrip {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  margin: -4.5rem 0 3rem;
  border-radius: 10px;
}
.discountStrip > span {
  font-size: 1.5rem;
}
.discountStrip h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}
.chooseService {
  position: relative;
  padding: 0 0 5rem;
}
.chooseService .serviceTwo {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 6rem;
}
.chooseService .serviceOne {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 12rem;
}
.chooseService .serviceThree {
  position: absolute;
  left: 68%;
  bottom: 15%;
  z-index: 0;
}
.servicesForm {
  background: var(--white);
  border: 1px solid #d4d4d4;
  border-radius: 1.5rem;
  box-shadow: 0 1.125rem 4.44rem rgba(248, 155, 9, 0.08);
  padding: 2.5rem 2rem 2rem;
}
.servicesList {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px;
}
.questionList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 15px;
}
.servicesForm p {
  margin: 0;
}
.inputGroup {
  margin-top: 1rem;
}
.servicesList li,
.questionList li {
  position: relative;
}
.servicesList li input,
.questionList li input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.servicesList .checkBoxStyle {
  display: flex;
  align-items: center;
  position: relative;
  padding: 14px 2rem;
  justify-content: space-between;
}
.servicesList li:last-child .checkBoxStyle {
  border-bottom: 0;
}
.servicesList .checkBoxStyle label {
  font-size: 1.125rem;
  font-weight: 500;
}
.servicesList .checkBoxStyle i {
  font-size: 1.25rem;
  color: #d6d6d6;
}
.servicesList li input:checked + .checkBoxStyle i {
  color: var(--primary);
}
.servicesForm .form-control,
.inputGroup .form-control {
  font-size: 0.9rem;
  height: 3.5rem;
  border-radius: 10px;
}
.inputGroup label {
  font-size: 1rem;
  font-weight: 500;
}
.inputGroup .form-control {
  margin: 10px 0;
}
.stepTwo .servicesForm .themeBtn2 {
  width: 35%;
}
.stepTwo {
  padding-top: 5rem;
}
.questionList li {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 3rem;
  padding: 1rem 0;
  border-bottom: 1px solid #d4d4d4;
}
.questionList li:last-child {
  border-bottom: 0;
}
.questionList li > label {
  width: 100%;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 5px;
}
.questionList .radioStyle {
  position: relative;
}
.questionList .radioStyle label {
  font-weight: 500;
  display: flex;
  align-items: center;
}
.questionList .radioStyle label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #eee;
  border: 1px solid #d7d7d7;
  border-radius: 100px;
  margin-right: 10px;
}
.questionList .radioStyle input:checked + label:before {
  border: 6px solid var(--primary);
}
.servicesForm .themeBtn {
  /* font-size: 1.125rem; */
  text-transform: uppercase;
  margin-top: 1.25rem;
  padding: 0.8rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1.25rem 2rem;
}
.stepBanner .headingStyleThree .stokeText {
  color: rgba(0, 0, 0, 0);
  font-size: 6rem;
  -webkit-text-stroke: 1px #fff;
}
.stepBanner .headingStyleThree h2 {
  font-size: 5rem;
  color: var(--primary);
}
.stepBanner .headingStyleThree h6 {
  margin-top: 10px;
  font-weight: 400;
}
.stepBanner .headingStyleThree h6 span {
  display: block;
  font-weight: 700;
}
.congbanner {
  background: url(../images/banner/44.webp) top right/cover no-repeat;
  padding: 2rem 0;
}
.congsContnt {
  margin: 8rem auto -2rem;
}
.congsContnt p a {
  font-weight: 700;
}
.congsContnt p {
  font-size: 20px;
  line-height: 1.3;
}
.congbanner .bookBannerTwo {
  top: 3rem;
}
.congbanner .bookBannerThree {
  bottom: 15rem;
}
.congbanner .bookBannerOne {
  top: 10%;
}
.congsContnt p a:hover {
  color: var(--primary);
}
.servicesList li {
  border-bottom: 1px solid rgba(130, 130, 130, 0.3098039216);
}
.questionList {
  flex-direction: column;
}
.stepTwo .discountStrip {
  margin: -8.5rem 0 3rem;
}
.servicesForm .themeBtn:hover {
  background: #fff;
  color: var(--primary);
}
.chooseService .servicesList li {
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(130, 130, 130, 0.3098039216);
  border-radius: 0;
}
.chooseService .servicesList li:last-child {
  border-bottom: 0;
}
.chooseService .servicesList {
  border: 1px solid rgba(130, 130, 130, 0.3098039216);
}
.term-first-wrapper h5 {
  font-size: 1.75rem;
  margin: 1rem 0;
  font-weight: 700;
}
.terms-first-wrap-text h4 {
  font-size: 3rem;
  margin: 2rem 0 1rem;
}
.term-first-wrapper ul li {
  color: var(--text-color);
  padding: 8px 0;
}
.term-first-wrapper a {
  font-weight: 500;
  /* font-size: 1.25rem; */
  line-height: 1.5;
  color: var(--text-color);
}
.contactBanner {
  align-items: end !important;
}
.stepSec .text-center h4 {
  margin-top: 3rem;
  font-size: 2.5rem;
  margin-bottom: 0;
}
.reviewSec {
  padding-bottom: 1rem;
}
#contactForm .error,
#serviceForm .error,
footer .error,
#contactColpsErrors,
#footerColpsErrors {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
}
#serviceForm .error {
  color: red;
  margin-bottom: 10px;
}
#serviceForm .servicesList .error {
  color: red;
  font-weight: 600;
  margin: 10px 0 0 2rem;
}
footer .servicesList .error {
  color: red;
  margin-left: 10px;
}
.js-errors {
  background: #f93337;
  border-radius: 4px;
  color: #fff;
  font-size: 0.8em;
  list-style-type: square;
  margin-bottom: 1em;
  padding: 1em;
}
.js-errors {
  display: none;
}
.js-errors li {
  margin-left: 1em;
  margin-bottom: 0.5em;
  padding-left: 0;
}
ul.error input[type="checkbox"] + label::before,
ul.error input[type="radio"] + label::before {
  border-color: #f93337;
}
ul.error input[type="checkbox"] + label,
ul.error input[type="radio"] + label {
  color: #f93337;
}
#collapsefooter.collapse:not(.show),
footer #collapsefooter.collapse:not(.show) {
  display: block;
  height: 0px;
  overflow: hidden;
}
#servicesFormStepTwo .alert-danger li:nth-child(2),
#servicesFormStepTwo .alert-danger li:last-child {
  display: none !important;
}
#servicesFormStepTwo .alert-danger {
  margin-top: 1rem;
}
.chooseService.stepTwo .themeBtn {
  background: var(--primary);
  color: var(--white);
}
.chooseService.stepTwo .themeBtn:hover {
  background: var(--white);
  color: var(--primary);
}
.contactBoxs .accordion-button.collapsed:focus {
  box-shadow: none;
}
.stepHeader .topBar ul li a i {
  color: var(--primary);
}
.lpBanner ul:not(.iti__country-list) {
  margin: 2rem 0 3rem;
}
.lpBanner h6 {
  color: var(--primary);
}
.mainBanner.lpBanner .signupForm {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-left: 7rem;
  background: var(--primary);
  position: relative;
  padding-block: 1.5rem;
}
.mainBanner.lpBanner .signupForm h4,
.mainBanner.lpBanner .signupForm .h4 {
  color: var(--white);
  margin-bottom: 0px;
  font-size: 20px;
}
.mainBanner.lpBanner .signupForm h4 span,
.mainBanner.lpBanner .signupForm .h4 span {
  color: var(--secondry);
  display: block;
  font-size: 30px;
  font-weight: 800;
  margin-top: 8px;
}
.mainBanner.lpBanner .signupForm form {
  margin-top: 1rem;
}
.lpBanner .listStyle {
  background: rgba(0, 0, 0, 0);
  padding: 0;
}
.mainBanner.lpBanner .signupForm .themeBtn {
  border: none;
  width: 100%;
  margin-top: 1.5rem;
}
.mainBanner.lpBanner .contactBoxs {
  position: relative;
}
.mainBanner.lpBanner .contactBoxs .schtech {
  position: absolute;
  bottom: 0;
  left: -4rem;
  width: 13rem;
  z-index: 0;
}
.leadLp .signupForm input,
.leadLp .signupForm textarea {
  background: var(--white);
  color: var(--black);
  height: 49px;
  margin: 5px 0;
}
.leadLp .accordionStyle {
  background: var(--white);
  border-radius: 10px;
}
.leadLp .accordionStyle .accordion-item {
  background: var(--white);
}
.leadLp .accordionStyle .accordion-item .accordion-button {
  color: var(--black);
  padding: 8px 1rem;
  font-size: 1rem;
}
.leadLp .servicesList .checkBoxStyle label,
.leadLp .iti--separate-dial-code .iti__selected-dial-code,
.leadLp .iti__arrow {
  color: var(--black);
}
.leadLp .signupForm input::placeholder,
.leadLp .signupForm textarea::placeholder {
  color: var(--black);
}
.leadLp
  .accordionStyle
  .accordion-item
  .accordion-button[aria-expanded="true"]:hover {
  color: var(--black);
}
.leadLp .accordion-button::after {
  color: #000;
  font-size: 1rem;
}
.leadLp .servicesList {
  margin: 0;
  border: 1px solid rgba(130, 130, 130, 0.3098039216);
  border-radius: 15px;
}
.mainBanner.lpBanner .signupForm h4 {
  text-align: center;
}
.phone-container .phone1 {
  border-radius: 10px;
  width: 100%;
}
.servicesList li:last-child {
  border: none;
}
.mainBanner.lpBanner .signupForm .themeBtn::after {
  display: none;
}
.select {
  position: relative;
  display: flex;
  height: 4.5rem;
  line-height: 3;
  overflow: hidden;
  border-radius: 0.25em;
}
.select option {
  height: 300px;
}
.select::after {
  content: "▼";
  position: absolute;
  top: 1rem;
  right: 0;
  padding: 0 1em;
  background: var;
  cursor: pointer;
  pointer-events: none;
  transition: 0.25s all ease;
  color: var(--primary);
}
.select:hover::after {
  color: var(--primary);
}
.radioOption {
  position: relative;
}
.radioOption input {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
}
.radioOption label {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.radioOption label:before {
  content: "";
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0);
  display: block;
  border-radius: 100px;
  border: 2px solid var(--primary);
}
.radioOption label:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background: var(--primary);
  border-radius: 100px;
  opacity: 0;
}
.radioOption input:checked + .radiOpt label:after {
  opacity: 1;
}
.radioOption .redWrap {
  padding: 0;
  border: 10px solid var(--grey);
  background: var(--grey);
  position: relative;
  overflow: hidden;
}
.radioOption input:checked + .radiOpt .redWrap {
  border: 10px solid var(--secondry);
  background: var(--secondry);
}
.radioOption input:checked + .radiOpt .redWrap p {
  color: var(--white);
}
.servicesForm label {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}
.btnUplod p {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  z-index: -1;
}
.btnUplod {
  position: relative;
  border: 1px dashed #000;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}
.btnUplod input {
  width: 100%;
  opacity: 0;
}
.btnUplod p i {
  font-size: 2.25rem;
  padding-right: 10px;
}
.btnUplod p span {
  color: var(--primary);
  padding-left: 5px;
}
.listProcess li {
  border: none;
  padding: 8px 0;
}
.listProcess {
  padding: 0;
  border: none;
  margin-bottom: 1rem;
}
.listProcess .checkBoxStyle {
  padding: 0;
}
.listProcess .checkBoxStyle label {
  padding-left: 10px;
}
.summary {
  background: var(--grey);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1333333333);
}
.summary ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.summary ul li span {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
}
.summary ul li span a {
  display: block;
  font-size: 12px;
  color: red;
}
.summary .foot {
  display: flex;
  justify-content: space-between;
  font-size: 1.35rem;
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.168627451);
  padding: 10px 0 0;
}
.paySec {
  position: sticky;
  top: 0;
}
.packageBox {
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  transition: all 0.5s ease;
  margin: 0;
  background: #fafafa;
  position: relative;
}
.packageBox h4 {
  font-size: 3rem;
  color: var(--secondry);
  position: relative;
  font-weight: 800;
  margin: 0;
  text-align: center;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 1rem 0;
}
.packageBox h4 span {
  font-size: 1rem;
  color: #000;
  position: relative;
  font-weight: 600;
  display: block;
}
.packageBox h3 {
  color: var(--primary);
  font-weight: 600;
  font-size: 2.5rem;
  text-align: center;
}
.packageBox .listStyle {
  list-style-type: disc;
  padding-left: 1.5rem;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 1rem 0 0 2rem;
  transition: all 0.5s ease;
  margin: 1rem 0;
  height: 300px;
  overflow: auto;
}
.packageBox .listStyle li {
  padding: 7px 0;
  font-weight: 500;
  line-height: 1;
}
.packageBox .themeBtn {
  text-align: center;
  padding: 8px 2.25rem;
}
.packageBox .btnSec {
  justify-content: center;
  margin: 0 auto;
}
.packageBox:hover,
.packageBox.active {
  background: var(--primary);
}
.packageBox:hover *,
.packageBox.active * {
  color: var(--white);
}
.packageBox:hover h4,
.packageBox.active h4 {
  border-color: var(--white);
}
.packageBox:hover ul,
.packageBox.active ul {
  background: #d38204;
}
.packageBox:hover .themeBtn,
.packageBox.active .themeBtn {
  background: var(--white);
  color: var(--primary);
}
.step3Form h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--grey);
  padding: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 2.5rem;
}
.whiteBox h4 span {
  color: var(--primary);
}
.servicesForm p span {
  color: var(--primary);
}
.servicesForm img {
  width: 20rem;
}
.bannerDis {
  position: absolute;
  width: 11%;
  top: 120px;
  transform: rotate(-15deg);
  left: 16rem;
  z-index: 111;
  animation: zoom-in-zoom-out 3s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1) rotate(-15deg);
  }
  50% {
    transform: scale(1.1, 1.1) rotate(-15deg);
  }
  100% {
    transform: scale(1, 1) rotate(-15deg);
  }
}
.tag {
  background: var(--primary);
  padding: 6px 1.5rem;
  border-radius: 20px;
  text-align: center;
  color: var(--white);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}
.packageBox:hover .tag,
.packageBox.active .tag {
  background: #d38204;
}
.packageBox p {
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
  font-size: 14px;
}
.summary h2 {
  font-size: 1.25rem;
}
.pakageSteps .btnSec {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1600px) {
  .bannerDis {
    top: 81%;
    left: 13rem;
  }
}
@media only screen and (max-width: 1366px) {
  .bannerDis {
    top: 80%;
    left: 14rem;
    width: 11rem;
  }
}
@media only screen and (max-width: 1200px) {
  .bannerDis {
    top: 80%;
    left: 10rem;
    width: 11rem;
  }
}
@media only screen and (max-width: 1199px) {
  .bannerDis {
    top: 75%;
    left: 8rem;
    width: 11rem;
  }
}
@media only screen and (max-width: 991px) {
  .servicesForm {
    margin-top: 2rem;
  }
  .bannerDis {
    top: 73%;
    left: 0;
    width: 9rem;
  }
  .packageBox {
    margin: 1rem 0;
  }
}
@media only screen and (max-width: 576px) {
  .bannerDis {
    top: 70%;
    left: 0;
    width: 9rem;
  }
  .stepBanner {
    padding: 1rem 0 3rem;
  }
}
.pakageSteps .themeBtn {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
}
.pakageSteps .themeBtn:hover {
  background: var(--white);
  color: var(--primary);
}
.paySec .themeBtn {
  background: var(--primary);
  color: var(--white);
}
.paySec .themeBtn:hover {
  background: var(--white);
  color: var(--primary);
}
.hidden {
  display: none;
}
.someData {
  max-width: 768px;
  height: 150px;
  display: none;
  padding: 1%;
}
.radiOpt {
  margin: 8px 0;
}
.inputGroup label {
  font-size: 1rem;
  font-weight: 500;
}
.inputGroup .form-control {
  margin: 10px 0;
}
.stepOne .form-control {
  margin: 10px 0;
}
.stepTwo .servicesForm .themeBtn2 {
  width: 35%;
}
.chooseService .phone-container .iti--allow-dropdown {
  width: 100%;
  border: 1px solid #ced4da;
  font-size: 0.9rem;
  height: 3.5rem;
  border-radius: 10px;
}
.chooseService .phone-container .phone1 {
  border-radius: 10px;
  border: 0;
  height: 100%;
  width: 100%;
}
.chooseService .phone-container .phone1:focus-visible {
  outline: 0;
}
.stepBanner h2,
.stepWrap h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
.stepBanner p {
  font-size: 1.5rem;
  line-height: 1;
}
.packageBox:hover .themeBtn:before {
  border: 2px solid #fff;
}
.summary h2 {
  font-size: 1.25rem;
}
.blogbg {
  height: auto;
  position: relative;
  z-index: 0;
}
.blogbg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6901960784);
}
.blogbg .bannerContnt {
  position: relative;
  z-index: 1;
}
.logoForm {
  display: flex;
  justify-content: center;
}
.logoForm .logoRowOne {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.lpContactSec .logoForm .logoRowOne,
.lpContactSec .logoForm .logoRowTwo,
.lpContactSec .logoForm .logoRowThree {
  flex: 0 0 33.33%;
  justify-content: space-evenly;
  display: flex;
}
.lpContactSec .logoForm .logo {
  width: 12rem;
  height: 7rem;
  border-radius: 10px;
  border: 2px solid var(--primary);
}
.logoForm .logo4 img {
  width: 7rem;
  margin: 0 auto;
}
.logoForm .logo4 img {
  width: 7rem;
  margin: 0 auto;
}
.logoForm .logo {
  width: 9rem;
  height: 9rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1411764706);
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
.lpContactSec .logoForm .logo:hover {
  transform: scale(1.05);
}
.signupForm .accordion-button {
  height: 49px;
}
@media screen and (max-width: 768px) {
  .mainBanner.lpBanner .signupForm h4,
  .mainBanner.lpBanner .signupForm .h4 {
    font-size: 22px;
  }
  .mainBanner.lpBanner .signupForm h4 span,
  .mainBanner.lpBanner .signupForm .h4 span {
    font-size: 30px;
  }
  .mainBanner.lpBanner .signupForm {
    padding-block: 2.5rem;
  }
  .signupForm .themeBtn {
    padding: 1.5rem 1.5rem;
    font-size: 16px;
  }
  .signupForm form > * {
    margin-bottom: 1rem !important;
  }
}
.iti {
  width: 100%;
}
.vscomp-ele {
  border-radius: 10px;
}
.signupForm input {
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
}
.signupForm input::placeholder {
  color: rgba(0, 0, 0, 0.726);
}
.signupForm input:focus {
  background: #fff;
}
.signupForm .virtual-select,
footer .virtual-select {
  width: 100%;
  max-width: 100%;
}
.signupForm .iti__tel-input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid #fff;
}
.virtual-select {
  max-width: 100% !important;
}
.virtual-select .vscomp-wrapper {
  font-family: inherit !important;
}
.virtual-select .vscomp-option-text {
  line-height: 1.5;
}
.vscomp-option.focused {
  background: rgba(255, 255, 255, 0.3) !important;
}
.vscomp-option.selected {
  background: var(--primary) !important;
}
.signupForm .virtual-select .vscomp-toggle-button,
footer .virtual-select .vscomp-toggle-button,
.leadForm .virtual-select .vscomp-toggle-button {
  width: 100%;
  height: 49px;
  padding-left: 1rem;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 500;
}
footer .virtual-select .vscomp-toggle-button {
  height: 45px;
}
.signupForm .virtual-select .vscomp-arrow::after,
footer .virtual-select .vscomp-arrow::after {
  border: 1px solid rgba(0, 0, 0, 0);
  border-bottom-color: #000;
  border-right-color: #000;
}
.signupForm .virtual-select .vscomp-dropbox,
footer .virtual-select .vscomp-dropbox {
  font-weight: 500;
}
.signupForm
  .virtual-select
  .vscomp-wrapper.multiple
  .vscomp-option.selected
  .checkbox-icon::after,
footer
  .virtual-select
  .vscomp-wrapper.multiple
  .vscomp-option.selected
  .checkbox-icon::after {
  border-color: #fff;
  border-left-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0);
}
.vscomp-wrapper .checkbox-icon.checked::after {
  border-color: var(--primary);
  border-left-color: rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, 0);
}
.leadForm .vscomp-toggle-button {
  background: #f4f4f4 !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0, 0, 0, 0.168627451) !important;
}
.vscomp-value {
  opacity: 1 !important;
}
.leadForm .phone {
  border: 1px solid rgba(0, 0, 0, 0.168627451);
}
.banner-form .phone,
.banner-form select {
  height: 45px !important;
  width: 100% !important;
}
.banner-form input {
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .vscomp-option {
    height: 33px !important;
  }
  .vscomp-options-list {
    height: 140px !important;
  }
}
.form-error {
  border-color: red !important;
}
.form-error .vscomp-toggle-button {
  border-color: red !important;
}
.form-error
  .vscomp-toggle-button
  .vscomp-wrapper:not(.has-value)
  .vscomp-value {
  opacity: 1 !important;
}
.form-error .vscomp-arrow::after {
  border-bottom-color: red;
  border-right-color: red;
}
.form-error .vscomp-value {
  color: red !important;
}
.form-error::placeholder {
  color: red !important;
}
.form-error-label {
  color: red !important;
  font-weight: bold;
}
.vscomp-search-wrapper {
  display: none;
}
.vscomp-option-text {
  --vscom-option-font-size: 15px;
}
@media screen and (max-width: 575px) {
  .exceptionalSec {
    margin-bottom: 9rem;
  }
}
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 1440px) {
  .slider-wrapper {
    margin-bottom: 216px;
  }
}
.slider {
  position: relative;
  width: 100%;
  height: auto;
}
.slider-item {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
}
@media screen and (min-width: 1440px) {
  .slider-item img {
    margin: 0;
  }
}
.slider-item.active {
  opacity: 1;
}
.christmas-form-card select {
  height: 45px !important;
}
.christmas-form-card .form-control,
.christmas-form-card .phone,
.christmas-form-card .vscomp-toggle-button,
.christmas-form-card .vscomp-ele,
.christmas-form-card select {
  border-radius: 6px !important;
}
.christmas-form-card .themeBtn-Black {
  background: #f09e31;
}
.christmas-form-card .themeBtn-Black::before {
  border-color: #f09e31;
}
.christmas-form-card .themeBtn-Black:hover {
  color: #fff;
}
.christmas-form-card .h2 {
  font-size: 32px;
}
.christmas-form-card .signupForm {
  padding: 1.5rem !important;
  max-width: 350px;
}
.christmas-form-card .signupForm form > * {
  margin-bottom: 5px !important;
}
.vscomp-toggle-button {
  padding: 14px !important;
  border-radius: 10px !important;
}
.projectSec ul li h6 .count,
.projectSec ul li h6 {
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: 700;
  margin: 10px 0;
  line-height: 1;
}
.projectSec ul li h6 .count {
  margin: 0;
}
.projectSec ul li p {
  color: var(--black);
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  font-size: 1rem;
}
.projectSec ul h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.projectSec ul li {
  text-align: center;
  padding: 0.4rem;
}
.projectSec ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .projectSec ul {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.projectSec .themeBtn1 {
  font-weight: 600;
}
.projectSec ul li img {
  margin-bottom: 1rem;
}
.servicesInner h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
.serInnerBox {
  background: var(--primary);
  padding: 1rem;
  border-radius: 50px 50px 0 0;
  transition: all 0.5s ease;
  height: 100%;
}
.serInnerBox h3 {
  font-weight: 700;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 23px;
}
.serInnerBox p {
  color: var(--blue);
}
.serInnerBox:hover {
  background: var(--blue);
}
.serInnerBox:hover * {
  color: var(--white);
}
.serInnerBox:hover img {
  filter: brightness(20.5);
}
.publishSer .serInnerBox {
  background: var(--blue);
  border-radius: 15px;
  border: 1px solid var(--primary);
}
.publishSer .serInnerBox p {
  color: var(--white);
  margin: 1rem 0;
}
.publishSer .serInnerBox h3 {
  color: var(--primary);
}
.publishSer .serInnerBox:hover {
  background: var(--primary);
}
.publishSer .serInnerBox:hover * {
  color: var(--blue);
}
.publishSer .serInnerBox:hover img {
  filter: brightness(0);
}
.serbox {
  padding: 2rem 1.5rem;
  border-radius: 10px;
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  background: rgba(22, 41, 92, 0.6392156863);
  backdrop-filter: blur(6px);
}
.serbox h4,
.serbox .h4 {
  font-size: 1.65rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.serbox h6 {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
}
.serbox p {
  color: var(--white);
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
}
.serbox ul li {
  color: var(--white);
  padding: 8px 0;
  font-size: 1rem;
  line-height: 1.3;
  position: relative;
}
.serbox ul {
  position: relative;
  padding-left: 1.25rem;
}
.serbox ul li::before {
  content: "";
  position: absolute;
  border-left: 1px solid var(--white);
  height: 100%;
  top: 0;
  bottom: 0;
  left: -17px;
  z-index: 1;
}
.serbox ul li:first-child::before {
  top: 20px;
}
.serbox ul li:last-child::before {
  top: calc(-100% + 20px);
}
.serbox ul li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -20px;
  top: 14px;
}
.serbox:hover {
  background: var(--white);
}
.serbox:hover * {
  color: var(--blue);
}
.serbox:hover ul li::before {
  border-color: var(--blue);
}
.serbox:hover ul li::after {
  background: var(--blue);
}
.servicesBox {
  background: var(--white);
  text-align: center;
  padding: 2.35rem 1.5rem;
  box-shadow: -1px 2px 4px rgba(0, 0, 0, 0.1882352941);
  border-radius: 40px;
  height: 100%;
  transition: all 0.5s ease;
}
.servicesBox:hover {
  transform: scale(1.05);
}
.servicesBox h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--blue);
  margin: 1rem 0;
}
.servicesBox p {
  color: var(--blue);
  font-size: 1.25rem;
}
.partnersSlider li img {
  width: 10rem;
}
.partnersSliderreverse {
  transform: scale(-1);
}
.partnersSliderreverse img {
  transform: scale(-1);
}
.companyLogoSec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(86deg, #e8d04b, transparent);
  z-index: 1;
  width: 15%;
  height: 75%;
  margin-top: auto;
}
.companyLogoSec::after {
  content: "";
  position: absolute;
  background: linear-gradient(273deg, #ead049, transparent);
  z-index: 1;
  width: 15%;
  height: 75%;
  right: 0;
  margin-top: auto;
  bottom: 0;
}
.companyLogoSec .slick-slide {
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  padding: 1rem;
  margin: 2rem 5px;
  transition: all 0.5s ease;
}
.companyLogoSec .slick-slide.slick-current.slick-active.slick-center {
  transform: scale(1.26);
}
.companyLogoSec .slick-slide img {
  margin: 0 auto;
}
.contactForm {
  background: var(--primary);
  padding: 2rem 2rem 3rem;
  border-radius: 30px;
}
.contactForm h2 {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 2rem;
}
.text-green {
  color: var(--green);
}
.contactSec .logoList {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  justify-content: center;
  gap: 1rem;
}
.ctaSec2 h1 span {
  font-weight: 300;
}
.ctaSec2 h1 strong {
  font-weight: 700;
}
.ctaSec2 .btnSec {
  justify-content: center;
  margin-top: 3rem;
}
.listStyle li {
  color: var(--white);
  padding: 5px 0;
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.listStyle li i {
  color: var(--primary);
}
.listStyle {
  margin: 2rem 0;
}
.processSec {
  padding-bottom: 4rem;
  margin-bottom: 0;
}
.bg-position-bottom-left {
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
}
.processSec h4,
.processSec .h4 {
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-weight: 700;
}
.processSec h4::before,
.processSec .h4::before {
  z-index: -1;
}
.processSec h2 {
  color: var(--white);
}
.processHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.processBox {
  background: var(--blue);
  padding: 2rem 1rem 1rem;
  border-radius: 10px;
  border: 1px solid #626569;
  transition: all 0.5s ease;
  position: relative;
  z-index: 11;
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.2705882353);
  height: 100%;
}
.processBox:hover {
  background: var(--primary);
}
.processImg {
  position: absolute;
  right: 6rem;
  z-index: 0;
  margin: 0;
  bottom: 0;
  width: 29rem;
}
.processLink h5,
.processLink .h5 {
  background: var(--primary);
  display: inline-block;
  padding: 5px 4rem 5px 10px;
  border: 2px solid var(--primary);
  color: var(--blue);
  border-radius: 8px;
}
.processLink {
  position: absolute;
  top: -1rem;
  right: 2rem;
}
.processBox p {
  color: var(--primary);
  padding-top: 1rem;
  line-height: 1.5;
}
.processBox:hover img {
  filter: brightness(20);
}
.processSec .bookStep {
  position: absolute;
  right: 2rem;
  z-index: 1;
  bottom: -9rem;
}
.processBox:hover h4,
.processBox:hover .h4,
.processBox:hover p {
  color: var(--blue);
}
.processBox:hover .processLink h5,
.processBox:hover .processLink .h5 {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--primary);
}
.processBox:hover img {
  filter: brightness(0);
}
.bg-loaded {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-position-right {
  background-position: top right;
  background-size: contain;
}
.lpService {
  height: 49px;
}
/*# sourceMappingURL=custom.min.css.map */
.banner {
    position: relative;
    width: 100%;
    top: 0;
  }
  .home_banner {
    background-image: url('../images/banner/Home Main Banner 1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 11rem;
    padding-bottom: 2rem;
    overflow: hidden;
  }
  .banner_form .phone-container {
    position: relative;
    top: 5px;
}
.banner_form .phone-container .phone {
    background-color: #d9d9d9;
}
  .banner_content h3 {
    color: #FFF;    
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .banner_content h1 {
    color: #F90;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
  }
  .banner_content h4 span {
    color: #FFF;    
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .banner_form {
    border-radius:30px;
    background:rgba(10, 9, 9, 0.70);
    box-shadow: 0px 0px 50px 0px rgba(255, 153, 0, 0.20);
    padding:30px 35px;
    width: 100%;
    margin:auto;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .banner_content {
    text-align: center;
    margin: 0 0 40px;
}
.custom_txt_box {
    border-radius:8px;
    background:#D9D9D9;
    color: #959494;   
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding:14px 10px;
    margin:6px 0;
  }
  .phone-container .phone1 {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 13px;
    position: relative;
    background-color: #d9d9d9;
    border: none;
}
.phone-container {
    padding: 0 0 0 0;
}
.phone-container .phone {
  background-color: #fff;
}
button.btn.btn-primary.custom_submit_btn {
    display: flex;
    border-radius:100px;
    background:#000000;
    border:none;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding:11px 25px;
    max-width: 50%;
    margin:auto;
    margin-top: auto;
    margin-top: 0.8rem;
  }
  .thankyou .btnSec {
    justify-content: center;
}
.thankyou {
  min-height: 100dvh;
  padding: 0;
  justify-content: center;
  display: flex;
  align-items: center;
}
.quote-modal {
  position: relative;
  padding: 30px 30px;
}
.quote-modal .btn-close {
  position: absolute;
  right: -18px;
  top: -18px;
  background-color: #f89b09;
  width: 35px;
  height: 35px;
  opacity: 1;
}
.fd-heading strong {
  font-size: 30px;
}
.fd-heading p {
  font-size: 21px;
  margin: 3px 0 20px;
  color: #fff;
}
.fd-heading {
  color: #fff;
}
#getaQuote .modal-content {
  background-color: #000000;
  position: relative;
  z-index: 1;
  border: 3px solid #f89b09;
}
.quote-modal .phone {
  background-color: #fff;
}
#getaQuote .modal-content:after {
  /* content: ''; */
  border: 1px solid #f89b09;
  width: 100%;
  height: 100%;
  right: -10px;
  position: absolute;
  top: 10px;
  border-radius: 9px;
  z-index: -1;
}
.fd-heading p span {
  font-weight: 600;
  text-transform: uppercase;
}
.quote-modal .form-control {
  padding: 12px 12px;
  font-size: 14px;
  border-radius: 8px;
}
.quote-modal .phone-container {
  padding: 1px 0 0 0;
}
.form-select {
  font-size: 14px;
  color: #6d767e;
  padding: 14px 10px;
  border-radius: 10px;
}
.navbar .btnSec {
  margin: 3px 0 7px;
}
.navbar .btnSec a{
  animation: 1s linear 0s infinite normal none running opacity;
}
.contOpt li,.topBar a{
  animation: 1s linear 0s infinite normal none running opacity;
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
.phone-head {
  display: none;
}
.contactSec .form-select,.contactSec .phone {
  font-size: 16px;
}
.contactSec .phone {
  background-color: #fff
}
.img-slides {
  overflow: hidden;
  padding: 0;
}
.img-slides .row-1, .img-slides .row-2 {
  pointer-events: none;
}

.img-slides .img-holder {
  padding: 5px;
}
.img-holder img {
  width: 100%;
}
.ftrdisclaimer {
    text-align: center;
    background-color: var(--primary);
    padding-bottom: 15px;
}
.ftrdisclaimer p {
    color: #000;
}
.form-control,.iti {
    border: 1px solid #ced4da !important;
    border-radius: 10px;
}
/* RESPONSIVE */
@media only screen and (max-width : 1399px) {  
}
@media only screen and (max-width : 1199px) { 
  header .navbar .navbar-nav {
    gap: 1rem;
}
}
@media only screen and (max-width : 991px) {  
  .banner_content h1 {
    font-size: 68px;
    line-height: 68px;
  }
  .phone-head {
    display: block;
  }
  .phone-head a {
    display: block !important;
  }
}
@media only screen and (max-width : 767px) { 
}
@media only screen and (max-width : 578px) {  
  .home_banner {
    background-image: url(../images/phonebanner.webp);
}
  .banner_content h1 {
    font-size: 36px;
    line-height: 46px;
}
.banner_content h4 span {
  font-size: 30px;
}
.b_logo img {
  max-width: 190px;
}
.banner_content h3 {
  font-size: 23px;
}
.reviewHead img {
  height: 60px;
  width: 60px;
}
.mainBanner {
  padding: 10px 0 0;
}
.quote-modal {
  padding: 30px 0px;
}
.home_banner {
  padding-top: 8rem;
  min-height: 100vh;
}
.banner_content {
  margin: 0 0 30px;
}
.banner_form {
  padding: 30px 30px !important;
}
}
@media only screen and (max-width : 480px) {}