﻿@import "https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap";
@import "component.min.css";
@import "layout.min.css";
:root {
  --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);
}
html,
body {
  height: 100%;
  overflow-x: hidden;
}
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: 100px;
}
.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;
  }
}
.slide-cover {
  object-fit: contain;
  z-index: 1;
  margin-bottom: -116px;
  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.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: 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;
}
.lpBanner .themeBtn:not(.themeBtn2):after {
  content: "75% OFF";
  width: 90px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: disc ease infinite 1s;
  z-index: 2;
  background: var(--secondry);
  border: 1px solid var(--white);
  border-radius: 30px 30px 0 30px;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  padding: 3px 10px;
}
@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;
}
.logoSec h3 {
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  margin-bottom: 2rem;
}
.logoSlider .slick-slide img {
  margin: 0 auto;
}
.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/bg/2.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 {
  background: url(../images/bg.webp) left top/cover fixed no-repeat;
}
.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));
}
.provideSec {
  background: url(../images/3_3.webp) top/contain no-repeat;
}
.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 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/4_4.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 {
  background: url(../images/5_3.webp) top center/cover fixed no-repeat;
}
.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 {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
}
.leadForm input:not(.iti__search-input) {
  width: 100%;
  height: 49px;
  padding: 0 1rem;
  margin: 5px 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.168627451);
  background: #f4f4f4;
}
.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;
}
.faqSec {
  background: url(../images/6_3.webp) top right/cover fixed no-repeat;
}
.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: "\f061";
  font-family: FontAwesome;
  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;
  position: relative;
  z-index: 1;
}
.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 {
  color: var(--white);
  margin-bottom: 0px;
  font-size: 20px;
}
.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;
}
.schtech1 {
  right: -2rem;
  left: auto !important;
  transform: rotate(322deg) !important;
}
.mainBanner.lpBanner .contactBoxs .schtech,
.schtech1 {
  position: absolute;
  top: -3rem;
  left: 5rem;
  width: 70px;
  z-index: 3;
  transform: rotate(35deg);
}
.leadLp .signupForm input,
.leadLp .signupForm textarea {
  background: var(--white);
  color: var(--black);
  height: 49px;
  border: 0;
  margin-bottom: 0.7rem;
}
.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%;
  padding-left: 10px;
}
.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: 74%;
  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 {
    font-size: 22px;
  }
  .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: 14px;
}
.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: none;
}
.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: 48px;
  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(--blue);
  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: 2px solid red !important;
  border-radius: 10px;
}
.form-error .vscomp-value {
  color: red !important;
  opacity: 1 !important;
}
.form-error::placeholder {
  color: red !important;
}
.vscomp-toggle-button {
  padding: 7px 30px 7px 20px !important;
}
.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;
} /*# sourceMappingURL=custom.min.css.map */
a.fixed_disc {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 150px;
  z-index: 9999;
}
/*Popup*/
.entry-right input {
  border-radius: 5px;
  height: 51px;
  padding-left: 20px;
  border: 2px solid #e3e3e3;
  box-shadow: none;
  background: #fafafa;
  margin: 5px 0;
}

.offr-frm .close {
  background-color: #000;
  color: #fff;
  border-radius: 23px;
  width: 33px;
  height: 32px;
  position: absolute;
  right: 10px;
  z-index: 1;
  top: 15px;
  font-weight: 700;
  cursor: pointer;
  opacity: 1;
  font-size: 20px;
}

#entry-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999990;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.entry-box {
  background: #fff;
  text-align: center;
  padding-top: 0;
  padding-bottom: 30px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 0 50px 0 #000;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.entry-box h1 {
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 60px;
}

.entry-box h1 span {
  color: #ffd800;
}

.entry-left {
  text-align: center;
  background: #f89334;
}

.entry-box h1 {
  text-shadow: 0 5px 10px rgb(0 0 0 / 35%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 60px;
}

.entry-right .text {
  position: relative;
  margin: 25px 0 30px;
}

.entry-right .text h2 {
  font-size: 30px;
  color: #313131;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}

.entry-right .text h2 span {
  color: #f89334;
}

.entry-right .text:before {
  content: "";
  width: 6px;
  height: 50px;
  background: #000;
  border-radius: 20%;
  position: absolute;
  left: 0;
  top: -10px;
  overflow: hidden;
}

.form-control.error {
  border-color: red !important;
}

label.error {
  display: none !important;
}

.entry-right .text strong {
  text-transform: uppercase;
  font-weight: 600;
}

.entry-right .form-control:focus {
  border-color: #e2001b;
  box-shadow: 0 0 5px 0 #dee2e4;
  background-color: #fff;
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.2);
}

.entry-right input {
  border-radius: 5px;
  height: 51px;
  padding-left: 20px;
  border: 1px solid #e3e3e3;
  box-shadow: none;
  background: #fafafa;
  margin: 5px 0;
}

.entry-right input[type="email"],
.leaving-box input[type="email"] {
  background-color: #fff !important;
  color: #555 !important;
}

.entry-right .intl-tel-input {
  width: 100%;
}

.entry-right .intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 0;
}

.entery-submit {
  width: 60%;
  background: #000 !important;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border: none !important;
  padding: 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
}

.entry-right a {
  height: 60px;
  line-height: 60px;
  display: block;
  width: 100%;
  background-color: #ffd800;
  border-radius: 50px;
  text-transform: uppercase;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.entry-right a i {
  margin-left: 6px;
}

span.help-block.form-error {
  display: none;
}

.entry-right p {
  color: #343434;
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.entry-right .form-group {
  margin-bottom: 10px;
}

a#entry-box_close {
  position: absolute;
  right: 5px;
  background-color: #69c626;
  width: 40px;
  height: 40px;
  border-radius: 50pc;
  color: #fff;
  font-size: 29px;
  top: 10px;
  z-index: 9;
}

.btn__effect__trans__blcktext {
  background-color: rgba(255, 255, 255, 0);
  font: inherit;
  letter-spacing: inherit;
  padding: 1em 1em;
  border: none;
  border: 2px solid #000;
  border-radius: 5px;
  text-transform: capitalize;
  transition: color 1s;
  color: #000 !important;
  width: 100%;
}

.listing-style li svg {
  margin-right: 15px;
}

.entry-box .entry-right {
  padding: 0px 30px;
}

.modal-backdrop.hide {
  opacity: 0 !important;
}
