@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: #F4F4F4;
}

header {
  width: 100%;
  position: fixed;
  z-index: 4;
  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;
  padding: 1.5rem 15rem;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
header .logo {
  width: 100%;
  max-width: 30rem;
}
header .logo a {
  width: 100%;
}
header .logo a img {
  width: 100%;
}
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;
  gap: 2.5rem;
}
header nav ul li a {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 300;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header nav ul li a:hover {
  font-weight: 600;
  color: #3E3A3B;
}
header .socials {
  display: none;
}

main {
  width: 100%;
  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;
  position: relative;
}
main .main-wrapper {
  width: 100%;
  height: calc(100% - 10rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
main .main-wrapper .gap {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
}
main .main-wrapper .main-img {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}
main .main-wrapper .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .main-wrapper .main-txt {
  width: 68rem;
  position: absolute;
  background: #F4F4F4;
  top: calc(50% - 10rem);
  left: calc(40% - 32.5rem);
  padding: 5rem;
  padding-right: 12rem;
}
main .main-wrapper .main-txt h1 {
  font-size: 5rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
main .main-wrapper .main-txt p {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
main .main-wrapper .main-txt .deco {
  position: absolute;
  width: 20rem;
  height: 2rem;
  background: #3E3A3B;
  top: 50%;
  left: calc(100% - 10rem);
}
main .main-socials {
  width: 100%;
  height: 10rem;
  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;
  padding: 1.5rem 15rem;
}
main .main-socials svg {
  width: 3.5rem;
  margin-left: 15rem;
}
main .main-socials .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  fill: #3E3A3B;
}
main .main-socials .socials svg {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 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);
  background: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

section {
  padding: 5rem 15rem;
  scroll-margin-top: 10.6rem;
}

#toggle {
  display: none;
}

.cookies {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  padding-bottom: 0;
  width: 42.5rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}
.cookies p {
  font-size: 1.8rem;
}
.cookies a {
  color: #3E3A3B;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 2rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #3E3A3B;
  padding: 0.7rem 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: 400;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.cookies .row .btn-b {
  font-size: 2rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #000000;
  padding: 0.7rem 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: 400;
  cursor: pointer;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#about {
  width: 100%;
  background: #3E3A3B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5rem 0 !important;
  padding-bottom: 0 !important;
  gap: 5rem;
}
#about .inner-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  padding: 5rem;
}
#about .inner-menu .link {
  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;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#about .inner-menu .link:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#about .inner-menu .link img {
  width: 10rem;
  margin-bottom: 1.5rem;
}
#about .inner-menu .link h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
}
#about .inner-menu .line {
  width: 1.5rem;
  height: 13rem;
  background: #ffffff;
}
#about .about-row {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
#about .about-row .about-txt {
  padding: 5rem;
  padding-right: 15rem;
}
#about .about-row .about-txt h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
#about .about-row .about-txt p {
  font-size: 2.5rem;
  color: #ffffff;
}
#about .about-row .about-img {
  width: 58rem;
}
#about .about-row .about-img svg {
  width: 58rem;
  height: 53rem;
}
#about .about-row .about-img .m-svg {
  display: none;
}

#services {
  width: 100%;
  background: url(img/services-bcg.svg);
  background-size: cover;
  background-repeat: repeat;
  background-position: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10rem;
  position: relative;
}
#services h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 2.5rem;
}
#services .services-wrapper {
  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: 5rem;
  margin: 5rem 0;
  z-index: 2;
}
#services .services-wrapper .service {
  width: 100%;
}
#services .services-wrapper .service .service-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  min-height: 50rem;
}
#services .services-wrapper .service .service-row .gap {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
}
#services .services-wrapper .service .service-row .service-img {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
}
#services .services-wrapper .service .service-row .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .services-wrapper .service .service-row .service-txt {
  width: 68rem;
  position: absolute;
  background: #F4F4F4;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 3rem;
}
#services .services-wrapper .service .service-row .service-txt h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#services .services-wrapper .service .service-row .service-txt p {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
#services .logo-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35rem;
  height: 35rem;
  z-index: 1;
}
#services .logo-deco img {
  width: 100%;
  height: 100%;
}

#references {
  width: 100%;
  background: #3E3A3B;
  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;
}
#references h2 {
  font-size: 4rem;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
}
#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;
  gap: 5rem;
}
#references .reference h3 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
}
#references .reference .reference-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
#references .reference .reference-row a {
  width: 50%;
  display: block;
}
#references .reference .reference-row a img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
  aspect-ratio: 2/1;
}
#references .reference .reference-row a:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

#contact {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background: #3E3A3B;
  overflow: hidden;
  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 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 0;
}
#contact .background .contact-img {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
  overflow: hidden;
}
#contact .background .contact-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#contact .background .gap {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  background: #3E3A3B;
}
#contact .contact-wrapper {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 80%;
  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;
  text-align: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: 15rem;
  margin-bottom: 5rem;
}
#contact .contact-wrapper .contact-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #3E3A3B;
  padding: 5rem;
}
#contact .contact-wrapper .contact-form h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-weight: 600;
}
#contact .contact-wrapper .contact-form form {
  width: 80%;
  margin: 0 auto;
  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;
}
#contact .contact-wrapper .contact-form form input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  outline: none;
  font-size: 2rem;
  padding: 0.5rem;
}
#contact .contact-wrapper .contact-form form input::-webkit-input-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form input::-moz-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form input:-ms-input-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form input::-ms-input-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form input::placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form textarea {
  width: 100%;
  height: 15rem;
  background: none;
  border: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  outline: none;
  resize: vertical;
  font-size: 2rem;
  padding: 0.5rem;
}
#contact .contact-wrapper .contact-form form textarea::-webkit-input-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form textarea::-moz-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form textarea:-ms-input-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form textarea::-ms-input-placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form textarea::placeholder {
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form label {
  font-size: 2rem;
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
#contact .contact-wrapper .contact-form form .checkbox-row input[type=checkbox] {
  width: 2.5rem;
  height: 2.5rem;
}
#contact .contact-wrapper .contact-form form .checkbox-row label {
  font-size: 2rem;
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form .checkbox-row label a {
  font-weight: bold;
  color: #f5f5f5;
}
#contact .contact-wrapper .contact-form form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 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);
  background: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  color: #000000;
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 1.5rem;
}
#contact .contact-wrapper .contact-form form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#contact .contact-wrapper .contact-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ffffff;
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#contact .contact-wrapper .contact-details h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
#contact .contact-wrapper .contact-details p {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: start;
}
#contact .contact-wrapper .contact-details .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  gap: 1.5rem;
  fill: #3E3A3B;
}
#contact .contact-wrapper .contact-details .socials svg {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0;
}

footer {
  background-color: #ffffff;
  padding: 2rem 15rem;
  font-size: 2rem;
  text-align: center;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer-content p {
  margin: 0;
  color: #9F9F9F;
}
footer .footer-content a {
  color: #9F9F9F;
  text-decoration: none;
}
footer .footer-content svg {
  width: 2rem;
  height: 2rem;
  fill: #9F9F9F;
  vertical-align: middle;
}

#rules {
  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;
  min-height: 100dvh;
  padding-top: 20rem;
}
#rules .rules-wrapper {
  max-width: 144rem;
  margin: 0 auto;
}
#rules .rules-wrapper h2 {
  margin-bottom: 5rem;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
}
#rules .rules-wrapper h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
#rules .rules-wrapper p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 1440px) {
  header {
    padding: 1.5rem 10rem;
  }
  section {
    padding: 5rem 10rem;
  }
  #about .inner-menu {
    padding: 0 5rem;
  }
  #about .about-row {
    gap: 0;
  }
  #about .about-row .about-txt {
    padding-right: 10rem;
  }
  #contact .contact-wrapper {
    width: 100%;
    height: 80%;
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  #contact .contact-wrapper .contact-form {
    padding: 3rem;
  }
  #contact .contact-wrapper .contact-form form {
    width: 90%;
  }
  #contact .contact-wrapper .contact-details {
    padding: 3rem;
  }
  footer {
    padding: 2rem 10rem;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 9px;
  }
  header {
    padding: 1.5rem 8rem;
  }
  section {
    padding: 5rem 8rem;
  }
  #about .about-row .about-txt {
    padding-right: 8rem;
  }
  footer {
    padding: 2rem 8rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8.5px;
  }
  header {
    padding: 1.5rem 5rem;
  }
  section {
    padding: 5rem 5rem;
  }
  #about .about-row .about-txt {
    padding-right: 5rem;
  }
  #services {
    padding-top: 5rem;
  }
  #services .services-wrapper .service .service-row .service-txt {
    width: 60rem;
    left: 5%;
  }
  #services .logo-deco {
    width: 25rem;
    height: 25rem;
  }
  #contact .contact-wrapper {
    width: 100%;
    height: 80%;
    margin-top: 0rem;
    margin-bottom: 0rem;
  }
  #contact .contact-wrapper .contact-form {
    padding: 3rem;
  }
  #contact .contact-wrapper .contact-form form {
    width: 100%;
  }
  #contact .contact-wrapper .contact-details {
    padding: 3rem;
  }
  footer {
    padding: 2rem 5rem;
  }
}
@media (max-width: 1000px) {
  #toggle {
    width: 100%;
    position: fixed;
    z-index: 4;
    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;
    padding: 1.5rem 5rem;
    background: #ffffff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  #toggle .logo {
    width: 100%;
    max-width: 24rem;
  }
  #toggle .logo a {
    width: 100%;
  }
  #toggle .logo a img {
    width: 100%;
  }
  #toggle #toggler {
    width: 4rem;
    height: 4rem;
    fill: #000000;
    cursor: pointer;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 32rem;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    height: 100dvh;
    padding: 3rem;
    padding-top: 15rem;
  }
  header .logo {
    display: none;
  }
  header nav {
    width: 100%;
  }
  header nav ul {
    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: 1.5rem;
  }
  header nav ul li {
    border-bottom: 1px solid #3E3A3B;
    padding: 0.5rem 2rem;
  }
  header .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5rem;
    fill: #3E3A3B;
  }
  header .socials svg {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0;
  }
  .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;
  }
  #about {
    gap: 0;
  }
  #about .inner-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.5rem;
  }
  #about .inner-menu .line {
    display: none;
  }
  #about .inner-menu .link {
    width: 15rem;
  }
  #about .about-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #about .about-row .about-txt {
    width: 100%;
  }
  #about .about-row .about-img {
    width: 100%;
  }
  #about .about-row .about-img .m-svg {
    width: 100%;
    height: auto;
    display: block;
  }
  #about .about-row .about-img .p-svg {
    display: none;
  }
  #rules {
    padding-top: 15rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 8px;
  }
  main .main-wrapper .gap {
    display: none;
  }
  main .main-wrapper .main-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  main .main-wrapper .main-txt {
    width: calc(100% - 30rem);
    position: absolute;
    background: #F4F4F4;
    top: calc(50% - 10rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 3rem;
    padding-right: 3rem;
    border: 2rem solid #3E3A3B;
  }
  main .main-wrapper .main-txt .deco {
    display: none;
  }
  main .main-socials {
    padding: 1.5rem 5rem;
  }
  main .main-socials svg {
    width: 3rem;
    margin-left: 0rem;
  }
  #services .services-wrapper .service .service-row .service-txt {
    left: 0%;
  }
  #services .logo-deco {
    width: 20rem;
    height: 20rem;
  }
  #references {
    gap: 2.5rem;
  }
  #references .reference {
    gap: 2.5rem;
  }
  #references .reference .reference-row {
    gap: 2.5rem;
  }
  #contact .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-wrapper .contact-form {
    width: 100%;
  }
  #contact .contact-wrapper .contact-details {
    width: 100%;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 620px) {
  main .main-wrapper .main-txt {
    width: calc(100% - 6rem);
    position: absolute;
    background: rgba(245, 245, 245, 0.8);
    top: calc(50% - 10rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 1.5rem;
    padding-right: 1.5rem;
    border: 1.5rem solid #3E3A3B;
  }
  main .main-wrapper .main-txt h1 {
    font-size: 3.5rem;
  }
  #services .services-wrapper .service .service-row .gap {
    display: none;
  }
  #services .services-wrapper .service .service-row .service-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #services .services-wrapper .service .service-row .service-txt {
    width: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: rgba(245, 245, 245, 0.8);
  }
  #references .reference .reference-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #references .reference .reference-row a {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .cookies {
    width: 100%;
  }
}
@media (max-width: 320px) {
  #toggle {
    padding: 1.5rem 3rem;
  }
  section {
    padding: 5rem 3rem;
  }
  #about {
    padding-top: 3rem !important;
  }
  #about .inner-menu {
    padding: 3rem;
  }
  #about .about-row .about-txt {
    padding: 3rem;
  }
  footer {
    padding: 2rem 3rem;
  }
}