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

html {
  font-size: 10px;
}

ul {
  list-style: none;
}

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

h1, h2, h3 {
  font-family: "Montserrat", 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-color: #121212;
  color: #ffffff;
  fill: #ffffff;
}

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;
  position: fixed;
  background: #121212;
  z-index: 3;
  -webkit-box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
          box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
}
header .upper-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;
  -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 15rem;
  border-bottom: 1px solid #484848;
}
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;
  gap: 2.5rem;
  font-size: 2rem;
}
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: 0.5rem;
}
header .upper-header .socials svg {
  width: 3.5rem;
  height: 3.5rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .upper-header .socials svg:hover {
  fill: #C8A351;
}
header .lower-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;
  -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 15rem;
  border-bottom: 1px solid #484848;
}
header .lower-header .logo {
  width: 20rem;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-header .logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
header .lower-header .logo img {
  width: 100%;
}
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: 2.5rem;
}
header .lower-header nav ul li {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
header .lower-header nav ul li a {
  -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: #C8A351;
}
header .lower-header nav ul li img {
  width: 4rem;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.active-link {
  color: #C8A351 !important;
}

.toggle {
  display: none;
}

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

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

#prolog {
  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: 15rem;
}
#prolog .prolog-txt {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
#prolog .prolog-txt h3 {
  font-size: 2.5rem;
  color: #C8A351;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
#prolog .prolog-txt h2 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}
#prolog .prolog-txt p {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 4rem;
}
#prolog .prolog-img {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
#prolog .prolog-img img {
  width: 100%;
}

.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 4rem;
  background: #C8A351;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2.5rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
          box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
  font-weight: 600;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.btn:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#offers {
  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;
}
#offers h2 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
  text-align: center;
}
#offers .filters {
  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;
}
#offers .filters form {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#offers .filters form input, #offers .filters form select {
  border: 3px solid #ffffff;
  font-size: 2rem;
  outline: none;
  padding: 0.5rem;
  background: none;
  color: #ffffff;
  font-weight: 600;
}
#offers .filters form select {
  margin: 1rem 0;
}
#offers .filters form select option {
  background: #121212;
  cursor: pointer;
}
#offers .filters form .search-input {
  border: 3px solid #ffffff;
  padding: 0.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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}
#offers .filters form .search-input svg {
  width: 3rem;
  height: 3rem;
  fill: #ffffff;
}
#offers .filters form .search-input input[type=search] {
  border: none;
  padding: 0;
}
#offers .filters form .search-input input[type=search]::-webkit-input-placeholder {
  color: #ffffff;
}
#offers .filters form .search-input input[type=search]::-moz-placeholder {
  color: #ffffff;
}
#offers .filters form .search-input input[type=search]:-ms-input-placeholder {
  color: #ffffff;
}
#offers .filters form .search-input input[type=search]::-ms-input-placeholder {
  color: #ffffff;
}
#offers .filters form .search-input input[type=search]::placeholder {
  color: #ffffff;
}
#offers .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;
  gap: 0.8rem;
  font-size: 2.5rem;
}
#offers .pagination svg {
  width: 3rem;
  fill: #ffffff;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#offers .pagination svg:hover {
  fill: #C8A351;
}
#offers .pagination a {
  font-weight: bold;
  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;
}
#offers .pagination .p-active {
  color: #C8A351;
}
#offers .offer-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 5rem;
  margin: 5rem 0;
}
#offers .offer-wrapper .offer {
  width: 100%;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
#offers .offer-wrapper .offer:hover {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}
#offers .offer-wrapper .offer img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 4px 4px 4px rgba(18, 18, 18, 0.25);
          box-shadow: 0 4px 4px 4px rgba(18, 18, 18, 0.25);
}
#offers .offer-wrapper .offer h3 {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}
#offers .offer-wrapper .offer .offer-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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.5rem;
}
#offers .offer-wrapper .offer .offer-row .price {
  font-size: 2.5rem;
  color: #C8A351;
}
#offers .offer-wrapper .offer .offer-row .distance {
  font-size: 2.5rem;
  color: #ffffff;
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15rem;
}
#about .about-txt {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-txt h2 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}
#about .about-txt p {
  font-size: 2.5rem;
  color: #ffffff;
}
#about .about-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#about .about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 4px 4px 4px rgba(18, 18, 18, 0.25);
          box-shadow: 0 4px 4px 4px rgba(18, 18, 18, 0.25);
}

#contact {
  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: 15rem;
}
#contact .contact-details {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  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;
}
#contact .contact-details h2 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}
#contact .contact-details p {
  font-size: 2.5rem;
  color: #ffffff;
}
#contact .contact-details .contact-details-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
#contact .contact-details .contact-details-icons .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;
  gap: 2.5rem;
}
#contact .contact-details .contact-details-icons .detail svg {
  width: 5rem;
  height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
  fill: #C8A351;
}
#contact .contact-details .contact-details-icons .detail .detail-info {
  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-details .contact-details-icons .detail .detail-info h3 {
  font-size: 2.5rem;
  font-weight: bold;
}
#contact .contact-details .contact-details-icons .detail .detail-info p {
  font-size: 2.5rem;
}
#contact .contact-form {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-shadow: 0 7px 20px 0 rgba(200, 163, 81, 0.25);
          box-shadow: 0 7px 20px 0 rgba(200, 163, 81, 0.25);
  padding: 5rem 10rem;
  background: #ffffff;
}
#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 h2 {
  font-size: 4.5rem;
  color: #C8A351;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}
#contact .contact-form form input {
  width: 100%;
  font-size: 2rem;
  padding: 0.5rem;
  margin-bottom: 2rem;
  border: none;
  outline: none;
  border-bottom: 2px solid #969696;
}
#contact .contact-form form textarea {
  width: 100%;
  min-height: 15rem;
  font-size: 2rem;
  padding: 0.5rem;
  margin-bottom: 2rem;
  outline: none;
  border: 2px solid #969696;
  resize: vertical;
}
#contact .contact-form form select {
  width: 100%;
  font-size: 2rem;
  padding: 0.5rem;
  margin-bottom: 2rem;
  outline: none;
  border: 2px solid #969696;
}
#contact .contact-form form label {
  color: #969696;
  font-size: 2rem;
}
#contact .contact-form form label a {
  color: #C8A351;
}
#contact .contact-form form .checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
#contact .contact-form form .checkbox-row input {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
}
#contact .contact-form form .checkbox-row label {
  color: #969696;
  font-size: 2rem;
}
#contact .contact-form form .checkbox-row label a {
  color: #C8A351;
}
#contact .contact-form form input[type=submit] {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 4rem;
  background: #C8A351;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 2.5rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
          box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
  font-weight: 600;
  -webkit-transition: ease 0.3s all;
  transition: ease 0.3s all;
  cursor: pointer;
  border: none;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 0;
}
#contact .contact-form form input[type=submit]:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#map {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10rem;
}
#map iframe {
  width: 100%;
  height: 60rem;
}

footer {
  width: 100%;
  background-color: #121212;
  padding: 1rem 15rem;
  border-top: 1px solid #484848;
  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 p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0.5rem;
  font-size: 2rem;
  text-align: center;
}
footer p a {
  color: inherit;
}
footer p svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}
footer p:nth-child(1) {
  text-align: start;
}
footer p:nth-child(2) {
  text-align: center;
}
footer p:nth-child(3) {
  text-align: end;
}

.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;
  color: #000000;
}
.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: #C8A351;
  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);
}

#hero {
  width: 100%;
  min-height: 50dvh;
  padding: 0;
  position: relative;
}
#hero .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4rem;
  padding-top: 24rem;
}
#hero .overlay h2 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}

#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;
}
#rules .rules-wrapper {
  max-width: 144rem;
  margin: 0 auto;
}
#rules .rules-wrapper h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
#rules .rules-wrapper p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

#car-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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15rem;
}
#car-detail .car-gallery {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#car-detail .car-gallery .grid-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "main main main main" "thumb1 thumb2 thumb3 thumb4";
}
#car-detail .car-gallery .grid-gallery a {
  display: block;
  overflow: hidden;
  -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;
}
#car-detail .car-gallery .grid-gallery a img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  display: block;
}
#car-detail .car-gallery .grid-gallery a:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
#car-detail .car-gallery .grid-gallery .main-image {
  grid-area: main;
}
#car-detail .car-gallery .grid-gallery .thumb-image:nth-child(2) {
  grid-area: thumb1;
}
#car-detail .car-gallery .grid-gallery .thumb-image:nth-child(3) {
  grid-area: thumb2;
}
#car-detail .car-gallery .grid-gallery .thumb-image:nth-child(4) {
  grid-area: thumb3;
}
#car-detail .car-gallery .grid-gallery .thumb-image:nth-child(5) {
  grid-area: thumb4;
}
#car-detail .car-details {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#car-detail .car-details h2 {
  font-size: 4.5rem;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 8px 8px rgba(200, 163, 81, 0.25);
}
#car-detail .car-details hr {
  width: 100%;
  margin-bottom: 1rem;
}
#car-detail .car-details .price {
  font-size: 3rem;
  color: #C8A351;
  font-weight: 600;
  margin-bottom: 1rem;
}
#car-detail .car-details h4 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
#car-detail .car-details h4 span {
  font-weight: 600;
}
#car-detail .car-details p {
  font-size: 2rem;
  margin: 2rem 0;
}
#car-detail .car-details .btn {
  display: inline-block;
  margin-top: 1rem;
}

@media (min-width: 2560px) {
  html {
    font-size: 12.5px;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 9px;
  }
  header .upper-header {
    padding: 1rem 10rem;
  }
  header .lower-header {
    padding: 1rem 10rem;
  }
  #prolog {
    gap: 10rem;
  }
  #prolog .prolog-txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #prolog .prolog-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #about {
    gap: 10rem;
  }
  #about .about-txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #about .about-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  section {
    padding: 5rem 10rem;
  }
  #contact {
    gap: 10rem;
  }
  #contact .contact-form {
    padding: 5rem;
  }
  footer {
    padding: 1rem 10rem;
  }
  #hero {
    min-height: 45dvh;
  }
  #car-detail {
    gap: 10rem;
  }
}
@media (max-width: 1366px) {
  html {
    font-size: 8.5px;
  }
  header .upper-header {
    padding: 1rem 8rem;
  }
  header .lower-header {
    padding: 1rem 8rem;
  }
  section {
    padding: 5rem 8rem;
  }
  #prolog {
    gap: 8rem;
  }
  #prolog .prolog-txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #prolog .prolog-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #about {
    gap: 8rem;
  }
  #about .about-txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #about .about-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #contact {
    gap: 8rem;
  }
  #contact .contact-form {
    padding: 5rem;
  }
  footer {
    padding: 1rem 8rem;
  }
  #hero {
    min-height: 40dvh;
  }
  #car-detail {
    gap: 8rem;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px;
  }
  header .upper-header {
    padding: 1rem 6rem;
  }
  header .lower-header {
    padding: 1rem 6rem;
  }
  section {
    padding: 5rem 6rem;
  }
  #prolog {
    gap: 5rem;
  }
  #prolog .prolog-txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #prolog .prolog-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #about {
    gap: 5rem;
  }
  #about .about-txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #about .about-img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  #offers .offer-wrapper {
    gap: 3rem;
  }
  #contact {
    gap: 5rem;
  }
  #contact .contact-form {
    padding: 4rem;
  }
  footer {
    padding: 1rem 6rem;
  }
  #hero {
    min-height: 35dvh;
  }
  #car-detail {
    gap: 5rem;
  }
}
@media (max-width: 1000px) {
  .toggle {
    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;
    position: fixed;
    background: #121212;
    z-index: 4;
    -webkit-box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
            box-shadow: 0 4px 4px 0 rgba(200, 163, 81, 0.25);
  }
  .toggle .upper-toggle {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 6rem;
    border-bottom: 1px solid #484848;
  }
  .toggle .upper-toggle .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;
    gap: 2.5rem;
    font-size: 2rem;
  }
  .toggle .upper-toggle .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: 0.5rem;
  }
  .toggle .upper-toggle .socials svg {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .toggle .upper-toggle .socials svg:hover {
    fill: #C8A351;
  }
  .toggle .lower-toggle {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 6rem;
    border-bottom: 1px solid #484848;
  }
  .toggle .lower-toggle .logo {
    width: 15rem;
    -webkit-transition: ease 0.3s all;
    transition: ease 0.3s all;
  }
  .toggle .lower-toggle .logo:hover {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .toggle .lower-toggle .logo img {
    width: 100%;
  }
  .toggle .lower-toggle svg {
    width: 5rem;
    height: 5rem;
    fill: #ffffff;
    cursor: pointer;
  }
  header {
    width: 425px;
    height: 100dvh;
    top: 0;
    right: 0;
    position: fixed;
    padding-top: 17rem;
    -webkit-box-shadow: -4px 0 4px 0 rgba(200, 163, 81, 0.25);
            box-shadow: -4px 0 4px 0 rgba(200, 163, 81, 0.25);
    background: #1E1E1E;
  }
  header .upper-header {
    display: none;
  }
  header .lower-header {
    border-bottom: none;
    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%;
    height: 100%;
    padding: 6rem 4rem;
  }
  header .lower-header .logo {
    display: none;
  }
  header .lower-header nav {
    width: 100%;
  }
  header .lower-header nav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
  header .lower-header nav ul li {
    width: 100%;
    padding-bottom: 2rem;
    font-size: 3rem;
    border-bottom: 1px solid #484848;
  }
  header .lower-header nav ul li:last-child {
    border-bottom: none;
  }
  header .lower-header nav ul li img {
    width: 6rem;
    height: 6rem;
  }
  .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;
  }
  #prolog {
    gap: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
  #prolog .prolog-txt {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #prolog .prolog-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #about {
    gap: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    min-height: auto;
  }
  #about .about-txt {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #about .about-img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #offers .offer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin: 3rem 0;
  }
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .contact-form {
    width: 100%;
  }
  #contact .contact-form form input, #contact .contact-form form textarea, #contact .contact-form form label {
    font-size: 2.5rem;
  }
  #hero {
    min-height: 30dvh;
  }
  #car-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 7.5px;
  }
  .toggle .upper-toggle .contacts p:first-child {
    display: none;
  }
}
@media (max-width: 600px) {
  #offers .offer-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin: 3rem 0;
  }
  #map {
    padding-bottom: 5rem;
  }
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 425px) {
  .toggle .upper-toggle {
    padding: 1rem 4rem;
  }
  .toggle .lower-toggle {
    padding: 1rem 4rem;
  }
  header {
    width: 100%;
  }
  header .lower-header {
    padding: 4rem;
  }
  header .lower-header nav ul li {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
  }
  header .lower-header nav ul li img {
    width: 5rem;
    height: 5rem;
  }
  section {
    padding: 4rem;
  }
  #prolog .prolog-txt h2 {
    font-size: 3.5rem;
  }
  #about .about-txt h2 {
    font-size: 3.5rem;
  }
  .first-section {
    padding-top: 20rem;
  }
  h2 {
    font-size: 3.5rem !important;
  }
  #contact .contact-form {
    padding: 3rem;
  }
  #contact .contact-form form input, #contact .contact-form form textarea, #contact .contact-form form label {
    font-size: 2.5rem;
  }
  #contact .contact-form form .checkbox-row {
    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;
  }
  footer {
    padding: 1rem 4rem;
  }
  .cookies {
    width: 100%;
  }
}