html,
body {
  font-family: "TildaSans", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #F7F7F7;
}

.wrapper {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #222222;
    background-image: url(/images/bg.jpg);
    background-position: 0 0;
    background-size: contain;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

.main {
    flex: 1 0 650px;
    padding-bottom: 20px;
}

.footer {
    padding: 20px 0 29px;
    background-image: url(/images/bg.jpg);
    background-position: 0 0;
    background-size: contain;
}

.footer__logo-link {
    display: block;
    margin-bottom: 20px;
    max-width: 60px;
}

.header {
  background-image: url(/images/bg.jpg);
  background-position: 0 0;
  background-size: contain;
}

.header__content {
  display: flex;
  padding: 24px 0;
  gap: 32px;
}

.header__logo-link {
  display: block;
  max-width: 90px;
  flex: 0 0 90px;
}

.header__logo-link--mobile {
  display: none;
  max-width: 60px;
  flex: 0 0 60px;
}

.header__rows {
  flex: 1 1 auto;
}

.header__row a{
	color: #FFF;
	font-weight: 700;
	text-decoration: none;
}

.header__row a:hover {
	text-decoration: underline;
}

.header__row.top {
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid;
}

.header__row.top button {
  border: none;
  font-size: 16px;
  background-color: #DF7725;
  border-radius: 10px;
  opacity: 1;
  transition: opacity .2s;
}

.header__row.top button:hover {
  opacity: .6;
  transition: opacity .2s;
}

.header__row.bottom {
  display: block;
  line-height: 27px;
  padding-top: 8px;
}

@media (max-width: 1200px) {
  .header__content {
    align-items: center;
    padding: 15px 0;
  }
  .header__logo-link {
    display: none;
  }

  .header__logo-link--mobile {
    display: block;
  }

  .header__row.top {
    padding-bottom: 0px;
    border: none;
  }

  .header__row.top .menu__option {
    display: none;
  }

  .header__row.bottom {
    display: none;
  }
}

@media (max-width: 933px) {
  .header__top-email, .header__top-phone {
    display: none;
  }
  .banner-content {
    width: 100%
  }
}

@media (max-width: 580px) {
  .button__request {
    display: none;
  }
}

.img-box.img-box--footer-logo {
    padding-top: 85%;
}

.copyright {
    margin: 0 0 15px;
    font-weight: 500;
    font-size: 8px;
    line-height: 12px;
    max-width: 166px;
}

.footer__requisites {
    list-style: none;
    margin: 0;
    padding: 0;

    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
}

.footer__requisites-item + .footer__requisites-item {
    margin-top: 5px;
}

.footer__warning {
  font-size: 8px;
  line-height: 12px;
  text-align: center;
  color: rgba(247, 247, 247, 0.6);
  margin: 20px 0 0;
}

/* === not found page === */
.not-found-page {
  width: 100%;
  min-height: 100vh;

  background-color: black;
  background-image: url(/images/404_background.jpg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;

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

.not-found-page__inner {
  padding: 40px 20px;
}

.not-found-page__image-container {
  max-width: 240px;
  margin: 0 auto;
}

.img-box.img-box--not-found {
  padding-top: 102.44%;
}

.not-found-page__content {
  font-size: 20px;
  line-height: 29px;
  color: #fff;
  text-align: center;
  margin: 0;
  max-width: 375px;
}

.not-found-page__content strong {
  font-weight: 500;
  margin: 20px auto 30px;
}

.not-found-page__btn {
  display: inline-block;
  padding: 6px 20px;
  background-color: #f7f7f7;
  border: none;
  border-radius: 10px;

  font-size: 20px;
  line-height: 30px;
  color: #222;
  text-decoration: none;

  transition: background 350ms;
}

.not-found-page__btn:hover {
  background-color: #dadada;
}
/* === end not found page === */

@media (min-width: 575px) {
  .footer__form {
    margin: -9px;
    flex-wrap: wrap;
  }

  .footer__form .form-group + .form-group {
    margin-top: 0;
  }

  .footer__form .form-group {
    flex: 0 0 33.333%;
    padding: 9px;
  }

  .footer__form .form-group:last-child {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .not-found-page__image-container {
    max-width: 450px;
  }

  .not-found-page__content {
    font-size: 26px;
    line-height: 39px;
    max-width: 598px;
  }

  .not-found-page__content strong {
    margin: 40px auto 30px;
  }
}

@media (min-width: 1200px) {
  .copyright {
    font-size: 10px;
    line-height: 15px;
  }

  .footer__form {
    margin: 0;
  }

  .footer__form .form-group + .form-group {
    margin-top: 20px;
  }

  .footer__form .form-group {
    padding: 0;
  }

  .footer__warning {
    text-align: left;
    margin: 20px 0 0;
  }
}

.banner-wrapper {
  padding: 90px 60px;
  background-color: #00000050;
  border-radius: 10px;
  height: 100%;
}

.main-banner {
  margin-bottom: 25px;
}

.banner-top {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.banner-static {
  margin-bottom: 25px;
}

.banner-content {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-btn-container {
  margin-top: 40px;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  display: block;
  background-size: cover;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: transparent;
  border: 2px solid #FFF;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #FFF;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 25px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

@media (max-width: 933px) {
  .banner-content {
    width: 100%
  }
}

.banner-content .banner-button {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  margin-top: 15px;
  opacity: 1;
  transition: opacity .2s;
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  margin-top: auto;
}

.banner-wrapper .container, .banner-wrapper .banner-content {
  height: 100%;
}

.banner-content .banner-button:hover {
  opacity: .6;
  transition: opacity .2s
}

.banner-title {
  display: block;
  font-size: 36px;
  line-height: 39px;
  font-weight: 700;
  margin: 18px 0;
  user-select: none;
}

.banner-text {
  margin: 18px 0;
  font-size: 26px;
  line-height: 38px;
  margin-bottom: 36px;
  font-weight: 600;
  user-select: none;
}

.highlight-heavy {
  font-weight: 700;
  color: #DF7725;
}

.highlight {
  color: #DF7725;
}

.headline {
  display: block;
  font-size: 36px;
  line-height: 54px;
  font-weight: 700;
  margin: 20px 0;
}

.headline-sm {
  display: block;
  font-size: 26px;
  line-height: 39px;
  font-weight: 700;
  margin: 18px 0;
}

@media (max-width: 480px) {
	.headline {
    font-size: 28px;
    line-height: 42px;
  }
  
  .headline-sm {
    font-size: 18px;
    line-height: 27px;
  }
}


.contact__info {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 50px;
}

.contact__info a, .contact__info a:hover{
  text-decoration: none;
  color: #FFF;
}

.contact__info .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.contact__phone {
  margin-bottom: 50px;
}

.contact__info .big {
  font-size: 30px;
  line-height: 40px;
  display: block;
}

.contact__info .buttons__social {
  margin-top: 10px;
  display: flex;
  gap: 10px
}

.about-block {
	display: block;
	font-size: 26px;
	line-height: 39px;
	font-weight: 400;
}

.about-block ul {
	list-style: none;
	padding-left: 0 !important;
}

.about-block ul li {
	font-weight: 400;
	font-size: 24px;
	line-height: 36px;

}

.about-block ul li::before {
	position: relative;
	content: url(/images/tick.png);
	margin-right: 10px;
	top: 5px;
}

.about-block ul li+li, .about-block ol li+li {
	margin-top: 15px;
}

.steplist {
  counter-reset: listCounter;
}

.steplist li {
  counter-increment: listCounter;
}

.steplist li::before {
	margin: 0;
	position: unset;
	content: counter(listCounter, decimal-leading-zero) "." !important;
	font-size: 36px;
	line-height: 54px;
	font-weight: 900;
	color: #DF7725;
}

.about-block ol {
	list-style: none;
	padding-left: 0 !important;
}
  
.about-block ol li {
	display: flex;
	align-items: center;
	font-size: 18px;
	padding: 0px 15px;
	background-color: #222222;
	border: 1px solid #F7F7F7;
	border-radius: 10px;
	gap: 8px;
}

.about-block ol li.step-caption{
	display: flex;
	align-items: center;
	gap: 10px;
}



.about-block ol li::after {
	/*content: '🡾';*/
	margin-left: auto;
	user-select: none;
	font-size: 36px;
	line-height: 54px;
	color: #DF7725;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}

.flex-item {
	flex: 1 0 50%;
}

.ref-item { 
	flex: 1 0 50%; 
} 

.imagebox img {
    width: 100%;
    height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

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

@media (max-width: 933px) {
	.row, .row--reverse {
		flex-direction: column-reverse;
	}
	.imagebox{
		margin-bottom: 15px;
	}
}

@media (max-width: 480px) {
	.about-block, .about-block ul li {
		font-size: 18px;
		line-height: 27px;
	}
	.about-block ol li {
		font-size: 15px !important;
		line-height: 22.5px !important;
	};
}

.indev {
  display: flex;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #131313;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .1s ease-out, transform .1s;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity .1s ease-in, transform .1s;
}

.mobile-menu .faux__header__section .container {
  justify-content: space-between;
}

.mobile-menu .menu__section .header__menu {
  flex-direction: column;
  gap: 30px;
  font-size: 18px;
  margin-top: 100px;
}

.mobile-menu .contacts__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  gap: 30px;
}

.mobile-menu-btn__span {
  color: #DF7725;
}

button[data-entity="menuClose"] {
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu .contacts__section a {
  text-decoration: none;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu .contacts__section button {
  border: none;
  font-size: 16px;
  background-color: #DF7725;
  border-radius: 10px;
  opacity: 1;
  transition: opacity .2s;
  padding: 10px 15px;
}

.mobile-menu .contacts__section .buttons__social {
  position: relative;
  bottom: 1px;
  display: flex;
  gap: 20px;
}

.noscroll {
  overflow-y: hidden;
}

.col-section .contacts-form {
  width: 100%;
  margin-top: 15px;
}

.button-bottom {
  margin-bottom: 80px;
}

.col-section p {
    font-size: 20px;
    font-weight: 400;
}