/* Base */

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--page-bg);
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--black);
}

.wrapper {
  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: 100%;
  padding-top: var(--header-height);
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

section {
  padding: 6rem 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

a {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  width: 100%;
  height: 100%;
}

.container-fluid {
  padding: 0;
  height: 100%;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

.swiper__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  width: 100%;
  z-index: 2;
}

[class^=swiper-button-],
[class*=" swiper-button-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 66px;
  margin-top: 30px;
}

[class^=swiper-button-] svg,
[class*=" swiper-button-"] svg {
  width: 60px;
  fill: var(--black);
}

[class^=swiper-button-]::after,
[class*=" swiper-button-"]::after {
  display: none;
}

/* Reset and base styles  */

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

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

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
textarea:focus,
textarea:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

.none {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

:root {
  --font-family: "Roboto", sans-serif;
  --container-padding: 16px;
  --container-width: 1288px;
  --white: rgb(255, 255, 252);
  --black: rgb(27, 30, 31);
  --gray: #fffffccc;
  --accent: rgb(245, 4, 0);
  --page-bg: rgb(255, 255, 255);
  --header-height: 120px;
}

/* Components */

.btn {
  --width: fit-content;
  --height: 56px;
  --padding-x: 35px;
  --padding-y: 10px;
  --button-color: var(--white);
  --button-background: var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: var(--width);
  height: var(--height);
  padding: var(--padding-y) var(--padding-x);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 36px;
  background: var(--button-background);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--button-color);
  white-space: nowrap;
  pointer-events: all;
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn--white {
  --button-color: var(--black);
  --button-background: var(--white);
  border-radius: 6px;
}

.btn--white:hover {
  --button-background: rgba(255, 255, 252, 0.7);
}

.btn--accent.header__left-btn:hover {
  --button-background: rgba(255, 255, 252, 1);
  --button-color: var(--black);
}

.dropdown {
  background: transparent;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
}

.dropdown__selected {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 130%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black-50);
  cursor: pointer;
  width: 100%;
  padding: 0 1rem 2rem 0;
  border-bottom: 0.1rem solid var(--gray-20);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dropdown.check .dropdown__selected {
  color: var(--black);
  border-color: var(--black);
}

.dropdown.is-active .dropdown__selected {
  color: var(--black);
  border-color: var(--black);
}

.dropdown.is-active .dropdown__selected i {
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
  color: var(--accent);
}

.dropdown__selected:hover,
.dropdown__selected:focus,
.dropdown__selected:active {
  color: var(--black);
  border-color: var(--black);
}

.dropdown__selected span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.dropdown__selected span::after {
  content: " *";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 130%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.dropdown.check .dropdown__selected span::after {
  display: none;
}

.dropdown__selected i {
  color: var(--black);
}

.dropdown:hover i {
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
  color: var(--accent);
}

.dropdown__container {
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 11;
  overflow: hidden;
  pointer-events: none;
}

.dropdown.is-active .dropdown__container {
  pointer-events: all;
}

.dropdown__content {
  padding: 4rem 6rem 3rem 3rem;
  will-change: transform;
  -webkit-transform: translateY(-101%);
  -ms-transform: translateY(-101%);
  transform: translateY(-101%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  background-color: var(--black);
  width: calc(100% - 0.1rem);
}

.dropdown.is-active .dropdown__content {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.dropdown__option:not(:last-child) {
  display: block;
  margin-bottom: 2rem;
}

.dropdown__label {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 120%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
}

.dropdown__label:hover {
  color: var(--accent);
}

:checked+.dropdown__label {
  color: var(--accent);
}

.dropdown__radio {
  display: none;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 8px;
  background-color: var(--white);
  max-width: 410px;
  width: 100%;
}

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

.form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.form-group p {
  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: 3px;
}

.form-group p span {
  color: var(--accent);
}

.form-group--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}

.form-group--checkbox label {
  font-size: 16px;
  line-height: 120%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-group--checkbox label:hover {
  color: var(--accent);
}

.form-group--checkbox label span {
  color: var(--accent);
}

.form-group--checkbox label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-group--checkbox label a:hover {
  text-decoration: none;
}

.form-input {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: var(--black);
  background: rgb(241, 241, 241);
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgb(204, 204, 204);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 4px;
  background: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.form-checkbox:hover {
  border-color: var(--accent);
}

.form-checkbox:hover::before {
  background-color: var(--white);
}

.form-checkbox:checked {
  border-color: var(--accent);
}

.form-checkbox:checked::before {
  background-color: var(--accent);
}

.form-checkbox::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTkuNzQyMzcgMS42NzAwMkMxMC4xMTI0IDEuMjYwMDQgMTAuMDggMC42Mjc3MDEgOS42NzAwNCAwLjI1NzY2MUM5LjI2MDA1IC0wLjExMjM3OCA4LjYyNzcyIC0wLjA3OTk5NDQgOC4yNTc2OCAwLjMyOTk5MkwzLjYxMTcyIDUuNDc3NUwxLjc2NTczIDMuMjc5ODlDMS40MTA1IDIuODU3MDEgMC43Nzk3MTggMi44MDIxNiAwLjM1NjgzMSAzLjE1NzM4Qy0wLjA2NjA1NjIgMy41MTI2MSAtMC4xMjA5MDcgNC4xNDMzOSAwLjIzNDMxOCA0LjU2NjI4TDIuODE4OTMgNy42NDMyQzMuMDA0OTQgNy44NjQ2NCAzLjI3NzcxIDcuOTk0NzEgMy41NjY4NSA3Ljk5OTg1QzMuODU2IDguMDA0OTkgNC4xMzMyMiA3Ljg4NDcxIDQuMzI2OTkgNy42NzAwMkw5Ljc0MjM3IDEuNjcwMDJaIj48L3BhdGg+PC9zdmc+);
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: center center;
}

.form .btn {
  --width: 100%;
}

.form-status {
  text-align: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
}

.form-success {
  color: lightgreen;
}

.form-failed {
  color: red;
}

.form._success .form-success {
  display: block;
}

.form._failed .form-failed {
  display: block;
}

.form-input._error {
  border-color: red;
}

.form-checkbox._error {
  border-color: red;
}

#result {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}

.success {
  color: green;
}

.error {
  color: red;
}

[class^=icon-],
[class*=" icon-"] {
  --font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: var(--font-size);
  height: var(--font-size);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: var(--font-size);
  color: var(--white);
}

[class^=icon-]:hover,
[class*=" icon-"]:hover {
  color: var(--accent);
}

h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 50px;
  line-height: normal;
}

h2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 46px;
  line-height: normal;
}

h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  line-height: normal;
}

h4 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
}

h5 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
}

h6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
}

p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}

/* Modules */

.burger-btn {
  --time: 0.3s;
  --width: fit-content;
  --height: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  height: var(--height);
  width: var(--width);
  padding: 0.6rem 3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all var(--time) ease;
  transition: all var(--time) ease;
  color: var(--white);
}

.burger-btn:hover {
  color: var(--accent);
}

.burger-btn h6 {
  display: none;
}

.burger-icon {
  --width: 2rem;
  --height: 0.1rem;
  --background-color: var(--white);
  width: var(--width);
  height: var(--height);
  background-color: var(--background-color);
  -webkit-transition: all var(--time) ease;
  transition: all var(--time) ease;
  position: relative;
  z-index: 2;
}

.burger-btn:hover .burger-icon {
  --background-color: var(--accent);
}

.burger-icon::before,
.burger-icon::after {
  --width: 2rem;
  content: "";
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--background-color);
  -webkit-transition: all var(--time) ease;
  transition: all var(--time) ease;
  position: absolute;
  left: 0;
}

.burger-icon::before {
  top: -0.8rem;
}

.burger-icon::after {
  top: 0.8rem;
}

.burger-close {
  --burger-btn-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 10px;
  background-color: var(--accent);
  border-radius: 5px;
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--burger-btn-color);
}

.burger-close:hover {
  opacity: 0.8;
}

.burger-close span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
}

.burger-close span::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.2rem;
  position: absolute;
  border: 0.2rem solid var(--burger-btn-color);
  border-radius: 0.1rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-close span::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.2rem;
  position: absolute;
  border: 0.2rem solid var(--burger-btn-color);
  border-radius: 0.1rem;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: calc(-100% - 30px);
  z-index: 200;
  pointer-events: none;
  -webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
  transition: all 1s cubic-bezier(1, 0, 0, 1);
  width: 100%;
  height: 100dvh;
}

.burger-menu--opened {
  pointer-events: all;
  right: 0;
}

.burger-menu--opened .burger-overlay {
  opacity: 0.5;
  visibility: visible;
}

.burger-menu__inner {
  max-width: 560px;
  width: 100%;
  height: 100%;
  padding: 40px 50px;
  margin-left: auto;
  background-color: var(--black);
  position: relative;
  z-index: 2;
}

.burger-menu__body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.burger-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--white);
}

.burger-menu__list li {
  border-bottom: 0.1px solid rgba(255, 255, 252, 0.0588235294);
}

.burger-menu__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 15px;
  font-weight: 400;
  font-size: 18px;
}

.contact-btn {
  --time: 0.3s;
  --width: fit-content;
  --height: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  height: var(--height);
  width: var(--width);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all var(--time) ease;
  transition: all var(--time) ease;
  color: var(--white);
}

.contact-btn:hover {
  color: var(--accent);
}

.contact-btn h6 {
  display: none;
}

.contact-icon {
  --width: 2rem;
  --height: 0.1rem;
  --background-color: var(--white);
  width: var(--width);
  height: var(--height);
  background-color: var(--background-color);
  -webkit-transition: all var(--time) ease;
  transition: all var(--time) ease;
  position: relative;
  z-index: 2;
}

.contact-btn:hover .contact-icon {
  --background-color: var(--accent);
}

.contact-icon::before,
.contact-icon::after {
  --width: 2rem;
  content: "";
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--background-color);
  -webkit-transition: all var(--time) ease;
  transition: all var(--time) ease;
  position: absolute;
  left: 0;
}

.contact-icon::before {
  top: -0.8rem;
}

.contact-icon::after {
  top: 0.8rem;
}

.contact-close {
  --contact-btn-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--contact-btn-color);
}

.contact-close:hover {
  opacity: 0.8;
}

.contact-close span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  position: relative;
}

.contact-close span::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.2rem;
  position: absolute;
  border: 0.2rem solid var(--contact-btn-color);
  border-radius: 0.1rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-close span::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.2rem;
  position: absolute;
  border: 0.2rem solid var(--contact-btn-color);
  border-radius: 0.1rem;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-menu {
  position: fixed;
  top: var(--header-height);
  bottom: 0;
  left: calc(-100% - 30px);
  z-index: 200;
  pointer-events: none;
  -webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
  transition: all 1s cubic-bezier(1, 0, 0, 1);
  width: 100%;
  height: 100dvh;
  color: var(--white);
}

.contact-menu--opened {
  pointer-events: all;
  left: 0;
}

.contact-menu--opened .contact-overlay {
  opacity: 0.5;
  visibility: visible;
}

.contact-menu__inner {
  max-width: 560px;
  width: 100%;
  height: calc(100% - var(--header-height));
  padding: 40px 50px;
  margin-right: auto;
  background-color: var(--black);
  position: relative;
  z-index: 2;
}

.contact-menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.contact-menu__body .header__phone h6 {
  font-weight: 600;
  font-size: 24px;
}

.contact-menu__body .footer__item {
  gap: 30px;
}

.contact-menu__body .footer__item-title {
  font-weight: 600;
}

.contact-menu__body .footer__item-email {
  font-weight: 600;
  font-size: 20px;
}

.contact-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--white);
}

.contact-menu__list li {
  border-bottom: 0.1px solid rgba(255, 255, 252, 0.0588235294);
}

.contact-menu__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 15px;
  font-weight: 400;
  font-size: 18px;
}

/* Blocks */

.accordion {
  cursor: pointer;
}

.accordion-active .accordion-body {
  grid-template-rows: 1fr;
}

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer {
  padding: 60px 0;
  background-color: var(--black);
  color: var(--white);
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.footer__map {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 260px;
}

.footer__item-link {
  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: 10px;
}

.footer__item-link img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__item-title {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.footer__item-email {
  color: rgba(255, 255, 252, 0.6);
}

.footer__phone h6 {
  font-size: 24px;
}

.footer__social {
  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: 10px;
}

.footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgb(255, 255, 252);
}

.footer__social-link:hover {
  background-color: rgb(255, 255, 252);
}

.footer__social-link:hover svg {
  fill: var(--black);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: rgb(255, 255, 252);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__foot {
  border-top: 1px solid rgba(255, 255, 252, 0.1);
  padding: 40px 0 0;
}

.header {
  background-color: var(--black);
  background-color: #000;
  color: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  height: var(--header-height);
}

.header__wrap {
  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: 1rem;
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.1rem solid transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--accent);
}

.header__btn:hover {
  border-color: var(--accent);
}

.header__right {
  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;
  gap: 5px;
}

.header__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Elements */

/* Sections */

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 200px;
}

.about__cover {
  width: 50%;
  padding-right: 100px;
}

.about__cover img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  width: 50%;
  padding-left: 100px;
  border-left: 1px solid rgba(26, 26, 26, 0.1607843137);
}

.about__content h2 {
  font-size: 76px;
}

.about__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: auto;
}

.about__item-count {
  font-weight: 800;
  font-size: 70px;
  line-height: 120%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  white-space: nowrap;
}

.about__item-count::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  position: absolute;
  top: 5px;
  left: 0;
  z-index: -1;
}

.faq {
  background-color: rgb(241, 241, 241);
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 86px;
}

.faq__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.faq__head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid var(--white);
  padding: 58px 58px 58px 0;
}

.faq__head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px;
}

.faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  width: calc(50% - 30px);
}

.faq__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background-color: var(--white);
  padding: 27px 34px;
}

.faq__item-wrap {
  overflow: hidden;
}

.faq__item-wrap ul {
  padding: 30px 34px;
}

.faq__item-wrap li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(26, 26, 26, 0.2);
  color: rgba(26, 26, 26, 0.6);
}

.faq__item-wrap li:last-child {
  margin-bottom: 0;
}

.faq__item-wrap li h6 span {
  color: var(--accent);
}

.faq__item-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.1019607843);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-active .faq__item-arrow {
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

.faq__item-arrow img {
  width: 20px;
}

.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 72px;
  border-radius: 10px;
  background-color: rgb(255, 137, 0);
  color: var(--white);
}

.banner__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding-right: 90px;
}

.banner__img {
  width: calc(50% - 30px);
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 90px;
  border-left: 1px solid var(--white);
}

.banner__content h2 {
  margin-bottom: 33px;
}

.banner__content p {
  margin-bottom: 44px;
}

.gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 86px;
}

.gallery__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery__head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid rgba(26, 26, 26, 0.16);
  padding: 58px 58px 58px 0;
}

.gallery__head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px;
}

.gallery__item {
  display: block;
  height: 550px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.hero {
  background-image: url(./../images/hero/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-attachment: fixed;
  background-image: none;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: rgba(23, 26, 45, 0.7);
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  color: var(--white);
  max-width: 740px;
}

.hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.hero__list-item {
  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: 24px;
}

.hero__list-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 64px;
  height: 64px;
  padding: 16px;
  background-color: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.hero__list-icon::before {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 27px;
  left: 25px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 1px;
  background: var(--white);
  color: var(--white);
}

.hero__list-icon::after {
  content: "";
  display: block;
  width: 2px;
  height: 21px;
  position: absolute;
  top: 20px;
  left: 36px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 1px;
  background: var(--white);
  color: var(--white);
}

.review {
  position: relative;
  background-color: rgb(241, 241, 241);
}

.review__bg {
  width: 100%;
  height: 580px;
  background-image: url(./../images/review/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.review__bg::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  background-color: rgba(27, 30, 31, 0.7);
  background-repeat: repeat;
  background-position: 0 0;
  background-size: auto;
  background-attachment: scroll;
}

.review__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 86px;
  position: relative;
  z-index: 2;
}

.review__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
}

.review__head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid var(--white);
  padding: 58px 58px 58px 0;
}

.review__head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px;
}

.review__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 60px;
  height: auto;
}

.review__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 60px;
  border-radius: 10px;
  background-color: var(--white);
  width: calc(50% - 30px);
  height: 100%;
}

.review__item-head {
  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: 30px;
}

.review__item-photo {
  width: 160px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
}

.review__item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.review__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.review__item-wrap p:first-child {
  color: var(--accent);
}

.review__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.review__item-body .btn {
  margin-top: auto;
}

.review__item-body .btn:hover {
  --button-background: rgb(168, 3, 0);
  color: var(--white);
}

.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px;
}

.service__item {
  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: 37px;
  width: calc(50% - 30px);
  background-color: rgba(241, 241, 241, 0.5019607843);
  border-radius: 10px;
  padding: 34px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--black);
}

.service__item:hover {
  background-color: var(--black);
  color: var(--white);
}

.service__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  position: relative;
  background-color: var(--white);
}

.service__item-img::before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background-color: var(--accent);
  position: absolute;
  bottom: -2.5px;
}

.service__item-img img {
  max-width: 70px;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.service__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.service__item-wrap {
  font-size: 20px;
  line-height: 150%;
}

.why {
  background-image: url(./../images/why/bg.webp);
  background-repeat: repeat;
  background-size: cover;
  position: relative;
}

.why::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  background-color: rgba(27, 30, 31, 0.7);
  background-repeat: repeat;
  background-position: 0 0;
  background-size: auto;
  background-attachment: scroll;
}

.why__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 86px;
  position: relative;
  z-index: 2;
}

.why__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
}

.why__head-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid var(--white);
  padding: 58px 58px 58px 0;
}

.why__head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.why__items {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.why__item {
  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;
  text-align: center;
  border-radius: 10px;
  padding: 45px;
  width: calc(33.3333333333% - 40px);
  background-color: var(--white);
}

.why__item-count {
  font-weight: 700;
  font-size: 70px;
  line-height: 110%;
  color: rgba(26, 26, 26, 0.1);
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom-style: solid;
  border-bottom-width: 6px;
  border-bottom-color: var(--accent);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.why__item:hover .why__item-count {
  color: var(--black);
}

.why__item-title {
  margin-bottom: 20px;
}

.why__item-text {
  color: rgba(var(--black), 0.6);
}

@media (max-width: 1200px) {
  :root {
    --container-padding: 14px;
    --container-width: 1152px;
  }
}

@media (max-width: 991px) {
  section {
    padding: 4rem 0;
  }

  :root {
    --container-padding: 24px;
    --container-width: 912px;
    --header-height: 160px;
  }

  .form {
    max-width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .header__inner {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .about__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }

  .about__cover {
    padding: 0;
    width: 100%;
  }

  .about__cover img {
    aspect-ratio: 931/300;
  }

  .about__content {
    gap: 20px;
    padding: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
  }

  .about__content h2 {
    text-align: center;
  }

  .about__items {
    gap: 30px 0;
  }

  .about__item {
    width: 50%;
  }

  .faq__inner {
    gap: 40px;
  }

  .faq__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .faq__head-left {
    padding: 0;
    border: 0;
  }

  .faq__head-right {
    padding: 0;
  }

  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .banner__imgs {
    padding: 0;
  }

  .banner__img {
    height: 300px;
  }

  .banner__content {
    padding: 0;
    border: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .gallery__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .gallery__head-left {
    padding: 0;
    border: 0;
  }

  .gallery__head-right {
    padding: 0;
  }

  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    max-width: 576px;
    padding: 40px 0;
    margin: 0 auto;
  }

  .review__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .review__head-left {
    padding: 0;
    border: 0;
  }

  .review__head-right {
    padding: 0;
  }

  .review__slider .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .review__item {
    padding: 30px;
  }

  .service__items {
    gap: 30px;
  }

  .service__item {
    width: 100%;
  }

  .why__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .why__head-left {
    padding: 0;
    border: 0;
  }

  .why__head-right {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }

  .why__items {
    gap: 20px;
  }

  .why__item {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .dropdown__selected {
    font-size: 1.4rem;
  }

  .dropdown__content {
    padding: 2rem;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .burger-btn {
    padding: 10px;
  }

  .contact-btn {
    padding: 10px;
  }

  .footer__map {
    display: none;
  }

  .footer__items {
    -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;
    gap: 30px;
    text-align: center;
  }

  .header__right {
    display: none;
  }

  .logo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .about__content h2 {
    font-size: 24px;
  }

  .about__item {
    width: 100%;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .about__item-count {
    font-size: 40px;
  }

  .faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .faq__items {
    gap: 20px;
    width: calc(50% - 10px);
    width: 100%;
  }

  .review__item {
    width: 100%;
  }

  .why__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .why__item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --container-padding: 12px;
    --container-width: 576px;
  }

  .dropdown__selected {
    font-size: 1.3rem;
  }

  .dropdown__label {
    font-size: 1.3rem;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .header__inner {
    -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;
    gap: 10px;
    padding: 20px 0;
    height: auto;
  }

  .header__left-btn {
    --height: 40px;
    --padding-x: 20px;
    --padding-y: 10px;
  }

  .banner {
    padding: 40px;
  }

  .banner__imgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .banner__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .service__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

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