
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{margin:0;padding:0;box-sizing:border-box;}
html {
            scroll-behavior: smooth;
        }
body{font-family:Montserrat, sans-serif;}

/* Контейнер */
.container{width:62.5vw;margin:0 auto;}

.s_red{
  color: #ff4d4d !important;
}
.btn-submit{
  border: 1px solid #ff4d4d !important;
  background: transparent !important;
  position: relative;
  overflow: hidden;
  z-index: 2;
  color: #ff4d4d !important;
  transition: 0.2s;
}

.btn-submit:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ff4d4d;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.2s ;
  transform: translateY(100%);
}
.btn-submit:hover{
  color: white !important;
}
.btn-submit:hover:before{
 transform: translateY(0);

}

/* ---------------- HEADER ---------------- */
header{
    position:absolute;
    top:0;left:0;
    width:100%;
    z-index:10;
    padding:20px 0;
}

header .header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

header .logo{
    width:120px;
    height:50px;
    background:url(./img/logo.png) no-repeat center/cover;
    border-radius:6px;
}

header nav{
    display:flex;
    gap:25px;
}
header nav a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
}
header .contact, #footer .contacts{
  display: flex;

}
#footer .contacts{
  flex-wrap: wrap;
}
#footer .contacts h3{
  width: 100%;
  display: block;
}
#footer .contacts a{
  width: 1.5625vw;
  height: 1.5625vw;
  display: block;
  margin-right: 1vw;
}
header .contact a{
    width: 1.5625vw;
    height: 1.5625vw;

    display: block;
    margin-left: 1vw;
}
#tg_head{
  background: url(./img/tg.svg) no-repeat center/cover;
}
#whatsapp_head{
  background: url(./img/ws.svg) no-repeat center/cover;
}

/* ---------------- HERO 100vh ---------------- */
.welcome {
  padding: 3.125vw 0;
}
.welcome__title {
  font-size: 2.083333333333333vw;
  font-weight: 700;
  margin-bottom: 2.083333333333333vw;
}
.welcome__title span {
  color: #ff4d4d;
}

.welcome__wrapper {
  display: flex;
  align-items: stretch;
  gap: 1.041666666666667vw;
}

.welcome__col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.5625vw;
  border-radius: 1.145833333333333vw;
}

.welcome__col.bad {
  background: #111a27;
  color: #fff;
}

.welcome__col.good {
  background: linear-gradient(180deg, #7fa95b, #678c45);
  color: #fff;
}

.welcome__col h3 span {
  color: #d9534f;
}
.welcome__col h3{
  width: 100%;
  display: block;
}
.welcome__col.good h3 span {
  color: #fff;
}

.welcome__list {
  list-style: none;
  margin: 1.302083333333333vw 0;
  display: flex;
  flex-direction: column;
  gap: 0.7291666666666667vw;
  font-size: 0.8333333333333333vw;
}
.welcome__list li{
  padding: 0.4vw;
  border-radius: 0.2vw;
}
.welcome__list li:nth-child(2n){
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.2) 0%, rgba(140, 140, 140, 0) 99.04%);
}
/* Иконки */
.icon {
  display: inline-block;
  width: 1.2vw;
  height: 1.2vw;
  margin-right: 0.5208333333333333vw;
  background-size: cover;
  vertical-align: middle;
}
.icon.x {
  background: url('./img/ok.svg') no-repeat center/cover;
}
.icon.ok {
  background: url('./img/xclose.svg') no-repeat center/cover;
  filter: brightness(10);
}

.welcome__alert {
  background: rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0.78125vw;
  border-radius: 0.78125vw;
  text-align: center;
  font-size: 0.78125vw;
  bottom: 0;
  position: relative;
}

.welcome__btn {
  display: block;
  text-align: center;
  background: #fff;
  color: #3c5328;
  padding: 0.9375vw 1.041666666666667vw;
  border-radius: 0.8333333333333333vw;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1.302083333333333vw;
  font-size: 0.9375vw;
}
.welcome__btn span {
  font-weight: 400;
  font-size: 0.7291666666666667vw;
  display: block;
}

/* Картинка справа */
.welcome__image {
  width: 32%;
  border-radius: 0.8333333333333333vw;
  background-image: url('/img/soldier.png'); /* подставь свою картинку */
  background-size: cover;
  background-position: center;
}

/* ------------------ MOBILE ------------------ */
@media (max-width: 900px) {
  /* ---------------- HERO 100vh ---------------- */
  header .contact a{
    width: 7vw;
    height: 7vw;
    margin-left: 5vw;
  }
.welcome {
  padding: 60px 0;
}
.welcome__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
.welcome__title span {
  color: #4b6a2b;
}

.welcome__wrapper {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.welcome__col {
  flex: 1;
  padding: 30px;
  border-radius: 22px;
}

.welcome__col.bad {
  background: #111a27;
  color: #fff;
}

.welcome__col.good {
  background: linear-gradient(180deg, #7fa95b, #678c45);
  color: #fff;
}
.welcome__col h3{
  font-size: 0.9895833333333333vw;
}

.welcome__col h3 span {
  color: #d9534f;
}
.welcome__col.good h3 span {
  color: #fff;
}

.welcome__list {
  list-style: none;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
}

/* Иконки */
.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-size: cover;
  vertical-align: middle;
}
.icon.x {
  background: url('./img/ok.svg') no-repeat center/cover;
}
.icon.ok {
  background: url('./img/xclose.svg') no-repeat center/cover;
  filter: brightness(10);
}

.welcome__alert {
  margin-top: 1.302083333333333vw;
  background: #fff;
  color: #d9534f;
  padding: 15px;
  border-radius: 14px;
  text-align: center;
  font-size: 15px;
  bottom: 0;
  position: relative;
}

.welcome__btn {
  display: block;
  text-align: center;
  background: #fff;
  color: #3c5328;
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 25px;
  font-size: 18px;
}
.welcome__btn span {
  font-weight: 400;
  font-size: 14px;
  display: block;
}

/* Картинка справа */
.welcome__image {
  width: 32%;
  border-radius: 16px;
  background-image: url('/img/soldier.png'); /* подставь свою картинку */
  background-size: cover;
  background-position: center;
}

  .welcome__wrapper {
    flex-direction: column;
  }
  .welcome__image {
    width: 100%;
    height: 300px;
  }
  .welcome__title {
    font-size: 28px;
    text-align: center;
  }
}
#sec1{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:140px; 
    padding-bottom:60px;
    color: white;
}

/*#sec1 .flex{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
    width:100%;
}*/

/* ---- TEXT ---- */
/*#sec1 .text-box{
    flex:1;

}

#sec1 .title{
    font-weight:700;
    line-height:1.25;
    margin-bottom:20px;
    text-shadow:0 0 15px rgba(0,0,0,0.4);
    font-size: 2.395833333333333vw;
}

#sec1 .subtitle{
    font-size:22px;
    margin-bottom:30px;
    text-shadow:0 0 15px rgba(0,0,0,0.4);
}
*/
/* ---- FORM ---- */
/*.form-box{
    flex:0 0 360px;
    background:rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    padding:28px;
    border-radius:12px;
}

.form-box input{
    width:100%;
    padding:14px 15px;
    border:none;
    border-radius:6px;
    margin-bottom:15px;
    font-size:16px;
}

.form-box .btn-submit{
    width:100%;
    padding:15px;

    border-radius:6px;
    background:#ff4d4d;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.policy{
    margin-top:10px;
    font-size:13px;
    opacity:0.85;
}
.policy a{color:#fff;text-decoration:underline;}
.nav_mob{
  display: none;
}*/
/* ---------------- MOBILE ---------------- */
@media screen and (max-width: 1170px){
  .welcome__col h3{
    font-size: 19px;
  }
  .header-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .nav_mob{
    display:flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

  }
  .nav_mob a{
    color: white;
    text-decoration: none;
    margin-bottom: 1vw;
  }
  header nav{
    display: none;
  }
}
@media(max-width:900px){
    #sec1 .flex{
        flex-direction:column;
        gap:35px;
    }
    .form-box{width:100%;max-width:380px;flex:0 0 auto;}
    #sec1 .title{font-size:34px;}
    #sec1 .subtitle{font-size:18px;}
}

@media(max-width:600px){
    .container{width:90vw;}
    #sec1 .title{font-size:30px;}
}
/*- sec2 -*/
#work-path {
  padding: 5rem 0;
  background: #f8f8f8;
  text-align: center;
  background:url(./img/sef.jpg) top/cover no-repeat;
  color: white;
}

#work-path .title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

#work-path .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}

#work-path .card {
  border-radius: 14px;
  padding: 2rem 1.6rem;
  flex: 1 1 calc(25% - 1.6rem);
  /*max-width: calc(25% - 1.6rem);*/
  min-height: 210px;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

#work-path .card:hover {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

#work-path .card h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
}

#work-path .card p {
  color: white;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* последняя карточка */
#work-path .card-action {
  min-height: 300px;
  justify-content: space-between;
}

#work-path .card-action form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

#work-path .card-action input,
#work-path .card-action .btn-submit {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#work-path .card-action .btn-submit {
  background: #ff4d4d;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#work-path .card-action .btn-submit:hover {
  background: #005ec4;
}

@media(max-width:1200px){
  #work-path .card {
    flex: 1 1 calc(33% - 1.6rem);
    max-width: calc(33% - 1.6rem);
  }
}

@media(max-width:900px){
 #work-path .card {
    flex: 1 1 calc(50% - 1.6rem);
    max-width: calc(50% - 1.6rem);
  }
}

@media(max-width:600px){
  #work-path .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/*- sec3 -*/
#secWhoCan {
      padding: 80px 0;
      background: #c7c8c9;
    }

    #secWhoCan h2 {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.2rem;
      color: #222;
    }

    #secWhoCan .cards-wrapper {
      display: flex;
      justify-content: space-between;
      gap: 30px;
    }

    #secWhoCan .card {
      flex: 1 1 22%;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      min-height: 200px;
      position: relative;
      color: #333;
    }

    /* Фон сверху карточки */
    #secWhoCan .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120px;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      filter: saturate(0.4);
      
    }
    #secWhoCan .card:hover:before{
      filter: saturate(0.8);
    }
    #secWhoCan .card:nth-child(1):before{
      background: url('./img/sec2t.jpg') center top/cover no-repeat;
    }
    #secWhoCan .card:nth-child(2):before{
      background: url('./img/sec2t1.jpg') center/cover no-repeat;
    }
    #secWhoCan .card:nth-child(3):before{
      background: url('./img/sec2t2.jpg') center/cover no-repeat;
    }
    #secWhoCan .card:nth-child(4):before{
      background: url('./img/sec2t3.png') center top/cover no-repeat;
    }
    /* Отступ текста снизу */
    #secWhoCan .card p {
      position: relative;
      margin-top: 100px; /* отступ ниже верхнего фона */
      font-size: 1rem;
      line-height: 1.4;
      text-align: center;
      z-index: 1;
    }

    #secWhoCan .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }

    @media (max-width: 992px) {
      #secWhoCan .cards-wrapper {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      #secWhoCan .cards-wrapper {
        flex-direction: column;
        gap: 20px;
      }
      #secWhoCan .card {
        flex: 1 1 100%;
      }
    }
/*- sec4 -*/
#secWhoCan_ {
      padding: 80px 0;
      background: #c7c8c9;
    }

    #secWhoCan_ h2 {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.2rem;
      color: #222;
    }

    #secWhoCan_ .cards-wrapper {
      display: flex;
      justify-content: space-between;
      gap: 30px;
    }

    #secWhoCan_ .card {
      flex: 1 1 22%;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      min-height: 200px;
      position: relative;
      color: #333;
    }

    /* Фон сверху карточки */
    #secWhoCan_ .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120px;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      filter: saturate(0.4);
      
    }
    #secWhoCan_ .card:hover:before{
      filter: saturate(0.8);
    }
    #secWhoCan_ .card:nth-child(1):before{
      background: url('./img/d41.png') center/cover no-repeat;
    }
    #secWhoCan_ .card:nth-child(2):before{
      background: url('./img/d42.png') center/cover no-repeat;
    }
    #secWhoCan_ .card:nth-child(3):before{
      background: url('./img/d43.png') center/cover no-repeat;
    }
    #secWhoCan_ .card:nth-child(4):before{
      background: url('./img/d44.png') center/cover no-repeat;
    }
    /* Отступ текста снизу */
    #secWhoCan_ .card p {
      position: relative;
      margin-top: 100px; /* отступ ниже верхнего фона */
      font-size: 1rem;
      line-height: 1.4;
      text-align: center;
      z-index: 1;
    }

    #secWhoCan_ .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    }

    @media (max-width: 992px) {
      #secWhoCan_ .cards-wrapper {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      #secWhoCan_ .cards-wrapper {
        flex-direction: column;
        gap: 20px;
      }
      #secWhoCan_ .card {
        flex: 1 1 100%;
      }
    }
/*- sec5 -*/
 #secPayments { 

  padding: 60px 0;
  background: url(./img/tas.png) no-repeat center/cover; 
}
#secPayments h2 { color: white;font-size: 2rem; text-align: center; margin-bottom: 40px; }
#secPayments h3 { font-size: 1.3rem; margin-bottom: 20px; color: white; }

.tables-row { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.table-card {
  height: max-content;
  flex: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.table-wrapper { overflow-x: auto; }
td:nth-child(1){
  font-weight: bold;
}

table { width: 100%; border-collapse: collapse; color: white;}
th, td { padding: 12px 10px; text-align: left; }
th { background-color:rgba(255, 255, 255, 0.4); font-weight: 600; }
tbody tr:nth-child(even) { background-color:rgba(255, 255, 255, 0.2);}
tr th:nth-child(1){
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
tr th:nth-child(2){
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
tr td:nth-child(1){
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
tr td:nth-child(2){
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}



/* Мобильная версия */
@media(max-width: 768px){
  #secPayments h2 { font-size: 1.6rem; }
  #secPayments h3 { font-size: 1.1rem; }
  th, td { padding: 10px 8px; font-size: 14px; }
  .tables-row { flex-direction: column; gap: 20px; }
}
/*- sec6 -*/
#secWhyContract {
      padding: 60px 0 40px 0;
      background: #c7c8c9;
      font-family: Montserrat, sans-serif;
      color: #222;
    }
    #secWhyContract h2 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 40px;
      color: #222;
    }
    .text-img-wrapper {
      overflow: hidden;
    }
    .float-img {
      float: left;
      width: 40%;
      max-width: 300px;
      margin-right: 25px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    #secWhyContract h3 {
      font-size: 1.5rem;
      margin-top: 30px;
      margin-bottom: 20px;
      color: #0055aa;
    }
    #secWhyContract p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    #secWhyContract ul {
      list-style: disc;
      margin-left: 25px;
      margin-bottom: 20px;
    }
    #secWhyContract li {
      margin-bottom: 10px;
    }
    @media (max-width: 768px) {
      #secWhyContract h2 { font-size: 1.5rem; margin-bottom: 25px; }
      #secWhyContract h3 { font-size: 1.2rem; margin-bottom: 15px; }
      #secWhyContract p, #secWhyContract li { font-size: 0.95rem; }
      .float-img { float: none; display: block; width: 100%; max-width: 100%; margin: 0 0 20px 0; }
    }
/*- sec7 -*/
#secSafePlace {
      padding: 80px 0;
      background: #c7c8c9;
    }
    #secSafePlace .form-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
    }
    #secSafePlace .form-text {
      flex: 1 1 300px;
    }
    #secSafePlace .form-text h1 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    #secSafePlace .form-text span {
      color: #ff4d4d;
    }
    #secSafePlace form {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    #secSafePlace input {
      padding: 12px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
    }
    #secSafePlace .btn-submit {
      padding: 12px;
      background: #ff4d4d;
      color: #fff;
      font-size: 1rem;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }
    #secSafePlace .btn-submit:hover {
      background: #e04343;
    }
    #secSafePlace .form-.btn-submits {
      margin-top: 15px;
    }
    #secSafePlace .whatsapp-btn {
      display: inline-block;
      padding: 10px 20px;
      background: #25d366;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      transition: 0.3s;
    }
    #secSafePlace .whatsapp-btn:hover {
      background: #1ebe57;
    }

    /* Мобильная версия */
    @media (max-width: 768px) {
      #secSafePlace .form-wrapper {
        flex-direction: column;
        align-items: center;
      }
      #secSafePlace .form-text, #secSafePlace form {
        flex: 1 1 100%;
      }
      #secSafePlace .form-text h1 {
        font-size: 1.5rem;
        text-align: center;
      }
      #secSafePlace .form-text p {
        text-align: center;
      }
      #secSafePlace .form-.btn-submits {
        text-align: center;
      }
    }
/*- sec8 -*/
#footer {
      background: #1a1a1a;
      color: #fff;
      padding: 50px 0;
      font-size: 14px;
    }
    #footer .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }
    #footer .footer-block {
      flex: 1 1 200px;
    }
    #footer h3 {
      margin-bottom: 15px;
      font-size: 16px;
      color: #f5f5f5;
    }
    #footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 5px;
    }
    #footer a:hover {
      color: #fff;
    }
    #footer .contacts a, #footer .legal p {
      margin-bottom: 5px;
    }
    #footer .buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
    #footer .buttons a {
      padding: 10px 15px;
      background: #ff4d4d;
      color: #fff;
      text-align: center;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
    }
    #footer .buttons a.whatsapp {
      background: #25d366;
    }
    #footer .bottom {
      text-align: center;
      margin-top: 40px;
      color: #777;
      font-size: 12px;
    }
    @media (max-width: 768px) {
      #footer .container { flex-direction: column; align-items: center; text-align: center; }
      #footer .footer-block { flex: 1 1 100%; }
      #footer .buttons { flex-direction: row; gap: 10px; justify-content: center; }
    }







  #frst{
    background: #c7c8c9;
  }
  #frst .container{
      padding: 80px 0;
  }
  #frst h2{
    text-align: center;
      margin-bottom: 60px;
      font-size: 2.2rem;
      color: #222;
  }
  #frst .block_help{
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  #frst .hlp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .img{
      display: block;
      width: 12vw;
      height: 12vw;
      background: black;
    }
    p{
      font-size: 1.2vw;
      font-weight: 500;
      text-align: center;
      margin-top: 0.5vw;
      font-weight: bold;
      color: #222;
    }
    a{
      display: block;
      font-size: 1.2vw;
      text-decoration: underline;
      font-weight: 500;
      text-align: center;
      cursor: pointer;
      margin-top: 0.5vw;
      color: #222;
    }
  }
  #frst .hlp:nth-child(1){
    .img{
      background: url(./img/ok1.png) no-repeat center/cover;
    }
  }
  #frst .hlp:nth-child(2){
    .img{
      background: url(./img/ok2.png) no-repeat center/cover;
    }
  }

  @media screen and (max-width: 1170px){
    .block_help{
      flex-direction: column;
    }
    #frst .hlp{
      margin-bottom: 9vw;
    }
    #frst .hlp .img{
      width: 30vw;
      height: 30vw;
    }
    #frst .hlp p{
      font-size: 6vw;
    }
    #frst .hlp a{
      font-size: 6vw;
    }
    #footer .contacts{
      justify-content: center;
    }
    #footer .contacts a{
      width: 7vw;
      height: 7vw;
      margin-left: 3vw;
    }
  }