@font-face {
  font-family: 'Tahoma';
  src: url(../fonts/ofont.ru_Tahoma-regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: 'Tahoma';
  src: url(../fonts/ofont.ru_Tahoma-bold.ttf);
  font-weight: 700;
}
* {
  box-sizing: border-box;
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
ul,
li,
a,
form,
label {
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
}

button,
input,
textarea {
  outline: none !important;
}

button {
  border: none;
}

input[type=text]:focus,
input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus,
input:active {
  outline: none !important;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Tahoma', sans-serif;
  font-weight: 400;
  height: 100%;
  overflow-x: hidden;
  color: #000000;
}

.wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

body.fixed-body {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
img {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #fc0000;
  transition: 0.3s;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  position: relative;
  z-index: 3;
  padding-bottom: 10px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  display: flex;
  align-items: center;
}
.header__right {
  display: flex;
  align-items: center;
}
.header__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-left: 20px;
  max-width: 340px;
}
.header__desc span {
  font-weight: 700;
}
.header__desc-mob {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-left: 20px;
}
.header__desc-mob span {
  font-weight: 700;
}
.header__img img {
  width: 100%;
}
.header__address {
  display: flex;
  align-items: center;
  padding-right: 30px;
  position: relative;
  cursor: pointer;
}
.header__address-desc {
  font-size: 14px;
  line-height: 120%;
  max-width: 116px;
  margin-left: 5px;
}
.header__address-desc span {
  position: relative;
}
.header__address-desc span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.header__address::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: calc(100% + 25px);
  background: #1397D7;
}
.header__connection {
  padding-left: 30px;
}
.header__number {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #473B8D;
}
.header__number-mob {
  display: none;
}
.header__number-desc {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-top: 1px;
}
.header__number-desc a {
  position: relative;
}
.header__number-desc a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.header__number-desc a:hover::after {
  display: none;
}

@media screen and (max-width: 1190px) {
  .header__address {
    padding-right: 20px;
  }
  .header__connection {
    padding-left: 20px;
  }
  .header__img {
    width: 150px;
  }
}
@media screen and (max-width: 1130px) {
  .header__address {
    padding-right: 0;
  }
  .header__address::after {
    display: none;
  }
  .header__address-logo svg {
    width: 50px;
    height: auto;
  }
  .header__address-desc {
    display: none;
  }
  .header__number {
    display: none;
  }
  .header__number-desc {
    display: none;
  }
  .header__number-mob {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .header__desc {
    display: none;
  }
  .header__desc-mob {
    display: block;
    margin-top: 15px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .header__logo img {
    width: 85px;
    height: auto;
  }
  .header__img {
    width: 125px;
  }
  .header__desc-mob {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .header__img {
    width: 100px;
  }
  .header__address-logo img {
    width: 25px;
  }
  .header__number-mob svg {
    width: 25px;
    height: auto;
  }
  .header__desc-mob {
    font-size: 12px;
  }
}
.footer {
  padding: 20px 0 40px;
  background: #F4F4F4;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__left {
  display: flex;
  align-items: center;
}
.footer__right {
  display: flex;
  align-items: center;
}
.footer__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-left: 70px;
  max-width: 296px;
}
.footer__desc span {
  font-weight: 700;
}
.footer__address {
  display: flex;
  align-items: center;
  position: relative;
}
.footer__address-desc {
  font-size: 14px;
  line-height: 120%;
  max-width: 116px;
  margin-left: 5px;
}
.footer__connection {
  margin-left: 130px;
}
.footer__connection-mob {
  display: none;
}
.footer__number {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #473B8D;
}
.footer__number-mob {
  display: none;
}
.footer__number-desc {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-top: 5px;
}
.footer__number-desc a {
  position: relative;
}
.footer__number-desc a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
}
.footer__number-desc a:hover::after {
  display: none;
}

@media screen and (max-width: 1130px) {
  .footer__desc {
    margin-left: 40px;
  }
  .footer__connection {
    margin-left: 40px;
  }
}
@media screen and (max-width: 992px) {
  .footer {
    padding: 15px 0 45px;
  }
  .footer__connection {
    display: none;
  }
  .footer__connection-mob {
    display: block;
    text-align: center;
    margin-top: 40px;
    margin-left: 0;
  }
  .footer__number-desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer__desc {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .footer__logo img {
    width: 85px;
    height: auto;
  }
}
.display2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #3C3C3C;
  text-align: center;
}
.display2 span {
  font-weight: 700;
}

.production {
  background-image: url(../img/production-min.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.production__inner {
  padding: 88px 0 5px;
}
.production__inner-bottom {
  margin-top: 130px;
  padding-left: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.production__title {
  display: flex;
  justify-content: center;
}
.production__title-left div:nth-child(1) {
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 3px 2px 0px #000000;
}
.production__title-left div:nth-child(2) {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
}
.production__title-right div:nth-child(1) {
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 3px 2px 0px #000000;
}
.production__title-right div:nth-child(1) span {
  margin: 0 40px;
}
.production__title-right div:nth-child(2) {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
  padding-left: 80px;
}
.production__bottom-left {
  display: flex;
  align-items: center;
}
.production__info {
  font-size: 16px;
  line-height: 120%;
  background: #322F2F;
  border: 2px solid #404040;
  padding: 10px 7px 10px 14px;
  position: relative;
  max-width: 209px;
  color: #FFFFFF;
}
.production__info span {
  font-weight: 700;
}
.production__info::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 7px;
  height: calc(100% + 4px);
  background-color: #FC0000;
}
.production__info:not(:first-child) {
  margin-left: 50px;
}
.production__bottom-info {
  display: flex;
  justify-content: end;
  align-items: center;
}
.production__bottom-btns {
  margin-left: 7px;
}
.production__bottom-btn {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #404040;
  width: 138px;
  height: 39px;
  border: 2.5px solid #404040;
}
.production__bottom-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  transition: all 0.3s;
}
.production__bottom-btn2 {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #404040;
  width: 170px;
  height: 39px;
  border: 2.5px solid #404040;
  margin-top: 10px;
}
.production__bottom-btn2:hover {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  transition: all 0.3s;
}
.production__bottom-text {
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.foundation {
  padding: 60px 0 90px;
}
.foundation__slide {
  position: relative;
}
.foundation__desc {
  margin-top: 7px;
}
.foundation .swiper {
  width: 100%;
  height: 100%;
}
.foundation .swiper-slide {
  text-align: center;
}
.foundation .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foundation .swiper-button-next {
  top: 65%;
  right: -17px;
}
.foundation .swiper-button-next::after {
  display: none;
}
.foundation .swiper-button-prev {
  top: 65%;
  left: -17px;
}
.foundation .swiper-button-prev::after {
  display: none;
}
.foundation .swiper-pagination {
  bottom: -30px;
}
.foundation .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #559F0A;
  margin: 2px !important;
}

.info {
  padding: 60px 0;
  background: #F4F4F4;
}
.info__inner {
  display: flex;
}
.info__right {
  margin-left: 140px;
}
.info__icon {
  max-width: 270px;
  display: block;
}
.info__title {
  font-size: 24px;
  line-height: 120%;
  text-align: end;
  letter-spacing: 0.02em;
  color: #404040;
  max-width: 270px;
}
.info__title span {
  font-weight: 700;
}
.info__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 190px;
}
.info__item {
  display: flex;
  align-items: flex-end;
}
.info__item-desc {
  max-width: 210px;
  margin-left: 10px;
  font-size: 15px;
  line-height: 120%;
  letter-spacing: 0.02em;
}
.info__item-desc--two {
  max-width: 140px;
}

.objects {
  padding-top: 40px;
}
.objects__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 40px;
}
.objects__item--100 {
  grid-row: 1/3;
}
.objects__item:nth-child(2) {
  grid-column: 2/3;
}
.objects__item:nth-child(4) {
  grid-column: 4/5;
}
.objects__img {
  height: 100%;
}
.objects__img img {
  width: 100%;
  height: 100%;
}

.social-networks {
  padding: 80px 0;
}
.social-networks__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-networks__right {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.social-networks__desc {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #404040;
  padding-right: 20px;
  position: relative;
  max-width: 265px;
  text-align: end;
}
.social-networks__desc::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #1397D7;
}
.social-networks__desc span {
  font-weight: 700;
}
.social-networks__telegram {
  margin-left: 10px;
}

.modal-dialog {
  max-width: 641px;
  margin-right: auto;
  margin-left: auto;
}
.modal-dialog2 {
  max-width: 400px;
}
.modal-dialog3 {
  max-width: 700px;
}
.modal-header {
  background: #F5F5F5;
  border-bottom: 2px solid #1397D7;
  padding: 30px;
}
.modal-title {
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #000000;
}
.modal-body {
  padding: 20px 30px 30px 30px;
}
.modal-body3 {
  padding: 0;
}
.modal .form__inner {
  display: flex;
  align-items: center;
}
.modal .form-group--100 {
  margin-left: 40px;
}
.modal .form-group span {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
}
.modal .form-group input {
  width: 197px;
  height: 39px;
  background: #F2F2F2;
  border: 1px solid #404040;
  padding: 0 5px;
}
.modal .form-group textarea {
  width: 340px;
  height: 123px;
  background: #F2F2F2;
  border: 1px solid #404040;
  resize: none;
  padding: 5px;
}
.modal .form-group button {
  width: 138px;
  height: 39px;
  background: #EFEFEF;
  border: 2px solid #1397D7;
  margin-left: auto;
  margin-right: auto;
}
.modal .form-group:not(:first-child) {
  margin-top: 20px;
}
.modal .form2-group input {
  width: 100%;
}

@media screen and (max-width: 1180px) {
  .foundation .swiper-button-next {
    right: 0px;
  }
  .foundation .swiper-button-prev {
    left: 0px;
  }

  .info__right {
    margin-left: 100px;
  }
  .info__items {
    gap: 10px 50px;
  }
}
@media screen and (max-width: 992px) {
  .production {
    margin-bottom: 170px;
  }
  .production__title {
    display: block;
    text-align: center;
  }
  .production__title-left div:nth-child(1) {
    font-size: 48px;
  }
  .production__title-left div:nth-child(2) {
    font-size: 16px;
  }
  .production__title-right {
    margin-top: 30px;
  }
  .production__title-right div:nth-child(1) {
    font-size: 48px;
  }
  .production__title-right div:nth-child(1) span {
    margin: 0 20px 0 0;
  }
  .production__title-right div:nth-child(2) {
    font-size: 16px;
    padding-left: 0;
  }
  .production__inner-bottom {
    padding-left: 0;
    display: block;
  }
  .production__bottom-left {
    justify-content: center;
  }
  .production__bottom-right {
    position: absolute;
    left: 50%;
    bottom: -170px;
    transform: translate(-50%, 0);
  }
  .production__bottom-info {
    justify-content: center;
  }

  .foundation {
    padding: 65px 0 95px;
  }
  .foundation__desc {
    max-width: 110px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .info {
    padding: 25px 0 65px;
  }
  .info__inner {
    display: block;
  }
  .info__left {
    text-align: right;
  }
  .info__right {
    margin-top: 30px;
    margin-left: 0;
  }
  .info__icon {
    margin-left: auto;
    text-align: start;
  }
  .info__title {
    margin-left: auto;
    margin-top: -25px;
  }
  .info__items {
    grid-template-columns: 1fr;
  }
  .info__item-desc {
    font-size: 20px;
    margin-left: 20px;
    max-width: 100%;
  }
  .info__item-desc--two {
    max-width: 100%;
  }
  .info__img img {
    width: 90px;
    height: auto;
  }

  .objects {
    padding-top: 75px;
  }
  .objects__items {
    grid-template-columns: 1fr 1fr;
  }
  .objects__item:nth-child(4) {
    grid-column: unset;
    grid-row: 3/5;
  }

  .social-networks {
    padding: 30px 0 90px;
  }
}
@media screen and (max-width: 768px) {
  .modal-header {
    padding: 15px;
  }
  .modal-title {
    font-size: 20px;
  }
  .modal-body {
    padding: 15px;
  }
  .modal-body3 {
    padding: 0;
  }
  .modal .form__inner {
    display: block;
  }
  .modal .form-group--100 {
    margin-top: 20px;
    margin-left: 0;
  }
  .modal .form-group input {
    width: 100%;
  }
  .modal .form-group textarea {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .production {
    background-image: url(../img/production-mob-min.webp);
    margin-bottom: 200px;
  }
  .production__inner-bottom {
    margin-top: 105px;
  }
  .production__info {
    font-size: 12px;
    max-width: 186px;
  }
  .production__info:not(:first-child) {
    margin-left: 0;
  }
  .production__bottom-right {
    bottom: -200px;
  }
  .production__bottom-img svg {
    width: 121px;
    height: auto;
  }
  .production__bottom-btn {
    width: 184px;
    height: 52px;
    font-size: 20px;
  }
  .production__bottom-btn2 {
    width: 226px;
    height: 52px;
    font-size: 20px;
  }

  .foundation .swiper-pagination {
    bottom: 0px;
  }
  .foundation .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .social-networks__right {
    margin-left: 40px;
  }
  .social-networks__desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .production {
    margin-bottom: 170px;
  }
  .production__title-left div:nth-child(1) {
    font-size: 35px;
  }
  .production__title-left div:nth-child(2) {
    font-size: 14px;
  }
  .production__title-right div:nth-child(1) {
    font-size: 35px;
  }
  .production__title-right div:nth-child(2) {
    font-size: 14px;
  }
  .production__bottom-right {
    bottom: -170px;
  }
  .production__bottom-img svg {
    width: 91px;
  }
  .production__bottom-btn {
    width: 138px;
    height: 39px;
    font-size: 14px;
  }
  .production__bottom-btn2 {
    width: 170px;
    height: 39px;
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .production {
    margin-top: -18px;
  }

  .foundation .swiper-pagination {
    bottom: -30px;
  }

  .info__icon {
    margin-left: unset;
    max-width: 100%;
  }
  .info__title {
    font-size: 18px;
    max-width: 100%;
    margin-top: 0;
  }
  .info__item-desc {
    font-size: 14px;
    margin-left: 10px;
  }
  .info__img img {
    width: 60px;
  }

  .social-networks__right {
    margin-left: 20px;
  }
  .social-networks__instagram svg {
    width: 30px;
    height: auto;
  }
  .social-networks__telegram svg {
    width: 30px;
    height: auto;
  }
}
