@font-face {
  font-family: FrankRuhlLibreFont;
  src: url(../fonts/FrankRuhlLibre/FrankRuhlLibre.ttf);
}

@font-face {
  font-family: OptimaFont;
  src: url(../fonts/Optima/OPTIMA.TTF);
}

@font-face {
  font-family: RobotoFont;
  src: url(../fonts/Roboto/Roboto.ttf);
}

/* common css format */

* {
  font-family: OptimaFont;
  padding: 0;
  margin: 0;
  --orange: #c1966e;
  --primary-color: #ece6dd;
  --secondary-color: #000722;
  --white-color: #fff;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
}

ul,
p {
  padding: 0 !important;
}

a {
  text-decoration: none !important;
}

.mt80 {
  margin-top: 80px;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0 !important;
  margin: 0 !important;
}

.borderBox {
  border: 2px solid #66867b;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  /* Standard property for future compatibility */
}

/* new navbar css */

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: var(--white-color);
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  z-index: 11;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 8rem;
  background: var(--white-color);
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 27px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 250px;
  max-width: 100%;
  position: relative;
}

.navLogoImg.navImg1 {
  width: 100px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLogoImg.navImg2 {
  width: 50px !important;
  height: 100% !important;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 1.25rem;
}

.navLinks .navLink {
  display: block;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;

  font-family: RobotoFont;
  color: #2d3d30;
  font-size: 1rem;
  text-transform: capitalize;
  padding: 10px;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--primary-pink);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line {
  width: 1px;
  height: 20px;
  background-color: rgba(88, 89, 91, 0.18);
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  padding: 0.5rem 1rem;
  font-family: var(--TT_Neoris_Medium);
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0 1rem;
  border-radius: 9px;
  background-color: var(--primary-pink);
}

.offcanvas {
  background-color: var(--light);
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--light);
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close i {
  font-size: 1.1rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 1rem 0;
}

.offcanvas-link {
  display: block;
  font-size: 1.35rem;
  font-family: var(--Tartuffo-Regular);
  font-weight: 400;
  color: var(--primary-blue);
  text-transform: capitalize;
  position: relative;
  width: 100%;
}

.offcanvas-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #0000001a;
  left: 0;
  bottom: -15px;
}

.offcanvas-link:last-child:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: transparent;
  left: 0;
  bottom: -15px;
}

.offcanvas-logo .logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 250px;
  max-width: 100%;
}

.bg-cream {
  background-color: #2c2129;
}

.right_flr {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8%;
}

.right_flr img,
.left_flr img {
  width: 100%;
}

.left_flr {
  position: absolute;
  left: 60px;
  top: 67px;
  width: 92px;
}

@media only screen and (max-width: 1400px) {
  .navbar-container {
    padding: 1rem 4rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }
}

@media only screen and (max-width: 1080px) {
  .navbar-container {
    padding: 1rem 2rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }
}

/* banner section */

.bannerSection .container-fluid {
  padding: 0 0 !important;
  margin-top: 60px;
}

/* overview Section */

.sectionHead h2 {
  color: var(--orange);
  font-family: FrankRuhlLibreFont;
  font-size: 3.3rem;
  line-height: 4.5rem !important;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.brochureBtn {
  display: inline-block;
  text-align: center;
  color: var(--orange);
  background-color: var(--primary-color);
  padding: 40px 30px;
  font-weight: 600;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transition: all 0.2s ease-in-out;

  &:hover {
    background-color: var(--white-color);
    color: var(--orange);
  }
}

/* feature section */
.featureSection .col-lg-6 {
  padding: 0 !important;
}

.featureContentBox {
  padding: 2px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.featureValue {
  color: #5b5d30;
  font-family: FrankRuhlLibreFont;
  font-size: 4rem;
  line-height: 6rem;
  font-weight: 400;
  text-transform: capitalize;
}

.featureBtnWrap {
  position: absolute;
  right: -70px;
  top: 34%;
  z-index: 2;
}

.feat_img,
.feat_img img {
  height: 100%;
}

/* config section */

.configurationSection {
  background: #2c2129;
  padding-bottom: 120px;
}

.tableContentBox {
  margin-top: 30px;
}

.configContentBox {
  padding-right: 40px;
}

table th,
table td {
  color: #fff;
}

table td {
  font-size: 19px;
}

table {
  width: 100%;
}

thead {
  border-bottom: 1px solid #fff !important;
}

table th {
  font-family: "Frank Ruhl Libre";
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 500;
  padding-bottom: 10px;
}

table td {
  padding-top: 20px;
}

.priceBtn {
  padding: 10px 25px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  transition: all 0.2s ease-in-out;

  &:hover {
    background-color: var(--white-color);
    color: var(--orange);
  }
}

.configBtnWrap {
  position: absolute;
  bottom: -54px;
  left: 36px;
}

.configBtnWrap .brochureBtn {
  background-color: var(--white-color);
  color: var(--orange);
  border: 2px solid var(--white-color);
  transition: all 0.2s ease-in-out;

  &:hover {
    background-color: var(--primary-color);
    color: var(--orange);
  }
}

/* amenities section */

.half_logo {
  position: absolute;
  right: 0;
  top: -12%;
  width: 10%;
  z-index: -1;
}

.half_logo1 {
  position: absolute;
  left: 0;
  bottom: -12%;
  width: 10%;
  z-index: -1;
}

.left_logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
}

.half_logo img,
.left_logo img,
.half_logo1 img {
  width: 100%;
}

.ameIcon {
  width: 80px !important;
  height: 80px !important;
}

.ameBoxWrap {
  border: 1px solid #66867b;
  padding: 45px 4px;
}

.ameBoxWrap p {
  font-size: 13px;
  font-weight: 500;
  color: #5b5d30;
}

.ameArrowIconWrap {
  width: 50px;
  height: 50px;
}

/* .amenitiesSection {
  background-image: url(../images/full-op.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
} */

.amenitiesSection .owl-nav {
  position: absolute;
  top: -95px;
  right: 0;
}

.amenitiesSection .owl-dots {
  margin: 20px 0;
}

.owl-prev:hover,
.owl-next:hover {
  background: transparent !important;
}

/* gallery Section */
.gallerySection {
  background: #2c2129;
  position: relative;
  padding-bottom: 100px;
  z-index: 1;
}

.galleryBtn {
  text-transform: uppercase !important;
  background-color: var(--primary-color) !important;
  border: 1px solid var(--white-color) !important;
  padding: 10px 30px !important;
  border-radius: 30px;
  margin: 0 15px;
  color: var(--white-color);
}

.galleryBtn.active {
  background: var(--white-color) !important;
  color: var(--orange);
}

.gallerySection .owl-nav {
  position: absolute;
  bottom: -65px;
  left: 0;
}

.mobileGalleryCarousel {
  display: none;
}

/* locaton section */

.locationSection {
  background-color: var(--primary-color);
}

.lochalf_logo {
  position: absolute;
  right: 0;
  top: -12%;
  width: 10%;
}

.lochalf_logo1 {
  position: absolute;
  left: 0;
  bottom: -12%;
  width: 10%;
}

.lochalf_logo img,
.lochalf_logo1 img {
  width: 100%;
}

.accordion {
  background: transparent !important;
}

button.accordion-button {
  padding: 20px 30px;
}

.detailsWrap p {
  color: var(--white-color);
  font-size: 18px;
}

.accordion-body {
  padding: 30px !important;
  color: #6a6a6a !important;
}

.faqhead {
  font-size: 25px;
  font-weight: 400;
  color: #722127;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: unset !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  box-shadow: unset !important;
}

.accordion-item {
  margin: 20px 0;
  border-radius: 10px;
  border-bottom: 2px solid var(--primary-color) !important;
  border-right: 2px solid var(--primary-color) !important;
  border-left: 2px solid var(--primary-color) !important;
  border-top: none !important;
  background-color: transparent !important;
}

.accordion-header,
.accordion-button {
  background-color: var(--primary-color) !important;
  /* border: 1px solid #c3e4e8; */
  /* border-radius: 10px; */
}

.accordion-body {
  background: #2c2129;
  overflow: hidden;
  /* border-radius: 0 0 10px 10px; */
}

.accordion-header {
  border: 2px solid #e0e0e0;
  overflow: hidden;
}

.accordion-button::after {
  background: url("../images/icon/accordionDown.svg") !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center;
  width: 45px !important;
  height: 45px !important;
}

.accordion-button:not(.collapsed)::after {
  background: url("../images/icon/accordionUp.svg") !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center;
  filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: rotate(360deg) !important;
  transition: all 0.2s ease-in-out;
}

.accordion-button::after {
  width: 44px !important;
  height: 44px !important;
}

.accordion-button {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

button.accordion-button.collapsed {
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
}

button.accordion-button.collapsed .faqhead {
  color: #722127 !important;
}

/* about us section */
.aboutSection {
  z-index: 1;
}

.aboutBox {
  position: relative;

  &:hover .aboutBtnWrap {
    position: absolute;
    bottom: 0px;
    height: 130px !important;
    transition: all 0.2s ease-in-out;
  }
}

.knowMoreBtn {
  display: inline-block;
  text-align: center;
  color: var(--orange);
  background-color: var(--primary-color);
  padding: 20px 25px;
  font-weight: 600;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transition: all 0.2s ease-in-out;

  &:hover {
    background-color: var(--white-color);
    color: var(--orange);
  }
}

.aboutBtnWrap {
  position: absolute;
  bottom: -40px;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  padding: 20px;
  display: flex;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  height: 1px !important;
}

/* contact section */
.contactSection {
  background-color: var(--primary-color);
}

.formInputGroup {
  position: relative;
  margin-bottom: 35px;
}

.errorText {
  color: red;
  font-size: 16px;
  margin-top: 5px !important;
}

.formInput {
  font-size: 23px;
  line-height: 28px;
  background: transparent;
  border: 1px solid #66867b;
  padding: 10px 15px;
  width: 85%;
  color: var(--orange);
}

.formInput option {
  background: var(--primary-color);
}

::placeholder {
  color: var(--secondary-color);
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: var(--white-color);
}

.formBtn {
  background-color: var(--white-color);
  color: var(--orange);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid var(--white-color);
  transition: all 0.2s ease-in-out;

  &:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
  }
}

/* footer section */

.footerSection p {
  color: #000;
}

.qrImg {
  width: 100px;
  height: 100px;
}

.upperFooter {
  border-bottom: 2px solid var(--primary-color);
}

.rlIcon {
  width: 30px;
  height: auto;
}

.lowerFootText {
  display: flex;
  justify-content: space-between;
}


/**************Thank You  **************************/

.thank__sec {
  width: 100%;
  position: relative;
}

.thank_wrap {
  background-color: #3e3e3e17;
  backdrop-filter: blur(10px);
  padding: 20px;
  margin: 10% 0 !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid #dadada;
}

.check_sign {
  background: #333;
  padding: 20px;
  height: 100px;
  width: 100px !important;
  border: 3px solid #333;
  border-radius: 50%;
  margin: 0 auto;
}

.check_sign i {
  font-size: 55px;
  color: #fff;
}

.section-title h2 {
  font-family: "Didot";
  font-size: 25px;
  color: #000;
}

.section-title h2 span {}

.oops-greet,
.oops-subtitle {
  font-family: "FrankRuhlLibreFont";
  font-size: 22px;
  color: #000;
}

.go_txt {
  font-family: "FrankRuhlLibreFont";
  font-size: 15px;
  color: #000;
  background-color: transparent !important;
  border-radius: 15px;
  border: 1px solid #000;
  width: fit-content;
  padding: 10px 20px;
  margin: 15px auto 0;
}

.art_post {
  position: absolute;
  bottom: 0;
  right: 0;
  width: fit-content;
  background-color: #000000c9;
  font-size: 13px;
  padding: 8px !important;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

/*******  ***********/

/* cta section */

.ctaIcon {
  width: 25px;
  height: 25px;
  /* filter: invert(1); */
}

.brochureCTABtnWrap {
  position: fixed;
  bottom: 45px;
  left: 20px;
  z-index: 100;
}

.brochureCTABtnWrap a,
.enquireCTABtnWrap a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #2c2129;
  font-weight: 600;
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  border: 2px solid var(--orange);

  &:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border: 2px solid #262626;
  }
}

.brochureCTABtnWrap a:hover .ctaIcon {
  filter: brightness(0) saturate(100%) invert(7%) sepia(37%) saturate(7488%) hue-rotate(225deg) brightness(97%) contrast(97%);
}

.enquireCTABtnWrap a:hover .ctaIcon {
  filter: brightness(0) saturate(100%) invert(7%) sepia(37%) saturate(7488%) hue-rotate(225deg) brightness(97%) contrast(97%);
}

.enquireCTABtnWrap {
  position: fixed;
  bottom: 45px;
  right: 20px;
  z-index: 100;
}

.desktopCtaSection {
  display: block;
}

.mobileCTASection {
  display: none;
}

.rightWhiteBorder {
  border-right: 2px solid var(--white-color);
}

/* modal */

.modal-body {
  background-color: var(--primary-color);
  padding: 30px !important;
}

.modal-body .formInput {
  width: 100%;
  font-size: 20px;
  padding: 10px 15px;
}

/* media querire */

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {
  .desktopMenuWrap {
    display: none;
  }

  .mobileMenuWrap {
    display: block;
  }

  .menuToggleBtn {
    border: none;
    width: 50px;
    height: 50px;
    padding: 8px;
    border-radius: 8px;
    background-color: var(--primary-color);
  }

  .sectionHead h2 {
    font-size: 2.8rem;
    line-height: 3.5rem !important;
    text-align: center;
  }

  .brochureBtnWrap {
    display: flex;
    justify-content: center;
  }

  .featureValue {
    font-size: 3.4rem;
    line-height: 4.5rem;
  }

  .featureBtnWrap {
    position: absolute;
    right: 11%;
    top: 82%;
  }

  .configContentBox {
    margin-bottom: 40px;
  }

  .galleryTabWrap .nav-pills {
    display: flex;
    justify-content: center;
  }

  .galleryTabWrap .nav-pills .nav-item {
    margin: 10px 0;
  }

  .amenitiesSection .owl-nav {
    position: unset;
  }

  .lowerFootText {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lowerFootText p {
    text-align: center;
    margin-top: 7px !important;
  }

  .desktopGalleryCarousel {
    display: none;
  }

  .mobileGalleryCarousel {
    display: block;
  }

  .gallerySection .owl-nav {
    position: unset;
  }
}

@media only screen and (max-width: 768px) {
  .sectionpad {
    padding: 40px 0;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  .configContentBox {
    padding-right: 0px;
  }

  .accordion-body {
    padding: 20px !important;
    color: #6a6a6a !important;
  }

  .brochureBtn {
    padding: 30px 20px;
    font-size: 15px;
  }

  .formInput {
    width: 100%;
  }

  .priceBtn {
    font-size: 14px;
  }

  .featureValue {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  .desktopCtaSection {
    display: none;
  }

  .mobileCTASection {
    padding: 10px 0;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2129;
    margin: 0 10px 10px 10px;
    border-radius: 10px;
    z-index: 100;
    border: 1px solid #66867b;
  }

  .mobileCTASection a {
    font-size: 13px;
    color: #fff;
  }

  .footerSection {
    margin-bottom: 75px;
  }

  .featureBtnWrap {
    position: absolute;
    right: 34%;
    top: 165%;
  }

  .configurationSection {
    padding-bottom: 105px;
  }

  button.accordion-button {
    padding: 11px;
  }

  .faqhead {
    font-size: 21px;
    font-weight: 400;
  }

  .formInput {
    font-size: 19px;
    padding: 10px;
  }

  .priceBtn {
    padding: 10px 16px;
  }

  .ameBoxWrap {
    height: 190px;
  }

  .half_logo,
  .half_logo1,
  .left_logo,
  .lochalf_logo,
  .lochalf_logo1 {
    width: 19%;
  }

  .half_logo {
    top: -7%;
  }

  .half_logo1 {
    bottom: -7%;
  }

  .lochalf_logo {
    top: -4%;
  }

  .lochalf_logo1 {
    bottom: -4%;
  }

  .art_post {
    font-size: 11px;
    padding: 6px !important;
  }
}

@media only screen and (max-width: 576px) {
  .bannerSection {
    margin-top: 18%;
  }

  .overviewSection .sectionHead h2,
  .featureSection .sectionHead h2 {
    font-size: 23px;
    line-height: 30px !important;
    text-align: center;
  }

  .sectionHead h2 {
    font-size: 28px;
    line-height: 35px !important;
    text-align: center;
  }

  .right_flr {
    top: 0;
    bottom: auto;
    width: 15%;
  }

  .left_flr {
    top: -6%;
    left: 9px;
    width: 15%;
  }

  .btn_dwnld {
    position: fixed;
    bottom: 39%;
    left: -47px;
    width: fit-content;
    transform: rotate(270deg);
    padding: 10px 10px;
    background-color: #2c2129;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    border: 2px solid var(--orange);
    z-index: 999;

    &:hover {
      background-color: var(--white-color);
      color: var(--secondary-color);
      border: 2px solid #262626;
    }
  }
}