@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ephesis&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body {
  background: #F5E8E6;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  padding: 0.8rem 15rem;
  background: #D59790;
  position: fixed;
  z-index: 5;
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
header .logo {
  width: 12rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}
header nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.25rem;
  color: #ffffff;
}
header nav ul li a {
  color: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  line-height: 1;
}
header nav ul li a:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  color: #F5E8E6;
}
header nav ul li .btn {
  padding: 0.8rem 2.4rem;
  border: 2px solid #ffffff;
  border-radius: 10px;
}
header nav ul li .btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: #F5E8E6;
  color: #D59790;
}
header nav .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
header nav .socials a {
  background: #F5E8E6;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header nav .socials a svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #D59790;
}

#toggle {
  display: none;
}

main {
  width: 100%;
  height: 100dvh;
  padding: 5rem 10rem;
  padding-top: 16rem;
}
main .hero {
  width: 100%;
  height: 100%;
  background: url(img/main-bcg.png);
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
main .hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(44, 44, 44, 0.4);
  border-radius: 10px;
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
main .hero .overlay .hero-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 70rem;
}
main .hero .overlay .hero-txt h3 {
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}
main .hero .overlay .hero-txt h1 {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}
main .hero .overlay .hero-txt h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
main .hero .overlay .hero-txt p {
  font-size: 2rem;
  color: #ffffff;
}
main .hero .overlay .hero-txt .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 3rem;
  margin-top: 2rem;
}
main .hero .overlay .hero-txt .row .btn {
  padding: 0.8rem 2.4rem;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 2rem;
  color: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
main .hero .overlay .hero-txt .row .btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: #F5E8E6;
  color: #D59790;
}
main .hero .overlay .hero-txt .row .btn-p {
  padding: 0.8rem 2.4rem;
  border: 2px solid #ffffff;
  border-radius: 10px;
  font-size: 2rem;
  color: #F5E8E6;
  background: #D59790;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
main .hero .overlay .hero-txt .row .btn-p:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: #F5E8E6;
  color: #D59790;
}

section {
  padding: 10rem 15rem;
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
}
#about .about-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-txt h2 {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 1rem;
}
#about .about-txt p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#about .about-txt .btn-p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0.8rem 2.4rem;
  border-radius: 10px;
  font-size: 2rem;
  color: #F5E8E6;
  background: #D59790;
  border: 2px solid #D59790;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#about .about-txt .btn-p:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: transparent;
  color: #D59790;
  border: 2px solid #D59790;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-img img {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

#services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
}
#services h2 {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-size: 5rem;
}
#services .services-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 5rem 0;
}
#services .services-wrapper .service {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  background: #FEF6F4;
  padding: 3rem;
}
#services .services-wrapper .service .service-icon {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#services .services-wrapper .service .service-icon img {
  max-width: 16rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#services .services-wrapper .service .service-txt {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
#services .services-wrapper .service .service-txt h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
#services .services-wrapper .service .service-txt ul li {
  font-size: 2rem;
}
#services .btn-p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0.8rem 2.4rem;
  border-radius: 10px;
  font-size: 2rem;
  color: #F5E8E6;
  background: #D59790;
  border: 2px solid #D59790;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  -ms-flex-item-align: center;
      align-self: center;
}
#services .btn-p:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: transparent;
  color: #D59790;
  border: 2px solid #D59790;
}

#reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
}
#reviews h2 {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-size: 5rem;
}
#reviews .swiper {
  width: 100%;
}
#reviews .swiper .swiper-wrapper {
  width: 100%;
  padding: 5rem 0;
}
#reviews .swiper .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 20rem;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  background: #FEF6F4;
  padding: 3rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-txt {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-txt .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-txt .stars svg {
  width: 2.5rem;
  height: 2.5rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-txt p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-txt span {
  font-weight: 500;
  font-size: 1.6rem;
  color: #D59790;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-img {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-img img {
  max-width: 16rem;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#reviews .swiper .swiper-pagination {
  margin-top: 1rem;
  position: relative;
}
#reviews .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #d4d6d8;
  opacity: 1;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
#reviews .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D59790;
}

.empty-star {
  opacity: 0.5;
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
}
#contact h2 {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-size: 5rem;
}
#contact .contact-wrapper {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10rem;
  background: #FEF6F4;
  padding: 5rem;
  margin: 5rem 0;
}
#contact .contact-wrapper .contact-details {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
#contact .contact-wrapper .contact-details .contact-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.5rem;
}
#contact .contact-wrapper .contact-details .contact-detail svg {
  width: 4.5rem;
  height: 4.5rem;
  fill: #D59790;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#contact .contact-wrapper .contact-details .contact-detail .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact .contact-wrapper .contact-details .contact-detail .txt h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #6D6D6D;
}
#contact .contact-wrapper .contact-details .contact-detail .txt p {
  font-size: 2rem;
  color: #6D6D6D;
}
#contact .contact-wrapper .contact-map {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  width: 100%;
  height: 100%;
  position: relative;
}
#contact .contact-wrapper .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
}
#contact .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
#contact .contact-form p {
  font-size: 2rem;
  margin-bottom: 3rem;
}
#contact .contact-form form {
  width: 100%;
  max-width: 80rem;
}
#contact .contact-form form .row {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
#contact .contact-form form .row input {
  width: 100%;
  background: #FEF6F4;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  color: #000000;
  border-radius: 10px;
  border: none;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  outline-color: #D59790;
}
#contact .contact-form form textarea {
  width: 100%;
  min-height: 20rem;
  background: #FEF6F4;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  color: #000000;
  border-radius: 10px;
  border: none;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  outline-color: #D59790;
  resize: vertical;
  margin-bottom: 1.5rem;
}
#contact .contact-form form .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.5rem;
}
#contact .contact-form form .checkbox-row input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#contact .contact-form form .checkbox-row label {
  font-size: 2rem;
}
#contact .contact-form form .checkbox-row label a {
  font-weight: 500;
  color: #D59790;
}
#contact .contact-form form input[type=submit] {
  margin-top: 1.5rem;
  padding: 0.8rem 3rem;
  border: 2px solid #D59790;
  border-radius: 10px;
  font-size: 2rem;
  color: #F5E8E6;
  background: #D59790;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
#contact .contact-form form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background: transparent;
  color: #D59790;
  border: 2px solid #D59790;
}

.footer {
  background-color: #D59790;
  color: #ffffff;
  padding: 1.5rem 3rem;
  width: 100%;
  font-size: 2rem;
}
.footer .footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer-container .footer-left,
.footer .footer-container .footer-center,
.footer .footer-container .footer-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .footer-container .footer-left {
  text-align: left;
}
.footer .footer-container .footer-center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.footer .footer-container .footer-center svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #ffffff;
}
.footer .footer-container .footer-right {
  text-align: right;
}
.footer .footer-container a {
  color: #ffffff;
  text-decoration: none;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 6;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #D59790;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #D59790;
  padding: 0.5rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  border: 2px solid #D59790;
  cursor: pointer;
  border-radius: 5px;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #000000;
  background: transparent;
  padding: 0.5rem 2.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  border: 2px solid #000000;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border-radius: 5px;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#rules {
  width: 100%;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 16rem;
}
#rules .rules-content {
  width: 80%;
  margin: 0 auto;
}
#rules .rules-content h1 {
  font-size: 5rem;
  margin-bottom: 5rem;
  text-align: center;
  color: #000000;
  font-weight: 500;
}
#rules .rules-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 500;
}
#rules .rules-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #000000;
}

@media (min-width: 2560px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9.5px;
  }
  header {
    padding: 1rem 10rem;
  }
  main {
    width: 100%;
    height: 100dvh;
    padding: 5rem;
    padding-top: 16rem;
  }
  section {
    padding: 8rem 10rem;
  }
  #about {
    gap: 10rem;
  }
  #rules .rules-content {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 9px;
  }
  header {
    padding: 1rem 8rem;
  }
  section {
    padding: 6rem 8rem;
  }
  #about {
    gap: 8rem;
  }
  #contact .contact-wrapper {
    gap: 8rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8.5px;
  }
  header {
    padding: 1rem 6rem;
  }
  main {
    width: 100%;
    height: 100dvh;
    padding: 3rem;
    padding-top: 16rem;
  }
  section {
    padding: 5rem 6rem;
  }
  #about {
    gap: 5rem;
  }
  #services .services-wrapper .service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #services .services-wrapper .service .service-txt {
    text-align: center;
  }
  #contact .contact-wrapper {
    gap: 6rem;
  }
  #rules {
    padding-top: 14rem;
  }
  #rules .rules-content {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  #toggle {
    padding: 1rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem;
    background: #D59790;
    position: fixed;
    z-index: 6;
    width: 100%;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid #ffffff;
  }
  #toggle .logo {
    width: 8rem;
  }
  #toggle .logo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #toggle svg {
    cursor: pointer;
    width: 4.5rem;
    height: 4.5rem;
    fill: #ffffff;
  }
  header {
    width: 40rem;
    height: 100dvh;
    padding-top: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    border-left: 2px solid #ffffff;
  }
  header .logo {
    display: none;
  }
  header nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header nav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  header nav ul li {
    font-size: 2.5rem;
  }
  header nav .socials a {
    width: 5rem;
    height: 5rem;
  }
  header nav .socials a svg {
    width: 4rem;
    height: 4rem;
  }
  .active-menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .not-active-menu {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  main {
    padding: 0;
  }
  section {
    padding: 5rem;
  }
  #contact .contact-wrapper {
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
  header {
    padding: 1rem 5rem;
    padding-top: 20rem;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #services .services-wrapper .service {
    padding: 2rem;
  }
  #reviews .swiper .swiper-wrapper {
    padding: 3rem 0;
  }
  #reviews .swiper .swiper-wrapper .swiper-slide {
    padding: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
  #reviews .swiper .swiper-wrapper .swiper-slide .slide-txt p, #reviews .swiper .swiper-wrapper .swiper-slide .slide-txt span {
    font-size: 1.8rem;
  }
  #contact .contact-wrapper {
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-wrapper .contact-details .contact-detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer {
    padding: 2rem 0;
  }
  .footer .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
  .footer .footer-container .footer-left,
  .footer .footer-container .footer-center,
  .footer .footer-container .footer-right {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 425px) {
  header {
    width: 35rem;
    padding: 1rem 3rem;
    padding-left: 5rem;
    padding-top: 20rem;
  }
  #toggle {
    padding: 1rem 3rem;
  }
  main .hero .overlay {
    padding: 5rem 3rem;
  }
  main .hero .overlay .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem !important;
  }
  section {
    padding: 5rem 3rem;
  }
  #services .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact .contact-wrapper {
    padding: 3rem;
  }
  .cookies {
    width: 100%;
  }
  #rules .rules-content h1 {
    font-size: 4rem;
  }
}