/*

>=390px:   xs - mobile x-small
>=576px:   sm - mobile small
>=768px:   md - Tablet portrait
>=992px:   lg - Tablet landscape
>=1200px:  xl - Extra large
>=1440px:  xxl - Extra extra large
$breakpoint arguement choices:
- xs
- sm
- md
- lg
- xl
- xxl

1em = 16px
*/
.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.visibility-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.page-wrapper > *:last-child {
  margin-top: auto;
}

.text-accent {
  color: var(--clr-accent);
}

:root {
  --clr-accent: #ff5e00;
  --clr-accent-lighten: rgb(255, 119.76, 40.8);
  --clr-accent-lightest: rgb(255, 126.2, 51);
  --clr-accent-darker: rgb(204, 75.2, 0);
  --clr-light: #fff;
  --clr-dark: #000;
  --clr-grey: rgba(255, 255, 255, 0.8666666667);
  --clr-body-bg: #000;
  --font-primary: "Montserrat", sans-serif;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02rem;
  color: var(--clr-light);
  background-color: var(--clr-body-bg);
}
@media only screen and (min-width: 36em) {
  body {
    font-size: 16px;
  }
}
body.scroll-disabled {
  overflow: hidden;
}

input,
button,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: var(--clr-accent-lightest);
  cursor: pointer;
}

img,
nav,
footer,
header,
aside {
  display: block;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--clr-light);
  margin: 0;
}

.heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (min-width: 36em) {
  .heading {
    font-size: 22px;
  }
}
@media only screen and (min-width: 48em) {
  .heading {
    font-size: 26px;
  }
}
@media only screen and (min-width: 62em) {
  .heading {
    font-size: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .heading {
    font-size: 36px;
  }
}
@media only screen and (min-width: 90em) {
  .heading {
    font-size: 40px;
  }
}

.subtitle {
  font-weight: 700;
  text-transform: uppercase;
}

.container-wide {
  margin: 0 auto;
}
@media only screen and (min-width: 62em) {
  .container-wide {
    max-width: 1440px;
  }
}

.container {
  max-width: 576px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media only screen and (min-width: 48em) {
  .container {
    max-width: 768px;
    padding-inline: 40px;
  }
}
@media only screen and (min-width: 62em) {
  .container {
    max-width: 1440px;
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    padding-inline: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .container {
    padding-inline: 120px;
  }
}

.section {
  padding-block: 20px;
}
@media only screen and (min-width: 48em) {
  .section {
    padding-block: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .section {
    padding-block: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .section {
    /*padding-block: 60px;*/
  }
}

@media only screen and (min-width: 75em) {
  .about-product__inner {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
.about-product__cell {
  flex: 1;
}
.about-product__subtitle {
  margin-block-end: 10px;
}
@media only screen and (min-width: 75em) {
  .about-product__subtitle {
    margin-block-end: 20px;
  }
}
.about-product__title {
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .about-product__title {
    margin-block-end: 40px;
  }
}
.about-product__description-wrapper {
  max-width: 600px;
  margin-inline: auto;
}
@media only screen and (min-width: 75em) {
  .about-product__description-wrapper {
    padding-inline-end: 60px;
  }
}
@media only screen and (min-width: 75em) {
  .about-product__description {
    padding-inline-end: 60px;
  }
}
.about-product__description-text {
  color: var(--clr-grey);
  font-weight: 400;
  font-size: 14px;
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .about-product__description-text {
    font-size: 16px;
    margin-block-end: 40px;
  }
}
.about-product__description-text span {
  color: #fff;
  font-weight: 700;
}
.about-product__features {
  margin-block-start: 40px;
}
@media only screen and (min-width: 75em) {
  .about-product__features {
    margin-block-start: 60px;
  }
}
.about-product__feature {
  display: flex;
  align-items: start;
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .about-product__feature {
    margin-block-end: 40px;
  }
}
.about-product__feature-img {
  max-width: 36px;
  margin-inline-end: 20px;
}
@media only screen and (min-width: 75em) {
  .about-product__feature-img {
    max-width: 50px;
    margin-inline-end: 25px;
  }
}
.about-product__feature-title {
  margin-bottom: 10px;
}
.about-product__img-wrapper {
  flex: 1.3;
}
.about-product__img {
  aspect-ratio: 1.1;
}
@media only screen and (min-width: 48em) {
  .about-product__img {
    aspect-ratio: 1.5;
  }
}
@media only screen and (min-width: 75em) {
  .about-product__img {
    aspect-ratio: 1.1;
  }
}

.about-us__heading {
  max-width: 1000px;
  margin-inline: auto;
  margin-block-end: 30px;
  text-transform: uppercase;
}
.about-us__title {
  font-weight: 600;
  margin-block-end: 10px;
  margin-inline: auto;
}
.about-us__img {
  width: 100%;
  max-width: 800px;
  max-height: 440px;
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  margin-block-end: 30px;
}
@media only screen and (min-width: 75em) {
  .about-us__img {
    max-width: 800px;
    margin-block-end: 50px;
  }
}
.about-us__content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-grey);
}
.about-us__content p {
  color: var(--clr-grey);
  margin-block-end: 20px;
}
.about-us__content ul,
.about-us__content ol {
  color: var(--clr-grey);
  margin-block-end: 20px;
  padding-left: 20px;
}
.about-us__content ul li,
.about-us__content ol li {
  margin-block-end: 10px;
}
.about-us__content a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.about-us__content a:hover {
  color: var(--clr-accent-lightest);
  cursor: pointer;
}
.about-us__content h1,
.about-us__content h2,
.about-us__content h3,
.about-us__content h4,
.about-us__content h5,
.about-us__content h6 {
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 75em) {
  .about-us__content h1,
  .about-us__content h2,
  .about-us__content h3,
  .about-us__content h4,
  .about-us__content h5,
  .about-us__content h6 {
    margin-top: 10px;
    margin-bottom: 15px;
  }
}
.about-us__content img {
  width: 100%;
  max-width: 600px;
  max-height: 400px;
  margin-block: 20px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-us__content b,
.about-us__content strong {
  color: #fff;
}

.advantage-card {
  max-width: 590px;
  background-color: var(--clr-dark);
  border-radius: 20px;
  border: 4px solid var(--clr-accent-lighten);
  padding-inline: 15px;
  padding-block: 10px 10px;
  margin-inline: auto;
}
.advantage-card:not(:last-child) {
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .advantage-card:not(:last-child) {
    margin-block-end: 0;
  }
}
@media only screen and (min-width: 75em) {
  .advantage-card {
    border: 6px solid var(--clr-accent-lighten);
    padding-inline: 20px;
    padding-block: 20px;
  }
}
.advantage-card__heading {
  display: flex;
  justify-content: space-between;
  margin-block-end: 10px;
}
@media only screen and (min-width: 75em) {
  .advantage-card__heading {
    margin-block-end: 20px;
  }
}
.advantage-card__title {
  align-self: flex-end;
  font-size: 16px;
  margin-inline-end: 15px;
}
@media only screen and (min-width: 75em) {
  .advantage-card__title {
    font-size: 20px;
    margin-block-start: 5px;
    margin-inline-end: 30px;
  }
}
.advantage-card__img {
  align-self: flex-start;
  max-width: 26px;
}
@media only screen and (min-width: 75em) {
  .advantage-card__img {
    max-width: 32px;
  }
}
.advantage-card ul {
  color: var(--clr-grey);
  padding-inline: 15px;
}
@media only screen and (min-width: 75em) {
  .advantage-card ul {
    padding-inline: 20px;
  }
}
.advantage-card li {
  margin-block-end: 2px;
}
@media only screen and (min-width: 75em) {
  .advantage-card li {
    margin-block-end: 5px;
  }
}
.advantage-card li span {
  color: #fff;
  font-weight: 700;
}

.advantages__heading {
  margin-block-end: 40px;
}
@media only screen and (min-width: 75em) {
  .advantages__heading {
    margin-block-end: 60px;
  }
}
.advantages__subtitle {
  margin-block-end: 10px;
}
@media only screen and (min-width: 75em) {
  .advantages__subtitle {
    margin-block-end: 20px;
  }
}
.advantages__title {
  margin-block-end: 10px;
}
.advantages__grid {
  background: linear-gradient(to bottom, #000000 5%, #ff5e00 5%, #ff5e00 95%, #000000 95%);
}
@media only screen and (min-width: 75em) {
  .advantages__grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    background: linear-gradient(to bottom, #000000 10%, #ff5e00 10%, #ff5e00 90%, #000000 90%);
  }
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  border-color: var(--clr-accent);
  background-color: var(--clr-accent);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease-in-out;
  padding-block: 8px;
  padding-inline: 8px;
}
@media only screen and (min-width: 36em) {
  .btn {
    font-size: 16px;
  }
}
@media only screen and (min-width: 75em) {
  .btn {
    font-size: 20px;
    padding-block: 10px;
    padding-inline: 16px;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
}
.btn:hover::before {
  animation: shine 1.5s ease-out;
}
.btn:hover {
  border-color: var(--clr-accent-lighten);
  background-color: var(--clr-accent-lighten);
}

@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.burger-btn {
  cursor: pointer;
  background-color: var(--color-primary);
  border: none;
  height: 60px;
  width: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.burger-btn:focus {
  outline: none;
}

.burger-btn__inner {
  position: relative;
  height: 20px;
  width: 30px;
}

.burger-btn__top,
.burger-btn__mid,
.burger-btn__bottom {
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  background-color: var(--clr-accent);
  transition: all 0.3s ease-out;
  border-radius: 2px;
}

.burger-btn__top {
  top: 0;
}

.burger-btn__mid {
  top: 8px;
}

.burger-btn__bottom {
  bottom: 0;
}

.burger-btn.active .burger-btn__top {
  transform: rotate(-225deg);
  top: 50%;
}

.burger-btn.active .burger-btn__mid {
  scale: 0;
}

.burger-btn.active .burger-btn__bottom {
  transform: rotate(225deg);
  top: 50%;
}

.characteristics {
  margin: 0 auto;
}
.characteristics__inner {
  width: 100%;
}
@media only screen and (min-width: 48em) {
  .characteristics__inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
  }
}
.characteristics__inner-cell {
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .characteristics__inner-cell {
    flex: 1;
    display: flex;
    justify-content: end;
    margin-block-end: 0;
  }
}
.characteristics__heading {
  margin-block-end: 20px;
}
.characteristics__subtitle {
  margin-block-end: 10px;
}
.characteristics__set {
  max-width: 440px;
}
.characteristics__set-title {
  font-weight: 700;
  margin-block-end: 5px;
}
.characteristics__set-list {
  color: var(--clr-grey);
  list-style: none;
  margin-inline-start: 15px;
}
.characteristics__set-list li {
  position: relative;
  margin-block-end: 2px;
}
@media only screen and (min-width: 75em) {
  .characteristics__set-list li {
    margin-block-end: 5px;
  }
}
.characteristics__set-list li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -15px;
}

.conditions {
  max-width: 600px;
  padding-inline-end: 20px;
  margin-block-end: 40px;
  margin-inline: auto;
}
.conditions__title {
  font-size: 16px;
  margin-block-end: 10px;
}
@media only screen and (min-width: 75em) {
  .conditions__title {
    font-size: 24px;
    font-weight: 700;
    margin-block-end: 20px;
  }
}
.conditions__list {
  color: var(--clr-grey);
  margin-inline-start: 20px;
  max-width: 420px;
}
.conditions__list li {
  margin-block-end: 2px;
}
@media only screen and (min-width: 75em) {
  .conditions__list li {
    margin-block-end: 5px;
  }
}

.contact-us-form {
  max-width: 600px;
  background-color: var(--clr-dark);
  margin-inline: auto;
}
@media only screen and (min-width: 62em) {
  .contact-us-form {
    max-width: 540px;
  }
}
@media only screen and (min-width: 75em) {
  .contact-us-form {
    min-width: 580px;
    margin-inline: 0;
  }
}
@media only screen and (min-width: 75em) {
  .contact-us-form__row {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.contact-us-form__item {
  flex: 1 1;
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .contact-us-form__item {
    margin-block-end: 30px;
  }
}
.contact-us-form__item .form-textarea {
  display: block;
}
.contact-us-form__btn-wrapper {
  margin-bottom: 20px;
}
.contact-us-form__btn-wrapper .btn {
  width: 100%;
  font-size: 14px;
  padding-block: 10px;
}

.contact-us__title {
  font-weight: 600;
  margin-block-end: 20px;
  margin-inline: auto;
}
@media only screen and (min-width: 75em) {
  .contact-us__title {
    margin-block-end: 50px;
  }
}
@media only screen and (min-width: 62em) {
  .contact-us__content {
    display: flex;
    gap: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .contact-us__content {
    gap: 40px;
  }
}
@media only screen and (min-width: 90em) {
  .contact-us__content {
    gap: 160px;
  }
}
.contact-us__content .conditions {
  flex: 1;
}
.contact-us__content .contact-us-form {
  flex: 1;
}
.contact-us__img-box {
  display: none;
}
@media only screen and (min-width: 75em) {
  .contact-us__img-box {
    display: block;
  }
}
.contact-us__img {
  width: 100%;
  aspect-ratio: 1.57;
  -o-object-fit: cover;
     object-fit: cover;
}

.dropdown {
  position: relative;
  display: inline-block;
}

ul.dropdown-content {
  position: absolute;
  min-width: 400px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 520px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  background-color: var(--clr-dark);
  border: 1px solid tomato;
  border-radius: 16px;
  list-style: none;
  padding-block-end: 10px;
}

.dropdown-content a {
  color: var(--clr-grey);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
}
.dropdown-content a:hover {
  color: var(--clr-accent);
}

.dropdown-content li {
  min-width: 200px;
  max-width: 400px;
}

.dropdown-content.active {
  opacity: 1;
  visibility: visible;
}

.features {
  max-width: 660px;
  margin-inline: auto;
}
@media only screen and (min-width: 62em) {
  .features {
    max-width: none;
    margin-inline: 0;
  }
}
.features__title {
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .features__title {
    margin-block-end: 40px;
  }
}
.features__subtitle {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-block-end: 20px;
}
@media only screen and (min-width: 36em) {
  .features__subtitle {
    font-size: 18px;
  }
}
@media only screen and (min-width: 48em) {
  .features__subtitle {
    font-size: 20px;
  }
}
@media only screen and (min-width: 62em) {
  .features__subtitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 75em) {
  .features__subtitle {
    font-size: 24px;
  }
}
.features__list {
  color: var(--clr-grey);
  list-style: none;
  padding: 0;
}
.features__list > .features__item {
  margin-block-end: 15px;
}
@media only screen and (min-width: 75em) {
  .features__list > .features__item {
    margin-block-end: 20px;
  }
}

.footer {
  background-color: var(--clr-dark);
  border-top: 2px solid var(--clr-accent);
  padding-block: 8px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  flex: 2;
}
.footer__logo-img {
  max-width: 116px;
  min-height: 56px;
}
@media only screen and (min-width: 62em) {
  .footer__logo-img {
    max-width: 168px;
    min-height: 80px;
  }
}
.footer__contacts {
  font-size: 16px;
}
@media only screen and (min-width: 75em) {
  .footer__contacts {
    font-size: 20px;
  }
}
.footer__contacts-link {
  text-decoration: none;
  color: var(--clr-grey);
  transition: all 0.2s ease-in-out;
}
.footer__contacts-link:hover {
  color: var(--clr-accent-lighten);
}

.form-input {
  width: 100% !important;
  color: var(--clr-grey);
  letter-spacing: 1px;
  font-size: 16px;
  background-color: #4c4c4c;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px !important;
  padding: 11px !important;
  resize: none;
}
.form-input:focus {
  border: 1px solid var(--clr-accent) !important;
  outline: none;
}
.form-input::-moz-placeholder {
  color: var(--clr-grey);
}
.form-input::placeholder {
  color: var(--clr-grey);
}

.form-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.form-item input:focus + label {
  color: var(--clr-accent);
}
.form-item textarea:focus + label {
  color: var(--clr-accent);
}
.form-item span {
  width: 100%;
}

.form-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--clr-accent);
}
@media only screen and (min-width: 62em) {
  .form-label {
    font-size: 16px;
  }
}

span.wpcf7-form-control-wrap {
  width: 100%;
}

.gallery__title {
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .gallery__title {
    margin-block-end: 40px;
  }
}
.gallery__slider {
  height: 100%;
  margin-block-end: 10px;
}
@media only screen and (min-width: 90em) {
  .gallery__slider {
    margin-block-end: 30px;
  }
}
.gallery .swiper-slide {
  height: auto !important;
  overflow: hidden;
  border-radius: 12px;
}
@media only screen and (min-width: 90em) {
  .gallery .swiper-slide {
    max-height: 360px;
  }
}
.gallery .swiper-wrapper {
  max-width: 1200px;
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1;
  border: 2px solid var(--clr-accent);
  border-radius: 16px;
}
@media only screen and (min-width: 36em) {
  .gallery__img {
    border: 3px solid var(--clr-accent);
  }
}
@media only screen and (min-width: 62em) {
  .gallery__img {
    border: 4px solid var(--clr-accent);
  }
}
.gallery__bottom {
  height: 10px;
  position: relative;
  margin-block-end: 10px;
}
.gallery__slider-pagination {
  position: absolute !important;
  top: 50% !important;
}
.gallery__slider-pagination .swiper-pagination-bullet {
  background: #a9a9a9;
}
.gallery__slider-pagination .swiper-pagination-bullet-active {
  background: var(--clr-accent);
}
.gallery__subtitle {
  font-size: 16px;
  text-align: center;
  margin-block-start: 40px;
}
@media only screen and (min-width: 36em) {
  .gallery__subtitle {
    font-size: 18px;
  }
}
@media only screen and (min-width: 48em) {
  .gallery__subtitle {
    font-size: 24px;
  }
}
@media only screen and (min-width: 62em) {
  .gallery__subtitle {
    font-size: 28px;
  }
}
@media only screen and (min-width: 75em) {
  .gallery__subtitle {
    font-size: 30px;
    margin-block-start: 60px;
  }
}

.header-nav {
  display: none;
}
@media only screen and (min-width: 90em) {
  .header-nav {
    display: block;
  }
}
.header-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
}
@media only screen and (min-width: 75em) {
  .header-nav__list {
    gap: 30px;
    margin-block-start: 5px;
  }
}
.header-nav__list-item {
  font-size: 14px;
}
@media only screen and (min-width: 36em) {
  .header-nav__list-item {
    font-size: 16px;
  }
}
@media only screen and (min-width: 48em) {
  .header-nav__list-item {
    font-size: 20px;
  }
}
.header-nav__list-link {
  text-decoration: none;
  color: var(--clr-light);
  font-weight: inherit;
  transition: color 0.3s ease-in-out;
}
.header-nav__list-link:hover {
  color: var(--clr-accent);
}
.header-nav__list-link.active {
  font-weight: 700;
}

.header {
  width: 100%;
  min-height: 76px;
  background-color: var(--clr-dark);
  border-bottom: 2px solid var(--clr-accent);
  color: var(--clr-light);
  margin-inline: auto;
  padding-block: 10px;
}
@media only screen and (min-width: 75em) {
  .header {
    padding-block: 10px;
    padding-inline: 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  padding-inline: 20px;
}
@media only screen and (min-width: 62em) {
  .header__container {
    max-width: 1440px;
    padding-inline: 40px;
  }
}
@media only screen and (min-width: 75em) {
  .header__container {
    justify-content: space-between;
    margin-inline: auto;
    padding-inline: 80px;
  }
}
@media only screen and (min-width: 90em) {
  .header__container {
    padding-inline: 120px;
  }
  .header__container .burger-btn {
    display: none;
  }
}
.header__logo {
  max-width: 116px;
  min-height: 56px;
}
@media only screen and (min-width: 75em) {
  .header__logo {
    max-width: 168px;
    min-height: 81px;
  }
}
.header__controls {
  display: flex;
  gap: 10px;
  margin-block: auto;
  margin-inline-start: auto;
  margin-inline-end: 10px;
}
@media only screen and (min-width: 90em) {
  .header__controls {
    gap: 20px;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }
}
.header__select-wrapper {
  display: none;
}
@media only screen and (min-width: 36em) {
  .header__select-wrapper {
    display: block;
    margin-block-start: 2px;
  }
}
.header__select {
  display: flex;
  justify-content: end;
  min-width: 90px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  background-color: var(--clr-dark);
  border: none;
}
@media only screen and (min-width: 36em) {
  .header__select {
    font-size: 16px;
  }
}
@media only screen and (min-width: 48em) {
  .header__select {
    font-size: 20px;
  }
}
.header__select .nice-select-dropdown {
  background-color: var(--clr-dark);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: var(--clr-accent);
}

.nice-select .option.selected {
  font-weight: 500;
}

.hero-v2 {
  margin-block-start: 20px;
}
@media only screen and (min-width: 75em) {
  .hero-v2 {
    margin-block-start: 40px;
  }
}
.hero-v2__inner {
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid var(--clr-accent);
  max-width: 576px;
  margin-inline: auto;
}
@media only screen and (min-width: 62em) {
  .hero-v2__inner {
    max-width: none;
    display: flex;
    align-items: start;
    margin-inline: auto;
    gap: 30px;
    border: 3px solid var(--clr-accent);
  }
}
.hero-v2__content {
  flex: 1.1;
  padding-block: 20px;
  padding-inline: 20px 10px;
}
@media only screen and (min-width: 75em) {
  .hero-v2__content {
    flex: 0.9;
    padding-block: 40px;
    padding-inline: 40px 10px;
  }
}
.hero-v2__title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.37;
  text-transform: uppercase;
  margin-block-end: 20px;
}
@media only screen and (min-width: 36em) {
  .hero-v2__title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 48em) {
  .hero-v2__title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 62em) {
  .hero-v2__title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .hero-v2__title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 90em) {
  .hero-v2__title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 75em) {
  .hero-v2__subtitle {
    font-size: 24px;
    line-height: 1.33;
  }
}
.hero-v2__image {
  flex: 0.9;
  background-color: var(--clr-dark);
}
@media only screen and (min-width: 75em) {
  .hero-v2__image {
    flex: 1.1;
  }
}
.hero-v2__image img {
  max-width: 100%;
}

.hero {
  margin-block-start: 20px;
}
@media only screen and (min-width: 75em) {
  .hero {
    margin-block-start: 60px;  /**/
  }
}
.hero__bg {
  width: 100%;
  aspect-ratio: 1.6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-block-end: 10px;
}
@media only screen and (min-width: 48em) {
  .hero__bg {
    aspect-ratio: 2.5;
  }
  .page-template-uvo .hero__bg {
     aspect-ratio: 2.5;
  }
}
@media only screen and (min-width: 75em) {
  .hero__bg {
    aspect-ratio: 3;
    background-position: top;
    margin-block-end: 0;
  }
  
  .page-template-uvo .hero__bg {
    aspect-ratio: 2;
    background-position: top;
    margin-block-end: 0;
  }
}
.hero__content {
  text-align: start;
}
.hero__title {
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  text-align: start;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (min-width: 36em) {
  .hero__title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 48em) {
  .hero__title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 62em) {
  .hero__title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 75em) {
  .hero__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 90em) {
  .hero__title {
    font-size: 50px;
  }
}
.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  margin-block-end: 10px;
}
@media only screen and (min-width: 75em) {
  .hero__subtitle {
    font-size: 20px;
  }
}
@media only screen and (min-width: 90em) {
  .hero__subtitle {
    margin-block-end: 20px;
    font-size: 24px;
  }
}
.hero__text {
  font-size: 14px;
}
@media only screen and (min-width: 36em) {
  .hero__text {
    font-size: 16px;
  }
}

.info__heading {
  margin-inline: auto;
  margin-block-end: 30px;
  text-transform: uppercase;
}
.info__title {
  font-weight: 600;
  margin-block-end: 10px;
  margin-inline: auto;
}
.info__img {
  width: 100%;
  max-width: 800px;
  max-height: 120px;
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  margin-block-end: 30px;
}
@media only screen and (min-width: 75em) {
  .info__img {
    max-width: 800px;
    margin-block-end: 50px;
  }
}
.info__content {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-grey);
}
.info__content p {
  color: var(--clr-grey);
  margin-block-end: 20px;
}
.info__content ul,
.info__content ol {
  color: var(--clr-grey);
  margin-block-end: 20px;
  padding-left: 20px;
}
.info__content ul li,
.info__content ol li {
  margin-block-end: 10px;
}
.info__content a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.info__content a:hover {
  color: var(--clr-accent-lightest);
  cursor: pointer;
}
.info__content h1,
.info__content h2,
.info__content h3,
.info__content h4,
.info__content h5,
.info__content h6 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 75em) {
  .info__content h1,
  .info__content h2,
  .info__content h3,
  .info__content h4,
  .info__content h5,
  .info__content h6 {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
.info__content img {
  width: 100%;
  max-width: 600px;
  max-height: 400px;
  margin-block: 20px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.info__content b,
.info__content strong {
  color: #fff;
}

.menu-dropdown {
  position: relative;
  display: inline-block;
}

ul.menu-dropdown-content {
  position: absolute;
  width: 100%;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  background-color: var(--clr-dark);
  border: 1px solid tomato;
  border-radius: 16px;
  list-style: none;
  padding-block: 10px;
  z-index: 1002;
}

.menu-dropdown-content a {
  color: var(--clr-grey);
  padding-inline: 10px;
  text-decoration: none;
  display: block;
  width: 100%;
}
.menu-dropdown-content a:hover {
  color: var(--clr-accent);
}

.menu-dropdown-content li {
  font-size: 16px;
  font-weight: 400;
}

.menu-dropdown.active .menu-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.menu {
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  background-color: var(--clr-dark);
}
.menu__inner {
  display: flex;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
}
.menu__nav {
  padding-block: 50px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu__nav-list {
  height: 100%;
  list-style: none;
  max-width: 400px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-block-start: 60px;
}
.menu__nav-list li {
  padding-block: 10px;
}
.menu__nav-list li .header__select {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  padding-left: 0;
  display: block;
}
@media only screen and (min-width: 36em) {
  .menu__nav-list li .header__select {
    display: none;
  }
}
.menu__nav-panel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.menu__nav-link {
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  color: var(--clr-grey);
  margin-right: 20px;
}
.menu__nav-link:hover {
  color: var(--clr-accent);
}
.menu .nice-select:after {
  border-bottom: 3px solid var(--clr-grey);
  border-right: 3px solid var(--clr-grey);
  content: "";
  display: block;
  height: 8px;
  margin-top: -9px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.menu-open .menu {
  visibility: visible;
  opacity: 1;
}

.menu-dropdown {
  width: 100%;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-dark);
  border-radius: 16px;
  aspect-ratio: 0.92;
  padding: 10px;
  border: 2px solid var(--clr-accent);
  transition: all 0.2s ease-in-out;
}
.product-card:hover {
  transform: scale(1.02);
  cursor: pointer;
}
@media only screen and (min-width: 36em) {
  .product-card {
    border: 3px solid var(--clr-accent);
  }
}
@media only screen and (min-width: 62em) {
  .product-card {
    border: 4px solid var(--clr-accent);
  }
}
@media only screen and (min-width: 75em) {
  .product-card {
    aspect-ratio: 1;
    padding: 20px;
  }
}
.product-card__img-box {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.product-card__img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1.2;
}
@media only screen and (min-width: 90em) {
  .product-card__img {
    aspect-ratio: 1.45;
  }
}
.product-card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--clr-dark);
  color: var(--clr-light);
  text-align: center;
  transition: all 0.1s ease-in-out;
  padding-block: 10px 5px;
}
.product-card__title:hover {
  color: var(--clr-accent);
  cursor: pointer;
}
@media only screen and (min-width: 36em) {
  .product-card__title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 48em) {
  .product-card__title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 62em) {
  .product-card__title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 90em) {
  .product-card__title {
    font-size: 26px;
  }
}

.product {
  width: 100%;
  min-height: 260px;
  background-image: url(/img/product-mobile.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-inline: 20px;
}
@media only screen and (min-width: 770px) {
  .product {
    min-height: 360px;
    opacity: 0.4;
    background-image: url(/img/product.jpg);
  }
}

.production__title {
  font-weight: 600;
  margin-inline: auto;
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .production__title {
    margin-block-end: 40px;
  }
}
.production__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  grid-auto-rows: 1fr;
}
@media only screen and (min-width: 75em) {
  .production__grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 60px;
  }
}

.table {
  --table-border-radius: 10px;
  max-width: 590px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  align-content: center;
  background-color: var(--clr-accent);
  color: #ffffff;
  border: 1px solid var(--clr-accent);
  border-radius: var(--table-border-radius);
}
@media only screen and (min-width: 75em) {
  .table {
    --table-border-radius: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .table {
    gap: 2px;
    border: 2px solid var(--clr-accent);
    border-radius: var(--table-border-radius);
  }
}
.table span {
  color: #fff;
  font-weight: 700;
}
.table__header, .table__cell {
  background-color: #000000;
  padding: 10px;
}
@media only screen and (min-width: 75em) {
  .table__header, .table__cell {
    padding: 15px;
  }
}
.table__header {
  font-weight: 700;
}
.table__header--tl {
  border-top-left-radius: var(--table-border-radius);
}
@media only screen and (min-width: 75em) {
  .table__header--tl {
    border-top-left-radius: var(--table-border-radius);
  }
}
.table__header--tr {
  border-top-right-radius: var(--table-border-radius);
}
@media only screen and (min-width: 75em) {
  .table__header--tr {
    border-top-right-radius: var(--table-border-radius);
  }
}
.table__cell {
  color: var(--clr-grey);
  width: 100%;
  height: 100%;
}
.table__cell--bl {
  border-bottom-left-radius: var(--table-border-radius);
}
@media only screen and (min-width: 75em) {
  .table__cell--bl {
    border-bottom-left-radius: var(--table-border-radius);
  }
}
.table__cell--br {
  border-bottom-right-radius: var(--table-border-radius);
}
@media only screen and (min-width: 75em) {
  .table__cell--br {
    border-bottom-right-radius: var(--table-border-radius);
  }
}
.table__cell p,
.table__cell ul,
.table__cell li {
  margin-block: 10px;
}
.table__cell ul {
  margin-inline-start: 20px;
}

.toggle-btn {
  cursor: pointer;
  background: none;
  border: none;
  height: 30px;
  width: 30px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 5px;
}

.toggle-btn:focus {
  outline: none;
}

.toggle-btn__inner {
  position: relative;
  height: 14px;
  width: 14px;
}

.toggle-btn__top,
.toggle-btn__bottom {
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: var(--clr-accent);
  transition: all 0.3s ease-out;
}

.toggle-btn__top {
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}

.toggle-btn__bottom {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.menu-dropdown.active .toggle-btn__top {
  transform: translateY(-50%) rotate(-180deg);
}

.menu-dropdown.active .toggle-btn__bottom {
  transform: translateY(-50%) rotate(0deg);
}

.videos__title {
  max-width: 1080px;
  font-weight: 600;
  margin-block-end: 20px;
}
@media only screen and (min-width: 75em) {
  .videos__title {
    margin-block-end: 50px;
  }
}
.videos__grid {
  display: grid;
  gap: 21px;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}
@media only screen and (min-width: 75em) {
  .videos__grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 60px;
  }
}

.video-card {
  position: relative;
  overflow: hidden;
  background-color: var(--clr-dark);
  border-radius: 10px;
  aspect-ratio: 0.92;
  border: 2px solid var(--clr-accent);
  transition: all 0.2s ease-in-out;
}
.video-card:hover {
  transform: scale(1.02);
  cursor: pointer;
}
@media only screen and (min-width: 36em) {
  .video-card {
    border: 3px solid var(--clr-accent);
  }
}
@media only screen and (min-width: 62em) {
  .video-card {
    border: 4px solid var(--clr-accent);
  }
}
@media only screen and (min-width: 75em) {
  .video-card {
    aspect-ratio: 1;
  }
}
.video-card__img {
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.video-card__icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #fff;
}
@media only screen and (min-width: 48em) {
  .video-card__icon {
    width: 96px;
    height: 96px;
    bottom: -20px;
    right: -20px;
  }
}
@media only screen and (min-width: 75em) {
  .video-card__icon {
    width: 126px;
    height: 126px;
    bottom: -20px;
    right: -20px;
  }
}
@media only screen and (min-width: 90em) {
  .video-card__icon {
    width: 136px;
    height: 136px;
  }
}
.video-card__icon-img {
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 48em) {
  .video-card__icon-img {
    height: 30px;
  }
}
@media only screen and (min-width: 75em) {
  .video-card__icon-img {
    height: 50px;
  }
}
/*# sourceMappingURL=main.css.map */
.page-template-accessories section.hero.section, .page-template-about .section.hero.section {display: none;}
img.content__img { margin-top: 100px; margin-bottom: 100px; }

footer.footer {
    display: none;
}

header#page-header {
    display: none;
}