@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {
  --heading-color: #d4af37;
  --paragraph-color: #8b0000;
  --accent-color: #03403f;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Header */

header {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fafafa;
  position: sticky;
  top: 0;
  z-index: 999;
}

header a {
  text-decoration: none;
  color: var(--heading-color);
}

.header-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 980px;
  justify-content: space-between;
}

.header-wrapper-top {
  display: flex;
  justify-content: space-between;
  padding: 18px;
}

.header-wrapper-top > h1 {
  color: var(--heading-color);
  font-size: 22px;
}
.header-wrapper-top > h1:hover {
  cursor: pointer;
}

header .language-links {
  display: flex;
  gap: 50px;
  align-items: center;
  font-family: Montserrat, sans-serif;
}
header .language-links > a:last-child {
  margin-right: 50px;
}

header nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  bottom: -6px;
  height: 49px;
}

header nav a {
  flex: 1;
  text-align: center;
  background-color: #03403f;
  color: #fff;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 400;
}
header nav a:last-child {
  flex: 1;
  text-align: center;
  background-color: #5bc2c1;
  color: #fff;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 400;
}

/* Main  */

body {
  display: grid;
  place-items: center;
  font-family: "Libre Baskerville";
  font-weight: 400;
  overflow-x: hidden;
}

/* Wrapper */
.wrapper {
  max-width: 980px;
}

/* Section 1 */
.section {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("../assets/bg_1.jpg");
  padding: 40px 30px 0px 30px;
  margin-bottom: 5px;
}

.section .section-col {
  padding: 8px;
  flex: 1;
}

.section-content {
  display: flex;
  flex-direction: column;
}

.section iframe {
  box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.75);
}

.section-content-heading {
  font-family: "Libre Baskerville";
  font-weight: 400;
  font-size: 30px;
  color: var(--heading-color);
  line-height: 50px;
  margin-bottom: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-content-p {
  font-family: "Libre Baskerville";
  font-weight: 600;
  font-size: 16px;
  color: #8b0000;
  line-height: 22.4px;
  padding-left: 20px;
}

/* Section 2 */

.section-2 {
  display: flex;
  flex-direction: column;
}
.section-2-header {
  background-image: url("../assets/bg_3.jpg");
  text-align: center;
  padding: 50px;
}

.section-2-header h1 {
  color: var(--heading-color);
  font-weight: 400;
  font-size: 30px;
}
.section-2-content {
  background-image: url("../assets/bg_1.jpg");
  padding: 25px 70px;
}

.section-2-content p:not(.section-2-content-paragraph-right p) {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 22.4px;
  font-weight: bold;
}

.section-2-content-paragraph-right {
  display: flex;
  justify-content: flex-end;
}
.section-2-content-paragraph-right p {
  color: var(--heading-color);
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.3px;
  margin-right: 40px;
  margin: 5px;
  margin-top: 20px;
}

.section-2-row:not(.section-2-row:last-child) {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 20px 0;
}
.section-2-row:last-child {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 20px 0;
}

.section-2-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.section-2-row:last-child .section-2-col {
  align-items: center;
}

.section-2-col p {
  font-size: 15px !important;
  line-height: 22.4px;
  margin: 15px 0;
}

/* Section 3 */
.section-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.section-3 h1 {
  color: var(--heading-color);
  font-size: 30px;
  line-height: 39px;
  margin: 20px 0 15px 0;
}
.section-3 p {
  color: var(--paragraph-color);
  font-size: 16px;
  line-height: 39px;
  margin: 0 0 20px 0;
  font-weight: bold;
}

/* Section 4 */

.section-4 {
  margin-top: 5px;
}

.section-4-header {
  background-image: url("../assets/bg_3.jpg");
  text-align: left;
  color: var(--paragraph-color);
  /* font-size: 25px; */
  line-height: 35px;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-4-header > div {
  display: flex;
  max-width: 750px;
  /* height: 120%; */
  /* margin: 5px 5px 20px 5px; */
  margin-bottom: 25px;
  flex-direction: column;
  position: relative;
}

.section-4-header h1 {
  max-width: 600px;
}
.section-4-header img {
  align-self: flex-end;
  position: absolute;
  right: 0px;
  bottom: -30px;
}

.section-4-body {
  background-image: url("../assets/bg_1.jpg");
  padding: 50px 40px 20px 40px;
}
.section-4-body > h1 {
  color: var(--heading-color);
  font-size: 30px;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 20px;
}

.section-4-body p {
  font-size: 18px;
  color: var(--paragraph-color);
  margin: 20px 0;
  font-weight: bold;
}

.images-container {
  padding: 20px 30px 0 30px;
  text-align: center;
}

.images-container p {
  margin: 5px 0 30px 0;
  font-size: 14px;
}

/* Section 5 */

.section-5 {
  margin-top: 5px;
  background-image: url("../assets/bg_1.jpg");
}

.section-5-content-container {
  padding: 60px 60px 10px 60px;
}

.section-5-row {
  display: flex;
  justify-content: space-between;
}
.section-5-row h3 {
  color: var(--heading-color);
  font-size: 20px;
  line-height: 50px;
}

.section-5-content-container .divider {
  width: 100%;
  height: 1px;
  background-color: var(--heading-color);
  margin: 5px auto 30px auto;
}

.section-5-row-2 {
  display: flex;
  gap: 60px;
}

.section-5-row-2 ul li {
  font-size: 18px;
  /* line-height: 15px; */
  color: var(--paragraph-color);
  margin: 10px 0;
}

.section-5-row-2 ul {
  list-style: none; /* Remove default bullets */
}

.section-5-row-2 ul li::before {
  content: "\2022";
  color: var(--paragraph-color);
  font-weight: bold;
  font-size: 32px;
  vertical-align: middle;
  display: inline-block;
  width: 0.8em;
  margin-left: -1em;
}

.section-5-row-2 img {
  object-fit: contain;
}

.section-5 .cards-container {
  display: flex;
  gap: 40px;
}
.card {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../assets/bg_3.jpg);
  flex: 1;
  margin: 20px 0;
}

.card h1 {
  color: var(--heading-color);
  font-size: 25px;
  line-height: 32px;
}
.card p {
  color: var(--paragraph-color);
  font-size: 18px;
  line-height: 26px;
  margin: 20px 0;
}

/* Section 6 */

.section-6 {
  margin-top: 5px;
}

/* Section 7 */

/* .section-7 {
  background-color: #fcf8ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px;
}

.section-7-heading {
  font-family: "Libre Baskerville";
  font-weight: 400;
  font-size: 30px;
  color: #000;
  line-height: 42px;
  margin-bottom: 20px;
}

.section-7-btn {
  font-family: "Libre Baskerville";
  font-size: 16px;
  line-height: 22.4px;
  background-color: #fff;
  color: #8b0000;
  border: 2px solid #8b0000;
  padding: 6px;
  transition: background-color 0.2s ease;
}

.section-7-btn:hover {
  background-color: #f9c5b4;
  color: #fff;
  border: 2px solid #f9c5b4;
} */

.section-7 {
  background-color: #fcf8ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px;
  /* Fix */
  margin-top: 10px;
}

.section-7-heading {
  font-family: "Libre Baskerville";
  font-weight: 400;
  font-size: 30px;
  color: #000;
  line-height: 42px;
  margin-bottom: 20px;
}

.section-7-btn {
  font-family: "Libre Baskerville";
  /* Fix */
  font-size: 26px;
  /*  */
  line-height: 22.4px;
  background-color: #fff;
  color: #8b0000;
  border: 2px solid #8b0000;
  padding: 12px;
  transition: background-color 0.2s ease;
}

.section-7-btn:hover {
  background-color: #f9c5b4;
  color: #fff;
  border: 2px solid #f9c5b4;
}

/* Footer */

.footer-head {
  display: flex;
  padding: 20px 0 20px 0;
  gap: 50px;
}

.map {
  width: 500px;
}
.contact-info {
  font-size: 16px;
  line-height: 22.5px;
  flex: 1;
}
.contact {
  margin-bottom: 30px;
}
.underline {
  text-decoration: underline;
}
.address {
  margin-bottom: 30px;
}

.whatsapp-logo {
  vertical-align: top;
  margin-left: 20px;
  width: 40px;
}

.message-us a {
  color: black;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.map {
  flex: 2;
}

.footer-tail {
  background-color: var(--accent-color);
  padding: 30px 20px;
  font-size: 12px;
  line-height: 16.8px;
  display: flex;
  color: white;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
  box-shadow: 1px 1px 13px 3px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: 1px 1px 13px 3px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: 1px 1px 13px 3px rgba(0, 0, 0, 0.23);
}
.terms {
  display: flex;
  flex-direction: row;
  color: white;
  gap: 10px;
  justify-content: space-between;
  flex: 1;
}

.terms-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* align-items: center; */
}

.terms a {
  color: white;
  font-size: 12px;
  line-height: 16.8px;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.social-icons a img {
  width: 30px;
  height: 30px;
}

/* Testimonials */

.section-testimonials {
  padding: 0 0 10px 0;
  margin-bottom: 5px;
  margin-top: 5px;
  background-image: url("../assets/bg_1.jpg");
  width: 100%;
}

.splide {
  padding-top: 15px;
}

.testimonial-card {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  margin: 10px;
  border-left: 10px solid var(--heading-color);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s;
  margin-bottom: 40px;
}

.testimonial-card:hover {
  transform: translateY(-5px); /* Apply a slight upward float on hover */
}

.testimonial-text {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
  text-align: justify;
  line-height: 22px;
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-weight: bold;
  color: var(--heading-color);
  text-align: center;
}

.quote-left {
  width: 70px;
  opacity: 0.2;
}

.testimonial-card .divider {
  width: 100%;
  height: 1px;
  color: var(--heading-color);
}

.read-more-button {
  font-family: "Libre Baskerville";

  color: #8b0000;
  border: 1px solid #8b0000;
  background-color: white;
  margin: 20px auto 0 auto;

  transition: background-color 0.2s ease;
  padding: 10px 20px; /* Add padding */
  font-size: 10px; /* Set the font size */
  cursor: pointer; /* Add a pointer cursor on hover */
}

/* bottom menu */
.bottom-menu {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 0;
}

.bottom-menu .bottom-menu-item {
  display: flex;
  align-items: center;
  padding: 15px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  flex: 1;
}
.bottom-menu .bottom-menu-item img {
  width: 18px;
  color: white;
  margin-bottom: 10px;
}

.bottom-menu a {
  text-decoration: none;
  font-size: 14px;
}

.bottom-menu h4 {
  margin-top: 5px;
}

.bottom-menu .bottom-menu-item:nth-child(1) {
  background-color: #5bc2c1;
}
.bottom-menu .bottom-menu-item:nth-child(2) {
  background-color: #1db578;
}
.bottom-menu .bottom-menu-item:nth-child(3) {
  background-color: #3d95e9;
}

/*  Bottom Menu */

.bottom-menu {
  display: none;
}

.hide-desktop {
  display: none;
}

.hide-mobile {
  display: block;
}

/* Media Queries */

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

@media screen and (max-width: 980px) {
  .wrapper {
    width: 100vw;
  }

  img:not(.whatsapp-logo) {
    width: 100%;
  }

  .map {
    width: 100%;
  }

  .quote-left {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
  .section-4-header img {
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }
  .bottom-menu {
    display: flex;
  }
  .wrapper {
    width: 100vw;
  }

  img:not(.whatsapp-logo) {
    width: 100%;
  }

  .map {
    width: 100%;
  }

  .quote-left {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  /* Header */

  header {
    background-color: white;
  }
  header .language-links {
    display: none;
  }

  .header-wrapper-top {
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column-reverse;
  }
  header .language-links > a:last-child {
    margin-right: 0px;
  }

  header nav a:first-child {
    display: none;
  }
  header nav a:last-child {
    display: none;
  }

  header nav {
    padding-bottom: 30px;
    margin: 0 40px;
    gap: 20px;
    justify-content: center;
  }

  header nav a {
    flex-grow: 0;
    flex-basis: 200px;
    padding: 8px 8px;
    text-decoration: none;
    font-size: 15px;
    width: 80px;
    flex-basis: 120px;
    border: 1.5px solid var(--accent-color);
  }
  header nav a:nth-child(3) {
    background-color: #5bc2c1;
  }

  /* Main */

  .section {
    flex-direction: column;
    padding: 5px 5px 20px 5px;
  }

  .section-yt {
    width: 100%;
  }

  .section-yt iframe {
    height: 250px;
  }

  .section-content-heading {
    line-height: 40px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-content-p {
    padding: 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  /* section 2 */
  .section-2-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }
  .section-2-header {
    padding: 40px 10px;
  }
  .section-2-header h1 {
    font-size: 24px;
  }

  .section-2-content {
    padding: 20px 10px 00px 10px;
  }

  .section-2-content p:not(.section-2-content-paragraph-right p) {
    font-weight: normal;
    font-size: 18px;
    text-align: left;
    line-height: 24px;
  }

  .section-2-content-paragraph-right p {
    color: var(--heading-color);
    width: 100%;
    font-weight: normal;
    font-size: 18px;
    text-align: left;
    /* line-height: 22.3px; */
    line-height: 24px;
    margin: 20px 0 0 0;
  }

  .section-2-row:not(.section-2-row:last-child) {
    gap: 10px;
  }

  .section-2-row:last-child {
    gap: 10px;
    margin: 0px 0px;
  }

  /* secttion 3 */
  .section-3 iframe {
    height: 250px;
  }

  .section-3 h1 {
    font-size: 24px;
  }

  .section-3 p {
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
  }

  /* section 4 */
  .section-4-header {
    padding: 20px 10px;
  }
  .section-4-header img {
    width: 60px;
    right: 20px;
  }

  .section-4-header h1 {
    font-size: 19px;
    line-height: 24px;
  }

  .section-4-body {
    padding: 50px 10px 10px 10px;
  }

  .images-container p {
    margin-bottom: 20px;
  }

  .section-4-body h1 {
    font-size: 19px;
  }

  .section-4-body p {
    font-weight: normal;
  }

  /* Section 5 */
  .section-5-row-2 {
    flex-direction: column;
    gap: 15px;
  }

  .section-5-content-container {
    padding: 20px 10px;
  }

  .section-5-row {
    flex-direction: column;
    align-items: center;
  }
  .section-5-row h3 {
    line-height: 30px;
    font-size: 16px;
    text-align: left;
    align-self: flex-start;
  }

  .section-5-heading-sec {
    color: var(--heading-color);
    font-size: 22px;
    text-align: center;
  }

  .section-5 .cards-container {
    flex-direction: column;
  }

  .section-5-row-2 ul {
    padding: 0 30px;
    margin-left: 10px;
    list-style: none; /* Remove default bullets */
  }
  .section-5-row-2 ul li {
    margin: 5px 0;
    line-height: 24px;
  }

  .card {
    padding: 20px 10px;
    text-align: justify;
    hyphens: auto;
  }

  .card h1 {
    font-weight: normal;
  }
  .card p {
    text-align: left;
  }

  .section-5 .cards-container {
    display: flex;
    gap: 0px;
  }

  /* Section 6 */

  .section-6 {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  /* footer */

  .footer-head {
    flex-direction: column;
    padding: 25px 10px;
  }

  .footer-tail {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .terms {
    flex-direction: row;
    flex: 1;
    width: 100%;
    justify-content: space-between;
  }
  .terms-links {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }

  /* Section 7 */
  /* .section-7 {
    padding: 60px 10px;
    text-align: center;
  }
  .section-7-heading {
    font-size: 24px;
  } */

  .section-7 {
    padding: 60px 10px;
    text-align: center;
  }
  .section-7-heading {
    font-size: 24px;
  }

  .section-7-btn {
    font-size: 18px;
  }
}

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

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