@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

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

img,
svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  color: #494A4B;
  line-height: 140%;
}

p {
  margin-top: 0;
  font-size: 18px;
  font-weight: 400;
  color: #494A4B;
  line-height: 140%;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  color: #0A3A5E;
  line-height: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #FFFFFF;
  border-radius: 1px;
}
.btn span {
  padding: 16px 25px;
  display: inline-block;
}
.btn img {
  padding: 14px 13px;
  border-left: 2px solid #0A3A5E;
}

.btn-form-wrap .btn span {
  padding: 0px;
}
.btn-form-wrap .btn .hover-connect {
  display: none;
}
.btn-form-wrap .btn .no-hover-connect {
  display: none;
}
.btn-form-wrap .btn:hover .hover-connect {
  display: none;
  background: #FFFFFF;
}
.btn-form-wrap .btn:hover .no-hover-connect {
  display: none;
}

.btn-grey {
  background: rgba(10, 58, 94, 0.1);
  border: 1px solid #0A3A5E;
  padding: 12px 16px;
  color: #0A3A5E;
}
.btn-grey:hover {
  background: #0A3A5E;
  border-radius: 1px;
  color: #FFFFFF;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
  }
}
@media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1680px;
  }
}
/* Пользовательские стили */
/* Хедер */
header {
  font-size: 18px;
  font-weight: 400;
  color: #494A4B;
  line-height: 140%;
  position: absolute;
  width: 100%;
  padding: 24px 0;
}

.no-main-page {
  position: initial;
  background: #0A3A5E;
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banner {
  min-height: 800px;
  height: 800px;
  background-image: url("../img/bg_banner.jpg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 97px;
}

.mobile-banner, .sup-mobile-banner {
  display: none;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
}

nav li:not(:last-child) {
  margin-right: 16px;
}

header a {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 140%;
}

.title-banner h1 {
  font-size: 46px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 130%;
  text-transform: uppercase;
  width: 50%;
  margin-bottom: 24px;
}

.text-banner ul {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  padding-left: 28px;
  margin-bottom: 32px;
}

.text-after-btn {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  opacity: 0.9;
  margin-top: 24px;
}

/* О компании */
section {
  padding-top: 95px;
}

.wrap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}

.subtitle {
  -ms-flex-preferred-size: calc(25% - 20px);
      flex-basis: calc(25% - 20px);
  margin-right: 20px;
}

.title {
  font-size: 34px;
  font-weight: 450;
  color: #232729;
  line-height: 120%;
  letter-spacing: -0.8px;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}
.title span {
  color: #0A3A5E;
  font-style: italic;
}

.section-info {
  width: 75%;
  margin-left: auto;
}

.text-section {
  font-size: 18px;
  font-weight: 400;
  color: #534D4D;
  line-height: 140%;
  margin-bottom: 32px;
  width: 65%;
}
.text-section span {
  color: #113D5D;
  font-style: italic;
}

.advantages-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.advantage {
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
}

.advantage:not(:last-child) {
  margin-right: 20px;
}

.adv-numb {
  font-size: 80px;
  font-weight: 450;
  color: #0A3A5E;
  line-height: 120%;
}

.adv-text {
  font-size: 18px;
  font-weight: 400;
  color: #353131;
  line-height: 140%;
}

.gallery-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.image a {
  position: relative;
  display: inline-block;
}
.image a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/zoom.svg") no-repeat center center;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.image a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(10, 58, 94, 0.5)), to(rgba(10, 58, 94, 0.5)));
  background: linear-gradient(0deg, rgba(10, 58, 94, 0.5), rgba(10, 58, 94, 0.5));
  opacity: 0;
  -webkit-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
  border-radius: 4px;
}
.image a:hover:before,
.image a:hover:after {
  opacity: 1;
}
.image a:hover .hover-gallery {
  display: inline-block;
}

.img-sq a:after,
.img-sq a:hover:before,
.img-sq a:hover:after {
  border-radius: 100%;
}

.image:not(:last-child) {
  margin-right: 20px;
}

.image img {
  width: 100%;
  border-radius: 4px;
}

.hover-gallery {
  display: none;
  position: absolute;
  left: 0;
}

.slider-arrows {
  display: none;
}

/* Реализованные поставки */
.implemented-deliveries {
  padding-bottom: 550px;
}

.map-bg {
  width: 100%;
  position: absolute;
  z-index: -1;
}

.map-bg-mobile {
  display: none;
}

/* Продукция */
.wrap-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product:not(:last-child) {
  margin-right: 30px;
}

.img-pr img {
  width: 100%;
  border-radius: 2px;
}

.title-pr {
  font-size: 18px;
  font-weight: 400;
  color: #1E1B1B;
  line-height: 140%;
  margin: 16px 0;
}

/* Связаться с нами */
.connect-with-us {
  margin-top: 95px;
  padding-bottom: 95px;
  background: url("../img/bg-connect.jpg");
}

.connect-with-us .title {
  color: #FFFFFF;
}

.connect-with-us .subtitle {
  color: #FFFFFF;
  opacity: 0.7;
}

.form-connect {
  margin-bottom: 50px;
  width: 65%;
}

.inputs-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.inputs-two > div {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.inputs-two > div:not(:last-child) {
  margin-right: 30px;
}

input, textarea {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  opacity: 0.8;
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  padding: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  font-family: "Inter", sans-serif;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  font-family: "Inter", sans-serif;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  font-family: "Inter", sans-serif;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  font-family: "Inter", sans-serif;
}
input::placeholder, textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  font-family: "Inter", sans-serif;
}

textarea {
  -webkit-transition: 0s;
  transition: 0s;
  resize: vertical;
  min-height: 100px;
}

.input-one {
  margin-bottom: 32px;
}

.btn-form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-form .btn {
  padding: 16px 49px;
}

.agree-main {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 150%;
  opacity: 0.8;
  margin-left: 24px;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.name-profile {
  margin-bottom: 8px;
}
.name-profile h2 {
  font-size: 34px;
  font-weight: 450;
  color: #FFFFFF;
  line-height: 120%;
  font-style: italic;
  letter-spacing: -0.8px;
}

.job-title-profile {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  opacity: 0.7;
}

.img-profile {
  margin-right: 32px;
}

/* Услуги */
.services {
  position: relative;
}

.btn-section .btn {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #0A3A5E;
  border-radius: 1px;
}
.btn-section .btn span {
  padding: 16px 25px;
  display: inline-block;
}
.btn-section .btn img {
  padding: 14px 13px;
  border-left: 2px solid #FFFFFF;
}

.service-bg {
  width: 100%;
  margin-top: 50px;
}

.service-bg-mobile {
  display: none;
}

/* Документы */
.image .img {
  width: 200px;
  border: 2px solid #EBF0F4;
  border-radius: 6px;
}

/* Контакты */
.tel-contacts {
  margin-bottom: 38px;
}
.tel-contacts a {
  font-size: 80px;
  font-weight: 400;
  color: #0A3A5E;
  line-height: 120%;
  font-style: italic;
  display: inline-block;
}
.tel-contacts p {
  color: #534D4D;
}

.email-contacts a {
  font-size: 34px;
  font-weight: 450;
  color: #0A3A5E;
  line-height: 120%;
}
.email-contacts p {
  color: #534D4D;
}

.map {
  margin-top: 50px;
}

/* Футер */
footer {
  padding: 65px 0 24px;
  background: url("../img/bg-footer.jpg");
}
footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .container > div {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.wrap-footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrap-footer-block:not(:last-child) {
  margin-right: 20px;
}
.wrap-footer-block p, .wrap-footer-block a {
  color: #F7F6F6;
}
.wrap-footer-block p:not(:last-child), .wrap-footer-block li:not(:last-child) {
  margin-bottom: 16px;
}

.wrap-footer-block-mobile {
  display: none;
}

.copyright {
  font-size: 18px;
  font-weight: 400;
  color: #F7F6F6;
  line-height: 140%;
}

.menu-footer {
  list-style-type: none;
}

.private-policy {
  margin-top: 111px;
}

.copyright, .private-policy, .partner {
  opacity: 0.8;
}

.partner {
  text-align: right;
}

/* попап форма */
.form-wrap {
  padding: 40px;
  background: #01345a;
  border-radius: 2px;
}

.fancybox-slide--html .fancybox-close-small {
  position: absolute;
  right: -47px;
  background: #01345a;
  border-radius: 2px;
  color: #fff;
  padding: 4px;
  opacity: 1;
}

.fancybox-content {
  overflow: visible;
}

.title-form {
  margin-bottom: 16px;
}
.title-form h2 {
  font-size: 46px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 130%;
  text-transform: uppercase;
}

.desc-form {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  opacity: 0.9;
  margin-bottom: 32px;
}

.name-contact {
  margin-bottom: 30px;
}

.tel-contact, .message-contact {
  margin-bottom: 16px;
}

.date-contact {
  margin-bottom: 32px;
}

.btn-contact .btn-form .btn {
  padding: 0px;
}
.btn-contact .agree-main {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 150%;
  margin-top: 24px;
  margin-left: 0px;
}

/* попап продукт */
.img-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.img-form .img-wrap-form:not(:last-child) {
  margin-right: 14px;
}
.img-form img {
  width: 100%;
}

.text-form-wrap {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
  margin-bottom: 32px;
}
.text-form-wrap p {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 140%;
}
.text-form-wrap ul {
  padding-left: 28px;
}
.text-form-wrap ul li:not(:last-child) {
  margin-bottom: 10px;
}
.text-form-wrap > *:not(:last-child) {
  margin-bottom: 10px;
}

.btn-products .btn-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn-products .btn-form a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.btn-products .btn-form a:not(:last-child) {
  margin-right: 24px;
}

/* 404 страница */
#error_page {
  padding: 55px 0;
}

.error-body {
  text-align: center;
}

.title-danger {
  font-size: 312px;
  font-weight: 700;
  color: #232729;
  line-height: 140%;
  margin-bottom: 10px;
}

.text-danger {
  font-size: 34px;
  font-weight: 450;
  color: #353131;
  line-height: 120%;
  letter-spacing: -0.8px;
  margin-bottom: 32px;
}

/* Медиа */
@media (max-width: 1600px) {
  .map-bg {
    margin-top: 200px;
  }
}
@media (max-width: 1400px) {
  .implemented-deliveries {
    padding-bottom: 350px;
  }
}
@media (max-width: 1200px) {
  .menu-header {
    display: none;
  }
  .title-banner h1 {
    width: 80%;
  }
  .text-section {
    width: 100%;
  }
  .form-connect {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .title-banner h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .text-banner ul {
    font-size: 16px;
  }
  .implemented-deliveries {
    padding-bottom: 0px;
  }
  .map-bg {
    display: none;
  }
  .map-bg-mobile {
    display: block;
    width: 100%;
  }
  .wrap-products, .gallery-wrap {
    margin: 0 -20px;
  }
  .product, .image {
    margin: 0 20px;
  }
  .product:not(:last-child), .image:not(:last-child) {
    margin-right: 20px;
  }
  .slider-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
  }
  .slider-arrows .prev-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-right: 8px;
  }
  .slider-arrows .slick-disabled {
    opacity: 0.4;
  }
  .slider-arrows img {
    padding: 6px;
    background: rgba(10, 58, 94, 0.1);
    border: 1px solid #0A3A5E;
    border-radius: 2px;
  }
  .wrap-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subtitle {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .section-info {
    width: 100%;
  }
  .text-section, .adv-text {
    font-size: 16px;
  }
  .advantages-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 32px;
  }
  .advantage:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .adv-numb {
    font-size: 64px;
  }
  .title {
    font-size: 24px;
  }
  .tel-contacts a {
    font-size: 34px;
  }
  .tel-contacts p, .email-contacts p {
    font-size: 16px;
  }
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .wrap-footer-block:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .copyright, .private-policy, .partner {
    display: none;
  }
  .wrap-footer-block-mobile {
    display: block;
  }
  .wrap-footer-block-mobile .copyright, .wrap-footer-block-mobile .private-policy, .wrap-footer-block-mobile .partner {
    display: block;
  }
  .wrap-footer-block-mobile .private-policy {
    margin-top: 20px;
  }
  .wrap-footer-block-mobile .private-policy a {
    color: #F7F6F6;
  }
  .wrap-footer-block-mobile .partner {
    text-align: center;
    margin-top: 20px;
  }
  .wrap-footer-block-mobile .partner a {
    color: #F7F6F6;
  }
}
@media (max-width: 767px) {
  section {
    padding-top: 80px;
  }
  .connect-with-us {
    padding-bottom: 80px;
  }
  .mobile-banner {
    display: block;
    width: 100%;
  }
  .wrap-banner {
    position: relative;
  }
  .banner {
    min-height: auto;
    height: auto;
    background: none;
    position: absolute;
  }
  header {
    position: absolute;
  }
  .number-header {
    display: none;
  }
  .wrap-products, .gallery-wrap {
    margin: 0 -5px;
  }
  .product, .image {
    margin: 0 5px;
  }
  .product:not(:last-child), .image:not(:last-child) {
    margin-right: 5px;
  }
  .fancybox-slide--html .fancybox-close-small {
    right: 0px;
  }
  .service-bg {
    display: none;
  }
  .service-bg-mobile {
    display: block;
    width: 100%;
    margin-top: 32px;
  }
  .title-danger {
    font-size: 100px;
  }
  .text-danger {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .connect-with-us {
    padding: 20px 0;
  }
  .profile {
    display: none;
  }
  .inputs-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .inputs-two > div:not(:last-child) {
    margin-right: 0px;
  }
  .inputs-two > div {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .name-main {
    margin-bottom: 20px;
  }
  .btn-form-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .btn-form-wrap .agree-main {
    margin-left: 0px;
    margin-top: 20px;
  }
  .btn-form-wrap img {
    display: block;
  }
  .btn-form-wrap .btn span {
    padding: 16px 25px;
  }
  .btn-form-wrap .btn-form .btn {
    padding: 0px;
  }
  .image a {
    width: 100%;
  }
  .title-form h2 {
    font-size: 34px;
  }
  .btn-form-wrap .btn .no-hover-connect {
    display: block;
  }
  .btn-form-wrap .btn:hover .no-hover-connect {
    display: block;
  }
}
@media (max-width: 530px) {
  .mobile-banner {
    display: none;
  }
  .sup-mobile-banner {
    display: block;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .title-banner h1 {
    font-size: 18px;
  }
}

#nca-cookiesaccept-line-accept-btn {
	background: #FFF;
    border: 1px solid #0A3A5E;
    padding: 12px 16px;
    color: #0A3A5E;
	font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
	cursor: pointer;
}

.grecaptcha-badge {
	visibility: hidden;
}