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

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

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

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

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

header {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 3;
}
header .upper-header {
  width: 100%;
  background: #2F2F2F;
  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: 0.5rem 10rem;
}
header .upper-header .contacts {
  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;
  color: #ffffff;
  gap: 1rem;
}
header .upper-header .contacts p {
  font-size: 1.6rem;
}
header .upper-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: 1rem;
}
header .upper-header .socials a svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .upper-header .socials a svg:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  fill: #3F8B2A;
}
header .lower-header {
  width: 100%;
  background: #ffffff;
  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: 1rem 10rem;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header .lower-header .logo img {
  width: 8rem;
  height: 8rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-header .logo img:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .lower-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: 2rem;
}
header .lower-header nav ul li {
  font-size: 2rem;
  text-transform: uppercase;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-header nav ul li:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .lower-header nav ul li:hover a {
  color: #3F8B2A;
}
header .toggle {
  display: none;
}

main {
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 14.5rem;
}
main .main-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  height: 100%;
  background: #2F2F2F;
  padding: 5rem 10rem;
  padding-bottom: 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .main-txt .main-content {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 10rem;
}
main .main-txt .main-content h1 {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
main .main-txt .main-content h1 span {
  color: #3F8B2A;
}
main .main-txt .main-content p {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 4rem;
}
main .main-txt .highlights {
  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;
  justify-self: end;
  margin-top: auto;
}
main .main-txt .highlights .highlight {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: #000000;
  border-top: 3px solid #3F8B2A;
  padding: 1rem 3rem;
}
main .main-txt .highlights .highlight:nth-child(2) {
  background: #3F8B2A;
}
main .main-txt .highlights .highlight p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}
main .main-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
main .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  background: #3F8B2A;
  padding: 1rem 4rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

section {
  width: 100%;
  padding: 5rem 10rem;
}

#about {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
}
#about .about-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-txt h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}
#about .about-txt h2 span {
  color: #3F8B2A;
}
#about .about-txt p {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#about .about-txt ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 4rem;
}
#about .about-txt ul li {
  font-size: 2rem;
}
#about .about-txt ul li::marker {
  color: #3F8B2A;
  font-size: 2rem;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.heading {
  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: 2rem;
}
.heading .square {
  width: 12rem;
  height: 8rem;
  background: #3F8B2A;
}
.heading h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
}

#services {
  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;
}
#services .services-row {
  width: 100%;
  margin: 5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
}
#services .services-row .service {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#services .services-row .service .service-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 2rem;
}
#services .services-row .service .service-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .services-row .service .service-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#services .services-row .service .service-img .overlay span {
  font-size: 12rem;
  color: rgba(178, 178, 178, 0.7);
  font-weight: bold;
  line-height: 1;
}
#services .services-row .service .service-img .overlay h3 {
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
}
#services .services-row .service p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

#references .reference-row {
  width: 100%;
  margin: 5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
}
#references .reference-row .reference {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#references .reference-row .reference .reference-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 2rem;
}
#references .reference-row .reference .reference-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
#references .reference-row .reference .reference-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#references .reference-row .reference .reference-img .overlay h3 {
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
}
#references .reference-row .reference .reference-img .overlay p {
  font-size: 1.8rem;
  color: #ffffff;
}
#references .reference-row .reference .reference-img .overlay .btn {
  position: absolute;
  top: 3rem;
  right: 3rem;
}

.zero-top-padding {
  padding-top: 0;
}

#contact {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#contact .contact-details, #contact .contact-map, #contact .contact-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#contact .contact-form {
  background: #3F8B2A;
  padding: 5rem 10rem;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .contact-form form {
  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;
}
#contact .contact-form form input {
  padding: 0.5rem;
  font-size: 2rem;
  width: 100%;
  color: #ffffff;
  background: none;
  outline: none;
  border: none;
  border-bottom: 3px solid #ffffff;
  margin-bottom: 2rem;
}
#contact .contact-form form input::-webkit-input-placeholder {
  color: #ffffff;
}
#contact .contact-form form input::-moz-placeholder {
  color: #ffffff;
}
#contact .contact-form form input:-ms-input-placeholder {
  color: #ffffff;
}
#contact .contact-form form input::-ms-input-placeholder {
  color: #ffffff;
}
#contact .contact-form form input::placeholder {
  color: #ffffff;
}
#contact .contact-form form textarea {
  height: 12rem;
  resize: vertical;
  padding: 0.5rem;
  font-size: 2rem;
  width: 100%;
  color: #ffffff;
  background: none;
  outline: none;
  border: 3px solid #ffffff;
  margin-bottom: 2rem;
}
#contact .contact-form form textarea::-webkit-input-placeholder {
  color: #ffffff;
}
#contact .contact-form form textarea::-moz-placeholder {
  color: #ffffff;
}
#contact .contact-form form textarea:-ms-input-placeholder {
  color: #ffffff;
}
#contact .contact-form form textarea::-ms-input-placeholder {
  color: #ffffff;
}
#contact .contact-form form textarea::placeholder {
  color: #ffffff;
}
#contact .contact-form form label {
  font-size: 2rem;
  color: #ffffff;
}
#contact .contact-form form input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  color: #3F8B2A;
  text-transform: uppercase;
  background: #ffffff;
  padding: 1rem 4rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border: none;
}
#contact .contact-form form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#contact .contact-map iframe {
  width: 100%;
  height: 100%;
}
#contact .contact-details {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem 10rem;
}
#contact .contact-details .logo {
  width: 10rem;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 5rem;
}
#contact .contact-details .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
#contact .contact-details .detail svg {
  width: 2.5rem;
  fill: #3F8B2A;
  margin-right: 1.5rem;
}

footer {
  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: #3F8B2A;
  color: #ffffff;
  font-size: 2rem;
  padding: 1rem 10rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
footer p:nth-child(1) {
  text-align: start;
}
footer p:nth-child(2) {
  text-align: center;
}
footer p:nth-child(3) {
  text-align: end;
}
footer p a {
  color: #ffffff;
}
footer p svg {
  fill: #ffffff;
  width: 2rem;
}

.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: 2;
}
.cookies p {
  font-size: 1.6rem;
}
.cookies a {
  color: #3F8B2A;
  font-weight: bold;
}
.cookies .row {
  width: 50%;
  margin: 2rem;
}
.cookies .row .btn-g {
  font-size: 1.8rem;
  margin: 0rem 2rem;
  color: #ffffff;
  background: #3F8B2A;
  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;
}
.cookies .row .btn-g:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.cookies .row .btn-b {
  font-size: 1.8rem;
  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;
}
.cookies .row .btn-b:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#rules {
  width: 100%;
  min-height: 100dvh;
  padding-top: 19.5rem;
}
#rules .rules-content {
  width: 80%;
  margin: 0 auto;
}
#rules .rules-content h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 4rem;
  text-transform: uppercase;
}
#rules .rules-content h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
}
#rules .rules-content p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.alone {
  width: 100%;
  min-height: 100dvh;
  padding-top: 19.5rem;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}
.alone .about-txt p {
  margin-bottom: 3rem !important;
}

.r-alone {
  width: 100%;
  min-height: 100dvh;
  padding-top: 19.5rem;
}

.active {
  color: #3F8B2A;
}

.pagination {
  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: 5rem 0;
}
.pagination a {
  font-size: 2rem;
  margin: 0 0.5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.pagination a:hover {
  color: #3F8B2A;
}
.pagination .p-active {
  font-weight: bold;
  color: #3F8B2A;
}

.alone-services {
  width: 80% !important;
  margin: 0 auto;
  min-height: 100dvh;
  padding-top: 19.5rem;
}
.alone-services .services-row {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-template-columns: none !important;
  gap: 5rem !important;
}
.alone-services .services-row .service {
  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;
  gap: 5rem;
}
.alone-services .services-row .service .service-img {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  aspect-ratio: 1;
}
.alone-services .services-row .service .service-txt {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.alone-services .services-row .service .service-txt h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (min-width: 2560px) {
  html {
    font-size: 14.5px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 8.5px;
  }
  #about {
    gap: 10rem;
  }
  #contact .contact-form {
    padding-left: 5rem;
  }
  #contact .contact-details {
    padding-right: 5rem;
  }
  .alone-services {
    width: 100% !important;
  }
}
@media (max-width: 1336px) {
  html {
    font-size: 8px;
  }
  #services .services-row {
    gap: 5rem;
  }
  #services .services-row .service .service-img .overlay {
    padding: 2rem;
  }
  #services .services-row .service .service-img .overlay span {
    font-size: 8rem;
  }
  #references .reference-row {
    gap: 5rem;
  }
  #references .reference-row .reference .reference-img .overlay {
    padding: 2rem;
  }
  #references .reference-row .reference .reference-img .overlay .btn {
    top: 2rem;
    right: 2rem;
  }
}
@media (max-width: 1024px) {
  header .upper-header {
    padding: 0.5rem 5rem;
  }
  header .lower-header {
    padding: 0.5rem 5rem;
  }
  main {
    padding-top: 9.8rem;
  }
  main .main-txt {
    padding: 5rem;
    padding-bottom: 0;
  }
  main .main-txt .main-content {
    padding-bottom: 5rem;
  }
  main .main-txt .main-content h1 {
    font-size: 4rem;
  }
  main .main-txt .highlights .highlight p {
    font-size: 1.6rem;
  }
  #about {
    gap: 5rem;
  }
  section {
    padding: 5rem;
  }
  #contact {
    grid-template-columns: repeat(2, 1fr);
  }
  #contact .contact-map {
    display: none;
  }
  footer {
    padding: 1rem 5rem;
  }
  #rules {
    padding-top: 17.5rem;
  }
  #rules .rules-content {
    width: 100%;
  }
  .alone-services {
    padding-top: 17.5rem;
  }
  .alone-services .services-row .service .service-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .alone-services .services-row .service .service-txt {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .alone-services .services-row .service .service-txt p {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 768px) {
  main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 13.5rem;
    height: 100dvh;
  }
  main .main-txt {
    padding: 5rem;
    padding-bottom: 0;
  }
  main .main-txt .main-content {
    padding-bottom: 5rem;
  }
  main .main-txt .main-content h1 {
    font-size: 4rem;
  }
  main .main-txt .highlights .highlight p {
    font-size: 1.6rem;
  }
  main .main-img {
    height: 50%;
  }
  main .main-img img {
    height: 100%;
    aspect-ratio: unset;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .about-img {
    width: 80%;
    height: 80%;
  }
  .alone {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  #services .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
  #references .reference-row {
    grid-template-columns: repeat(2, 1fr);
  }
  #contact .contact-details {
    padding: 5rem;
  }
  #contact .contact-form {
    padding: 5rem;
  }
  .alone-services {
    padding-top: 17.5rem;
  }
  .alone-services .services-row {
    gap: 5rem !important;
  }
  .alone-services .services-row .service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem !important;
  }
  .alone-services .services-row .service .service-img {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
  .alone-services .services-row .service .service-txt {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
  .alone-services .services-row .service .service-txt p {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 600px) {
  header .upper-header {
    padding: 0.5rem 3rem;
  }
  header .toggle {
    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: 1rem 3rem;
    background: #ffffff;
    width: 100%;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  header .toggle .logo img {
    width: 8rem;
    height: 8rem;
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 1;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  header .toggle .logo img:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  header .toggle svg {
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
  }
  header .lower-header {
    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;
    height: calc(100dvh - 14.5rem);
    border-top: 2px solid #2F2F2F;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  header .lower-header .logo {
    display: none;
  }
  header .lower-header nav {
    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;
  }
  header .lower-header nav ul {
    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;
  }
  header .lower-header nav ul li {
    font-size: 3rem;
  }
  .active-menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    height: 100dvh;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .not-active-menu {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    height: 0 !important;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  main .main-txt {
    padding: 3rem;
    padding-bottom: 0;
  }
  main .main-txt .main-content {
    padding-bottom: 3rem;
  }
  section {
    padding: 3rem;
  }
  #services .services-row {
    margin: 3rem 0;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
  #references .reference-row {
    margin: 3rem 0;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .heading {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .heading .square {
    width: 7.5rem;
    height: 5rem;
  }
  #contact {
    grid-template-columns: repeat(1, 1fr);
  }
  #contact .contact-details {
    padding: 3rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #contact .contact-form {
    padding: 3rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #contact .contact-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer p {
    padding-bottom: 1rem;
  }
  footer p:nth-child(3) {
    padding-bottom: 0;
  }
}
@media (max-width: 425px) {
  header .upper-header .contacts p:first-child {
    display: none;
  }
  header .toggle .logo {
    width: 7rem;
    height: 7rem;
  }
  header .toggle .logo img {
    width: 100%;
    height: 100%;
  }
  header .lower-header {
    height: calc(100dvh - 13rem);
  }
  main {
    padding-top: 13rem;
  }
  main .main-txt {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
  main .main-txt .main-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  main .main-txt .main-content p {
    margin-bottom: 2rem;
  }
  main .main-txt .highlights .highlight {
    padding: 1rem;
    font-size: 1.4rem;
  }
  main .main-img {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #about .about-img {
    width: 100%;
    height: 100%;
  }
  #services .services-row {
    grid-template-columns: repeat(1, 1fr);
  }
  #references .reference-row {
    grid-template-columns: repeat(1, 1fr);
  }
  footer {
    padding: 1rem 3rem;
  }
  .cookies {
    width: 100%;
  }
}