@import url("https://fonts.googleapis.com/css2?family=Kanit: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");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Kanit", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

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

h1, h2, h3 {
  font-family: "Kanit", 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: #212121;
}

header {
  width: 100%;
  padding: 1rem 0rem;
  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;
  position: fixed;
  z-index: 5;
}
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;
}
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 a {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header nav ul li a:hover {
  color: #D2000D;
  text-shadow: 0 0 15px rgba(210, 0, 13, 0.4), 0 0 30px rgba(210, 0, 13, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
}
header nav ul li .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12rem;
  aspect-ratio: 4/3;
  margin: 0 5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header nav ul li .logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header nav ul li .logo img {
  width: 100%;
}

.scrolled nav {
  background-color: #212121;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
  padding: 0.5rem 10rem;
  border-radius: 50px;
}
.scrolled nav ul li a {
  font-size: 2.2rem;
}
.scrolled nav ul li .logo {
  width: 10rem;
  aspect-ratio: 4/3;
}
.scrolled nav ul li .logo img {
  width: 100%;
}

#toggle {
  display: none;
}

main {
  width: 100%;
  height: 100dvh;
  background: url(img/main-bcg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
main .overlay {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: rgba(33, 33, 33, 0.2);
  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: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 10rem 15rem;
  padding-top: 15rem;
  padding-bottom: 5rem;
}
main .overlay .hero-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main .overlay .hero-content .hero-txt {
  -ms-flex-item-align: end;
      align-self: end;
  max-width: 50rem;
}
main .overlay .hero-content .hero-txt h1 {
  font-size: 5rem;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-animation: slideInFromLeft 1s ease-out forwards;
          animation: slideInFromLeft 1s ease-out forwards;
  opacity: 0;
}
main .overlay .hero-content .hero-txt p {
  font-size: 2rem;
  color: #BCBCBC;
  font-weight: 400;
  -webkit-animation: slideInFromLeft 1s ease-out forwards;
          animation: slideInFromLeft 1s ease-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  opacity: 0;
}
main .overlay .hero-content .hero-txt .btns {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2.5rem;
  -webkit-animation: slideInFromLeft 1s ease-out forwards;
          animation: slideInFromLeft 1s ease-out forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 0;
}
main .overlay .hero-content .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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
  -webkit-animation: slideInFromRight 1s ease-out forwards;
          animation: slideInFromRight 1s ease-out forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
  opacity: 0;
  margin-top: 2rem;
}
main .overlay .hero-content .socials svg {
  width: 3.5rem;
  height: 3.5rem;
  -webkit-transition: ease 0.3 all;
  transition: ease 0.3 all;
  fill: #D2000D;
}
main .overlay .hero-content .socials svg:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@-webkit-keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInFromRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.btn {
  background: #D2000D;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 500;
  padding: 1rem 4rem;
  line-height: 1;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

section {
  padding: 10rem 15rem;
}

#services {
  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;
}
#services h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
#services .services-wrapper {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  margin: 5rem 0;
}
#services .services-wrapper .service {
  width: 24rem;
  border: 3px solid #D2000D;
  padding: 3rem;
  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;
}
#services .services-wrapper .service img {
  width: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
  margin-bottom: 2rem;
}
#services .services-wrapper .service h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

#how {
  width: 100%;
  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: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-top: 0;
}
#how h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
#how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
#how .steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#how .steps .step h3 {
  font-size: 2.5rem;
  color: #BCBCBC;
  margin-bottom: 1rem;
}
#how .steps .step p {
  font-size: 2rem;
  color: #BCBCBC;
  line-height: 1;
}
#how .btn {
  margin: 0 auto;
}

#gallery {
  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;
  padding-top: 0;
  padding-bottom: 0;
}
#gallery h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
#gallery .swiper {
  width: 100%;
  margin-bottom: 3rem;
}
#gallery .swiper .swiper-wrapper .swiper-slide {
  padding: 3rem 0;
}
#gallery .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
}

#contact {
  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;
}
#contact h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
#contact h4 {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #ffffff;
}
#contact form {
  width: 100%;
  max-width: 70rem;
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact form .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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
#contact 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
#contact form .checkbox-row input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
}
#contact form input {
  width: 100%;
  background: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  border: none;
  outline: none;
  color: #000000;
  margin-bottom: 2rem;
}
#contact form input::-webkit-input-placeholder {
  color: #BCBCBC;
}
#contact form input::-moz-placeholder {
  color: #BCBCBC;
}
#contact form input:-ms-input-placeholder {
  color: #BCBCBC;
}
#contact form input::-ms-input-placeholder {
  color: #BCBCBC;
}
#contact form input::placeholder {
  color: #BCBCBC;
}
#contact form textarea {
  width: 100%;
  min-height: 15rem;
  resize: vertical;
  background: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  border: none;
  outline: none;
  color: #000000;
  margin-bottom: 2rem;
}
#contact form textarea::-webkit-input-placeholder {
  color: #BCBCBC;
}
#contact form textarea::-moz-placeholder {
  color: #BCBCBC;
}
#contact form textarea:-ms-input-placeholder {
  color: #BCBCBC;
}
#contact form textarea::-ms-input-placeholder {
  color: #BCBCBC;
}
#contact form textarea::placeholder {
  color: #BCBCBC;
}
#contact form label {
  font-size: 2rem;
  color: #ffffff;
}
#contact form label a {
  color: #D2000D;
}
#contact form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #D2000D;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 auto;
  padding: 1rem 4rem;
  line-height: 1;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
#contact form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#contact-details {
  padding: 0;
  width: 100%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact-details .details {
  width: 100%;
  background: #D2000D;
  padding: 5rem 15rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#contact-details .details .txt h3 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}
#contact-details .details .txt p {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}
#contact-details .map {
  width: 100%;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#contact-details .map iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
}

footer {
  width: 100%;
  padding: 0 15rem;
  background: #000000;
  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;
  border-top: 3px solid #D2000D;
  background: #212121;
}
footer p {
  font-size: 2rem;
  color: #ffffff;
  padding: 1.5rem 2rem;
  text-align: center;
}
footer p a {
  color: #ffffff;
}
footer p svg {
  width: 2rem;
  fill: #ffffff !important;
}

.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: 2;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #D2000D;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #D2000D;
  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: 3px solid #D2000D;
  cursor: pointer;
}
.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: 3px solid #000000;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
.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;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5rem;
  text-align: center;
  color: #ffffff;
}
#rules .rules-content h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1rem;
  color: #ffffff;
}
#rules .rules-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.active {
  color: #D2000D;
}

#about {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 16rem;
  padding-left: 0;
  padding-right: 0;
}
#about .about-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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#about .about-row .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: 60%;
      flex-basis: 60%;
  padding: 0 15rem;
  padding-left: 10rem;
}
#about .about-row .about-txt h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
}
#about .about-row .about-txt p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #ffffff;
}
#about .about-row .about-txt .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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2rem;
  margin-top: 2rem;
}
#about .about-row .about-txt .socials svg {
  width: 3.5rem;
  height: 3.5rem;
  -webkit-transition: ease 0.3 all;
  transition: ease 0.3 all;
  fill: #D2000D;
}
#about .about-row .about-txt .socials svg:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#about .about-row .about-img {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
#about .about-row .about-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

.page-heading {
  width: 100%;
  height: 45dvh;
  position: relative;
}
.page-heading .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  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;
  padding: 3rem;
  padding-top: 12rem;
}
.page-heading .overlay h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}
.page-heading .overlay hr {
  width: 12rem;
  border: none;
  height: 3px;
  background: #D2000D;
  color: #D2000D;
}

#faqs {
  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;
}
#faqs h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: start;
  margin-bottom: 0.5rem;
}
#faqs hr {
  width: 12rem;
  border: none;
  height: 3px;
  background: #D2000D;
  color: #D2000D;
  margin-bottom: 1rem;
}
#faqs p {
  margin-bottom: 4rem;
  font-size: 2rem;
  color: #ffffff;
}
#faqs .faqs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 85rem;
}
#faqs .faqs-container .faq {
  width: 100%;
  border-bottom: 1px solid #BCBCBC;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
}
#faqs .faqs-container .faq.active .faq-title h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 2.5rem;
}
#faqs .faqs-container .faq.active .faq-content {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  padding: 0 2.4rem;
  padding-bottom: 2.4rem;
}
#faqs .faqs-container .faq.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#faqs .faqs-container .faq .faq-title {
  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: 2rem;
  cursor: pointer;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  padding: 2.4rem;
}
#faqs .faqs-container .faq .faq-title h3 {
  color: #ffffff;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  font-size: 2.5rem;
}
#faqs .faqs-container .faq .faq-title:hover h3 {
  color: #D2000D;
  font-weight: bold;
}
#faqs .faqs-container .faq .faq-content {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  padding: 0 2.4rem;
}
#faqs .faqs-container .faq .faq-content p {
  margin-bottom: 0;
}
#faqs .faqs-container .faq .faq-content p a {
  color: #D2000D;
}
#faqs .faqs-container .faq svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#offer {
  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;
}
#offer h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
#offer .offer-grid {
  width: 100%;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
}
#offer .offer-grid .offer {
  width: 100%;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#offer .offer-grid .offer img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 3rem;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
#offer .offer-grid .offer h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: start;
  margin-bottom: 0.5rem;
}
#offer .offer-grid .offer p {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
#offer .offer-grid .offer .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#price-list {
  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;
}
#price-list h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: start;
  margin-bottom: 0.5rem;
}
#price-list hr {
  width: 12rem;
  border: none;
  height: 3px;
  background: #D2000D;
  color: #D2000D;
  margin-bottom: 1rem;
}
#price-list .packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
  margin: 5rem 0;
}
#price-list .packages .package {
  background: #ffffff;
  -webkit-box-shadow: 8px 5px 50px 0px #D2000D;
          box-shadow: 8px 5px 50px 0px #D2000D;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#price-list .packages .package h3 {
  text-align: center;
  font-size: 3rem;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
#price-list .packages .package span {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
}
#price-list .packages .package ul {
  list-style-type: disc;
  color: #BCBCBC;
  font-size: 2rem;
  list-style-position: inside;
  margin-bottom: 3rem;
}
#price-list .packages .package .price {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
}
#price-list .packages .package .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#price-list .packages .package .disclaimer {
  font-size: 1.6rem;
  color: #D2000D;
  margin-top: 3rem;
  text-align: center;
}
#price-list .services-wrapper {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  margin: 5rem 0;
}
#price-list .services-wrapper .service {
  width: 24rem;
  border: 3px solid #D2000D;
  padding: 3rem;
  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;
}
#price-list .services-wrapper .service img {
  width: 12rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
  margin-bottom: 2rem;
}
#price-list .services-wrapper .service h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}
#price-list .package {
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 8px 5px 50px 0px #D2000D;
          box-shadow: 8px 5px 50px 0px #D2000D;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#price-list .package h3 {
  text-align: center;
  font-size: 3rem;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
#price-list .package span {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
}
#price-list .package P {
  color: #BCBCBC;
  font-size: 2rem;
  margin-bottom: 1rem;
}
#price-list .package ul {
  list-style-type: disc;
  color: #BCBCBC;
  font-size: 2rem;
  list-style-position: inside;
  margin-bottom: 3rem;
}
#price-list .package .price {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
}
#price-list .package .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#price-list .package .disclaimer {
  font-size: 1.6rem;
  color: #D2000D;
  margin-top: 3rem;
  text-align: center;
}
#price-list .individual {
  margin: 5rem 0;
}

#text-hero {
  width: 100%;
  padding-top: 16rem;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#text-hero .heading {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  border-right: 3px solid #D2000D;
}
#text-hero .heading h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  text-align: start;
  margin-bottom: 0.5rem;
  text-align: end;
  padding: 2.5rem 5rem;
}
#text-hero .txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#text-hero .txt p {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: start;
  padding: 2.5rem 5rem;
}

#references {
  width: 100%;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 100dvh;
  padding-top: 0;
}
#references .reference {
  width: 100%;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#references .reference h3 {
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  max-width: 80rem;
}
#references .reference p {
  font-size: 2rem;
  color: #ffffff;
  max-width: 60rem;
}
#references .reference .swiper {
  width: 100%;
  margin-bottom: 3rem;
}
#references .reference .swiper .swiper-wrapper .swiper-slide {
  padding: 3rem 0;
}
#references .reference .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  fill: #ffffff !important;
  width: 30px;
  height: 30px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

@media (min-width: 2560px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 8.5px;
  }
  main .overlay {
    padding: 10rem 10rem;
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
  section {
    padding: 10rem;
  }
  #contact-details .details {
    padding: 5rem 10rem;
  }
  footer {
    padding: 0 10rem;
  }
  #rules .rules-content {
    width: 85%;
    margin: 0 auto;
  }
  #about .about-row .about-txt {
    padding: 0 10rem;
    padding-left: 5rem;
  }
  #price-list .packages {
    gap: 5rem;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 1024px) {
  main .overlay {
    padding: 10rem 5rem;
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
  section {
    padding: 5rem;
  }
  #contact-details .details {
    padding: 5rem;
  }
  footer {
    padding: 0 8rem;
  }
  #rules .rules-content {
    width: 100%;
  }
  #about .about-row .about-txt {
    padding: 0 5rem;
    padding-left: 3rem;
  }
  #offer .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  #price-list .packages {
    gap: 3rem;
  }
}
@media (max-width: 1000px) {
  #toggle {
    width: 100%;
    position: fixed;
    background-color: #212121;
    -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
    padding: 0.5rem 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;
    z-index: 6;
  }
  #toggle .logo {
    width: 10rem;
    aspect-ratio: 4/3;
  }
  #toggle .logo img {
    width: 100%;
  }
  #toggle svg {
    width: 4.5rem;
    height: 4.5rem;
    cursor: pointer;
    fill: #ffffff;
  }
  header {
    width: 42rem;
    height: 100dvh;
    background-color: #212121;
    -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.15), 0 0 5px rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    right: 0;
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 5rem;
    padding-top: 15rem;
  }
  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;
  }
  header nav ul {
    -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;
    width: 100%;
    gap: 1.5rem;
  }
  header nav ul li {
    width: 100%;
    border-bottom: 2px dotted #D2000D;
    padding-bottom: 0.5rem;
  }
  header nav ul li .logo {
    display: none;
  }
  header nav ul li a {
    font-size: 3rem;
  }
  header nav ul .logo-link {
    display: none;
  }
  .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;
  }
  #faqs {
    margin-bottom: 3.6rem;
  }
  #faqs .faqs-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  header {
    width: 38rem;
  }
  main .overlay {
    padding: 10rem 3rem;
    padding-top: 12rem;
    padding-bottom: 3rem;
  }
  section {
    padding: 3rem;
  }
  #services .services-wrapper {
    gap: 3rem;
  }
  #how .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #contact-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact-details .details {
    padding: 5rem;
  }
  footer {
    padding: 0 5rem;
  }
  #about .about-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .about-row .about-txt {
    margin-bottom: 5rem;
  }
  #offer .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #price-list .packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 1rem 3rem;
    -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;
  }
  footer p {
    padding: 1.5rem;
  }
  #offer .offer-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
  #price-list .packages {
    grid-template-columns: repeat(1, 1fr);
    gap: 5rem;
  }
  #text-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 12rem;
  }
  #text-hero .heading {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    border-right: none;
    border-bottom: 3px solid #D2000D;
  }
  #text-hero .heading h2 {
    padding: 2.5rem 0rem;
    text-align: center;
  }
  #text-hero .txt {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #text-hero .txt p {
    padding: 2.5rem 0rem;
    padding-bottom: 0;
  }
}
@media (max-width: 425px) {
  header {
    width: 100%;
  }
  main .overlay .hero-content .hero-txt h1 {
    font-size: 4rem;
  }
  #toggle {
    padding: 0.5rem 3rem;
  }
  #toggle .logo {
    width: 9rem;
  }
  #how .steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  #contact form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  #contact-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact-details .details {
    padding: 3rem;
  }
  .cookies {
    width: 100%;
  }
  #rules .rules-content h1 {
    font-size: 4rem;
  }
}