/* Запрет выделения текста */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
}

/* Запрет перетаскивания изображений */
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* Запрет выделения при тапах на мобилках */
html,
body {
  -webkit-tap-highlight-color: transparent;
}

section[id],
div[id] {
  scroll-margin-top: 150px;
}

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

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

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

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

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

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

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

button {
  cursor: pointer;
  background: none;
}

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

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

a {
  color: inherit;
}

@font-face {
  font-family: Cofo-Sans;
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/cofo-sans-bold.b8a0dcd4.eot") format("eot"), url("../fonts/cofo-sans-bold.8bea0409.woff") format("woff"), url("../fonts/cofo-sans-bold.f8728f7c.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Cofo-Sans;
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/cofo-sans-medium.421f94cf.eot") format("eot"), url("../fonts/cofo-sans-medium.d02908b9.woff") format("woff"), url("../fonts/cofo-sans-medium.db20dd1e.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Cofo-Sans;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/cofo-sans-regular.2200d03c.eot") format("eot"), url("../fonts/cofo-sans-regular.1ec663bb.woff") format("woff"), url("../fonts/cofo-sans-regular.184e72a3.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Benzin;
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/benzin-semibold.1832534c.eot") format("eot"), url("../fonts/benzin-semibold.837a37de.woff") format("woff"), url("../fonts/benzin-semibold.99bb0cbb.woff2") format("woff2");
  font-display: swap;
}

.header {
  z-index: 101;
  backdrop-filter: blur(7px);
  background: #00000062;
  width: 100%;
  padding: 10px 0;
  position: fixed;
}

.header .container {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (max-width: 1400px) {
  .header__logo img {
    width: 130px;
  }
}

@media (width <=700px) {
  .header__logo img {
    width: 120px;
  }
}

.header__nav {
  width: 100%;
  max-width: 1160px;
}

.header__nav ul {
  justify-content: center;
  gap: 20px;
  width: 100%;
  display: flex;
}

.header__nav li {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 1400px) {
  .header__nav li {
    font-size: 9px;
  }
}

.header__contacts {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: max-content;
}

@media (max-width: 1400px) {
  .header__contacts {
    font-size: 14px;
  }

  .header__contacts svg {
    width: 40px;
    height: 40px;
  }
}

.header__contacts a {
  margin-right: 5px;
  white-space: nowrap;
}

.header__contacts a:last-child {
  margin-right: 0;
  margin-left: 10px;
}

@media (width <=1050px) {
  .header__nav {
    display: none;
  }

  .header__contacts {
    display: none;
  }
}

.js-burger__btn-open {
  display: none;
}

@media (width <=1050px) {
  .js-burger__btn-open {
    display: block;
  }
}

.footer {
  background: #16181f;
  padding: 50px 0;
}

@media (width <=900px) {
  .footer {
    padding: 30px 0;
  }
}

.footer__top {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  display: flex;
}

@media (width <=900px) {
  .footer__top {
    flex-direction: column-reverse;
    width: 100%;
  }
}

.footer__navs {
  gap: 100px;
  display: flex;
}

.footer__navs ul {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

@media (width <=900px) {
  .footer__navs ul {
    gap: 10px;
  }
}

.footer__navs li {
  color: #fff6;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

@media (width <=900px) {
  .footer__navs li {
    font-size: 12px;
  }

  .footer__navs {
    justify-content: space-between;
    gap: 50px;
    width: 100%;
  }
}

.footer__nav-title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

@media (width <=900px) {
  .footer__nav-title {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.footer__banner {
  border: 1px solid #fff;
  border-radius: 25px;
  max-width: 435px;
  padding: 20px 30px;
}

.footer__banner button {
  color: #fff;
  align-items: center;
  gap: 15px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

@media (width <=900px) {
  .footer__banner button {
    font-size: 13px;
  }

  .footer__banner {
    width: 100%;
    max-width: none;
    padding: 15px;
  }
}

.footer__banner-title {
  color: #fff;
  margin-bottom: 10px;
  font-family: Benzin, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}

@media (width <=900px) {
  .footer__banner-title {
    margin-bottom: 5px;
    font-size: 18px;
  }
}

.footer__banner-text {
  color: #fff;
  margin-bottom: 30px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

@media (width <=900px) {
  .footer__banner-text {
    margin-bottom: 15px;
    font-size: 13px;
  }
}

.footer__phone {
  text-transform: uppercase;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 35px;
  font-weight: 500;
}

@media (width <=1100px) {
  .footer__phone {
    font-size: 23px;
  }
}

.footer__mail {
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 35px;
  font-weight: 500;
}

@media (width <=1100px) {
  .footer__mail {
    font-size: 23px;
  }
}

.footer__contacts-wrapper {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (width <=1100px) {
  .footer__contacts-wrapper {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }
}

.footer__contacts {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

@media (width <=900px) {
  .footer__contacts {
    gap: 10px;
  }
}

.footer__socials {
  align-items: center;
  gap: 5px;
  display: flex;
}

.footer__info {
  align-items: center;
  gap: 30px;
  display: flex;
}

.footer__info p {
  color: #fff;
  max-width: 450px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 130%;
}

@media (width <=1100px) {
  .footer__info p {
    font-size: 12px;
  }

  .footer__info {
    flex-direction: row-reverse;
  }
}

.footer__row {
  color: #fff6;
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 25px;
  padding-top: 25px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  display: flex;
}

.footer__row span {
  max-width: 550px;
}

.footer__row div {
  align-items: end;
  gap: 10px;
  flex-direction: column;
  display: flex;
}

@media (width <=900px) {
  .footer__row div {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .footer__row {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    font-size: 14px;
  }
}

.burger {
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  background: #00000085;
  width: 100%;
  height: 100%;
  transition: all .3s;
  position: fixed;
}

.burger--active {
  opacity: 1;
  visibility: visible;
}

.burger__content {
  background: #171a25;
  border-radius: 0 0 25px 25px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: max-content;
  padding: 10px 15px 55px;
  display: flex;
}

.burger__head {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  display: flex;
}

.burger__nav {
  margin-top: 50px;
}

.burger__nav ul {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  display: flex;
}

.burger__nav li {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.overlay {
  z-index: 102;
  opacity: 1;
  visibility: visible;
  background: #00000083;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px;
  transition: all .3s;
  display: flex;
  position: fixed;
}

.overlay--hidden {
  opacity: 0;
  visibility: hidden;
}

.overlay__content {
  background: #16181f;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 930px;
  padding: 50px 20px 20px;
  display: flex;
  position: relative;
}

@media (width <=700px) {
  .overlay__content .section-title {
    font-size: 18px;
  }
}

.overlay__content p:not(.overlay form p) {
  text-align: center;
  color: #fff;
  max-width: 535px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

@media (width <=700px) {
  .overlay__content p:not(.overlay form p) {
    font-size: 13px;
  }
}

.overlay__content .btn {
  width: 100%;
  max-width: none;
}

.overlay__content .btn:before {
  content: "";
}

.overlay__content form {
  flex-direction: column;
  gap: 15px;
  width: 100%;
  display: flex;
}

.overlay__content label {
  max-width: none !important;
}

.overlay__content .custom-checkbox {
  /* margin: 0; */
}

.js-overlay__btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

@media (width <=1000px) {
  .js-overlay__btn-close {
    top: 15px;
    right: 15px;
  }

  .js-overlay__btn-close svg {
    width: 15px;
    height: 15px;
  }
}

.overlay-projects .overlay__content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  max-width: 1430px;
  padding-top: 20px;
  display: grid;
}

@media (width <=900px) {
  .overlay-projects .overlay__content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    padding: 10px;
  }

  .overlay-projects .js-overlay__btn-close svg {
    width: 35px;
    height: 35px;
  }
}

.overlay-projs__imgs img {
  border-radius: 25px;
  width: 100%;
  height: auto;
}

@media (width <=900px) {
  .overlay-projs__imgs {
    order: 2;
  }
}

.overlay-projs__btns {
  z-index: 10;
  backdrop-filter: blur(50px);
  background: #ffffff1a;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  max-width: max-content;
  padding: 5px;
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.overlay-projs__btns .swiper-button-prev {
  width: 55px;
  height: 55px;
  margin: 0;
  position: static;
}

.overlay-projs__btns .swiper-button-prev:after {
  display: none;
}

@media (width <=1000px) {
  .overlay-projs__btns .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.overlay-projs__btns .swiper-button-next {
  width: 55px;
  height: 55px;
  margin: 0;
  position: static;
}

.overlay-projs__btns .swiper-button-next:after {
  display: none;
}

@media (width <=1000px) {
  .overlay-projs__btns .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.overlay-projs__descr {
  padding-top: 70px;
}

@media (width <=700px) {
  .overlay-projs__descr {
    padding-top: 50px;
  }
}

.overlay-projs__title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

@media (width <=700px) {
  .overlay-projs__title {
    font-size: 18px;
  }
}

.overlay-projs__text,
.overlay-projs__text p {
  line-height: 130%;
  text-align: left !important;
}

.overlay-projs__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.main-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 600px;
  padding-bottom: 60px;
  position: relative;
}

.main-section:before {
  content: "";
  background: #00000080;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.main-section .container {
  z-index: 10;
  align-items: end;
  display: flex;
  position: relative;
}

@media (max-width: 1000px) {
  .main-section .container {
    align-items: center;
  }
}

.main-section h1 {
  text-transform: uppercase;
  color: #fff;
  font-family: Benzin, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 136%;
}

@media (width <=1400px) {
  .main-section h1 {
    font-size: 30px;
  }
}

.main-section h1 img {
  position: relative;
  bottom: 20px;
}

.main-section__content {
  align-items: center;
  gap: 20px;
  display: flex;
}

@media (width <=1000px) {
  .main-section__content {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

.main-section__content-descr {
  flex-direction: column;
  gap: 60px;
  max-width: 410px;
  width: 100%;
  display: flex;
}

.main-section__content-descr p {
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 19px;
  font-weight: 400;
}

@media (width <=1000px) {
  .main-section__content-descr p {
    font-size: 14px;
  }

  .main-section__content-descr {
    gap: 20px;
    max-width: none;
  }
}

.steps__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

@media (width <=1000px) {
  .steps__content {
    grid-template-columns: 1fr;
  }
}

.steps__content-item {
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.steps__content-item:before {
  content: "";
  z-index: 3;
  background: linear-gradient(#171a2500 16.39%, #171a25 86.38%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.steps__content-item img {
  object-fit: cover;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all .3s;
  position: relative;
}

.steps__content-item .btn {
  z-index: 6;
  position: absolute;
  bottom: 25px;
  right: 25px;
  transform: translateY(200%);
}

@media (width <=600px) {
  .steps__content-item .btn {
    width: calc(100% - 30px);
    max-width: none;
    bottom: 15px;
    left: 15px;
    transform: translateY(0);
  }

  .steps__content-item .btn:before {
    content: "";
  }
}

.steps__content-item:hover .btn {
  transform: translateY(0);
}

.steps__content-item:hover img {
  transform: scale(1.1);
}

@media (width <=1000px) {
  .steps__content-item {
    min-height: 480px;
  }
}

.steps__item-descr {
  z-index: 5;
  flex-direction: column;
  gap: 15px;
  width: calc(100% - 260px);
  max-width: 410px;
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 25px;
}

@media (width <=600px) {
  .steps__item-descr {
    width: calc(100% - 30px);
    max-width: none;
    bottom: 120px;
    left: 15px;
  }
}

.steps__item-title {
  text-transform: uppercase;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 27px;
  font-weight: 700;
}

@media (width <=600px) {
  .steps__item-title {
    font-size: 20px;
  }
}

.steps__item-text {
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
}

@media (width <=600px) {
  .steps__item-text {
    font-size: 14px;
  }
}

.services {
  position: relative;
}

.services__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
}

.services__bg2 {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: auto;
}

.services__bg3 {
  bottom: 0;
  top: auto;
}

@media (width <=1000px) {
  .services__bg {
    display: none;
  }
}

.services__content {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
  display: grid;
}

@media (width <=1000px) {
  .services__content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services__content span:not(.services__content-item span) {
    display: none;
  }
}

.services__content-item {
  background: linear-gradient(#171a25 18.28%, #171a25b5 126.64%);
  border-radius: 25px;
  padding: 25px;
}

.services__content-item img {
  margin-bottom: 10px;
}

@media (width <=600px) {
  .services__content-item img {
    width: 57px;
    height: 57px;
  }

  .services__content-item {
    border-radius: 15px;
    padding: 15px;
  }
}

.services__item-title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 27px;
  font-weight: 700;
}

@media (width <=600px) {
  .services__item-title {
    margin-bottom: 15px;
    font-size: 16px;
  }
}

.services__item-list {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

@media (width <=600px) {
  .services__item-list {
    gap: 10px;
  }
}

.services__list-item {
  color: #fff;
  align-items: center;
  gap: 15px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
  display: flex;
}

.services__list-item svg {
  flex-shrink: 0;
}

@media (width <=600px) {
  .services__list-item {
    font-size: 13px;
  }
}

.projects__swiper-slide {
  border-radius: 25px;
  height: auto;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.projects__swiper-slide:before {
  content: "";
  z-index: 3;
  background: linear-gradient(#171a2500 16.39%, #171a25 86.38%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}


.projects__swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.projects__swiper-descr {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: calc(100% - 50px);
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 4;
}

.projects__descr-texts {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.projects__descr-date {
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.projects__descr-title {
  text-transform: uppercase;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.projects__swiper-btns {
  background: #ffffff1a;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  max-width: max-content;
  margin-top: 30px;
  margin-left: auto;
  padding: 5px;
  display: flex;
}

.projects__swiper-btns .swiper-button-prev {
  width: 55px;
  height: 55px;
  margin: 0;
  position: static;
}

.projects__swiper-btns .swiper-button-prev:after {
  display: none;
}

@media (width <=1000px) {
  .projects__swiper-btns .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.projects__swiper-btns .swiper-button-next {
  width: 55px;
  height: 55px;
  margin: 0;
  position: static;
}

.projects__swiper-btns .swiper-button-next:after {
  display: none;
}

@media (width <=1000px) {
  .projects__swiper-btns .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .projects__swiper-btns {
    margin: 20px auto 0;
  }
}

@media (width <=700px) {
  .about .section-title {
    text-align: center;
  }
}

.about__content {
  color: #fff;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

@media (width <=700px) {
  .about__content {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
  }
}

.about__cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
}

@media (width <=1000px) {
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.about__cards-item {
  background: #16181f;
  border-radius: 25px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  padding: 25px;
  display: flex;
}

@media (width <=700px) {
  .about__cards-item {
    gap: 5px;
    min-height: 160px;
    padding: 20px 10px;
    justify-content: start;
  }
}

.about__item-title {
  text-transform: uppercase;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.about__item-title span {
  color: #0b4bcf;
}

@media (width <=700px) {
  .about__item-title {
    font-size: 16px;
    min-height: 48px;
  }
}

.about__item-text {
  color: #fff6;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

@media (width <=700px) {
  .about__item-text {
    font-size: 13px;
  }
}

.production .section-title {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.production .section-title span {
  color: #0b4bcf;
  margin-left: auto;
  display: block;
}

.production__content-wrapper {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
  margin-top: 50px;
}

@media (width <=1200px) {
  .production__content-wrapper {
    flex-direction: column-reverse;
    display: flex;
  }
}

.production__content {
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  display: flex;
}

.production__content p {
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}

@media (width <=700px) {
  .production__content p {
    font-size: 14px;
  }
}

.production__content .btn {
  max-width: 310px;
  margin-top: 25px;
}

@media (width <=700px) {
  .production__content .btn {
    width: 100%;
    max-width: none;
    margin-top: 15px;
  }

  .production__content {
    gap: 10px;
  }
}

.equipment__content-wrapper {
  gap: 70px;
  margin-bottom: 70px;
  display: flex;
}

.equipment__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

@media (width <=1200px) {
  .equipment__content-wrapper:nth-child(even) {
    flex-direction: column;
  }
}

.equipment__content-wrapper img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

@media (width <=1200px) {
  .equipment__content-wrapper {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
  }
}

.equipment__content-wrapper:last-child {
  margin-bottom: 0;
}

.equipment__content {
  flex-direction: column;
  gap: 15px;
  margin-top: 90px;
  display: flex;
}

.equipment__content p {
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

@media (width <=700px) {
  .equipment__content p {
    font-size: 14px;
  }
}

.equipment__content .btn {
  max-width: 350px;
  margin-top: 20px;
}

@media (width <=700px) {
  .equipment__content .btn {
    max-width: none;
    margin-top: 0;
  }
}

@media (width <=1200px) {
  .equipment__content {
    margin-top: 0;
  }
}

.equipment__content-title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

@media (width <=700px) {
  .equipment__content-title {
    margin-bottom: 0;
    font-size: 20px;
  }
}

.blog-page__content {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  display: grid;
}

@media (width <=1000px) {
  .blog-page__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <=700px) {
  .blog-page__content {
    grid-template-columns: 1fr;
  }
}

.blog-page__content-item {
  background: #161923;
  border-radius: 25px;
  flex-direction: column;
  gap: 25px;
  padding: 30px 25px;
  display: flex;
}

.blog-page__content-item .btn {
  margin-top: auto;
}


.blog-page__content-item img {
  object-fit: cover;
  border-radius: 25px;
  width: 100%;
  height: auto;
  min-height: 300px;
}

@media (width <=700px) {
  .blog-page__content-item img {
    border-radius: 15px;
    min-height: 150px;
  }

  .blog-page__content-item {
    border-radius: 15px;
    gap: 13px;
    padding: 15px;
  }
}

.blog-page__item-date {
  text-transform: uppercase;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.blog-page__item-date span {
  color: #0b4bcf;
  font-size: 18px;
}

@media (width <=700px) {
  .blog-page__item-date span {
    font-size: 13px;
  }

  .blog-page__item-date {
    font-size: 15px;
  }
}

.blog-page__item-title {
  letter-spacing: -.03em;
  color: #fff;
  font-family: Cofo-Sans, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

@media (width <=700px) {
  .blog-page__item-title {
    font-size: 14px;
  }
}

.single img {
  border-radius: 25px;
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}

.single li {
  list-style: disc;
  margin-left: 20px;
}

.single p,
.single li {
  color: #fff;
  margin-bottom: 15px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.single__date {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 50px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.single__date span {
  color: #0b4bcf;
  font-size: 18px;
}

.talk__content {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  flex-direction: column;
  align-items: center;
  padding: 40px 50px;
  display: flex;
  height: 100%;
  max-height: max-content;
  overflow-y: auto;
}


.talk__content form br {
  display: none;
}

.talk__content form {
  width: 100%;
}

.talk__content .form__row p:not(.talk__content .form__row p:last-child) {
  width: 100%;
  max-width: 316px;
}

@media (width <=1000px) {
  .talk__content .form__row p:not(.talk__content .form__row p:last-child) {
    max-width: none;
  }
}

.talk__content input:not(.custom-checkbox input, .btn) {
  color: #fff;
  background: #ffffff1a;
  border-radius: 10px;
  width: 100%;
  padding: 40px 20px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.talk__content input:not(.custom-checkbox input, .btn)::placeholder {
  color: #cbcbcd;
}

@media (width <=1000px) {
  .talk__content input:not(.custom-checkbox input, .btn) {
    padding: 25px 20px;
    font-size: 14px;
  }
}

.talk__content .btn {
  min-height: 100px;
}

@media (width <=1000px) {
  .talk__content .btn {
    width: 100%;
    max-width: none;
    min-height: 66px;
  }

  .talk__content .btn:before {
    content: "";
  }

  .talk__content {
    padding: 30px 10px;
  }
}

.talk__text {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 535px;
  margin-top: 20px;
  margin-bottom: 50px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

@media (width <=1000px) {
  .talk__text {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 13px;
  }
}

.form__row {
  gap: 15px;
  width: 100%;
  display: flex;
}

@media (width <=1000px) {
  .form__row {
    flex-direction: column;
  }
}

.custom-checkbox {
  color: #fff;
  cursor: pointer;
  margin-top: 40px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

@media (width <=1000px) {
  .custom-checkbox {
    margin-top: 20px;
  }
}

.custom-checkbox input {
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
  border: 2px solid #fff;
  border-radius: 5px;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.custom-checkbox input:checked:after {
  content: "";
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='9' fill='none'><path stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.495' d='M1 4.5 3.667 8 9 1'/></svg>") center / contain no-repeat;
  width: 10px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-main .container {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

@media (width <=1000px) {
  .service-main .container {
    flex-direction: column-reverse;
    display: flex;
  }
}

.service-main__swiper {
  margin-bottom: 20px;
}

.service-main__swiper img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.service-main__swiper-slide,
.service-child__swiper-slide {
  height: auto;
}

.service-child__swiper-slide img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

.service-main__content {
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
}

.service-main__content h1 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  font-family: Benzin, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 130%;
}

@media (width <=1000px) {
  .service-main__content h1 {
    margin-bottom: 20px;
    font-size: 25px;
  }
}

.service-main__content p {
  color: #fff;
  margin-bottom: 15px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

@media (width <=1000px) {
  .service-main__content p {
    font-size: 14px;
  }
}

.service-main__content p:last-child {
  margin-bottom: 0;
}

@media (width <=1000px) {
  .service-main__content {
    max-width: none;
  }
}

.service-cards__content {
  color: #fff;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 40px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

@media (width <=700px) {
  .service-cards__content {
    gap: 15px;
    margin: 20px 0;
    font-size: 14px;
  }
}

.service-cards__cards-item {
  background: linear-gradient(#171a25 18.28%, #171a2500 123.64%);
  border-radius: 25px;
  padding: 25px;
  height: auto;
}

.service-cards__cards-item p {
  color: #fff;
  margin-bottom: 20px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

@media (width <=700px) {
  .service-cards__cards-item p {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.service-cards__cards-item p:last-child {
  margin-bottom: 0;
}

@media (width <=700px) {
  .service-cards__cards-item {
    padding: 15px;
  }
}

.service-cards__item-title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 27px;
  font-weight: 700;
}

@media (width <=700px) {
  .service-cards__item-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.service-cards__items {
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}

.service-cards__items svg {
  flex-shrink: 0;
}

@media (width <=700px) {
  .service-cards__items {
    gap: 10px;
    margin-bottom: 10px;
  }
}

.service-cards__items-text {
  color: #fff;
  align-items: center;
  gap: 15px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 400;
  display: flex;
}

@media (width <=700px) {
  .service-cards__items-text {
    gap: 10px;
    font-size: 13px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.container {
  max-width: 1450px;
  height: 100%;
  margin: 0 auto;
  padding: 0 65px;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

html,
body {
  color: #fff;
  background: #0e0f12;
  font-family: Cofo-Sans, sans-serif;
}

.btn {
  text-transform: uppercase;
  text-align: center;
  color: #000;
  background: #fff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.btn span {
  width: 29px;
}

.btn path {
  transition: all .3s;
}

.btn:hover {
  color: #fff;
  background: #0b4bcf;
}

.btn:hover path {
  stroke: #fff;
}

.btn--hollow {
  color: #fff;
  background: none;
  border: 1px solid #fff;
}

.btn--hollow:hover {
  background: #0b4bcf;
  border-color: #0b4bcf;
}

.btn--blue {
  color: #fff;
  background: #0b4bcf;
  border-color: #0b4bcf;
}

.btn--blue path {
  stroke: #fff;
}

.btn--blue:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.btn--blue:hover path {
  stroke: #0b4bcf;
}

@media (width <=700px) {
  .btn {
    padding: 15px 20px;
    font-size: 12px;
  }
}

.section {
  margin-bottom: 100px;
}

@media (width <=1000px) {
  .section {
    margin-bottom: 50px;
  }
}

.section-title {
  text-transform: uppercase;
  color: #fff;
  font-family: Benzin, sans-serif;
  font-size: 40px;
  font-weight: 400;
}

.section-title--centered {
  text-align: center;
}

.section-title--medium {
  margin-bottom: 40px;
  font-size: 60px;
}

@media (width <=1000px) {
  .section-title--medium {
    margin-bottom: 20px;
    font-size: 30px;
  }
}

.section-title--large {
  margin-bottom: 40px;
  font-size: 80px;
}

@media (max-width: 1400px) {
  .section-title--large {
    font-size: 50px;
  }
}

@media (width <=1000px) {
  .section-title--large {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .section-title {
    font-size: 25px;
  }
}

.section-head {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  display: flex;
}

.section-head .section-title {
  margin-bottom: 0;
}

@media (width <=800px) {
  .section-head {
    flex-direction: column;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
  }
}

.section-head__descr {
  color: #fff;
  align-items: center;
  gap: 10px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 17px;
  font-weight: 500;
  display: flex;
}

@media (width <=600px) {
  .section-head__descr {
    font-size: 13px;
  }
}

.main-page {
  padding-top: 150px;
}

@media (width <=700px) {
  .main-page {
    padding-top: 100px;
  }
}

.page-breads {
  color: #fff;
  align-items: center;
  gap: 20px;
  font-family: Cofo-Sans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

@media (width <=700px) {
  .page-breads {
    gap: 10px;
    font-size: 13px;
  }
}

.title {
  text-transform: uppercase;
  color: #fff;
  margin: 40px 0;
  font-family: Benzin, sans-serif;
  font-size: 50px;
  font-weight: 400;
}

@media (width <=700px) {
  .title {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 25px;
  }
}

.header__dropdown-wrapper {
  position: relative;
}

.js__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.js__dropdown-btn svg {
  transition: all .3s;
}

.js__dropdown-btn--active svg {
  transform: rotate(180deg);
}

.js__dropdown-list {
  position: absolute;
  top: 47px;
  padding: 15px;
  backdrop-filter: blur(7px);
  background: #00000062;
  left: -15px;
  align-items: start;
  justify-content: start;
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 10px;
  width: 100vw;
  max-width: 300px;
  transition: all .3s;
  opacity: 0;
  visibility: hidden;
}

.js__dropdown-list--active {
  opacity: 1;
  visibility: visible;
}

.obor__cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.obor__cards img {
  width: 100%;
}

@media (max-width: 1000px) {
  .obor__cards {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (max-width: 700px) {
  .obor__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #0b4bcf;
}

.burger__contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.burger__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}