:root {
  --gap-x: 10px;
  --gap-y: 10px;
  --container-gap: 10px;
}

:root {
  --scroll-offset: 0px;
  --adaptive-box: 100%;
  --columns: 12;
  --body-font-size: 16px;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  line-height: 1.4;
  font-weight: 400;
  font-size: var(--body-font-size);
  font-family: "Roboto", sans-serif;
  font-style: normal;
  margin: 0;
  color: #404040;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

iframe {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: currentColor;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: currentColor;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  line-height: normal;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  color: currentColor;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 27px;
}

h4 {
  font-size: 24px;
}

p,
ul,
ol,
dl,
table,
blockquote,
pre,
address,
figure {
  margin-top: 0;
  margin-bottom: 16px;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

li {
  line-height: inherit;
}

address {
  font-style: normal;
}

blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  transition-duration: 400ms;
  color: currentColor;
  background-color: transparent;
}

a,
button,
[role=button],
input,
label,
select,
textarea {
  touch-action: manipulation;
  margin: 0;
}

a:not([href]) {
  text-decoration: none;
  color: inherit;
}
a:not([href]):hover, a:not([href]):focus {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[role=button] {
  cursor: pointer;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

input[type=radio],
input[type=checkbox] {
  padding: 0;
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

textarea {
  overflow: auto;
  resize: vertical;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

a {
  text-decoration: none;
}

input {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
}

svg:not(:root) {
  overflow: hidden;
}

main {
  flex-grow: 1;
}

.main {
  padding-top: 96px;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 50px;
}
.section--first {
  margin-top: 50px;
}
.container-full, .container {
  --local-container-gap: var(--container-gap);
  --dp-block: block;
  display: var(--dp-block);
  width: 100%;
  padding-left: var(--local-container-gap);
  padding-right: var(--local-container-gap);
  margin-left: auto;
  margin-right: auto;
}

.adaptive-box {
  position: relative;
  width: 100%;
  --dp-block: block;
  display: var(--dp-block);
}
.adaptive-box:after {
  content: "";
  padding: 0px 0px var(--adaptive-box) 0px;
  width: 100%;
  display: block;
}
.adaptive-box > * {
  position: absolute;
}
.adaptive-box__image, .adaptive-box__item {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.adaptive-box__image {
  -o-object-fit: cover;
     object-fit: cover;
}

.link {
  color: currentColor;
}
.link:active {
  color: #cc6800;
}
.link-decor {
  color: currentColor;
  position: relative;
}
.link-decor:before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  border-bottom: 1px solid currentColor;
  transform: scaleX(0);
  transition-duration: 400ms;
}
.link--line {
  text-decoration: underline;
}

.logo {
  flex-shrink: 0;
  display: inline-block;
  line-height: 0;
}
.logo img {
  width: 66px;
  height: 66px;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb--white .breadcrumb__item {
  color: #fff;
}
.breadcrumb--white .breadcrumb__item a:before {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb__item {
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #505050;
}
.breadcrumb__item a {
  display: inline-flex;
  padding-right: 16px;
  font-size: 16px;
  line-height: 20px;
  color: #ff8300;
  position: relative;
}
.breadcrumb__item a svg {
  margin-bottom: 3px;
}
.breadcrumb__item a:hover {
  color: #cc6800;
}
.breadcrumb__item a:hover svg path {
  fill: #cc6800;
}
.breadcrumb__item a svg path {
  fill: #ff8300;
  transition: 0.3s;
}
.breadcrumb__item a:before {
  content: "/";
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: rgba(76, 76, 76, 0.5);
  position: absolute;
  right: 0;
  z-index: 1;
}

:root {
  --animation-left: -100%;
  --animation-right: 100%;
  --animation-top: -100%;
  --animation-bottom: 100%;
}

.animation {
  animation-play-state: paused;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.animation.start {
  animation-play-state: running;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

.title {
  --dp-block: block;
  display: var(--dp-block);
  font-weight: 700;
  line-height: 1.2;
  color: #202020;
  word-wrap: break-word;
}
.title--size-sm {
  font-size: 18px;
}
.title--size-md {
  font-size: 24px;
}
.title--size-lg {
  font-size: 30px;
}
.title--size-xl {
  font-size: 24px;
}

.burger {
  --dp-flex: flex;
  display: var(--dp-flex);
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  color: #fff;
  padding: 0;
  border: 0;
  flex-shrink: 0;
}
.burger span {
  display: block;
  transition: all 0.2s ease 0s;
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  background: #fff;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(3) {
  top: auto;
  bottom: 0%;
}
.burger.burger--close span {
  transform: scale(0);
  background: #ff8300;
}
.burger.burger--close span:nth-child(1) {
  transform: rotate(-45deg);
  top: calc(50% - 1.5px);
}
.burger.burger--close span:nth-child(3) {
  transform: rotate(45deg);
  bottom: calc(50% - 1.5px);
}

.nav-menu {
  line-height: 20px;
}
.nav-menu.nav-menu--open {
  left: 0;
}
.nav-menu.nav-menu--open .nav-menu__inner {
  transition: all 0.3s;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
}
.nav-menu.nav-menu--open .nav-menu__btn {
  display: flex;
  margin-top: auto;
}
.nav-menu__inner {
  display: flex;
  flex-grow: 1;
}
.nav-menu__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu__item {
  position: relative;
}
.nav-menu__item svg {
  transition: 0.3s;
}
.nav-menu__link-wrapper {
  display: flex;
  align-items: center;
}
.nav-menu__link-toggel {
  display: none;
}
.nav-menu__sub-container {
  padding: 5px 0 0 0;
}
.nav-menu__sub-menu {
  margin: 0;
  padding-left: 10px;
  list-style: none;
  color: #171422;
}
.nav-menu__sub-item {
  display: flex;
}
.nav-menu__sub-item a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  flex-grow: 1;
  margin: 5px 0;
  text-transform: lowercase;
}
.nav-menu__sub-item a:hover {
  color: #ff8300;
}
.nav-menu__link {
  display: flex;
  white-space: nowrap;
  color: #404040;
  font-size: 18px;
  line-height: 20px;
  flex-grow: 1;
}
.nav-menu__link:hover {
  color: #ff8300;
}
.nav-menu__btn.btn {
  display: none;
}

.btn {
  position: relative;
  text-decoration: none;
  transition-duration: 400ms;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: none;
}

.btn-primary {
  --dp-flex: flex;
  display: var(--dp-flex);
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 8px;
}
.btn-primary._icon {
  justify-content: space-between;
}
.btn-primary--md {
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1;
}

.btn--theme-primary {
  color: #fff;
  background-color: #ff8300;
}
.btn--theme-primary:active {
  background-color: #cc6800;
  color: #fff;
}

.btn--theme-outline {
  border: 1px solid #fff;
  color: #fff;
}
.btn--theme-outline:active {
  color: #fff;
  border-color: #ff8300;
  background: #ff8300;
}

.form {
  display: flex;
  flex-direction: column;
}

.form-field {
  display: block;
  width: 100%;
  --field-input-color: #404040;
}
.form-field__input {
  color: var(--field-input-color);
  width: 100%;
  display: block;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 13px;
  padding-top: 14px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  background-color: #fff;
}
.form-field__input::-moz-placeholder {
  opacity: 0.5;
}
.form-field__input::placeholder {
  opacity: 0.5;
}

.form-file {
  position: relative;
  background-color: transparent;
  border: 2px solid #ff8300;
  border-radius: 8px;
  color: #fff;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  line-height: 1;
}
.form-file:hover {
  border: 2px solid #cc6800;
  background-color: #cc6800;
}
.form-file input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.form-file span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: auto;
  margin-left: 10px;
}

.form-textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  --field-input-color: #404040;
}
.form-textarea__input {
  color: var(--field-input-color);
  width: 100%;
  display: block;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 13px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  height: 100px;
  resize: none;
}
.form-textarea__input::-moz-placeholder {
  opacity: 0.5;
}
.form-textarea__input::placeholder {
  opacity: 0.5;
}

.wow {
  animation-play-state: paused;
  animation-duration: 2s;
  animation-fill-mode: both;
}

.scroll-offset {
  overflow: hidden !important;
  --scroll-offset: var(--scroll-offset-init);
  touch-action: none;
}
.scroll-offset[data-scroll-offset], .scroll-offset [data-scroll-offset] {
  padding-right: var(--scroll-offset);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal__wrapper {
  width: 100%;
  min-height: 100%;
}
.modal__container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 10px;
}
.modal__bg-close {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal--theme-secondary {
  background-color: rgba(0, 0, 0, 0.6);
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 950;
  color: #fff;
  margin: 0;
  padding: 15px 0;
  background: transparent;
}
.header--white, .header--fixed {
  background: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
}
.header--white .header__phone,
.header--white .nav-menu__link, .header--fixed .header__phone,
.header--fixed .nav-menu__link {
  color: #404040;
}
.header--white .logo .logo__theme, .header--fixed .logo .logo__theme {
  display: inline-block;
}
.header--white .logo__white, .header--fixed .logo__white {
  display: none;
}
.header--white .burger:not(.burger--close) span, .header--fixed .burger:not(.burger--close) span {
  background-color: #404040;
}
.header--white .nav-menu__link:hover, .header--fixed .nav-menu__link:hover {
  color: #cc6800;
}
.header--fixed {
  position: fixed;
  top: -110px;
}
.header--fixed.active {
  top: 0;
  transition: top 0.3s;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header__logo {
  margin-right: auto;
}
.header .logo__theme {
  display: none;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__phone {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}
.header__phone svg {
  width: 20px;
  height: 20px;
}
.header__phone span {
  white-space: nowrap;
  font-weight: 700;
  font-size: 0px;
  line-height: 20px;
}
.header__btn {
  display: none;
}
.header__social-link {
  display: inline-block;
  border-radius: 50%;
  background: #2086ea;
  flex-shrink: 0;
  line-height: 0;
}
.header__social-link:hover {
  background: #126bc2;
}
.header__social-link svg {
  width: 40px;
  height: 40px;
}

.footer {
  margin-top: auto;
  flex-shrink: 0;
  padding: 40px 0;
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}
.footer__content {
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.footer__logo-wrapper {
  align-self: flex-start;
  flex-shrink: 0;
}
.footer__logo img {
  width: 278px;
  height: 80px;
}
.footer__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.footer__info {
  font-size: 12px;
  line-height: 16px;
  color: #989598;
  padding-left: 90px; 
}
.footer__item-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer__item-title:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #ff8300;
}
.footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 20px;
}
.footer__menu li a:active {
  color: #cc6800;
}
.footer__box-wrapper:not(:last-child) {
  margin-bottom: 10px;
}
.footer__box {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 24px;
}
.footer__box svg {
  margin-top: 4px;
  flex-shrink: 0;
}
.footer__box address {
  font-size: 16px;
  margin-bottom: 0;
}
.footer__box:before {
  bottom: -4px;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  line-height: 20px;
}
.footer__link {
  color: #ff8300;
}
.footer__link:active {
  color: #cc6800;
}

.modal-form {
  transition: all 0.8s ease 0s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
}
.modal-form__box {
  margin: auto;
  position: relative;
  z-index: 2;
  transform: perspective(600px) translateY(-120%) rotateX(45deg);
  transition: all 0.8s ease 0s;
  background-color: #fff;
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
}
.modal-form.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-form.open .modal-form__box {
  transform: perspective(600px) translateY(0%) rotateX(0deg);
}
.modal-form__content {
  display: grid;
  grid-template-columns: 1fr;
}
.modal-form__img {
  --adaptive-box: 50%;
}
.modal-form__wrapper {
  padding: 20px;
  min-height: 410px;
  display: flex;
  flex-direction: column;
}
.modal-form__wrapper form {
  margin: auto;
}
.modal-form__wrapper .form-field {
  margin-bottom: 16px;
}
.modal-form__info {
  font-size: 14px;
}
.modal-form__info a {
  color: #ff8300;
}
.modal-form__info a:active {
  color: #cc6800;
}
.modal-form__btn {
  width: 100%;
  max-width: 200px;
}

.modal-form__close {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f7f7f7;
  border: none;
  padding: 0;
  font-size: 0;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 11;
  transition: transform 0.3s;
}

.modal-form__close:hover {
  transform: rotate(180deg);
}

.modal-form__close::before,
.modal-form__close::after {
  content: "";
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 1px;
  background-color: #e2360b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.modal-form__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-form__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-form__close:hover::before,
.modal-form__close:focus::before,
.modal-form__close:hover::after,
.modal-form__close:focus::after {
  box-shadow: 0 0 5px 0 #ddd;
}

.success {
  margin: auto;
  font-size: 20px;
}

.content-404 p {
  padding: 10px 0;
}
.content-404 .btn {
  max-width: 200px;
}

.intro {
  background-color: rgba(0, 0, 0, 0.7);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  background-blend-mode: darken;
}
.intro__inner {
  padding-top: 150px;
  padding-bottom: 80px;
}
.intro__slider {
  padding-bottom: 40px;
}
.intro__slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.intro__slide-title {
  color: #fff;
  margin-bottom: 32px;
}
.intro__slide-img .adaptive-box {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.intro .swiper-pagination-bullet {
  width: 40px;
  height: 10px;
  opacity: 1;
  border-radius: 6px;
  background: #202020;
  transition: 0.2s;
}
.intro .swiper-pagination-bullet:hover {
  background: #ff8300;
}
.intro .swiper-pagination-bullet-active {
  background: #ff8300;
}

.advantage {
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
.advantage__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.advantage__item {
  border-radius: 20px;
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px 16px;
}
.advantage__icon {
  line-height: 0;
  margin-bottom: 10px;
}
.advantage__info {
  line-height: 20px;
  margin-bottom: 0;
}
.home-about__items {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.home-about__content .adaptive-box {
  max-width: 400px;
  --adaptive-box: 28.75%;
}
.home-about__content p {
  margin-top: 24px;
}
.home-about__content .btn {
  max-width: 200px;
}
.home-about__img {
  --adaptive-box: 54%;
}

.services__title {
  margin-bottom: 30px;
}
.services__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.services__item {
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  background-color: #f6f6f6;
}
.services__item .adaptive-box {
  --adaptive-box: 70%;
  border-radius: 16px;
  overflow: hidden;
}
.services__item .title {
  padding: 16px 10px;
  transition: 0.2s;
  margin-bottom: 0;
}
.services__item img {
  transition: 0.2s;
}
.services__item:hover {
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.3);
}
.services__item:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.services__item:hover .title {
  color: #ff8300;
}

.order__title {
  margin-bottom: 30px;
}
.order__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.order__item {
  border-radius: 20px;
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.1);
  padding: 20px 16px;
  text-align: center;
  background-color: #f6f6f6;
}
.order__icon {
  line-height: 0;
  margin-bottom: 10px;
}
.order__item-title {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 25px;
  margin-bottom: 16px;
  color: #202020;
}
.order__info {
  line-height: 20px;
  margin-bottom: 0;
}
.order .btn {
  margin-left: auto;
  margin-right: auto;
}

.design__items {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.design__content p {
  margin-top: 24px;
}
.design__content .btn {
  max-width: 200px;
}
.design__img {
  --adaptive-box: 54%;
}

.partners__title {
  margin-bottom: 30px;
}
.partners__slider-wrapper {
  margin: -10px;
}
.partners .swiper-slide {
  height: auto;
}
.partners__slide {
  padding: 10px;
  height: 100%;
}
.partners__slide-img {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  height: 100%;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__slide-img .adaptive-box {
  --adaptive-box: 70%;
}
.partners__slide-img img {
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-form__inner {
  border-radius: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken;
  color: #fff;
  padding: 40px 10px;
}
.contact-form__items {
  display: flex;
  flex-direction: column;
  min-height: 660px;
}
.contact-form__items form {
  margin: auto 0;
}
.contact-form__title {
  color: #fff;
}
.contact-form__subtitle {
  font-size: 24px;
  line-height: 30px;
}
.contact-form__inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 24px;
  margin-bottom: 24px;
}
.contact-form__file {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-form__file .form-file__title {
  font-size: 14px;
}
.contact-form__submit {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
}
.contact-form__info {
  font-size: 14px;
  margin-bottom: 0;
}
.contact-form__info a {
  color: #ff8300;
}
.contact-form__info a:active {
  color: #cc6800;
}
.contact-form .btn {
  max-width: 200px;
}

.contacts {
  margin-top: 30px;
}
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.contacts__title {
  color: #1f2937;
  text-transform: none;
  margin-bottom: 24px;
}
.contacts__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
}
.contacts__item a, .contacts__item address {
  font-size: 18px;
  line-height: 25px;
  color: #1f2937;
  margin-bottom: 0;
}
.contacts__item a {
  display: inline-block;
}
.contacts__box {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contacts .contacts__link {
  line-height: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  background: #2086ea;
  flex-shrink: 0;
}
.contacts .contacts__link:hover {
  background: #126bc2;
}
.contacts__item__title {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
  color: #ff8300;
}
.contacts__map {
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}

.about-intro__items {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  padding-top: 30px;
}
.about-intro__img {
  --adaptive-box: 28.75%;
  max-width: 400px;
}

.directions__info {
  margin-bottom: 30px;
}
.directions__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.directions__item-title {
  color: #ff8300;
}
.directions__item-info {
  font-size: 16px;
}
.directions__item-info:last-child {
  margin-bottom: 0;
}

.contact-form1 {
  min-height: 100vh;
}

.contact-form2 {
  min-height: 100vh;
}

.banner {
  background-color: rgba(0, 0, 0, 0.7);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  background-blend-mode: darken;
}
.banner__inner {
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}
.banner__content {
  max-width: 700px;
  flex-grow: 1;
}
.banner__title {
  color: #fff;
  margin-bottom: 24px;
}
.banner__info {
  margin-bottom: 32px;
}
.banner .adaptive-box {
  max-width: 400px;
  --adaptive-box: 28.75%;
}
.banner__subtitle {
  display: block;
  color: #fff;
  margin-bottom: 32px;
  margin-top: 24px;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}

.content .link {
  color: #ff8300;
}
.content .link:hover {
  color: #cc6800;
}

.contact-form3 {
  min-height: 100vh;
}

.mb-22 {
  margin-bottom: 22px;
}

@media (min-width: 480px) {
  :root {
    --gap-x: 20px;
  }
  :root {
    --gap-y: 20px;
  }
  :root {
    --container-gap: 20px;
  }
  .container {
    max-width: 440px;
  }
  .modal__container {
    padding: 40px 20px;
  }
  .modal-form__wrapper {
    min-height: 335px;
  }
  .services__item .title {
    padding: 16px 20px;
  }
  .contact-form__inner {
    padding: 50px 20px;
    border-radius: 40px;
  }
}

@media (min-width: 640px) {
  .container {
    max-width: 520px;
  }
  .title--size-xl {
    font-size: 30px;
  }
  .modal-form__content {
    grid-template-columns: 1fr 1fr;
  }
  .modal-form__img {
    order: 3;
  }
  .modal-form__wrapper {
    min-height: 410px;
  }
  .advantage__items {
    grid-template-columns: 1fr 1fr;
  }
  .services__items {
    grid-template-columns: 1fr 1fr;
  }
  .order__items {
    grid-template-columns: 1fr 1fr;
  }
  .contacts__item a, .contacts__item address {
    font-size: 20px;
    line-height: 25px;
  }
  .banner__subtitle {
    font-size: 30px;
  }
}

@media (min-width: 768px) {
  .main {
    padding-top: 110px;
  }
  .container {
    max-width: 720px;
  }
  .logo img {
    width: 80px;
    height: 80px;
  }
  .title--size-md {
    font-size: 27px;
  }
  .title--size-lg {
    font-size: 50px;
  }
  .header__phone:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 100%;
    border-bottom: 1px solid currentColor;
    transform: scaleX(0);
    transition-duration: 400ms;
  }
  .header__phone svg path {
    fill: #ff8300;
  }
  .header__phone span {
    font-size: 20px;
  }
  .header__btn {
    display: block;
  }
  .header__social-link svg {
    width: 48px;
    height: 48px;
  }
  .footer {
    padding: 70px 0;
  }
  .footer__logo img {
    width: 278px;
    height: 80px;
  }
  .footer__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .modal-form__wrapper {
    padding: 35px;
  }
  .intro__inner {
    padding-bottom: 130px;
  }
  .intro__slide {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .home-about__items {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .services__item .title {
    padding: 24px 20px;
  }
  .design__items {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .partners__title {
    margin-bottom: 50px;
  }
  .contact-form__items {
    min-height: 445px;
  }
  .contact-form__inputs {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact-form__inputs .form-textarea {
    grid-column: span 3;
  }
  .contact-form__file {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
  .contact-form__submit {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
  .contact-form__info {
    order: 3;
  }
  .contacts__map {
    height: 512px;
  }
  .about-intro__items {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .directions__items {
    grid-template-columns: 1fr 1fr;
  }
  .banner__inner {
    padding-top: 200px;
    padding-bottom: 130px;
    min-height: 600px;
  }
  .delay-300\@md {
    animation-delay: 300ms;
  }
  .delay-400\@md {
    animation-delay: 400ms;
  }
}

@media (min-width: 768px) and (pointer: fine) {
  .header__phone:hover:before {
    transform: scaleX(1);
  }
}

@media (min-width: 992px) {
  .section {
    margin-bottom: 100px;
  }
  .container {
    max-width: 1220px;
  }
  .title--size-xl {
    font-size: 40px;
  }
  .nav-menu__toggle, .nav-menu__toggle--close {
    display: none;
  }
  .nav-menu__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-menu__item:hover .nav-menu__sub-container {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: scale(1, 1);
  }
  .nav-menu__item:hover svg {
    transform: scale(1, -1);
  }
  .nav-menu__link-toggel {
    display: block;
    cursor: pointer;
    padding-left: 10px;
    line-height: 20px;
  }
  .nav-menu__sub-container {
    padding: 20px 0 0 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    transform: translate(0, 20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 300px;
  }
  .nav-menu__sub-menu {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 16px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  }
  .nav-menu__sub-item {
    border-bottom: 1px solid rgb(217, 217, 217);
  }
  .nav-menu__sub-item a {
    margin: 0;
    padding: 10px 0;
  }
  .nav-menu__link {
    color: #fff;
  }
  .header__logo {
    margin-right: 0;
  }
  .header__logo img {
    transition: 1s;
    transform: rotate(0);
  }
  .header__logo:hover img {
    transform: rotate(360deg);
  }
  .intro__slide {
    grid-template-columns: 1fr 400px;
  }
  .advantage__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .advantage__item {
    padding: 32px 16px;
  }
  .advantage__icon {
    margin-bottom: 16px;
  }
  .advantage__icon svg {
    width: 50px;
    height: 50px;
    animation: rotateY 5s linear infinite;
  }
  .services__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .order__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .order__icon {
    margin-bottom: 16px;
  }
  .order__icon svg {
    width: 50px;
    height: 50px;
    animation: rotateY 5s linear infinite;
  }
  .contact-form__inner {
    padding: 80px 40px;
  }
  .contact-form__items {
    max-width: 632px;
  }
  .contacts__inner {
    grid-template-columns: 450px 1fr;
    align-items: center;
  }
  .contacts__content {
    padding: 30px 0;
  }
  .banner__inner {
    min-height: 800px;
  }
  .banner__subtitle {
    font-size: 40px;
  }
}

@media (min-width: 1100px) {
  :root {
    --body-font-size: 18px;
  }
  .title--size-sm {
    font-size: 20px;
  }
  .title--size-xl {
    font-size: 50px;
  }
  .nav-menu__list {
    gap: 22px;
  }
  .btn-primary--md {
    font-size: 18px;
  }
  .form-field__input {
    font-size: 18px;
    padding: 13px;
  }
  .form-textarea__input {
    font-size: 18px;
  }
  .header__contacts {
    gap: 20px;
  }
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 70px;
  }
  .modal-form__wrapper {
    min-height: 425px;
  }
}

@media (max-width: 991px) {
  .nav-menu {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -105%;
    height: auto;
    z-index: 899;
    transition: all 0.3s;
  }
  .nav-menu__inner {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    background-color: #fff;
    height: 100%;
    min-height: 100vh;
    padding: 40px 20px 70px;
    overflow: auto;
    gap: 50px;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .header__phone {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff8300;
    justify-content: center;
    flex-shrink: 0;
    gap: 0;
    order: 3;
  }
  .header__phone:hover {
    background: #cc6800;
  }
}

@media (pointer: fine) {
  .link:hover {
    color: #ff8300;
  }
  .link:active {
    color: #cc6800;
  }
  .link-decor:hover:before {
    transform: scaleX(1);
  }
  .btn--theme-primary:hover {
    background-color: #cc6800;
    color: #fff;
  }
  .btn--theme-primary:active {
    background-color: #cc6800;
    color: #fff;
  }
  .btn--theme-outline:hover {
    color: #fff;
    background: #ff8300;
    border-color: transparent;
  }
  .btn--theme-outline:active {
    color: #fff;
    border-color: #ff8300;
    background: #ff8300;
  }
  .footer__menu li a:hover {
    color: #cc6800;
  }
  .footer__menu li a:active {
    color: #cc6800;
  }
  .footer__link:hover {
    color: #cc6800;
  }
  .footer__link:active {
    color: #cc6800;
  }
  .modal-form__info a:hover {
    color: #cc6800;
  }
  .modal-form__info a:active {
    color: #cc6800;
  }
  .contact-form__info a:hover {
    color: #cc6800;
  }
  .contact-form__info a:active {
    color: #cc6800;
  }
}

input[name="n-message"] {
    display: block;
    width: 5px;
    height: 3px;
    margin-bottom: -3px;
    opacity: 0.000001;
}

@-webkit-keyframes rotateY {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  46% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  54% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes rotateY {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  46% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  54% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}