@charset "UTF-8";
/*** ----- FONTS  ----- ***/
/*  
    roboto-light    -  font-weight: 300
    roboto-regular  -  font-weight: 500
    roboto-bold     -  font-weight: 700
    roboto-black    -  font-weight: 900

    poppins-light    -  font-weight: 300
    poppins-regular  -  font-weight: 400
    poppins-medium   -  font-weight: 500
    poppins-bold     -  font-weight: 700

    libre-baskerville-regular   -  font-weight: 400
    libre-baskerville-bold      -  font-weight: 700
/*


/*** ----- COLORS  ----- ***/
/*** ----- GENERAL STYLES  ----- ***/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}

body {
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5em;
  color: #333333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body.modal-active {
  overflow-y: hidden;
}

p {
  font-size: 1.7rem;
  line-height: 1.5em;
  margin-bottom: 0.6em;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-weight: 400;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1em;
}
h1.front {
  font-size: 3.7rem;
  color: #fff;
}

h2 {
  font-size: 3rem;
  line-height: 1.1em;
}

h3 {
  font-size: 2.3rem;
  line-height: 1.3em;
}

h4 {
  font-size: 2rem;
  line-height: 1.3em;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.3em;
}

img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: 0.25s ease;
  color: #CD8C5A;
}
a:hover {
  color: #6E8773;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1440px;
  padding-left: 30px;
  padding-right: 30px;
}

.container-fluid {
  max-width: 1600px;
}

.no-margin {
  margin: 0;
}

.red-clr {
  color: red;
}

.bold {
  font-weight: 700;
}

/*** ----- Single PAGE and POST  ----- ***/
.page-single,
.post-single {
  padding-top: 2rem;
  padding-bottom: 0;
}

/*  
######  Sections  ###### 
*/
.full-w-section {
  padding: 3rem 0;
}
.full-w-section.img-background {
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  padding: 1.2rem 0;
  background-color: rgba(4, 4, 4, 0.5);
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
  width: 90%;
  max-width: 980px;
  z-index: 1;
}
header .header-logo {
  max-width: 170px;
  padding-top: 0.2rem;
  padding-bottom: 1rem;
}
header .menu-icon {
  align-items: center;
  width: 32px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
}

.menu-icon-close {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  opacity: 0.6;
  z-index: 1000;
  cursor: pointer;
}
.menu-icon-close:hover {
  opacity: 1;
}
.menu-icon-close::before, .menu-icon-close::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}
.menu-icon-close::before {
  transform: rotate(45deg);
}
.menu-icon-close::after {
  transform: rotate(-45deg);
}

#overlay-mobile {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.6s ease;
  pointer-events: none;
  height: 100%;
}
#overlay-mobile.show-overlay {
  right: -100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.main-menu ul.primary-menu {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  height: 100%;
  font-family: "Poppins", sans-serif;
}
.main-menu ul.primary-menu li {
  line-height: 2.2em;
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
.main-menu ul.primary-menu li a {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.main-menu ul.primary-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(216.8604651163, 167.2790697674, 129.1395348837) 0%, #CD8C5A 50%, rgb(187.2558139535, 113.488372093, 56.7441860465) 100%);
  opacity: 0;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.main-menu ul.primary-menu li a:hover {
  color: rgb(216.8604651163, 167.2790697674, 129.1395348837);
}
.main-menu ul.primary-menu li a:hover::after {
  width: 100%;
  opacity: 1;
}
.main-menu ul.primary-menu.mobile-menu {
  display: flex;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 15rem;
  left: 5rem;
}
.main-menu ul.primary-menu.mobile-menu li {
  line-height: 2.8em;
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
.main-menu ul.primary-menu.mobile-menu li a {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111010;
}

.hero-section {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.hero-section .hero-content {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-section .hero-content h1 {
  color: #fff;
  font-weight: 200;
  font-size: 7.8rem;
  text-align: left;
  margin-bottom: 3rem;
  max-width: 730px;
}
.hero-section .hero-content h1 strong {
  font-weight: 700;
}
.hero-section .hero-content h1 span {
  color: #CD8C5A;
}
.hero-section .hero-content .hero-titles .subtitle {
  color: #f1f1f5;
  font-size: 2.6rem;
  line-height: 1.4em;
}
.hero-section .hero-content .hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-section .hero-content .hero-cta .hero-social {
  display: flex;
  justify-content: flex-start;
  height: 2rem;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.hero-section .hero-content .hero-cta .hero-social .icon {
  height: 3rem;
  margin-right: 2rem;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.hero-section .hero-content .hero-cta .hero-social .icon a {
  width: auto;
  height: 2.2rem;
  display: flex;
}
.hero-section .hero-content .hero-cta .hero-social .icon:first-child {
  margin-left: 0;
}
.hero-section .hero-content .hero-cta .hero-social .icon:hover {
  opacity: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  /* Covers bottom half */
  background: linear-gradient(to top, black, transparent);
  pointer-events: none;
  /* So it doesn’t block clicks */
}
.hero-section.front-hero-section {
  overflow: hidden;
  position: relative;
}
.hero-section.front-hero-section video {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .hero-section.front-hero-section video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-section.front-hero-section video {
    width: auto;
    height: 100%;
  }
}
.hero-section.page-hero-section {
  margin-top: 15rem;
  height: 300px;
  z-index: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hero-section.page-hero-section video {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .hero-section.page-hero-section video {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .hero-section.page-hero-section video {
    width: auto;
    height: 100%;
  }
}
.hero-section.page-hero-section .hero-content {
  position: relative;
  bottom: 2rem;
  left: 0;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  transform: none;
}
.hero-section.page-hero-section .hero-content h1 {
  color: #fff;
  font-weight: 500;
  font-size: 5rem;
  text-align: left;
  margin-bottom: 3rem;
}
.hero-section.page-hero-section .hero-content h1 strong {
  font-weight: 700;
}

.about-us {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.about-us .sect-content {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.about-us h2 {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.about-us h2 span {
  color: #CD8C5A;
  font-weight: 600;
}
.about-us p {
  color: #1F1F1F;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5em;
}
.about-us p b {
  font-weight: 500;
}
.about-us .cta-button {
  margin-top: auto;
}

.counter-section {
  background-color: #6E8773;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.counter-section .counter-items {
  padding-left: 7rem;
  padding-right: 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
  align-items: flex-start;
}
.counter-section .counter-items .counter-item {
  display: flex;
  flex-direction: column;
  flex: 0 1 20%;
}
.counter-section .counter-items .counter-item .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  height: 100%;
}
.counter-section .counter-items .counter-item .icon img {
  max-width: 100px;
}
.counter-section .counter-items .counter-item .value {
  text-align: center;
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
.counter-section .counter-items .counter-item .description {
  font-size: 1.8rem;
  text-align: center;
}

.vision {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.vision .sect-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: 5rem;
}
.vision h2 {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.vision h2 span {
  color: #CD8C5A;
  font-weight: 600;
}
.vision p {
  color: #1F1F1F;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5em;
}
.vision p b {
  font-weight: 500;
}
.why-us {
  background-color: #EEEEEE;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.why-us .it-image {
  position: relative;
  max-width: 92%;
  border-radius: 2rem;
}
.why-us .it-image .cta-btn {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #CD8C5A;
  background-image: url(../../assets/images/arrow_outward.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  transition: all 0.2s ease;
}
.why-us .it-image .cta-btn:hover {
  border: 2px solid #fff;
}
.why-us .sect-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.why-us h2 {
  margin-top: 0;
  margin-bottom: 4rem;
}
.why-us h2 span {
  color: #CD8C5A;
  font-weight: 600;
}
.why-us p {
  color: #1F1F1F;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5em;
}
.why-us p b {
  font-weight: 500;
}
.practical-info {
  background-color: #161616;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.practical-info .small-title {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.practical-info h2 {
  font-size: 7rem;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 4rem;
  color: #fff;
}
.practical-info h2 span {
  color: #CD8C5A;
  font-weight: 600;
}
.practical-info p {
  color: #1F1F1F;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5em;
}
.practical-info p b {
  font-weight: 500;
}
.practical-info .contact-details {
  padding-left: 4rem;
  display: flex;
  align-items: center;
}
.practical-info .contact-details .contact-title {
  font-family: "Montserrat", sans-serif;
  color: #CD8C5A;
  font-size: 5rem;
  font-weight: 600;
  margin-right: 5rem;
}
.practical-info .contact-details .contact-contacts {
  color: #fff;
}
.practical-info .contact-details .contact-contacts .contact {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.practical-info .contact-details .contact-contacts .contact a {
  margin-left: auto;
}
.practical-info .info-box-left {
  padding-right: 6rem;
}
.practical-info .info-box-right {
  padding-left: 6rem;
}
.practical-info .info-box {
  position: relative;
  border-top: 1px solid #ccc;
  padding-top: 3rem;
  padding-bottom: 3rem;
  height: 100%;
}
.practical-info .info-box:last-child {
  border-bottom: 1px solid #ccc;
}
.practical-info .info-box .title {
  color: #CD8C5A;
  padding-left: 3rem;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.practical-info .info-box .title::before {
  position: absolute;
  left: 0;
  top: 3.5rem;
  content: "";
  background-image: url(../../assets/images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 15px;
  width: 20px;
}
.practical-info .info-box .text {
  padding-left: 3rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4em;
}

.formulas {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.formulas h2 {
  text-align: center;
  margin-bottom: 7rem;
  font-size: 7rem;
  font-weight: 300;
}
.formulas .additional-info .title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.formulas .additional-info ul {
  margin-bottom: 2rem;
}
.formulas .additional-info ul li {
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6em;
}
.formulas .additional-info ul li::before {
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  background-image: url(../../assets/images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 13px;
  width: 15px;
}
.formulas .additional-info p {
  padding-left: 0;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6em;
}

.cta-sect.cta-sect-1 {
  padding: 6rem 0;
}
.cta-sect.cta-sect-1 H2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #fff;
  font-size: 5.6rem;
  line-height: 5.9rem;
  margin-bottom: 3rem;
}
.cta-sect.cta-sect-1 p {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
}
.cta-sect.cta-sect-1 p.txt-lg {
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
}
.cta-sect.cta-sect-1 .cta-button {
  width: 100%;
  margin-top: 4rem;
}
.cta-sect.cta-sect-1 .cta-button a {
  margin: 0.5rem auto 2rem auto !important;
}

.newsl-sect.newsl-sect-1 {
  padding: 6rem 0;
}
.newsl-sect.newsl-sect-1 H2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 5.6rem;
  line-height: 5.9rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
.newsl-sect.newsl-sect-1 p {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #909090;
}
.newsl-sect.newsl-sect-1 p.txt-lg {
  text-transform: uppercase;
}
.newsl-sect.newsl-sect-1 .cta-button {
  width: 100%;
  margin-top: 4rem;
}
.newsl-sect.newsl-sect-1 .cta-button a {
  margin: 0.5rem auto 2rem auto !important;
}

.gmap-section {
  height: 450px;
}

.booking-section {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #EEE;
}

.contact-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.contact-section .form-content {
  display: flex;
  align-items: stretch;
  /* Ensures both columns are equal height */
}
.contact-section .it-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 2rem;
}
.contact-section .it-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-width: 100%;
  /* Ensures coverage if image is too narrow */
}
.contact-section h2 {
  text-align: center;
  margin-bottom: 7rem;
  font-size: 6rem;
  font-weight: 300;
}

/* Bottom stripe */
.bottom-stripe {
  position: fixed;
  left: 0;
  bottom: -100px;
  /* hidden by default */
  width: 100%;
  background: #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  box-shadow: 0 -2px 10px rgba(131, 131, 131, 0.3);
  transition: bottom 0.4s ease;
  z-index: 9999;
}

/* Visible state */
.bottom-stripe.show {
  bottom: 0;
}

.bottom-stripe button {
  background: #CD8C5A;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.bottom-stripe button:hover {
  background: #e65c00;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #007BFF;
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1000;
}

#scrollToTopBtn.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollToTopBtn:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

#scrollToTopBtn span.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ft-spc {
  height: 4rem;
  width: 100%;
}

footer {
  margin-top: auto;
  padding: 3rem 0 0 0;
}
footer .footer-widgets .footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 4.5rem;
  width: 100%;
}
footer .footer-widgets .footer-logo img {
  max-width: 250px;
}
footer.footer-one {
  background-color: #161616;
  color: #faebd7;
  font-size: 1.4rem;
}
footer.footer-one p {
  color: #cbc4ba;
  font-size: 1.4rem;
}
footer.footer-one a {
  position: relative;
  color: #cbc4ba;
  text-decoration: none;
  display: inline-block;
}
footer.footer-one a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(216.8604651163, 167.2790697674, 129.1395348837) 0%, #CD8C5A 50%, rgb(187.2558139535, 113.488372093, 56.7441860465) 100%);
  opacity: 0;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
footer.footer-one a:hover {
  color: rgb(216.8604651163, 167.2790697674, 129.1395348837);
}
footer.footer-one a:hover::after {
  width: 100%;
  opacity: 1;
}
footer.footer-one .footer-menu {
  margin-bottom: 4rem;
}
footer.footer-one .footer-menu ul {
  display: flex;
  justify-content: center;
}
footer.footer-one .footer-menu ul li {
  margin-right: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
}
footer.footer-one .footer-social-legal {
  padding: 2.5rem 0;
  border-top: 1px solid #373737;
}
footer.footer-one .footer-social {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  margin-left: auto;
  padding-bottom: 6rem;
  justify-content: center;
  align-items: center;
}
footer.footer-one .footer-social .icon {
  opacity: 0.7;
  margin: 0 15px 15px 15px;
  height: 2.5rem;
  width: auto;
  transition: all 0.2s ease;
}
footer.footer-one .footer-social .icon:last-child {
  margin-right: 0;
}
footer.footer-one .footer-social .icon img {
  width: auto;
  height: 100%;
}
footer.footer-one .footer-social .icon:hover {
  opacity: 1;
}
footer.footer-one .footer-disclaimer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #373737;
}
footer.footer-one .legal-stuff-menu ul {
  display: flex;
  justify-content: center;
}
footer.footer-one .legal-stuff-menu ul li {
  font-size: 1.4rem;
  margin-left: 2rem;
}
footer.footer-one .legal-stuff-menu ul li:first-child {
  margin-left: 0;
}
footer.footer-one .copyright {
  padding: 0.7rem 0;
  background-color: #111010;
  color: #585858;
  font-size: 1.3rem;
}
footer.footer-one .copyright .copyright-copy,
footer.footer-one .copyright .developer-company {
  text-align: center;
}

.featured-image {
  margin-bottom: 30px;
}

.post-category {
  margin-bottom: 10px;
}

.post-date {
  margin-bottom: 10px;
}

.card {
  box-shadow: 0px 10px 23px 0px rgba(77, 77, 77, 0.15);
  overflow: hidden;
  padding-bottom: 25px;
  position: relative;
  padding-bottom: 80px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.card.rnd-corners {
  border-radius: 8px;
}
.card .card-image {
  margin-bottom: 2rem;
  height: auto;
  position: relative;
  overflow: hidden;
  max-height: 287px;
}
.card .card-image img {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}
.card .card-title {
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: 700;
  padding: 0 2.3rem 0 2.3rem;
  margin-bottom: 1.3rem;
  transition: all 0.3s ease;
}
.card .card-content {
  padding: 0 2.3rem 0 2.3rem;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #333333;
  transition: all 0.3s ease;
}
.card .card-read-more {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.4em;
  color: #848e99;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  right: 2.6rem;
}
.card.card-1 {
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: none;
}
.card.card-1 .card-image {
  margin: 0;
  height: 100%;
  position: relative;
  max-height: 100%;
}
.card.card-1 .card-image img {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}
.card.card-1 .card-title,
.card.card-1 .card-info {
  position: absolute;
}
.card.card-1 .card-title {
  top: 0;
  padding: 3rem;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
}
.card.card-1 .card-title .title-01 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.card.card-1 .card-title .title-02 {
  color: #CD8C5A;
  font-size: 4.2rem;
}
.card.card-1 .card-info {
  bottom: 0;
  left: 0;
  padding: 3.5rem;
}
.card.card-1 .card-info .card-price {
  margin-bottom: 3rem;
  padding-left: 2.2rem;
}
.card.card-1 .card-info .card-price .price {
  font-size: 5rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
.card.card-1 .card-info .card-price .card-price-details {
  color: #fff;
  font-size: 1.8rem;
}
.card.card-1 .card-info .features-list {
  color: #fff;
}
.card.card-1 .card-info .features-list .list-item {
  font-size: 1.8rem;
  position: relative;
  padding-left: 2.2rem;
}
.card.card-1 .card-info .features-list .list-item::before {
  position: absolute;
  left: -7px;
  top: 5px;
  content: "";
  background-image: url(../../assets/images/checkmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}
.card.card-1 .cta-btn {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  background-color: #CD8C5A;
  background-image: url(../../assets/images/arrow_outward.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  transition: all 0.2s ease;
}
.card.card-1 .cta-btn:hover {
  border: 2px solid #fff;
}
.card.card-2 {
  padding: 3rem 2rem 3rem 3.2rem;
  border-radius: 20px;
}
.card.card-2 .card-title {
  position: relative;
}
.card.card-2 .card-title::before {
  position: absolute;
  left: -7px;
  top: 5px;
  content: "";
  background-image: url(../../assets/images/checkmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
}
.card.card-2 .card-content {
  margin-bottom: 1rem;
}
.cta-button {
  cursor: pointer;
}
.cta-button a.btn {
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 23.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: #CD8C5A;
  border: 1px solid #CD8C5A;
  border-radius: 6px;
  padding: 20px 50px;
  display: block;
  margin: 15px 0;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 180px;
  text-align: center;
  display: flex;
  transition: all 0.3s ease;
}
.cta-button a.btn svg {
  fill: #FFF;
  width: 15px;
  margin-left: 2rem;
  transition: all 0.3s ease;
}
.cta-button a.btn:hover {
  color: #CD8C5A;
  background-color: #fff;
}
.cta-button a.btn:hover svg {
  fill: #CD8C5A;
}
.cta-button a.btn.ghost {
  color: #CD8C5A;
  background-color: none;
  border: 1px solid #CD8C5A;
}
.cta-button a.btn.ghost:hover {
  color: #fff;
  background-color: #CD8C5A;
}
.cta-button a.btn.footer-stripe {
  padding: 10px 30px;
  font-size: 1.6rem;
}
.cta-button .get-offers-button {
  color: #FFF;
  text-align: center;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 23.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #CD8C5A;
  border: 1px solid #CD8C5A;
  border-radius: 6px;
  padding: 5px 30px;
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 180px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button .get-offers-button:hover {
  color: #CD8C5A;
  background-color: #fff;
}

@media (min-width: 768px) {
  /*** ----- GENERAL STYLES  ----- ***/
  h1 {
    font-size: 5.4rem;
  }
  h1.front {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 187px;
  }
  .card .card-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  /*** ----- Footer  ----- ***/
  footer.footer-one .footer-social {
    height: 2rem;
    margin-bottom: 0;
  }
  footer.footer-one .footer-social .icon {
    height: 2.1rem;
  }
  footer.footer-one .footer-social .icon:first-child {
    margin-left: 0;
  }
  footer.footer-one .legal-stuff-menu ul li:first-child {
    margin-left: 2rem;
  }
  footer.footer-one .copyright .copyright-copy {
    text-align: right;
  }
  footer.footer-one .copyright .developer-company {
    text-align: left;
  }
}
@media (min-width: 992px) {
  /*** ----- GENERAL STYLES  ----- ***/
  h1 {
    font-size: 7.5rem;
  }
  h1.front {
    font-size: 9rem;
  }
  h2 {
    font-size: 5.5rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  .main-menu ul.primary-menu {
    display: flex;
  }
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 160px;
  }
}
@media (min-width: 1200px) {
  /*** ----- Cards  ----- ***/
  .card .card-image {
    height: 195px;
  }
}