* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  overflow-x: hidden;
  background: url("../images/leather-bg.png") center/cover;
  background-attachment: fixed;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1520px;
}

/*==============================*/
.main-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 25px 0;
  transition: 0.5s;
}

.main-header .container,
.hero-section .container {
  max-width: 92%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 80px;
  transform: scale(1) translateY(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-header.fixed .logo img {
  transform: scale(0.875) translateY(-2px);
}

.menu-btn {
  width: 55px;
  height: 55px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-end;
}

.menu-btn span {
  height: 2px;
  background: #cfa94d;
  transition: 0.4s;
  border-radius: 20px;
}

.menu-btn span:nth-child(1) {
  width: 35px;
}

.menu-btn span:nth-child(2) {
  width: 26px;
}

.menu-btn span:nth-child(3) {
  width: 35px;
}

.main-header.fixed {
  padding: 8px 0;
  backdrop-filter: blur(18px);
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: header 0.6s;
}

/* Buttons */

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
}

/* Gold Button */

.enquire-btn {
  color: #fff;
  background: linear-gradient(135deg, #d7b45d, #b88a2b);
  box-shadow: 0 10px 25px rgba(184, 138, 43, 0.3);
}

.enquire-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(184, 138, 43, 0.4);
}

/* White Glass Button */

.call-btn {
  color: #b88a2b;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 138, 43, 0.25);
  backdrop-filter: blur(12px);
}

.call-btn svg {
  transition: 0.3s;
}

.call-btn:hover {
  background: #b88a2b;
  color: #fff;
  transform: translateY(-3px);
}

.call-btn:hover svg {
  transform: rotate(-15deg);
}

/* Space before menu */

.menu-btn {
  margin-left: 10px;
}

@keyframes header {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

/*==============================*/
.offcanvas {
  background: var(--BRAND-COLOR, #b9975b);
}

.offcanvas-body {
  display: flex;
  align-items: center;
  padding: 0 35px;
}

button.btn-close.btn-close-white {
  font-size: 24px;
  color: #fff;
  opacity: 1;
}

.offcanvas ul {
  width: 100%;
  list-style: none;
  padding: 0;
}

.offcanvas li {
  margin: 25px 0;
}

.offcanvas a {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  transition: 0.4s;
  letter-spacing: 3px;
}

.offcanvas a:hover {
  color: #4f2c1d;
  padding-left: 20px;
}

/*========================================*/

.enquiry-modal {
  border: none;

  overflow: hidden;

  border-radius: 30px;

  background: #fff;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/*========================================*/

.enquiry-left {
  background: linear-gradient(160deg, #d5b15b, #b48525);

  height: 100%;

  color: #fff;

  padding: 70px 45px;

  display: flex;

  justify-content: center;

  flex-direction: column;
}

.enquiry-left h2 {
  font-size: 42px;

  font-weight: 300;

  margin-bottom: 20px;
}

.enquiry-left p {
  opacity: 0.9;

  line-height: 1.8;
}

/*========================================*/

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 30px;
}

/*========================================*/

.modal-body form {
  margin-top: 15px;
}

form label {
  font-size: 14px;

  margin-bottom: 8px;

  font-weight: 600;

  color: #555;
  display: none;
}

/*========================================*/

.form-control,
.form-select {
  height: 56px;

  border-radius: 12px;

  border: 1px solid #ddd;

  box-shadow: none;

  padding: 15px;
  color: #666;
}

.form-control:focus,
.form-select:focus {
  border-color: #b48525;

  box-shadow: 0 0 0 0.2rem rgba(180, 133, 37, 0.15);
}

/*========================================*/

.form-check {
  display: flex;

  align-items: flex-start;
}

.form-check-input {
  margin-top: 6px;
}

.form-check-label {
    font-size: 10px;
    line-height: 1.7;
    margin-left: 10px;
    color: #666 !important;
    display: block;
    font-weight: 500;
}


.modal-body h2 {
    color: #4f2c1d;
    font-size: 24px;
}

/*========================================*/

.submit-btn {
  width: 100%;

  border: none;

  height: 56px;

  border-radius: 60px;

  color: #fff;

  font-weight: 600;

  letter-spacing: 0.5px;

  background: linear-gradient(135deg, #d5b15b, #b48525);

  transition: 0.4s;
}

.submit-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 35px rgba(180, 133, 37, 0.3);
}


.error-message{
    color:#c0392b;
    font-size:12px;
    margin-top:5px;
    display:none;
}

.form-control.is-invalid,
.form-select.is-invalid{
    border-color:#c0392b;
    box-shadow:none;
}

.form-control.is-valid,
.form-select.is-valid{
    border-color:#198754;
    box-shadow:none;
}

.form-check-input.is-invalid{
    border-color:#c0392b;
}

div#agreeError {
    display: none !IMPORTANT;
}



/*========================================*/
.custom-close {
  position: absolute;
  right: 10px;
  top: 12px;
  z-index: 100;
  border-radius: 50%;
  opacity: 1;
  padding: 12px;
}

/*========================================*/

.modal.fade .modal-dialog {
  transform: translateY(50px) scale(0.95);

  transition: 0.45s;
}

.modal.show .modal-dialog {
  transform: translateY(0) scale(1);
}

/* Hero Slider */
.hero-section {
  padding-top: 130px;
}

.heroSwiper {
  height: 85vh;
  border-radius: 0;
  overflow: hidden;
}

.hero-image {
  position: relative;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  object-position: top;
  border-bottom-left-radius: 135px;
}

/*.vector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 620px;
  z-index: 5;
}

.vector img {
  width: 100%;
  height: auto;
  border-radius: 0;
}*/

.vector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  z-index: 5;
  opacity: 0;
}

.vector img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Animate only active slide */
.swiper-slide-active .vector {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*  background:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.15)
    );*/
}

/*=============================*/
.swiper-pagination {
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.3;
  transition: 0.4s;
}

.swiper-pagination-bullet-active {
  width: 50px;
  border-radius: 30px;
  background: #d6b15d;
  opacity: 1;
}

/* About */

/*================================*/

.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Decorative Gold Lines */

.about-pattern {
  position: absolute;
  inset: 0;
  background: url("../images/about-lines.png") center center no-repeat;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
}

/*================================*/

.about-image {
  text-align: center;
  padding-right: 60px;
}

.about-image img {
  width: 100%;

  max-width: 620px;

  transition: 0.6s;
}

.about-image:hover img {
  transform: scale(1.03);
}

/*================================*/

.about-content {
  margin-top: 10px;
}

.sub-title {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #c2a04d;
    margin-bottom: 5px;
    position: relative;
}

.sub-title::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 70px;

  height: 2px;

  background: #c2a04d;
  opacity: 0;
}

/*================================*/

.about-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #2b2b2b;
    font-weight: 400;
    margin: 0;
    margin-bottom: 30px;
}

/*==========================================
Quick Overview
==========================================*/

.quick-overview {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #B9975B;
}

/* Gold Top Border */

.quick-overview::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 1px;

  background: rgba(200, 164, 78, 0.35);
}

/*==========================================*/

.overview-box {
  text-align: center;

  color: #fff;

  padding: 20px 15px;

  transition: 0.45s ease;
}

/*==========================================*/

.overview-icon {
  width: 75px;
  height: 75px;

  margin: 0 auto 25px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.overview-icon img {
  width: 62px;

  transition: 0.45s;
}

/*==========================================*/

.overview-box h4 {
  font-size: 20px;

  font-weight: 500;

  letter-spacing: 1px;

  margin-bottom: 8px;

  color: #fff;
}

.overview-box p {
  margin: 0;

  color: #f1e8df;

  font-size: 18px;

  font-weight: 300;

  line-height: 1.6;
}

/*==========================================*/
/* Hover */

.overview-box:hover {
  transform: translateY(-8px);
}

.overview-box:hover .overview-icon img {
  transform: translateY(-8px) scale(1.08);

  filter: drop-shadow(0 8px 12px rgba(205, 170, 80, 0.35));
}

/*.overview-box:hover h4 {
  color: #d0ad5a;
}*/

/*==================================
Hallmarks Section
==================================*/

.hallmarks-section {
  position: relative;

  padding: 100px 0;
}

/*==========================*/

.section-heading {
  margin-bottom: 80px;
}

.section-heading img {
    width: 100%;
    max-width: 75%;
}

/*==========================*/

.hallmark-image {
  overflow: hidden;

  position: relative;
}

.hallmark-image img {
  width: 100%;

  display: block;

  transition: 0.8s ease;
}

/*==========================*/

.hallmark-image.large {
  border-radius: 90px 0 0 0;
}
.hallmark-image.large img {
    height: 490px;
    object-fit: cover;
}

.hallmark-image.small {
  border-radius: 0;
}

/*==========================*/

.hallmark-image:hover img {
  transform: scale(1.08);
}

/*==========================*/

.hallmark-content {
  padding-top: 28px;
}

.hallmark-content ul {
  margin: 0;

  padding-left: 22px;
}

.hallmark-content li {
  font-size: 16px;

  line-height: 1.9;

  color: rgba(0, 0, 0, 1);

  font-weight: 400;
}

/*==========================*/

.hallmark-content li::marker {
  color: rgba(0, 0, 0, 1);
}

/* Amenities */

/*=========================================
Amenities Section
==========================================*/

.amenities-section {
  position: relative;

  padding: 120px 0 140px;

  background-image: url("../images/amenities/Rectangle.jpg"),
    url("../images/amenities/cream-bg.jpg");

  background-repeat: no-repeat, no-repeat;

  background-position: top center, bottom center;

  background-size: 100% 72%, 100% 42%;
}

/*========================================*/

.amenities-top {
    background: rgba(255, 255, 255, 0.08);
    /* backdrop-filter: blur(18px); */
    border-radius: 50px;
    padding: 70px;
    background: linear-gradient(
    192.33deg,
    rgba(226, 194, 176, 0.49) -18.22%,
    rgba(130, 102, 89, 0.49) 26.76%,
    rgba(28, 11, 6, 0.49) 70.7%
  );
    height: 550px;
}

.amenities-heading img {
  max-width: 420px;

  width: 100%;
}

.amenities-text {
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
  padding-left: 30px;
  position: relative;
  top: 5px;

}

/*========================================*/

.amenities-row {
  margin-top: -150px;
  position: relative;
  z-index: 10;
  padding: 0 40px;
}

/*========================================*/

.amenity-card {
    background: #fff;
    overflow: hidden;
    transition: 0.45s;
    /* height: 100%; */
    margin: 0 11px;
    box-shadow: -40px 30px 30px 0px rgba(0, 0, 0, 0.1);
}

.amenity-card.first {
  border-top-left-radius: 35px;
}
.amenity-card.last {
  border-top-right-radius: 35px;
}

.amenity-card:hover {
  transform: translateY(-12px);
}

/*========================================*/

.amenity-image {
  overflow: hidden;
  position: relative;
}

/* Bronze Overlay */

.amenity-image::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #6b4a38;

  opacity: 0.18;

  z-index: 2;

  pointer-events: none;
}

.amenity-card:hover .amenity-image::before {
  opacity: 0;
}

.amenity-image img {
  width: 100%;
  display: block;
  transition: 1s ease;

  filter: grayscale(100%) sepia(85%) hue-rotate(-8deg) saturate(170%)
    brightness(0.95) contrast(1.05);
}

.amenity-card:hover img {
  transform: scale(1.08);

  filter: none;
}

/*========================================*/

.amenity-content {
  padding: 60px;
  text-align: center;
}
/*.amenity-card.middle .amenity-content {
  min-height: 335px;
}*/

.amenity-content h3 {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #1f1f1f;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.amenity-content h3 span {
  display: block;
}

.amenity-content p {
  color: #555;
  line-height: 1.9;
  min-height: 90px;
  font-size: 14px;
}

.amenity-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.amenity-list-extra {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  margin-top: 0;

  transition: max-height 0.6s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.amenity-card.expanded .amenity-list-extra {
  max-height: 300px;

  opacity: 1;

  margin-top: 0px;
}

.amenity-list li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    color: #555;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 10%;
    padding: 0 10px;
}

.amenity-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 6px;
  height: 14px;
  border-right: 1px solid #000;
  bottom: 0;
  right: 0px;
  opacity: 0 !important;
}
.amenity-list li:nth-child(even)::before,
.amenity-list li:last-child::before {
  border-right: none;
}

.amenity-card.last .amenity-list li {
  width: 100%;
}
.amenity-card.last .amenity-list li::before {
  opacity: 0;
}

/*.amenity-card.middle .amenity-list li:nth-child(3)::before { opacity: 0; }*/

/*========================================*/

.show-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #a67c2d;
    letter-spacing: 3px;
    font-size: 13px;
    margin-top: 30px;
    transition: 0.3s;
    position: relative;
    top: 0px;
}

.show-more i {
  font-size: 14px;
  transition: transform 0.35s ease;
}

.show-more:hover {
  color: #6c3d28;
}

.show-more:hover::after {
  transform: translateX(8px);
}

/*====================================
Gallery
====================================*/

.gallery-section {
  padding: 0;

  position: relative;
}

/*====================================*/

.gallerySwiper {
  overflow: hidden;
}

/*====================================*/

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;

  height: 700px;

  object-fit: cover;

  transition: 8s ease;
}

/* Ken Burns Animation */

/*.swiper-slide-active .gallery-item img{

    transform:scale(1.10);

}*/

/*====================================*/

.gallery-prev,
.gallery-next {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 48px;

  height: 48px;

  border-radius: 50%;

  z-index: 20;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 30px;

  transition: 0.4s;

  border: 2px solid rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(12px);

  background: #b88a2b;
}

.gallery-prev {
  left: 50px;
}

.gallery-next {
  right: 50px;
}

/*.gallery-prev:hover,
.gallery-next:hover {
  background: #b88a2b;

  border-color: #b88a2b;

  transform: translateY(-50%) scale(1.08);
}*/

/*====================================*/

.gallery-prev i,
.gallery-next i {
  transition: 0.3s;
}

.gallery-prev:hover i {
  transform: translateX(-3px);
}

.gallery-next:hover i {
  transform: translateX(3px);
}

/*=====================================
Connectivity
======================================*/

.connectivity-section {
  position: relative;

  padding: 100px 0;

  overflow: hidden;
}

/* Decorative Background */

.connectivity-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background: url("../images/about-lines.png") center center no-repeat;

  background-size: cover;

  opacity: 1;

  pointer-events: none;
}

/*=====================================*/

.connectivity-title {
  text-align: center;
}

.connectivity-title img {
  width: 100%;

  max-width: 450px;

  transition: 0.6s ease;
}

.connectivity-title:hover img {
  transform: scale(1.03);
}

/*=====================================*/

/*.connectivity-content {
  max-width: 700px;
}*/

.connectivity-content p {
  margin: 0;

  font-size: 16px;

  line-height: 1.75;

  color: #3b2a22;

  font-weight: 400;
}

.key-distance-section {
  padding: 100px 0 0;
  background: var(--BRAND-COLOR, #b9975b);
}

.section-title {
  text-align: center;

  margin-bottom: 90px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--Brand-Color, #4f2c1d);
}

/*=========================*/

.distance-wrapper {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;
}

.distance-item {
  position: relative;
  text-align: center;
  color: #fff;
  cursor: pointer;
  min-height: 260px; /* Fixed height */
}

.distance-icon {
  width: 80px;
  margin: 0 auto 25px;
  min-height: 60px;
}

.distance-icon img {
  width: 60px;

  transition: 0.4s;
}

.distance-item h4 {
  font-size: 16px;

  color: #fff;

  letter-spacing: 2px;

  margin-bottom: 15px;
}

.distance-content {
  max-height: 0;

  opacity: 0;

  overflow: hidden;

  transition: 0.45s;
}

.distance-item.active .distance-content {
  max-height: 220px;

  opacity: 1;
}

.distance-content ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.distance-content li {
  color: #f5ede6;

  margin: 8px 0;

  font-size: 14px;
}

.distance-item:hover .distance-icon img {
  transform: translateY(-8px) scale(1.08);
}

.map-wrapper {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  margin-top: 30px;
}

.map-wrapper iframe {
  width: 100%;

  height: 600px;

  border: 0;

  display: block;

  filter: grayscale(0.15);

  transition: 0.5s;
}

.map-wrapper:hover iframe {
  filter: none;
}

/*=========================================
About Eelevates
==========================================*/

.eelevates-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Decorative Background */

.eelevates-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background: url("../images/about-lines.png") center center no-repeat;

  background-size: cover;

  opacity: 0.12;

  pointer-events: none;
}

/*================================*/

.eelevates-heading {
  text-align: center;

  margin-bottom: 80px;
}

.eelevates-heading h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 8px;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--Brand-Color, rgba(79, 44, 29, 1));
}

/*================================*/

.eelevates-image {
  overflow: hidden;

  position: relative;
}

.eelevates-image img {
  width: 100%;

  display: block;

  transition: 1.2s ease;
}

/* Large Image */

.large-image {
  border-radius: 90px 0 0 0;
}

/* Hover */

.eelevates-image:hover img {
  transform: scale(1.08);
}

/*================================*/

.eelevates-content {
  padding-top: 30px;
}

.eelevates-image.large-image img {
  height: 450px;
  object-fit: cover;
  object-position: bottom;
}

.eelevates-content p {
  font-size: 16px;

  line-height: 1.8;

  color: #3d3028;

  margin: 0;
}

/*================================*/

@media (max-width: 1199px) {
  .eelevates-heading h2 {
    font-size: 42px;
  }

  .eelevates-content p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .eelevates-section {
    padding: 90px 0;
  }

  .eelevates-heading {
    margin-bottom: 50px;
  }

  .large-image {
    margin-bottom: 30px;

    border-radius: 60px 0 0 0;
  }

  .eelevates-content {
    padding-top: 25px;
  }
}

@media (max-width: 767px) {
  .eelevates-section {
    padding: 50px 0 30px;
  }

  .eelevates-heading h2 {
    font-size: 20px;

    letter-spacing: 3px;
  }

  .large-image {
    border-radius: 35px 0 0 0;
  }

  .eelevates-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/*=========================================
Footer
==========================================*/

.site-footer {
  position: relative;
  padding: 0px 0 100px;
  overflow: hidden;
}

.site-footer hr {
  border-width: 2px;
  opacity: 1;
  border-color: rgba(79, 44, 29, 1);
  margin-bottom: 45px;
}

/*===============================*/

.footer-subtitle {
    display: inline-block;
    color: #c7a552;
    letter-spacing: 6px;
    font-size: 30px;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: 500;
}

/*===============================*/

.footer-info {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-info li {
  margin-bottom: 20px;

  font-size: 16px;

  color: #5b4a42;

  line-height: 1.8;
}

.footer-info li:last-child {
    margin-bottom: 0;
}

.footer-info strong {
  display: inline-block;
  /* width: 160px; */
  color: #222;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-info a {
  color: #5b4a42;

  text-decoration: none;

  transition: 0.3s;
}

.footer-info a:hover {
  color: #c7a552;
}

/*===============================*/

.footer-disclaimer {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.8;
    max-width: 100%;
    color: rgb(0 0 0 / 71%);
}

/*===============================*/

.footer-right {
  text-align: right;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-logo {
  width: 200px;

  margin-bottom: 80px;
}

.footer-bottom {
  display: flex;

  justify-content: flex-end;

  align-items: flex-end;

  gap: 25px;
}

.footer-website {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

.footer-website a {
  color: #4b2d20;

  text-decoration: none;
}

ul.contact-list {
  list-style: none;
  display: flex;
  padding: 0;
}
ul.contact-list li {
  margin-bottom: 0;
  margin-right: 20px;
  position: relative;
}
ul.contact-list li:after {
  content: "|";
  position: absolute;
  right: -12px;
  color: #000;
}
ul.contact-list li:last-child::after {
  opacity: 0;
}

.qr-code {
  width: 70px;
}

/*===============================*/

.site-footer::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: rgba(0, 0, 0, 0.08);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.35s ease;
  background-color: #af913b;
}

.social-links a:hover {
  background: #b68a5a;
  border-color: #b68a5a;
  color: #fff;
  transform: translateY(-3px);
}

.social-links a i {
  position: relative;
  top: 1px;
}