@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

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

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

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;
  background: #333333;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid #F9D98B;
  padding: 1.5rem 15rem;
  position: fixed;
  z-index: 6;
  width: 100%;
}
header .logo {
  width: 14rem;
  -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%;
}
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: 2.5rem;
}
header nav ul li a {
  font-size: 2.5rem;
  color: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header nav ul li a:hover {
  color: #F9D98B;
}
header nav ul li .lang-menu {
  display: block;
  width: 5rem;
  height: 3.5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header nav ul li .lang-menu:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header nav ul li .lang-menu img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.btn {
  font-size: 2.5rem;
  color: #ffffff;
  background: #E3BB4C;
  border: 2px solid #E3BB4C;
  border-radius: 5px;
  padding: 0.6rem 3.2rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  color: #ffffff;
}

.btn-s {
  font-size: 2.5rem;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 5px;
  padding: 0.6rem 3.2rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn-s:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

main {
  width: 100%;
  height: 100dvh;
  position: relative;
}
main .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 10rem 15rem;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .overlay .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-top: 10rem;
}
main .overlay .hero .row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
main .overlay .hero .row p {
  margin-bottom: 0;
}
main .overlay .hero .row svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #F9D98B;
}
main .overlay .hero p {
  font-size: 2.5rem;
  color: #ffffff;
  max-width: 75rem;
  margin-bottom: 2rem;
}
main .overlay .hero h1 {
  font-size: 6rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 75rem;
  line-height: 1.05;
  margin-bottom: 2rem;
}
main .overlay .hero h1 span {
  color: #F9D98B;
}

section {
  padding: 10rem 15rem;
}

#toggle {
  display: none;
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
#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;
  gap: 15rem;
}
#about .about-row .about-txt {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  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;
  gap: 1rem;
}
#about .about-row .about-txt h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #F9D98B;
  font-weight: 600;
}
#about .about-row .about-txt h2 {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 600;
}
#about .about-row .about-txt h2 span {
  color: #F9D98B;
}
#about .about-row .about-txt p {
  font-size: 2.2rem;
  color: #ffffff;
  margin: 2rem 0;
}
#about .about-row .about-img {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  width: 100%;
}
#about .about-row .about-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
#about #highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
#about #highlights .highlight {
  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;
  gap: 2rem;
}
#about #highlights .highlight .icon {
  width: 9rem;
  height: 9rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  background: #ffffff;
  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;
}
#about #highlights .highlight .icon svg {
  width: 6.5rem;
  height: 6.5rem;
  fill: #E3BB4C;
}
#about #highlights .highlight .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#about #highlights .highlight .txt h3 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 500;
}
#about #highlights .highlight .txt p {
  font-size: 2rem;
  color: #ffffff;
}

#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;
  gap: 1rem;
}
#services h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #F9D98B;
  font-weight: 600;
  text-align: center;
}
#services h2 {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  max-width: 80rem;
}
#services h2 span {
  color: #F9D98B;
}
#services p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: center;
  max-width: 80rem;
}
#services .service-category {
  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;
  margin: 2.5rem 0;
}
#services .service-category h3 {
  font-size: 2.5rem;
  color: #ffffff;
}
#services .service-category .services-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin: 1.5rem 0;
}
#services .service-category .services-wrapper .service {
  width: 100%;
  padding: 3rem 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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 4px 4px #F9D98B;
          box-shadow: 4px 4px 4px 4px #F9D98B;
  border-radius: 10px;
}
#services .service-category .services-wrapper .service img {
  width: 100%;
  max-height: 25rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  margin-bottom: 2rem;
}
#services .service-category .services-wrapper .service h3 {
  color: #333333;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#services .service-category .services-wrapper .service p {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 1rem;
  color: #333333;
}
#services .service-category .services-wrapper .service .price {
  text-align: center;
  color: #E3BB4C;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 1.2rem;
  font-weight: 500;
  border-radius: 5px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay .modal-content {
  background: #ffffff;
  color: #333333;
  width: 90%;
  max-width: 45rem;
  padding: 3.5rem 3rem;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.modal-overlay .modal-content .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.modal-overlay .modal-content .close-btn svg {
  width: 2.8rem;
  height: 2.8rem;
  stroke: #333333;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.modal-overlay .modal-content .close-btn:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.modal-overlay .modal-content .close-btn:hover svg {
  stroke: #E3BB4C;
}
.modal-overlay .modal-content .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.modal-overlay .modal-content .modal-header .header-icon {
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(249, 217, 139, 0.25);
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-overlay .modal-content .modal-header .header-icon svg {
  width: 2.8rem;
  height: 2.8rem;
  stroke: #E3BB4C;
}
.modal-overlay .modal-content .modal-header .header-text h2 {
  font-size: 2.4rem !important;
  color: #333333 !important;
  font-weight: 600;
  margin-bottom: 0.2rem;
  text-align: left;
}
.modal-overlay .modal-content .modal-header .header-text p {
  font-size: 1.5rem !important;
  color: rgba(51, 51, 51, 0.6);
  margin: 0;
  text-align: left;
  color: #333333 !important;
}
.modal-overlay .modal-content .modal-price {
  background: rgba(249, 217, 139, 0.15);
  padding: 1.8rem;
  border-radius: 8px;
  text-align: center;
}
.modal-overlay .modal-content .modal-price h3 {
  font-size: 2.5rem !important;
  color: #333333 !important;
  text-transform: none !important;
  font-weight: 600;
  margin: 0;
}
.modal-overlay .modal-content .modal-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.modal-overlay .modal-content .modal-features .feature-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  background: #F8F9FA;
  padding: 1.5rem 2rem;
  border-radius: 8px;
}
.modal-overlay .modal-content .modal-features .feature-row svg {
  width: 2rem;
  height: 2rem;
  stroke: #333333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-overlay .modal-content .modal-features .feature-row .feature-text {
  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;
}
.modal-overlay .modal-content .modal-features .feature-row .feature-text span {
  font-size: 1.3rem;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 0.2rem;
}
.modal-overlay .modal-content .modal-features .feature-row .feature-text strong {
  font-size: 1.5rem;
  color: #333333;
  font-weight: 500;
}

.modal-overlay.active .modal-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#how {
  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%;
}
#how h3 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
#how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
#how .steps .step {
  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;
  gap: 2rem;
}
#how .steps .step .icon {
  width: 9rem;
  height: 9rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
  background: #ffffff;
  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;
  position: relative;
}
#how .steps .step .icon svg {
  width: 6.5rem;
  height: 6.5rem;
  fill: #E3BB4C;
}
#how .steps .step .icon .number {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-size: 2rem;
  color: #ffffff;
  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;
  background: #E3BB4C;
}
#how .steps .step .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#how .steps .step .txt h3 {
  font-size: 2rem !important;
  color: #ffffff;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 0;
}
#how .steps .step .txt p {
  font-size: 2rem;
  color: #ffffff;
}

#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;
}
#reference h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #F9D98B;
  margin-bottom: 1rem;
}
#reference h2 {
  font-size: 4.5rem;
  color: #ffffff;
}
#reference h2 span {
  color: #F9D98B;
}
#reference .reference-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 3rem;
}
#reference .reference-grid .comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
#reference .reference-grid .comparison-slider .zoom-wrap {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
}
#reference .reference-grid .comparison-slider .zoom-wrap .zoom-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  color: #000000;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#reference .reference-grid .comparison-slider .zoom-wrap .zoom-btn svg {
  stroke: #000000;
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
#reference .reference-grid .comparison-slider .zoom-wrap .zoom-btn:hover {
  background: #E3BB4C;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#reference .reference-grid .comparison-slider .zoom-wrap .zoom-btn:hover svg {
  stroke: #ffffff;
}
#reference .reference-grid .comparison-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
#reference .reference-grid .comparison-slider .image-after {
  z-index: 1;
}
#reference .reference-grid .comparison-slider .image-before {
  z-index: 2;
  -webkit-clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
          clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}
#reference .reference-grid .comparison-slider .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  background: #ffffff;
  z-index: 3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#reference .reference-grid .comparison-slider .slider-handle .slider-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#reference .reference-grid .comparison-slider .slider-handle .slider-btn.pulse-anim {
  -webkit-animation: pulseHint 2s infinite;
          animation: pulseHint 2s infinite;
}
#reference .reference-grid .comparison-slider .slider-handle .slider-btn svg {
  stroke: #000000;
}
#reference .reference-grid .comparison-slider .slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
  padding: 0;
}

#reviews {
  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;
}
#reviews h2 {
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
#reviews h2 span {
  color: #F9D98B;
}
#reviews .star-line {
  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;
  font-size: 2.5rem;
  gap: 1rem;
  margin-top: 2rem;
  color: #ffffff;
}
#reviews .star-line .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.25rem;
}
#reviews .star-line .stars svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #E3BB4C;
}
#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;
  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;
  flex-direction: column;
  background: #ffffff;
  padding: 3rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-header {
  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;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-header .name {
  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;
  font-size: 2rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-header .name .icon {
  font-size: 2rem;
  text-transform: uppercase;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #E3BB4C;
  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;
  margin-right: 1.5rem;
}
#reviews .swiper .swiper-wrapper .swiper-slide .slide-header img {
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#reviews .swiper .swiper-wrapper .swiper-slide p {
  font-size: 2rem;
  color: #666;
}
#reviews .swiper .swiper-pagination {
  margin-top: 1rem;
  position: relative;
}
#reviews .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  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: #E3BB4C;
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
#contact .heading h3 {
  color: #F9D98B;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: 80rem;
}
#contact .heading h2 {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
  text-align: center;
  max-width: 80rem;
}
#contact .heading h2 span {
  color: #F9D98B;
}
#contact .heading p {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 3rem;
  color: #ffffff;
  text-align: center;
  max-width: 80rem;
}
#contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact .contact-wrapper .contact-left {
  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-left .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;
  gap: 1.5rem;
  width: 100%;
}
#contact .contact-wrapper .contact-left .contact-form .input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text],
#contact .contact-wrapper .contact-left .contact-form input[type=email],
#contact .contact-wrapper .contact-left .contact-form input[type=tel],
#contact .contact-wrapper .contact-left .contact-form textarea {
  width: 100%;
  padding: 1.5rem;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 2rem;
  background: transparent;
  color: #ffffff;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text]:focus,
#contact .contact-wrapper .contact-left .contact-form input[type=email]:focus,
#contact .contact-wrapper .contact-left .contact-form input[type=tel]:focus,
#contact .contact-wrapper .contact-left .contact-form textarea:focus {
  border-color: #F9D98B;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text]::-webkit-input-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=email]::-webkit-input-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=tel]::-webkit-input-placeholder, #contact .contact-wrapper .contact-left .contact-form textarea::-webkit-input-placeholder {
  color: #ffffff;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text]::-moz-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=email]::-moz-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=tel]::-moz-placeholder, #contact .contact-wrapper .contact-left .contact-form textarea::-moz-placeholder {
  color: #ffffff;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text]:-ms-input-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=email]:-ms-input-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=tel]:-ms-input-placeholder, #contact .contact-wrapper .contact-left .contact-form textarea:-ms-input-placeholder {
  color: #ffffff;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text]::-ms-input-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=email]::-ms-input-placeholder, #contact .contact-wrapper .contact-left .contact-form input[type=tel]::-ms-input-placeholder, #contact .contact-wrapper .contact-left .contact-form textarea::-ms-input-placeholder {
  color: #ffffff;
}
#contact .contact-wrapper .contact-left .contact-form input[type=text]::placeholder,
#contact .contact-wrapper .contact-left .contact-form input[type=email]::placeholder,
#contact .contact-wrapper .contact-left .contact-form input[type=tel]::placeholder,
#contact .contact-wrapper .contact-left .contact-form textarea::placeholder {
  color: #ffffff;
}
#contact .contact-wrapper .contact-left .contact-form textarea {
  resize: vertical;
  min-height: 15rem;
}
#contact .contact-wrapper .contact-left .contact-form .full-width {
  grid-column: 1/-1;
}
#contact .contact-wrapper .contact-left .contact-form .checkbox-group {
  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;
  gap: 1.5rem;
  margin: 1rem 0;
}
#contact .contact-wrapper .contact-left .contact-form .checkbox-group input[type=checkbox] {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  accent-color: #F9D98B;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#contact .contact-wrapper .contact-left .contact-form .checkbox-group label {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
}
#contact .contact-wrapper .contact-left .contact-form .checkbox-group label a {
  color: #F9D98B;
}
#contact .contact-wrapper .contact-left .contact-form .btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  padding: 1rem 4rem;
}
#contact .contact-wrapper .contact-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact .contact-wrapper .contact-right .contact-info-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 5rem;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  color: #333333;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content h4 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #333333;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content hr {
  width: 5rem;
  color: #E3BB4C;
  border-color: #E3BB4C;
  background: #E3BB4C;
  height: 3px;
  border: none;
  margin-bottom: 1rem;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-details p {
  font-size: 2rem;
  color: #333333;
  text-align: start;
  margin-bottom: 0;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-details p strong {
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-links {
  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.2rem;
  margin-top: 1rem;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  color: #333333;
  font-size: 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-links a svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #E3BB4C !important;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-links a:hover {
  color: #F9D98B;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-links a:hover svg {
  fill: #F9D98B;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-socials a svg {
  width: 3.5rem;
  height: 3.5rem;
  fill: #E3BB4C;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#contact .contact-wrapper .contact-right .contact-info-box .info-content .info-socials a:hover svg {
  fill: #F9D98B;
}

footer {
  background: #E3BB4C;
  padding: 1.5rem 15rem;
  width: 100%;
}
footer .footer-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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-wrapper p, footer .footer-wrapper a {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
footer .footer-wrapper a:hover {
  color: #F9D98B;
}
footer .footer-wrapper .built-with p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
footer .footer-wrapper .built-with p svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}

.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.8rem;
}
.cookies a {
  color: #E3BB4C;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #E3BB4C;
  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 #E3BB4C;
  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: #333333;
  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 #333333;
  -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: 4.5rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
  color: #ffffff;
}
#rules .rules-content h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
#rules .rules-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.active {
  color: #E3BB4C;
}

.first-section {
  padding-top: 16rem;
}

#faq {
  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;
  width: 100%;
}
#faq .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}
#faq .heading h2 {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}
#faq .heading h2 span {
  color: #F9D98B;
}
#faq .faq-wrapper {
  width: 100%;
  max-width: 90rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#faq .faq-wrapper .faq-item {
  width: 100%;
}
#faq .faq-wrapper .faq-item .faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5rem 0;
  border-bottom: 2px solid #ffffff;
  font-size: 2.2rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#faq .faq-wrapper .faq-item .faq-question svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: stroke 0.3s ease, -webkit-transform 0.3s ease;
  transition: stroke 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, stroke 0.3s ease;
  transition: transform 0.3s ease, stroke 0.3s ease, -webkit-transform 0.3s ease;
}
#faq .faq-wrapper .faq-item .faq-question:hover {
  color: #F9D98B;
}
#faq .faq-wrapper .faq-item .faq-question:hover svg {
  stroke: #F9D98B;
}
#faq .faq-wrapper .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
}
#faq .faq-wrapper .faq-item .faq-answer p {
  padding: 2rem 0;
  margin: 0;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
#faq .faq-wrapper .faq-item.active .faq-question svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  stroke: #F9D98B;
}
#faq .faq-wrapper .faq-item.active .faq-answer {
  max-height: 50rem;
}

.file-upload-box {
  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;
  gap: 1rem;
  grid-column: 1/-1;
}
.file-upload-box .file-input {
  display: none;
}
.file-upload-box .file-label {
  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;
  width: 100%;
  padding: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  cursor: pointer;
  background: transparent;
  -webkit-transition: border-color 0.3s ease, background 0.3s ease;
  transition: border-color 0.3s ease, background 0.3s ease;
  gap: 0.5rem;
}
.file-upload-box .file-label .icon svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.file-upload-box .file-label .title {
  font-size: 2rem;
  color: #ffffff;
}
.file-upload-box .file-label .subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
}
.file-upload-box .file-label:hover {
  border-color: #F9D98B;
  background: rgba(255, 255, 255, 0.02);
}
.file-upload-box .file-label:hover .icon svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.file-upload-box .file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.file-upload-box .file-list .file-item {
  font-size: 1.4rem;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  border-left: 3px solid #F9D98B;
}
.file-upload-box .file-list .file-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-upload-box .file-list .file-item svg {
  stroke: #F9D98B;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 2560px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9.5px;
  }
  header {
    padding: 1.5rem 10rem;
  }
  section {
    padding: 8rem 10rem;
  }
  main .overlay {
    padding: 8rem 10rem;
  }
  #about .about-row {
    gap: 10rem;
  }
  #about .about-row .about-txt h3 {
    font-size: 2.5rem;
  }
  #about .about-row .about-txt p {
    font-size: 2.2rem;
    margin: 1.5rem 0;
  }
  #about .about-row .about-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
  footer {
    padding: 2rem 10rem;
  }
  #rules .rules-content {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 9px;
  }
  header {
    padding: 1.5rem 8rem;
  }
  section {
    padding: 6rem 8rem;
  }
  main .overlay {
    padding: 6rem 8rem;
  }
  #about .about-row {
    gap: 8rem;
  }
  #services .service-category .services-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  #services .service-category .services-wrapper .service {
    padding: 3rem;
  }
  footer {
    padding: 2rem 8rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8.5px;
  }
  header {
    padding: 1.5rem 6rem;
  }
  section {
    padding: 5rem 6rem;
  }
  main .overlay {
    padding: 5rem 6rem;
  }
  #about .about-row {
    gap: 5rem;
  }
  #about .about-row .about-txt h2 {
    font-size: 4rem;
  }
  #about .about-row .about-img img {
    aspect-ratio: 3/4;
  }
  #about #highlights .highlight {
    -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;
    gap: 1.5rem;
  }
  #how .steps .step {
    -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;
    gap: 1.5rem;
  }
  #services h2 {
    font-size: 4rem;
  }
  #reference h2 {
    font-size: 4rem;
  }
  #reference .reference-grid {
    gap: 3rem;
  }
  #reviews h2 {
    font-size: 4rem;
  }
  #contact h2 {
    font-size: 4rem;
  }
  #contact .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  #contact .contact-wrapper .contact-right .contact-info-box {
    padding: 4rem;
  }
  footer {
    padding: 2rem 6rem;
  }
  #rules .rules-content {
    width: 100%;
  }
  #faq h2 {
    font-size: 4rem;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 8px;
  }
  header {
    padding: 5rem;
    width: 40rem;
    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;
    right: 0;
    border: none;
    border-left: 2px solid #F9D98B;
  }
  header .logo {
    display: none;
  }
  header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header nav ul li a {
    font-size: 3rem;
  }
  header nav ul li .lang-menu {
    width: 6rem;
    height: 4rem;
  }
  section {
    padding: 5rem;
  }
  main .overlay {
    padding: 5rem;
  }
  #toggle {
    padding: 1.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;
    background: #333333;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid #F9D98B;
    padding: 1.5rem 5rem;
    position: fixed;
    z-index: 7;
    width: 100%;
  }
  #toggle .logo {
    width: 12rem;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  #toggle .logo:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  #toggle .logo img {
    width: 100%;
  }
  #toggle svg {
    width: 5rem;
    height: 5rem;
    fill: #ffffff;
  }
  .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;
  }
}
@media (max-width: 768px) {
  #about .about-row {
    gap: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .about-row .about-img img {
    aspect-ratio: 4/3;
  }
  #about #highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  #about #highlights .highlight {
    -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;
  }
  #services .service-category .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #services .service-category .services-wrapper .service {
    padding: 3rem;
  }
  #how .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  #how .steps .step {
    -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;
  }
  #reference .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #contact .contact-wrapper .contact-right .contact-info-box {
    padding: 4rem 3rem;
    gap: 4rem;
  }
  footer {
    padding: 3rem 4rem;
  }
  footer .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }
}
@media (max-width: 425px) {
  header {
    padding: 5rem 3rem;
  }
  #toggle {
    padding: 1.5rem 3rem;
  }
  section {
    padding: 5rem 3rem;
  }
  main .overlay {
    padding: 5rem 3rem;
  }
  main .overlay .hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
  }
  main .overlay .hero p {
    margin-bottom: 1rem;
  }
  main .overlay .hero .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main .overlay .hero .row p {
    margin-bottom: 0;
  }
  #about .about-row .about-img img {
    aspect-ratio: 1;
  }
  #about #highlights {
    grid-template-columns: repeat(1, 1fr);
  }
  #about #highlights .highlight {
    -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;
  }
  #services .service-category .services-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  #services .service-category .services-wrapper .service {
    padding: 3rem;
  }
  #how .steps {
    grid-template-columns: repeat(1, 1fr);
  }
  #how .steps .step {
    -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;
  }
  #reference .reference-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #reviews {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #reviews h2 {
    text-align: center;
  }
  #reviews .star-line {
    font-size: 2rem;
    gap: 0.5rem;
  }
  #reviews .star-line .stars {
    gap: 0.25rem;
  }
  #reviews .star-line .stars svg {
    width: 2rem;
    height: 2rem;
  }
  #reviews .swiper .swiper-wrapper {
    padding: 3rem 0;
  }
  #reviews .swiper .swiper-wrapper .swiper-slide {
    padding: 2rem;
  }
  #contact .contact-wrapper .contact-left .contact-form .input-row {
    grid-template-columns: 1fr;
  }
  #contact .contact-wrapper .contact-left .contact-form .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #contact .contact-wrapper .contact-right .contact-info-box {
    padding: 3rem 2rem;
  }
  footer {
    padding: 3rem;
  }
  .cookies {
    width: 100%;
  }
  #rules .rules-content h1 {
    font-size: 4rem;
  }
}