:root {
  --site-primary-color: #c899a1;
  --site-primary-color-dark: #cf8a95;
  --site-primary-color-light: #f5cdd0;
  --site-black-color: #333f5c;
  --site-gold-color: #9d844b;
  --site-green-color: #4ebe85;
  --site-green-color-dark: #2aaa69;
  --site-purple-color: #7c3eff;
  --site-purple-color-dark: #672ae7;
  scroll-padding-top: 85px;
}

*:focus {
  outline: none !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", monospace;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--site-black-color);
}

img,
video {
  width: auto;
  height: auto;
  max-width: 100%;
}

picture {
  display: block;
}

ol > li + li {
  margin-top: 10px;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

ul.flex-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

ul.flex-list > li {
  padding: 5px 15px;
  font-weight: 500;
  font-family: "Exo 2", sans-serif;
  letter-spacing: 1px;
}

ul.check-square > li {
  position: relative;
  padding-left: 30px;
}

ul.check-square > li + li {
  margin-top: 10px;
}

ul.check-square > li:last-child {
  margin-bottom: 0;
}

ul.check-square > li:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 24px;
  background-image: url(../images/icons/check-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
}

ul.check-square > li > ul {
  list-style: disc;
  list-style-position: inside;
  margin-top: 10px;
}

ul.check-square > li > ul > li + li {
  margin-top: 10px;
}

.mb-15px {
  margin-bottom: 15px;
}

.font-18px {
  font-size: 18px;
  font-weight: 500;
}

.site-primary-color-text {
  color: var(--site-primary-color);
}

.site-white-bg {
  background-color: #fff;
}

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

.site-primary-bg-light {
  background-color: var(--site-primary-color-light);
}

.visibility-hidden {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
}

.tile-bg,
.text-bg {
  background-position: center;
  background-size: 600px;
  background-repeat: repeat;
  position: relative;
  z-index: 0;
}

.tile-bg {
  background-image: url(../images/backgrounds/tile-bg-sm.jpg);
}

.text-bg {
  background-image: url(../images/backgrounds/text-bg-sm.jpg);
}

.text-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 1px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(252, 250, 255, 0.85);
  z-index: -1;
}

.common-sec {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  z-index: 0;
}

[class*="banner-wrapper"] {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}

.banner-wrapper {
  width: 100%;
  left: 0;
}

.banner-wrapper-half-start,
.banner-wrapper-half-end {
  width: 50%;
}

.banner-wrapper-half-start {
  left: 0;
}

.banner-wrapper-half-end {
  right: 0;
}

[class*="banner-wrapper"] img.cover,
[class*="banner-wrapper"] img.contain {
  width: 100%;
  height: 100%;
}

[class*="banner-wrapper"] img.cover {
  object-fit: cover;
}

[class*="banner-wrapper"] img.contain {
  object-fit: contain;
}

[class*="banner-wrapper"] img.left {
  object-position: left;
}

[class*="banner-wrapper"] img.right {
  object-position: right;
}

@media (min-width: 768px) {
  [class*="fixed-start-md"],
  [class*="fixed-end-md"] {
    position: absolute;
    width: calc(50% - 15px);
    height: 100%;
    z-index: -1;
    display: flex;
  }

  .fixed-start-md-top,
  .fixed-start-md-center {
    top: 0;
    left: 0;
    justify-content: flex-start;
  }

  .fixed-end-md-top,
  .fixed-end-md-center {
    top: 0;
    right: 0;
    justify-content: flex-end;
  }

  .fixed-start-md-top,
  .fixed-end-md-top {
    align-items: flex-start;
  }

  .fixed-start-md-center,
  .fixed-end-md-center {
    align-items: center;
  }

  .fixed-start-md-bottom,
  .fixed-end-md-bottom {
    bottom: 0;
    align-items: flex-end;
  }

  .fixed-start-md-bottom {
    left: 0;
    justify-content: flex-start;
  }

  .fixed-end-md-bottom {
    right: 0;
    justify-content: flex-end;
  }

  .fixed-start-md-center .img-box,
  .fixed-end-md-center .img-box {
    height: 100%;
    display: flex;
    align-items: center;
  }

  [class*="fixed-start-md"] img,
  [class*="fixed-end-md"] img {
    max-height: 100%;
  }

  [class*="fixed-start-md"] img.contain,
  [class*="fixed-end-md"] img.contain {
    width: auto;
    height: auto;
    object-fit: contain;
  }

  [class*="fixed-start-md"] img.cover,
  [class*="fixed-end-md"] img.cover {
    width: 100%;
    height: 100%;
    max-height: max-content;
    object-fit: cover;
  }

  .fixed-start-md-top img.cover,
  .fixed-end-md-top img.cover {
    object-position: top;
  }

  .fixed-start-md-center img.cover,
  .fixed-end-md-center img.cover {
    object-position: center;
  }

  .fixed-start-md-bottom img.cover,
  .fixed-end-md-bottom img.cover {
    object-position: bottom;
  }
}

@media (min-width: 992px) {
  [class*="fixed-start-lg"],
  [class*="fixed-end-lg"] {
    position: absolute;
    width: calc(50% - 15px);
    height: 100%;
    z-index: -1;
    display: flex;
  }

  .fixed-start-lg-top,
  .fixed-start-lg-center {
    top: 0;
    left: 0;
    justify-content: flex-start;
  }

  .fixed-end-lg-top,
  .fixed-end-lg-center {
    top: 0;
    right: 0;
    justify-content: flex-end;
  }

  .fixed-start-lg-top,
  .fixed-end-lg-top {
    align-items: flex-start;
  }

  .fixed-start-lg-center,
  .fixed-end-lg-center {
    align-items: center;
  }

  .fixed-start-lg-bottom,
  .fixed-end-lg-bottom {
    bottom: 0;
    align-items: flex-end;
  }

  .fixed-start-lg-bottom {
    left: 0;
    justify-content: flex-start;
  }

  .fixed-end-lg-bottom {
    right: 0;
    justify-content: flex-end;
  }

  .fixed-start-lg-center .img-box,
  .fixed-end-lg-center .img-box {
    height: 100%;
    display: flex;
    align-items: center;
  }

  [class*="fixed-start-lg"] img,
  [class*="fixed-end-lg"] img {
    max-height: 100%;
  }

  [class*="fixed-start-lg"] img.contain,
  [class*="fixed-end-lg"] img.contain {
    width: auto;
    height: auto;
    object-fit: contain;
  }

  [class*="fixed-start-lg"] img.cover,
  [class*="fixed-end-lg"] img.cover {
    width: 100%;
    height: 100%;
    max-height: max-content;
    object-fit: cover;
  }

  .fixed-start-lg-top img.cover,
  .fixed-end-lg-top img.cover {
    object-position: top;
  }

  .fixed-start-lg-center img.cover,
  .fixed-end-lg-center img.cover {
    object-position: center;
  }

  .fixed-start-lg-bottom img.cover,
  .fixed-end-lg-bottom img.cover {
    object-position: bottom;
  }
}

@media (max-width: 991px) {
  .common-sec:has(.fixed-start-lg-top),
  .common-sec:has(.fixed-end-lg-top),
  .common-sec:has(.fixed-start-lg-center),
  .common-sec:has(.fixed-end-lg-center) {
    padding-top: 0;
  }

  .common-sec:has(.fixed-start-lg-bottom),
  .common-sec:has(.fixed-end-lg-bottom) {
    padding-bottom: 0;
  }

  [class*="fixed-start-lg"],
  [class*="fixed-end-lg"] {
    display: block;
  }

  [class*="fixed-start-lg"] {
    text-align: left;
  }

  [class*="fixed-end-lg"] {
    text-align: right;
  }

  .fixed-start-lg-top,
  .fixed-end-lg-top,
  .fixed-start-lg-center,
  .fixed-end-lg-center {
    margin-bottom: 3rem;
  }

  .fixed-start-lg-bottom,
  .fixed-end-lg-bottom {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .common-sec:has(.fixed-start-md-top),
  .common-sec:has(.fixed-end-md-top),
  .common-sec:has(.fixed-start-md-center),
  .common-sec:has(.fixed-end-md-center) {
    padding-top: 0;
  }

  .common-sec:has(.fixed-start-md-bottom),
  .common-sec:has(.fixed-end-md-bottom) {
    padding-bottom: 0;
  }

  [class*="fixed-start-md"],
  [class*="fixed-end-md"] {
    display: block;
  }

  [class*="fixed-start-md"] {
    text-align: left;
  }

  [class*="fixed-end-md"] {
    text-align: right;
  }

  .fixed-start-md-top,
  .fixed-end-md-top,
  .fixed-start-md-center,
  .fixed-end-md-center {
    margin-bottom: 3rem;
  }

  .fixed-start-md-bottom,
  .fixed-end-md-bottom {
    margin-top: 3rem;
  }

  [class*="fixed-start-md"] img,
  [class*="fixed-end-md"] img {
    width: 100%;
    object-fit: cover;
  }
}

.overlay-light,
.overlay-dark {
  position: relative;
  z-index: 0;
}

.overlay-light:before,
.overlay-dark:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.overlay-light:before {
  background-color: rgba(255, 255, 255, 0.35);
}

.overlay-dark:before {
  background-color: rgba(0, 0, 0, 0.35);
}

.overlay-light .text-center-hv,
.overlay-dark .text-center-hv {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 500;
  width: 100%;
  padding: 2rem;
  margin: 0;
}

.overlay-light .text-center-hv {
  color: #000;
}

.overlay-dark .text-center-hv {
  color: #fff;
  text-shadow: 2px 2px 0 rgb(0 0 0 / 50%);
}

.faded-left:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgb(244 244 244 / 90%) 45%,
    rgba(244, 244, 244, 0) 100%
  );
}

.faded-right:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    270deg,
    #f4f4f4 26.98%,
    rgba(244, 244, 244, 0) 100%
  );
}

.common-heading {
  color: var(--site-black-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Exo 2", sans-serif;
}

.common-heading--line-height-0p8 {
  line-height: 0.8;
}

h1.common-heading {
  font-size: 40px;
}

h2.common-heading {
  font-size: 35px;
}

h3.common-heading {
  font-size: 30px;
}

h4.common-heading {
  font-size: 26px;
}

h5.common-heading {
  font-size: 22px;
}

h6.common-heading {
  font-size: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.common-card {
  padding: 15px;
  padding-bottom: 15px;
  border-radius: 15px;
  position: relative;
}

.common-card--footer {
  padding-bottom: 75px;
}

.common-card .img-box img {
  border-radius: 10px;
}

.common-card .img-box + .content {
  margin-top: 15px;
}

.common-card .content .btn-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-top: 1px solid var(--site-primary-color-light);
}

.common-card--hz .img-box {
  float: right;
  max-width: 100px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.common-card--hz .img-box + .content {
  margin-top: 0;
}

@media (min-width: 768px) {
  .common-card--hz .img-box {
    max-width: 150px;
  }
}

.btn-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.common-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 5px;
  background-color: var(--site-primary-color);
  border: 1px solid var(--site-primary-color);
  color: #fff !important;
  text-decoration: none;
  transition: all 0.4s;
}

.common-btn:hover {
  background-color: var(--site-primary-color-dark);
  border-color: var(--site-primary-color-dark);
}

.common-btn--book {
  background-color: var(--site-green-color);
  border-color: var(--site-green-color);
}

.common-btn--book:hover {
  background-color: var(--site-green-color-dark);
  border-color: var(--site-green-color-dark);
}

.common-btn--offers {
  background-color: var(--site-purple-color);
  border-color: var(--site-purple-color);
}

.common-btn--offers:hover {
  background-color: var(--site-purple-color-dark);
  border-color: var(--site-purple-color-dark);
}

@media (max-width: 576px) {
  .common-btn {
    font-size: 14px;
    padding: 5px 15px;
  }
}

.flex-hv-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.count-2 {
  column-count: 2;
}

.count-3 {
  column-count: 3;
}

@media (min-width: 576px) {
  .count-sm-2 {
    column-count: 2;
  }
}

@media (min-width: 768px) {
  .count-md-2 {
    column-count: 2;
  }
  .count-md-3 {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .count-lg-4 {
    column-count: 4;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}

@media (max-width: 991px) {
  .common-sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  h1.common-heading {
    font-size: 35px;
  }

  h2.common-heading {
    font-size: 30px;
  }

  h3.common-heading {
    font-size: 26px;
  }

  h4.common-heading {
    font-size: 22px;
  }

  h5.common-heading {
    font-size: 20px;
  }

  h6.common-heading {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .common-sec {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  h1.common-heading {
    font-size: 30px;
  }

  h2.common-heading {
    font-size: 26px;
  }

  h3.common-heading {
    font-size: 22px;
  }

  h4.common-heading {
    font-size: 20px;
  }

  h5.common-heading {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  h1.common-heading {
    font-size: 24px;
  }

  h2.common-heading {
    font-size: 22px;
  }

  h3.common-heading {
    font-size: 20px;
  }

  h4.common-heading {
    font-size: 18px;
  }

  h5.common-heading,
  h6.common-heading {
    font-size: 16px;
  }

  .mb-50px {
    margin-bottom: 15px;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* === header === */
header {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  z-index: 9;
  box-shadow: 0 5px 10px 0 #00000040;
}

@media (max-width: 1199px) {
  header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  header .row > div:first-child {
    order: 1;
  }

  header .row > div:last-child {
    order: 2;
  }

  header .row > div:nth-child(3) {
    order: 3;
  }

  header .social img {
    height: 20px;
  }
}

header .social img {
  height: 25px;
}

/* top-nav */
@media (min-width: 1200px) {
  header .row {
    position: relative;
  }
  .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
  }

  .top-nav .hasDropdown {
    position: relative;
    overflow: hidden;
  }

  .top-nav .hasDropdown:hover {
    overflow: visible;
  }

  .top-nav .dropdown-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background-color: var(--site-primary-color);
    box-shadow: 0 5px 5px 0 #00000020;
  }

  .top-nav .hasDropdown > .link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .top-nav .hasDropdown > .link:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../images/icons/down-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .top-nav .link {
    display: block;
    font-size: 15px;
    color: var(--site-primary-color);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    padding: 5px 12px;
    min-width: 0;
  }

  .top-nav .link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--site-primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s;
  }

  .top-nav .dropdown-nav .link::before {
    background-color: #fff;
  }

  .top-nav .link:hover:before {
    width: 100%;
  }

  .top-nav .dropdown-nav .link {
    color: #fff;
  }

  header .social {
    position: absolute;
    right: calc(var(--bs-gutter-x) * 0.5);
    top: -25px;
    width: 55px;
    height: 20px;
  }

  header .social > a > img {
    height: 20px;
  }
}

.ctaHeader {
  gap: 15px;
}

.ctaHeader > li > .link {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  padding: 10px;
  background-color: var(--site-primary-color);
  border-radius: 5px;
  transition: all 0.4s;
}

.ctaHeader > li > .link.offers {
  background-color: var(--site-purple-color);
}

.ctaHeader > li > .link.offers:hover {
  background-color: var(--site-purple-color-dark);
}

.ctaHeader > li > .link.book {
  background-color: var(--site-green-color);
}

.ctaHeader > li > .link.book:hover {
  background-color: var(--site-green-color-dark);
}

.ctaHeader > li > .link:hover {
  background-color: var(--site-primary-color-dark);
}

@media (max-width: 399px) {
  .ctaHeader > li > .link {
    font-size: 1rem;
    padding: 5px 10px;
  }
}

/* === sidebar === */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  max-width: 300px;
  z-index: 99999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 5px 0 5px 0 #00000010;
  box-shadow: 5px 0 5px 0 #00000010;
  text-align: center;
}

.sidebar.sidebar-triggered {
  display: block;
  pointer-events: all;
  left: 0;
}

.sidebar.sidebar-triggered ~ .mask {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgb(255 255 255 / 85%);
  z-index: 9999;
  cursor: pointer;
  transition: 0.5s;
}

.closeIcon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.sidebar > .img-box.logo-box {
  padding: 15px;
}

.sidebar ul li a,
.sidebar ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: var(--site-primary-color);
  transition: 0.3s;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid var(--site-primary-color);
  cursor: pointer;
}

.sidebar ul li a:hover,
.sidebar ul li span:hover {
  color: #fff;
  background-color: var(--site-primary-color);
  text-decoration: none;
}

.sidebar ul li a.offers {
  background-color: var(--site-purple-color);
  color: #fff;
  border: none;
  margin-top: 30px;
}

.sidebar ul li a.offers:hover {
  background-color: var(--site-purple-color-dark);
}

.sidebar ul li a.book {
  background-color: var(--site-green-color);
  color: #fff;
  border: none;
  margin-top: 10px;
}

.sidebar ul li a.book:hover {
  background-color: var(--site-green-color-dark);
}

.sidebar ul li span.consult {
  background-color: var(--site-primary-color);
  color: #fff;
  border: none;
  margin-top: 10px;
}

.sidebar ul li span.consult:hover {
  background-color: var(--site-primary-color-dark);
}

.sidebar ul li a img {
  width: 15px;
  margin-right: 10px;
}

.sidebar ul li.active a {
  color: var(--site-gold-color);
}

@media (max-width: 575px) {
  .sidebar {
    max-width: 100%;
  }
}

/* hamburger */
#hamburger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--site-primary-color);
}

#hamburger span + span {
  margin-top: 1px;
}

main {
  overflow: hidden;
}

/* === common-sec--hero-banner === */
.common-sec--hero-banner {
  min-height: 700px;
  /* background-color: var(--site-primary-color-light); */
}

.common-sec--hero-banner-light {
  background-color: var(--site-primary-color-light);
}

.common-sec--hero-banner .heading,
.common-sec--hero-banner-light .heading {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  font-family: "Exo 2", sans-serif;
}

.common-sec--hero-banner .heading span,
.common-sec--hero-banner-light .heading span {
  font-size: 40px;
  font-weight: 700;
}

.common-sec--hero-banner__cover-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.common-sec--hero-banner__cover-img > img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.common-sec--hero-banner .container,
.common-sec--hero-banner-light .container {
  overflow: hidden;
  position: relative;
  z-index: 11;
}

.body-loaded .common-sec--hero-banner .container .img-box {
  opacity: 0;
  animation: banner-animation 1.5s linear forwards;
  animation-delay: 0.5s;
}

@keyframes banner-animation {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .common-sec--hero-banner,
  .common-sec--hero-banner-light {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .common-sec--hero-banner .heading,
  .common-sec--hero-banner-light .heading {
    font-size: 22px;
  }

  .common-sec--hero-banner .heading span,
  .common-sec--hero-banner-light .heading span {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .common-sec--hero-banner .heading,
  .common-sec--hero-banner-light .heading {
    font-size: 20px;
  }

  .common-sec--hero-banner .heading span,
  .common-sec--hero-banner-light .heading span {
    font-size: 30px;
  }
}

.common-sec--hero-banner .big-heading {
  span {
    display: block;
  }

  span:first-child {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
  }

  span:last-child {
    font-size: 120px;
    color: var(--site-primary-color);
    text-shadow: -2px 2px 0 #a0797f;
  }
}

@media (max-width: 1199px) {
  .common-sec--hero-banner {
    min-height: 400px;
  }

  .common-sec--hero-banner .big-heading {
    span:first-child {
      font-size: 20px;
    }

    span:last-child {
      font-size: 60px;
      text-shadow: -1px 1px 0 #a0797f;
    }
  }
}

@media (max-width: 991px) {
  .common-sec--hero-banner {
    min-height: 300px;
  }

  .common-sec--hero-banner .big-heading {
    span:first-child {
      font-size: 20px;
    }

    span:last-child {
      font-size: 50px;
    }
  }
}

@media (max-width: 767px) {
  .common-sec--hero-banner {
    min-height: 180px;
  }

  .common-sec--hero-banner .big-heading {
    span:first-child {
      font-size: 20px;
    }

    span:last-child {
      font-size: 30px;
    }
  }
}

/* == laser-hair-removal page == */
.common-sec--laser-hair-removal-banner {
  height: auto;
}

.img-box--soprano-machine img {
  height: 90%;
  animation: swivel 1.5s linear forwards;
}

@keyframes swivel {
  0% {
    transform: rotateY(0);
  }

  100% {
    transform: rotateY(90);
  }
}
/* == laser-hair-removal page == */

/* === common-sec--featured === */
.common-sec--featured .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 30px;
}

.common-sec--featured .grid .featured-content {
  grid-column: 1 / -1;
}

.common-sec--featured .featured-content h1.common-heading {
  text-align: center;
}

.common-sec--featured .featured-content h1.common-heading + p {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
}

.common-sec--featured .common-card {
  text-align: center;
  padding: 50px 25px;
}

.common-sec--featured .common-card .img-box > a {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 100%;
  border-radius: 50%;
  margin: auto;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.common-sec--featured .common-card .img-box > a:before {
  content: "View Details";
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgb(200 153 161 / 80%);
  border-radius: 50%;
  pointer-events: none;
  font-weight: 700;
  color: #fff;
  font-size: 25px;
  text-shadow: -1px -1px 0 rgb(0 0 0 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.25);
  transition: all 0.4s;
}

.common-sec--featured .common-card:hover .img-box > a:before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.common-sec--featured .common-card .img-box + .content {
  margin-top: 40px;
}

.common-sec--featured .common-card .img-box + .content > .common-heading {
  font-size: 28px;
}

.common-sec--featured .common-card .img-box + .content > .common-heading a {
  color: var(--site-black-color);
  text-decoration: none;
  transition: all 0.4s;
}

.common-sec--featured
  .common-card:hover
  .img-box
  + .content
  > .common-heading
  a {
  color: var(--site-primary-color);
}

.common-sec--featured
  .common-card
  .img-box
  + .content
  > .common-heading
  + .common-btn {
  margin-top: 20px;
  border-radius: 50px;
}

@media (max-width: 1199px) {
  .common-sec--featured .common-card {
    padding: 50px 10px;
  }
}

@media (max-width: 991px) {
  .common-sec--featured .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: start;
    grid-gap: 30px;
  }
  .common-sec--featured .common-card {
    padding: 50px 10px;
  }

  .common-sec--featured .grid .featured-content {
    grid-column: 1 / 2;
  }

  .common-sec--featured .common-card .img-box + .content > .common-heading {
    font-size: 24px;
  }

  .common-sec--featured .featured-content h1.common-heading,
  .common-sec--featured .featured-content h1.common-heading + p {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .common-sec--featured .grid {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }

  .common-sec--featured .common-card {
    padding: 20px;
  }

  .common-sec--featured .common-card .img-box + .content {
    margin-top: 20px;
  }

  .common-sec--featured .common-card .img-box + .content > .common-heading {
    font-size: 20px;
  }

  .common-sec--featured
    .common-card
    .img-box
    + .content
    > .common-heading
    + .common-btn {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .common-sec--featured .grid .img-box > a,
  .common-sec--featured .grid .img-box img {
    width: 100px;
  }

  .common-sec--featured .common-card .img-box > a:before {
    font-size: 20px;
  }
}

/* === common-sec--why-choose === */
.common-sec--why-choose .why-choose-list {
  position: relative;
  max-width: 1920px;
  min-height: 375px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: auto;
}

.common-sec--why-choose .why-choose-list .img-box {
  position: absolute;
  width: calc(50% - 15px);
  height: 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.common-sec--why-choose .why-choose-list .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .common-sec--why-choose .why-choose-list {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
  }

  .common-sec--why-choose .why-choose-list .img-box {
    position: relative;
    height: auto;
    width: 100%;
    max-width: 540px;
    padding: 0 12px;
    top: 0;
    right: 0;
    transform: translateY(0);
    margin-left: auto;
    margin-right: auto;
    order: 1;
    margin-bottom: 15px;
  }

  .common-sec--why-choose .why-choose-list .container {
    order: 2;
  }
}

@media (max-width: 575px) {
  .common-sec--why-choose .why-choose-list .img-box {
    max-width: 100%;
  }
}

/* === common-sec--review === */
.common-sec--review .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  padding-top: 25px;
}

.common-sec--review .grid .review-card {
  padding: 45px;
}

.common-sec--review .grid .review-card .icon-star-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common-sec--review .grid .review-card .star-icons {
  text-align: right;
}

.common-sec--review .grid .review-card .treatment-type {
  font-style: italic;
  font-weight: 500;
}

.common-sec--review .grid .review-card .icon-star-wrapper + .reviewer-name {
  margin-top: 10px;
}

.common-sec--review .grid .review-card .reviewer-name {
  color: var(--site-primary-color);
  font-weight: 500;
  font-size: 18px;
}

.common-sec--review .grid .review-card .reviewer-name + .review-copies {
  margin-top: 15px;
}

.common-sec--review .grid .review-card .common-btn {
  border-radius: 0;
  font-size: 12px;
  padding: 5px 10px;
}

@media (max-width: 1199px) {
  .common-sec--review .grid .review-card {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .common-sec--review .grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 0;
  }

  .common-sec--review .grid .review-card:nth-child(2) {
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .common-sec--review .grid {
    grid-gap: 15px;
  }
}

/* === common-sec--gallery === */
.common-sec--gallery .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.common-sec--gallery .grid > .img-box {
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.common-sec--gallery .grid > .img-box.zoom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/icons/zoom-icon.svg);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: center;
  background-color: rgb(0 0 0 / 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  z-index: 99;
}

.common-sec--gallery .grid > .img-box.zoom:hover:before {
  background-size: 75px;
  opacity: 1;
}

.common-sec--gallery .grid > .img-box img {
  transition: all 0.4s;
}

/* .common-sec--gallery .grid > .img-box img:hover {
  transform: scale(1.1);
} */

.common-sec--gallery .grid .insta-block {
  position: relative;
}

.common-sec--gallery .grid .insta-block .insta-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #fff;
  background-color: rgba(255, 56, 119, 0.8);
  font-size: 48px;
  width: max-content;
  transition: all 0.4s;
}

.common-sec--gallery .grid .insta-block .insta-follow-btn:hover {
  background-color: rgba(255, 56, 119, 1);
  border-radius: 20px;
}

.common-sec--gallery .grid .insta-block .insta-follow-btn span {
  display: inline-block;
  margin-left: 15px;
}

.vdo-box {
  position: relative;
}

.vdo-box .play-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  position: absolute;
  background-image: url(../images/icons/play-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.4s;
}

.vdo-box .play-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .common-sec--gallery .grid {
    grid-gap: 15px;
  }

  .common-sec--gallery .grid .insta-block .insta-follow-btn {
    font-size: 28px;
    padding: 10px;
  }

  .common-sec--gallery .grid .insta-block .insta-follow-btn img {
    max-width: 30px;
  }

  .common-sec--gallery .grid .insta-block .insta-follow-btn span {
    margin-left: 10px;
  }
}

@media (max-width: 575px) {
  .common-sec--gallery .grid {
    grid-template-columns: 1fr;
  }

  .common-sec--gallery .grid .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === footer === */
footer {
  position: relative;
  z-index: 0;
}
.upper-footer {
  padding: 50px 0;
}

.upper-footer ul {
  margin-bottom: 0;
}

.upper-footer ul li {
  margin-bottom: 10px;
}

.upper-footer ul li a,
.upper-footer ul li span {
  color: var(--site-black-color);
  text-decoration: none;
  transition: all 0.4s;
  border-bottom: 1px solid var(--site-primary-color);
  cursor: pointer;
}

.upper-footer ul li a:hover,
.upper-footer ul li span:hover {
  color: var(--site-primary-color);
}

.upper-footer .hours-block .hours {
  color: #787878;
}

.lower-footer {
  padding: 30px 0;
  border-top: 1px solid #fff;
  color: #787878;
}

.lower-footer a {
  color: #787878;
  text-decoration: none;
}

/* === laser-hair-removal page === */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

.offer__card {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 20px;
  position: relative;
}

.offer__card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px 0px rgb(0 0 0 / 15%);
  z-index: -1;
}

.offer__card .img-box {
  height: 300px;
}

.offer__card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.offer__card__copy {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  justify-items: center;
  align-content: center;
  text-align: center;
  line-height: 1;
}

#thirtyPercentOff .offer__card__copy .percent {
  color: var(--site-primary-color);
  font-size: 70px;
  text-align: center;
}

#thirtyPercentOff .offer__card__copy .percent span {
  font-size: 120px;
}

#thirtyPercentOff .offer__card__copy .condition {
  font-size: 50px;
  font-style: italic;
}

@media (max-width: 1199px) {
  #thirtyPercentOff .offer__card__copy .percent {
    font-size: 50px;
  }

  #thirtyPercentOff .offer__card__copy .percent span {
    font-size: 100px;
  }

  #thirtyPercentOff .offer__card__copy .condition {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  #thirtyPercentOff .offer__card__copy .percent {
    font-size: 40px;
  }

  #thirtyPercentOff .offer__card__copy .percent span {
    font-size: 80px;
  }

  #thirtyPercentOff .offer__card__copy .condition {
    font-size: 30px;
  }
}

@media (max-width: 375px) {
  #thirtyPercentOff .offer__card__copy .percent {
    font-size: 30px;
  }

  #thirtyPercentOff .offer__card__copy .percent span {
    font-size: 60px;
  }

  #thirtyPercentOff .offer__card__copy .condition {
    font-size: 20px;
  }
}

/* === laser-hair-removal-offers-sliders === */
.common-sec--laser-hair-removal-offers {
  height: auto;
}
.laser-hair-removal-offers-sliders .owl-nav {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 150px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.laser-hair-removal-offers-sliders .owl-nav button.owl-next,
.laser-hair-removal-offers-sliders .owl-nav button.owl-prev {
  box-shadow: 0 0 5px 0 #00000040;
  background-color: transparent;
  transition: all 0.4s;
}

.laser-hair-removal-offers-sliders .owl-nav button.owl-next:hover,
.laser-hair-removal-offers-sliders .owl-nav button.owl-prev:hover {
  background-color: #fff;
}

.laser-hair-removal-offers-sliders .owl-nav button.owl-next span,
.laser-hair-removal-offers-sliders .owl-nav button.owl-prev span {
  color: #fff;
  text-shadow: 0 0 10px rgb(0 0 0 / 25%);
  transition: all 0.4s;
}

.laser-hair-removal-offers-sliders .owl-nav button.owl-next:hover span,
.laser-hair-removal-offers-sliders .owl-nav button.owl-prev:hover span {
  color: var(--site-primary-color);
}

/* === videos-sliders-carousel === */
.videos-sliders-carousel .owl-dots {
  margin-top: 10px;
  text-align: center;
}

.videos-sliders-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.videos-sliders-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #b6a0ad;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.videos-sliders-carousel .owl-dots .owl-dot.active span {
  width: 15px;
}

.videos-sliders-carousel .owl-dots .owl-dot.active span,
.videos-sliders-carousel .owl-dots .owl-dot:hover span {
  background: var(--site-primary-color);
}

@keyframes right-indicator-anim {
  0% {
    right: 0;
  }
  100% {
    right: 100px;
  }
}

.videos-sliders-carousel .vdo-box {
  border: 1px solid #f4ebf1;
  padding: 5px;
  border-radius: 15px;
}

.videos-sliders-carousel .vdo-box img {
  border-radius: 10px;
}

.videos-sliders-carousel--raw .owl-stage {
  display: flex;
  align-items: center;
}

.accordion-item {
  background-color: transparent;
  border: 1px solid var(--site-primary-color-light) !important;
  border-radius: 10px !important;
}

.accordion-item + .accordion-item {
  margin-top: 20px;
}

.accordion-button {
  font-size: 1.6rem;
  font-weight: 700;
  background-color: transparent;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  color: var(--site-primary-color);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button.collapsed,
.accordion-button.collapsed:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

/* === hydrafacial-skin-types-row === */
.hydrafacial-skin-types-row .common-card .img-box img {
  max-width: 100px;
}

/* === form === */
.consultation {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  max-width: 500px;
  z-index: 9999999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: -5px 0 5px 0 #00000040;
  box-shadow: -5px 0 5px 0 #00000040;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation.pulled {
  right: 0;
}

.consultation.pulled ~ .mask {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgb(255 255 255 / 85%);
  z-index: 9999;
  cursor: pointer;
  transition: 0.5s;
}

.consultation form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}

.consultation form .input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}

.consultation form .input-wrapper label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  color: var(--site-black-color);
  font-weight: 500;
}

.consultation form .input-wrapper label img {
  width: 25px;
}

.consultation form .input-wrapper input,
.consultation form .input-wrapper textarea {
  display: block;
  padding: 5px 10px;
  border: 1px solid var(--site-primary-color);
  background-color: transparent;
  color: var(--site-black-color);
  font-weight: 300;
  font-size: 14px;
}

.consultation form .input-wrapper input::placeholder,
.consultation form .input-wrapper textarea::placeholder {
  color: #a2a2a2;
  font-weight: 300;
}

.consultation form button.common-btn {
  background-color: var(--site-green-color);
  font-weight: 500;
  border-color: var(--site-green-color);
}

.consultation form button.common-btn:hover {
  background-color: var(--site-primary-color);
  border-color: var(--site-primary-color);
  color: var(--site-black-color);
}

/* === treatments page === */
.common-card--h {
  background-color: var(--site-primary-color);
}

.common-card--h .img-box > a {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  grid-gap: 20px;
}

.common-card--step {
  background-color: rgb(207 184 255 / 25%);
}

.common-card--step .common-heading {
  letter-spacing: 2px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
}

.common-card--step.tile-bg .common-heading {
  border-bottom: 2px solid var(--site-primary-color-light);
}

.common-card--step .common-heading:first-letter {
  font-size: 3.5rem;
  color: var(--site-primary-color);
  font-weight: 300;
  letter-spacing: 2px;
}

.common-card--step__thumb {
  width: 75px;
  float: right;
  padding-left: 15px;
  border-left: 2px solid #fff;
  margin-left: 15px;
}

.common-card--step p.content:last-child {
  margin-bottom: 0;
}

/* === price-card === */
.price-card {
  background-color: #f6cccf;
  padding: 40px;
  border-radius: 15px;
  height: 100%;
  position: relative;
}

.price-card__cost {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: #fff;
  text-shadow: 2px 2px 5px rgb(0 0 0 / 50%);
}

.price-card__cost > .line-through {
  display: block;
  font-size: 2rem;
  text-decoration: line-through;
  font-weight: 700;
  color: var(--site-primary-color);
  text-shadow: none;
}

.price-card__no-off,
.price-card__off {
  color: var(--site-primary-color);
  text-shadow: none;
  font-size: 2rem;
  letter-spacing: 1px;
  background-color: #f5e3e9;
  position: absolute;
  top: 0;
  right: 0;
  border: 4px solid #f6cccf;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 0 15px;
  display: flex;
  gap: 7px;
}

.price-card__no-off {
  font-weight: 300;
}

.price-card__off:before {
  content: "SAVE";
  display: inline-block;
  font-weight: 300;
}

.price-card__details .package-name {
  font-size: 2.5rem;
}

/* .price-card__details .package-name + .package-detail {
  margin-top: 10px;
} */

.price-card__details .package-detail {
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-top: 10px;
}

.price-card__list-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fff;
}

.price-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  letter-spacing: 1px;
  min-height: 75px;
}

.price-card__list li .start {
  text-align: left;
  font-weight: 500;
  min-width: 0;
  max-width: 400px;
}

.price-card__list li .end {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--site-primary-color);
  background-color: #fff;
  padding: 5px 15px;
  min-width: 100px;
  border-radius: 10px;
}

.price-card__list li > input {
  min-width: 0;
  width: 13px;
}

.price-card__list li > input[type="checkbox"] {
  width: 40px;
  height: 40px;
}

.price-card__list li > label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: calc(100% - 23px);
  margin-left: 15px;
}

ul.price-card__list:last-child {
  padding: 15px;
  background-color: #ffe0e3;
  border-radius: 10px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .price-card {
    padding: 15px;
  }

  .price-card__list-heading {
    font-size: 2rem;
  }

  ul.price-card__list:last-child {
    margin-top: 15px;
  }

  .price-card__list li {
    font-size: 1.4rem;
  }

  .price-card__list li .end {
    padding: 5px 10px;
  }

  .price-card__cost,
  .price-card__details .package-name {
    font-size: 2rem;
  }

  .price-card__cost {
    letter-spacing: 2px;
  }

  .price-card__details .package-detail {
    font-size: 1.4rem;
  }
}

.img-box--border-top-left,
.img-box--border-top-right,
.img-box--border-top-left-right {
  position: relative;
  z-index: 0;
}

.img-box--border-top-left {
  padding-left: 10px;
  padding-top: 10px;
}

.img-box--border-top-right {
  padding-right: 10px;
  padding-top: 10px;
}

.img-box--border-top-left-right {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
}

.img-box--border-top-left:before,
.img-box--border-top-right:before,
.img-box--border-top-left-right:before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 0;
  border: 2px solid #f6cccf;
  z-index: -1;
}

.common-sec--hero-banner-light .img-box--border-top-left:before,
.common-sec--hero-banner-light .img-box--border-top-right:before,
.common-sec--hero-banner-light .img-box--border-top-left-right:before {
  border-color: #fff;
}

.img-box--border-top-left:before {
  left: 0;
  border-top-left-radius: 20px;
}

.img-box--border-top-right:before {
  right: 0;
  border-top-right-radius: 20px;
}

.img-box--border-top-left-right:before {
  width: 100%;
  left: 0;
  right: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.img-box--border-top-left img {
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.img-box--border-top-right img {
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.img-box--border-top-left-right img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

@media (min-width: 576px) {
  .img-box.float-sm-right {
    float: right;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .img-box.float-sm-left {
    float: left;
    padding-right: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .img-box.float-md-right {
    float: right;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .img-box.float-md-left {
    float: left;
    padding-right: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .img-box.float-lg-right {
    float: right;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .img-box.float-lg-left {
    float: left;
    padding-right: 10px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .img-box.float-lg-right {
    float: right;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .img-box.float-xl-left {
    float: left;
    padding-right: 10px;
    margin-bottom: 10px;
  }
}

/* tab-row */
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tab-button {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  color: var(--site-black-color);
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid lavender;
  transition: all 0.4s;
  cursor: pointer;
  outline: none;
}

.tab-button.active {
  color: #fff;
  background-color: var(--site-purple-color);
}

.tab-buttons ~ .tab-content {
  margin-top: 5rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content .offer-announcement {
  /* font-size: 3rem; */
  /* font-weight: 700; */
}

@media (max-width: 767px) {
  .tab-button {
    font-size: 1.2rem;
    flex: 0 0 calc(50% - 5px);
    min-width: calc(50% - 5px);
    padding: 10px;
  }
}
.summer-sale-banner {
  position: relative;
}

.summer-sale-banner .book-now-thumb {
  display: inline-block;
  position: absolute;
  width: 400px;
  max-width: 30%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  .summer-sale-banner .book-now-thumb {
    width: 100%;
    max-width: 500px;
  }
}
