/* --------------- font family ----------------- */
@font-face {
  font-family: "polysans-neutral";
  src: url(../fonts/polysans/polysans-neutral.otf);
}

@font-face {
  font-family: "polysans-neutralitalic";
  src: url(../fonts/polysans/polysansitalic-neutralitalic.otf);
}

@font-face {
  font-family: "polysans-median";
  src: url(../fonts/polysans/polysans-neutral.otf);
}

@font-face {
  font-family: "manrope-regular";
  src: url(../fonts/manrope/manrope-regular.ttf);
}

@font-face {
  font-family: "manrope-medium";
  src: url(../fonts/manrope/manrope-medium.ttf);
}

@font-face {
  font-family: "mixta-pro-medium";
  src: url(../fonts/mixta-pro/mixta-pro-medium.otf);
}

:root {
  --primary-color: #534032;
  --secondary-color: #f9b523;
  --bg-primary-color: #f0eae8;
  --light-gray: #d9d9d9;
  --white-color: #ffffff;
  --black-color: #000000;
  --polysans-neutral: "polysans-neutral";
  --polysans-neutralitalic: "polysans-neutralitalic";
  --polysans-median: "polysans-median";
  --manrope-regular: "manrope-regular";
  --manrope-medium: "manrope-medium";
  --mixta-pro-medium: "mixta-pro-medium";
  --fs-xsmall: 12px;
  --fs-small: 14px;
  --fs-regular: 16px;
  --fs-large: 18px;
  --fs-xl: 20px;
  --fs-xxl: 24px;
  --fs-26: 26px;
  --title-fs: 32px;
  --banner-title-fs: 55px;
}

/* --------------- general ------------------- */
* {
  scroll-behavior: smooth;
}

body {
  font-size: var(--fs-regular);
  line-height: 30px;
  color: var(--black-color);
  font-family: var(--polysans-neutral);
  overflow-x: hidden;
}

.section {
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

h1,
h2 {
  font-size: 50px;
  font-family: var(--mixta-pro-medium);
}

p {
  margin-bottom: 0;
  color: var(--black-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.max-width-400 {
  max-width: 400px;
}
.blockquote{
      margin-bottom: 0;
        color: var(--black-color);
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 16px;
  
}
.max-width-150 {
  max-width: 150px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

input.form-control,
select.form-select {
  padding: 12px 16px;
  border-radius: 10px;
}

.section-title .subtitle {
  color: var(--black-color);
  font-family: var(--polysans-neutral);
  text-transform: uppercase;
  font-size: var(--fs-xl);
  margin-bottom: 15px;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-title .title {
  color: var(--black-color);
  font-family: var(--polysans-neutral);
  font-size: var(--banner-title-fs);
  font-weight: 400;
  line-height: 60px;
    word-wrap: break-word;
      overflow-wrap: break-word;
}

.section-title .title-two {
  color: var(--black-color);
  font-family: var(--mixta-pro-medium);
  font-size: var(--banner-title-fs);
  line-height: 58px;
  margin-bottom: 15px;
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title .section-content {
  font-size: var(--fs-small);
  font-family: var(--polysans-neutral);
  color: var(--black-color);
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

/* ------------------- buttons ------------------ */

.btn-main,
.btn-main:focus,
.btn-main:active,
.btn-main.active {
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-family: var(--polysans-neutral);
  color: var(--white-color);
  font-weight: 400;
  background-color: var(--primary-color) !important;
  text-decoration: none;
  transition: all 0.3s;
  font-size: var(--fs-small);
  line-height: 14px;
}

.btn-main img {
  margin-left: 8px;
  margin-top: 2px;
  transition: all 0.3s;
}

.btn-main:hover {
  background-color: #413023 !important;
  border: 1px solid #413023 !important;
  color: var(--white-color) !important;
}

.btn-two,
.btn-two:focus,
.btn-two:active,
.btn-two.active {
  padding: 12px 16px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-family: var(--polysans-neutral);
  color: var(--black-color);
  font-weight: 400;
  background-color: var(--secondary-color) !important;
  text-decoration: none;
  transition: all 0.3s;
  font-size: var(--fs-regular);
  line-height: 14px;
  width: fit-content;
  border: 1px solid var(--secondary-color) !important;
}

.btn-two img {
  margin-left: 8px;
  margin-top: 3px;
  width: auto !important;
}

.btn-two:hover {
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--white-color) !important;
}

/* ------------------- header ------------------ */
.header {
  background: rgba(48, 48, 48, 0.3);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.header .logo,
.header .mobile-logo {
  height: 50px;
  width: auto;
}

.header .navbar {
  padding: 15px 0px;
  transition: all 0.3s;
}

header.fixed-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  background: var(--white-color);
  z-index: 1024;
  box-shadow: 0px 4px 4px 0px #0000001a;
  animation: slideDown 0.3s ease;
}

/* Smooth appearance animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header .navbar-nav li {
  margin-right: 10px;
}

.header .navbar-nav li a {
  color: var(--white-color);
  font-family: var(--polysans-neutral);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 2px;
  padding: 0px 8px;
}

.header.fixed-header .navbar-nav li a {
  color: var(--black-color);
}

.bottom-header .icon-btn {
  background: transparent;
  border: none;
  margin-left: 30px;
}

header.fixed-header .bottom-header .navbar-nav li a,
.bottom-header.fixed .navbar-nav li a {
  color: var(--black-color);
}

header.fixed-header .bottom-header .navbar-nav li a.active,
.bottom-header.fixed .navbar-nav li a.active {
  color: var(--secondary-color)
}

.offcanvas-header .btn-close {
  background-image: url("../img/icons/close-black.png");
  top: 35px;
  right: 30px;
  position: absolute;
  opacity: 1;
  width: 30px;
  height: 30px;
  padding: 0px !important;
  background-size: 30px 30px;
}

.offcanvas-header .btn-close:focus {
  box-shadow: none;
}

.header .navbar-toggler {
  border: none;
  padding: 0;
  box-shadow: none;
}

.header .navbar-toggler-icon {
  background-image: none;
  width: 35px;
  height: 35px;
}

.header.fixed-header .navbar-toggler-icon {
  filter: brightness(0) !important;
}

.header .btn-main {
  margin-left: 24px;
}

.header .navbar-nav li a.active,
.header .navbar-nav li a:hover {
  color: var(--secondary-color);
}

/* --------------------- footer ------------------- */
.footer {
  color: var(--white-color);
  padding-top: 70px;
  padding-bottom: 30px;
  position: relative;
  background-color: var(--primary-color);
  z-index: 1;
  overflow: hidden;
}

.footer-logo {
  height: 75px;
}

.footer-text {
  color: #efeff0;
  font-family: var(--inter-regular);
  margin-bottom: 0;
}

.footer-title {
  font-family: var(--polysans-neutral);
  color: #efeff0;
  margin-bottom: 14px;
  font-size: 25px;
}

.footer-list a {
  color: var(--white-color);
  font-family: var(--inter-regular);
}

.footer-title-two {
  font-family: var(--polysans-neutral);
  color: #f8b520;
  margin-bottom: 10px;
  font-size: var(--fs-regular);
}

.footer-list li {
  transition: all 0.5s;
}

.footer-list li:hover {
  transform: translateY(-4px) !important;
}

.footer-list li:last-child {
  margin-bottom: 0px;
}

.footer-social-links {
  gap: 16px;
}

.footer .copy-right a {
  color: var(--white-color);
}

.footer .copy-right,
.footer-list-two li a {
  font-family: var(--manrope-regular);
  color: var(--white-color);
  font-size: var(--fs-small);
}

.footer-list-two {
  gap: 32px;
}

.footer-list-two li a {
  color: var(--light-gray);
}

.footer-list-two li a:hover {
  color: var(--white-color);
}

.footer hr {
  border-color: var(--secondary-color);
  margin: 30px 0px 20px 0px;
}

/* --------------------- banner ------------------- */

.banner-section {
  position: relative;
  display: flex;
  align-items: end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
  min-height: 105vh;
  height: 100%;
  z-index: 1;
}

.banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 99.48%);
}

.banner-section .banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 10px 10px 0px 10px;
}

.banner-section .banner-subtitle {
  font-family: var(--polysans-neutral);
  font-size: var(--fs-xl);
  color: var(--white-color);
  letter-spacing: 2.4px;
  margin-bottom: 25px;
  font-weight: 400;
    word-wrap: break-word;
      overflow-wrap: break-word;
}

.banner-section .banner-title {
  font-size: var(--banner-title-fs);
  color: var(--white-color);
  font-family: var(--mixta-pro-medium);
  line-height: 60px;
  margin-bottom: 25px;
  text-align: left;
  letter-spacing: 1px;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.banner-carousel {
  margin-top: -50px;

}

/* 
.banner-carousel .owl-nav {
  position: absolute; 
  left: 34.5%;
  bottom: 100px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-left: 70px;
  z-index: 99;
  width: fit-content;
}

.banner-carousel .owl-nav button {
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 0 !important;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin: 0 !important;
  transition: all 0.3s ease !important;
}
.banner-carousel .owl-nav button:hover {
  background: var(--secondary-color) !important;
}
.banner-carousel .owl-nav button .nav-arrow {
  width: 22px;
  height: 22px;
}
.banner-carousel .owl-carousel .owl-item {
  background: transparent !important;
}

.banner-carousel .owl-carousel .fadeOut {
  animation-name: fadeOutCustom;
}

@keyframes fadeOutCustom {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.banner-carousel .owl-carousel .fadeIn {
  animation-name: fadeInCustom;
}

@keyframes fadeInCustom {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} */
.banner-section .banner-content {
  position: relative;
}

.banner-content .banner-nav {
  position: absolute;
  right: -48px;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  z-index: 9;
}

.banner-content .banner-nav button {
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 0 !important;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  border: 0;
}

.banner-content .banner-nav button:hover {
  background: var(--secondary-color) !important;
}

.banner-content .banner-nav .nav-arrow {
  width: 24px;
  height: 24px;
}

/* ---------------------------About Section---------------------------  */
.about-section {
  background-color: var(--bg-primary-color);
  padding: 90px 0px;
}

.about-section .about-img {
  border-radius: 15px;
}

.about-carousel .owl-nav button {
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 0 !important;
  width: 49px;
  height: 49px;
  transition: all 0.3s ease !important;
  margin: 0px !important;
}

.about-carousel .owl-nav .owl-prev {
  left: 0% !important;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}

.about-carousel .owl-nav .owl-next {
  right: 0% !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.about-carousel .owl-nav button:hover {
  background: var(--secondary-color) !important;
}

.about-carousel .owl-nav button .nav-arrow {
  width: 22px;
  height: 22px;
}

.about-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-carousel .owl-dots button span {
  width: 9px !important;
  height: 9px !important;
  margin: 6px 3px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px !important;
}

.about-carousel .owl-dots button.active span {
  background: #f8b520 !important;
  width: 19px !important;
  border-radius: 7px !important;
}

/* --------------------------Amenities Section---------------------------   */
.amenities-section .amenities-item {
  text-align: center;
  padding: 0px 20px;
}

.amenities-section .amenities-item img {
  margin-bottom: 20px;
  width: 55px;
  height: 55px;
}

.amenities-section .amenities-item .amenities-title {
  font-family: var(--polysans-neutral);
  font-size: var(--fs-xl);
  color: var(--black-color);
  margin-bottom: 18px;
  font-weight: 400;
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.amenities-section .amenities-item .amenities-content {
  font-family: var(--polysans-neutral);
  font-size: var(--fs-regular);
  color: var(--black-color);
  margin-bottom: 0;
  font-weight: 400;
  line-height: 24px;
}

/* ---------------------------Chef Highlights Section---------------------------   */
.chief-highlights-section {
  position: relative;
  padding: 30px 0px 70px;
  overflow: hidden;
}

.chief-highlights-section .section-title .title {
  line-height: 73px;
}

.chief-highlights-section .section-title .section-content {
  font-size: var(--fs-regular);
  line-height: 24px;
}

.chief-highlights-section .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.chief-highlights-section .chef-img {
  position: absolute;
  bottom: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  object-fit: cover;
}

.chief-highlights-section .menu-block {
  margin-bottom: 15px;
}

.chief-highlights-section .menu-header {
  display: flex;
  align-items: center;
}

.chief-highlights-section .menu-title {
  font-size: 25px; 
  color: var(--black-color);
  font-weight: 400;
  line-height: 25px;
  font-family: var(--polysans-neutral);
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.chief-highlights-section .menu-line {
  flex: 1;
  margin: 8px 15px 8px 0;
  border-top: 1px solid #d6d6d6;
}

.chief-highlights-section .menu-price {
  font-size: var(--fs-regular);
  white-space: nowrap;
  color: var(--black-color);
  font-family: var(--polysans-neutral);
  font-weight: 400;
  line-height: 25px;
}

.chief-highlights-section .menu-desc {
  font-size: var(--fs-regular);
  color: var(--black-color);
  font-family: var(--polysans-neutral);
  font-weight: 400;
  line-height: 25px;
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.chief-highlights-section .bottom-text {
  font-size: var(--fs-regular);
  color: var(--black-color);
  font-family: var(--polysans-neutralitalic);
  line-height: 16px;
  font-weight: 400;
}

/* -----------------------------------Tariff Section----------------------------------- */
.tariff-section .section-title .section-content {
  font-size: var(--fs-regular);
  line-height: 24px;
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.tariff-card {
  border: 0px;
  position: relative;
  height: 100%;
  border-radius: 15px;
  transition: all 0.3s;
}

.tariff-card:hover {
  transform: translateY(-10px);
}

.tariff-card .card-body {
  padding: 0px;
}

.tariff-card .card-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -20px;
  transition: all 300ms ease;
}

.tariff-card .card-title {
  font-size: 25px;
  font-family: var(--polysans-median);
  color: var(--white-color);
  margin-bottom: 10px;
  transition: all 300ms ease;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tariff-card .destination-main-img {
  transition: all 0.3s;
}

.tariff-card .destination-main-img img {
  border-radius: 15px;
  transition: all 0.3s;
}

.tariff-card .destination-main-img::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 70%;
  width: 100%;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  border-radius: 15px;
}

.tariff-card .card-text {
  font-size: var(--fs-regular);
  color: #afb1b6;
  margin-bottom: 10px;
  font-weight: 400;
  transition: all 300ms ease;
  font-family: var(--polysans-neutral);
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.tariff-card .card-price {
  font-size: 25px;
  color: var(--white-color);
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 600;
  font-family: var(--polysans-median);
}
.tariff-card .card-price span{
  z-index: 1;
    position: relative;
    color: #fff;
    font-size: 16px;
    margin-left: 5px;
    font-weight: 400;
}

.tariff-card:hover .btn-two {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  transition: all 0.3s;
}

.tariff-card:hover .btn-two img {
  filter: brightness(0) invert(1) !important;
  transition: all 0.3s;
}

/* -----------------------------------Testimonial Section----------------------------------- */
/* 
.testimonial-section {
  padding-top: 30px;
}
 */
.testimonial-section .testimonial-container {
  padding: 35px 60px 35px 60px;
  background-color: var(--bg-primary-color);
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial-section .testimonial-container .bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0px;
  z-index: -1;
}

.testimonial-section .testimonial-container .bg-shape img {
  width: 100%;
}

.testimonial-section .testimonial-carousel-wrapper {
  background-color: var(--white-color);
  padding: 16px 16px 0px;
  border-radius: 10px;
}

.testimonial-carousel .owl-item img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 42px 0 !important;
}

.testimonial-carousel .author-info p {
  font-family: var(--manrope-medium);
  font-weight: 500;
  color: var(--black-color);
  font-size: var(--fs-regular);
}

.testimonial-carousel .owl-dots {
  text-align: left;
}

.testimonial-carousel .owl-dots button span {
  width: 9px !important;
  height: 9px !important;
  margin: 6px 4px !important;
  background: rgba(186, 186, 186, 0.5) !important;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px !important;
}

.testimonial-carousel .owl-dots button.active span {
  background: #f8b520 !important;
  width: 19px !important;
  border-radius: 7px !important;
}

.testimonial-carousel .testimonial-text {
  width: 90%;
}
.testimonial-carousel .testimonial-text p {
  font-size: var(--fs-xl);
  color: var(--black-color);
  font-family: var(--polysans-neutralitalic);
  line-height: 32px;
  word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-carousel .item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
/* -----------------------------------Nearby Location -------------------------------- */
.nearby-card{
    padding: 15px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background-color: var(--white-color);
    transition: all 0.5s ease;
}
.nearby-card .img-box{
    font-size: 16px;
}
.nearby-card .img-box img{
    width: 30px;
    margin-top: -8px;
}
.nearby-card .content-box{
    font-size: 20px;
}
.nearby-card:hover{
        box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.07);
    border-color: var(--secondary-color);
}
/* -----------------------------------Enquiry section-------------------------------- */

.enquiry-section .section-content {
  color: #61646b;
}

.contact-content .contact-info {
  margin-top: 15px;

  border: 1px solid var(--secondary-color);

  border-radius: 10px;

  padding: 16px;
}

.contact-content .contact-info h5 {
  font-family: var(--poly-sans-median);

  margin-bottom: 20px;
}

.contact-content .contact-info p {
  font-family: var(--polysans-neutral);
  font-weight: 400;
  font-size: var(--fs-regular);
  color: var(--black-color);
}

.contact-item span {
  margin-bottom: 0;

  line-height: 30px;

  font-family: var(--polysans-median);
  font-size: var(--fs-regular);
  margin-right: 10px;
  font-weight: 600;
}

.contact-content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.contact-content h5 {
  font-family: var(--polysans-neutral);
  margin-bottom: 30px;
  font-size: 35px;
  color: #2e343f;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-content p.content {
  font-family: var(--polysans-neutral);
  color: #61646b;
  font-size: var(--fs-small);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-form .input-wrapper {
  margin-bottom: 15px;
}

.contact-form .input-wrapper label {
  font-family: var(--polysans-neutral);
  font-weight: 400;
  color: var(--black-color);
  font-size: var(--fs-regular);
  margin-bottom: 6px;
  line-height: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: #19191b;
  color: #19191b;
  background-repeat: 10px;
}

.contact-form textarea {
  padding: 16px;
}

.contact-form .btn-main {
  padding: 12px 16px;
  font-size: var(--fs-regular);
}

.contact-form input::placeholder,
.contact-form select,
.contact-form textarea::placeholder {
  color: #19191b;
  font-size: var(--fs-regular);
  font-family: var(--polysans-neutral);
  font-weight: 400;
}

.custom-date {
  position: relative;
  background: url(../img/icons/calendar.png) no-repeat right 12px center;
  background-size: 24px;
  padding-right: 40px;
  cursor: pointer;
}

.custom-date::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("../img/icons/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;

  padding-right: 40px;
  /* space for arrow */
  cursor: pointer;
}

/* ------------privacy policy---------------- */

.privacy-section,
.terms-and-conditions-section {
  padding: 120px 0px 50px !important;
}

.privacy-section .section-title .subtitle,
.terms-and-conditions-section .section-title .subtitle {
  line-height: 26px;
}

.privacy-section h2,
.terms-and-conditions-section h2 {
  font-size: 28px;

  margin-bottom: 8px;

  margin-top: 20px;

  font-family: var(--poly-sans-neutral);
}

.privacy-section a,
.terms-and-conditions-section a {
  text-decoration: underline;
}