@font-face {
    font-family: Calibri;
    src: url(/__IntelRobots/font/calibri.ttf);
}
* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
    font-family: Calibri;
}
header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    background-color: white;
    z-index: 999999999;
    top: 0;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* можно уменьшить/увеличить */
}
nav {
    font-size: 18px;
    width: 90vw;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0px;
}
.logo__ins {
    display: flex;
    align-items: center;    
}
.logo__ins p {
    font-size: 20px;
    font-weight: 900;
    margin-left: 20px;
}
.logo__ins img {
    width: 50px;
}
.menu__nav {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
    padding: 0;
    gap: 30px;
    align-items: center;
}
.menu__nav li {
    text-align: center;
}
.menu__nav li a {
    text-decoration: none;
    color: black;
    position: relative;
    padding-bottom: 5px;
}
.menu__nav li:not(:last-child) a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: rgb(102, 176, 240);
    transition: width 0.3s ease;
}
.menu__nav li a:hover::after {
    width: 100%;
}
.menu__nav_partners  {
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 10px;
}
.main__page {
    position: relative;
    padding-top: 150px;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
.main__page::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 0;
    width: 50vw;
    height: 500px;
    background-color: #71c3f3;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    z-index: 0;
}
.main__page_content {
    display: flex;
    max-width: 1400px;
    height: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
.main__page_content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70vw;
    padding-left: 20px;
}
.main__page_content-text h1 {
    font-weight: 900;
    font-size: 45px;
    line-height: 35px;
    margin-bottom: 30px;
}
.main__page_content-text p {
    width: 400px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.main__page_content-img {
    display: flex;
    align-items: center;
    
}
.main__page_content-img img {
    width: 50vw;
    max-width: 600px;
    border-radius: 50px;
    padding: 0px 20px;
}
.playbtn_1 a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}
.playbtn_1 a i {
    font-size: 48px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.playbtn_1 a p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: black;
    transition: 0.2s;
}
.playbtn_1 a:hover p {
    color: rgba(0, 0, 0, 0.6) 
}

.problems__solutions {
    display: flex;
    align-items: center;
    justify-content: center;
}
.problems__solutions-container {
    margin-top: 100px;
    max-width: 1400px;
    width: 100%;
    display: flex;  
    align-items: center;
    justify-content: center;
}
.problems__solutions-container-column-1 h2,
.problems__solutions-container-column-2 h2 {
    text-align: center;
    font-size: 35px;
    padding: 0px 20px;
}

.psc-card {
    min-width: 300px;
    max-width: 600px;
    min-height: 300px;
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
    background: #EEEEEE;
}
.psc-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 900;
}
.psc-card ul li {
   font-size: 22px;
   font-weight: 500;
}


.how-it-works {
    display: flex;
    align-items: center;
    justify-content: center;
}
.how-it-works-container {
    margin-top: 100px;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}
.how-it-works-container h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
}
.hiw-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 карточки в ряд */
    gap: 20px;
    padding: 0px 20px;
    margin: 0;
    list-style: none;
}
.hiw-card {
    background: #F7F7F7;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    max-width: 600px;
}
.hiw-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.hiw-header span {
    margin-right: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #66B0F0;
    color: white;
    font-weight: bold;
    font-size: 30px;
}
.hiw-card p {
    font-size: 22px;
    font-weight: 500;
}
.demonstration {
    overflow: visible;
  }
.demonstration-container {
    text-align: center;
    margin-top: 50px;
}
.demonstration-container h2 {
    margin-bottom: 50px;
}
.demonstration-container-ins {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.demonstration-container-ins::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background-color: #51A8E2;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
    z-index: 1;
  }
  
.dialog-box {
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}
.dialog-box p {
    font-size: 22px;
    color: black;
    font-weight: 600;
}
  

.demonstration-audio {
    max-width: 1400px;
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: space-between;
}
#myAudio {
    display: none;
}
.audio-list {
    padding: 0;
    min-width: 50vw;
}
.audio-list li {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 10px 0px;
    width: 500px;
    
  }
  
  .audio-list li p {
    margin: 0;
    padding-left: 15px;
    font-size: 22px;
    font-weight: 600;
  }
  
  .play-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .play-btn i {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    font-size: 48px;
    color: rgb(152, 204, 253);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }
  
  /* Hover-эффект */
  .play-btn i:hover {
    color: #0099cc;
  }

.for-who {
    display: flex;
    align-items: center;
    justify-content: center;
}
.for-who-container {
    margin-top: 100px;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}
.for-who-container h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
}
.for-who-container-text {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    width: 600px;
    margin-right: auto; 
    gap: 30px; 
    box-sizing: border-box;
    margin-bottom: 30px;
    padding-left: 50px;
}
.for-who-container-text-img img {
    width: 150px;
}
.for-who-container-text p {
    font-size: 22px;
    font-weight: 600;
}

.fw-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
  }
  
  .fw-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 400px;
    height: 300px;
    background: #EEEEEE;
    border-radius: 12px;
  }
  
  .fw-cards-wrapper .fw-card:nth-child(1),
  .fw-cards-wrapper .fw-card:nth-child(2),
  .fw-cards-wrapper .fw-card:nth-child(3) {
    order: 1;
  }
  
  .fw-cards-wrapper .fw-card:nth-child(4),
  .fw-cards-wrapper .fw-card:nth-child(5) {
    order: 2;
  }
.fw-card img {
    width: 100px;
    margin: 20px 0px;
}
.fw-card p {
    font-size: 22px;
    font-weight: 600;
}
.join-model {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.join-model-container {
    margin-top: 100px;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px 0px;
}
.join-model-table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    width: 900px;
    background-color: #66B0F0;
}
.join-model-table ul {
    padding: 0;
    list-style: none;
    
}
.join-model-table ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}
.join-model-table ul li img {
    width: 50px;
    margin: 10px 0px;
}
.join-model-table ul li p {
    font-size: 22px;
    font-weight: 600;
}
.join-model-table-button {
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-model-table-button a {
    color: black;
    display: inline-block;
    background-color: white; 
    text-decoration: none;
    font-weight: bold;
    padding: 12px 50px;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  }
  
  .join-model-table-button a:hover {
    background-color: rgba(255, 255, 255, 0.762);
  }
.documents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.documents-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px 0px;
}
.documents h2 {
    margin-top: 100px;
}
.documents-container-buttons a {
    display: flex;
    align-items: center;
    margin: 20px 0px;
    color: black;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding-left: 20px;
}
.documents-container-buttons a p {
    margin-right: 10px;
}
.documents-container-img img {
    width: 300px;
    transform: scaleX(-1);
}
.contactform {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;          /* я добавил */
}
.contactform-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px 0px;
}
.contactform-container h2 {
    margin-top: 100px;
}

.yandex_form {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
}

.contact-form {
    width: 60vw;
    border: 1px solid black;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
  }
  
  .form-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .form-row label {
    flex: 0 0 300px;
    font-weight: 600;
    font-size: 22px;
    text-align: right;
    margin-right: 20px;
  }
  
  .form-row input {
    flex: 1;
    padding: 8px 12px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: left;
  }
  
  .form-row.full-width {
    margin-top: 30px;
    justify-content: center;
  }
  
  .form-row.full-width button {
    padding: 12px 24px;
    font-size: 22px;
    font-weight: 600;
    background-color: #66B0F0;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  }
  
  .form-row.full-width button:hover {
    background-color: #66b0f0cd;
  }
.form-contact-us {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.form-contact-us h3 {
    margin-bottom: 10px;
}
.form-contact-us-ins {
    display: flex;
    align-items: center;
}
.form-contact-us-ins i {
    font-size: 50px;
    margin-right: 10px;
}
.form-contact-us-ins a {
    font-size: 22px;
    text-decoration: none;
    color: black;
    font-weight: 600;
}
footer {
    display: flex;
    align-items: center;
    justify-content: center;

}
.footer-container {
    border-radius: 20px 20px 0px 0px;
    background-color: #66B0F0;
    margin-top: 100px;
    max-width: 1400px;
    width: 100%;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}
.footer-main-line {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}
.footer-main-line div h3 {
    color: white;
    margin-bottom: 10px;
}
.line-1-contacts {
    display: flex;
    align-items: center;
}
.line-1-contacts i {
    font-size: 30px;
    margin-right: 10px;
}
.line-1-contacts a {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: 600;
}
.line-1-contacts-button a {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    background-color: white;
    color: black;
    border-radius: 20px;
    text-transform: uppercase;
    padding: 10px 30px;
    margin: 15px 0px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.line-1-contacts-button a:hover {
    background-color: rgba(255, 255, 255, 0.762);

}
.footer-line-1 p {
    font-size: 22px;
    font-weight: 600;
}
.footer-line-1 p a {
    color: black;
}
.footer-line-2 h3 {
    text-align: right;
}
.footer-line-2-docs {
    text-align: right;
    display: flex;
    flex-direction: column;
}
.footer-line-2-docs a {
    margin: 10px 0px;
    color: black;
    font-size: 22px;
    font-weight: 600;
}
.footer-2nd-line {
    background-color: #5B9BD4;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
}
.footer-2nd-line p {
    font-size: 18px;
    font-weight: 600;
    color: white;
}
#formMessage {
    height: 30px;
    font-size: 22px;
    font-weight: 600;
}
#demo,
#connection,
#contact-us,
#partners-contact {
    scroll-margin-top: 100px;
}


/*меню бургер*/
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    background-color: black;
    border-radius: 2px;
    transition: 0.3s;
}
.burger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/*PARTNERS*/
.main__page_content-text span {
    color: #ffffff;
}
.playbtn_1_partner {
    display: none;
}
.problems__solutions.partners {
    flex-direction: column;
    margin-top: 50px;
}
.problems__solutions-container.problems__solutions-container-partners {
    margin-top: 50px;
}
.psc-card.partners ul {
    list-style: none;
}
.psc-card-partners-header {
    display: flex;
    align-items: center; 
    gap: 10px; 
    padding: 10px;
}
.psc-card-partners-header h3 {
    margin: 0;
    padding: 0;
}
.psc-card-partners-header img {
    height: 60px; 
    width: auto;
    display: block;
}
.join-model-table.partners {
    align-items: flex-start;
    max-width: 800px;
    padding-left: 50px;
    margin: 0px 20px;
}
.join-model-table.partners ul li  {
    margin: 10px 0px;
}
.join-model-table.partners h3 {
    color: #ffffff;
    margin-bottom: 20px;
}
.circle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgb(102, 176, 240); /* светло-голубой */
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 30px;
  flex-shrink: 0; 
}
.dialog-box.partners h2 {
    margin: 0;
}
.buttons__contact.partners {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buttons__contact.partners a {
    padding: 10px 30px; 
    text-decoration: none;
    font-size: 30px;
    margin: 0px 20px;
    border-radius: 30px;
    background-color: rgb(102, 176, 240); /* светло-голубой */
    color: #ffffff;
    font-weight: 600;
}
.buttons__contact.partners a:nth-child(2) {
    color: black;
}
.for-who.partners {
    flex-direction: column;
    margin-top: 50px;    
}
.for-who-container.partners {
    margin: 0;
    align-items: flex-start;

}
.faq__items.partners {
    margin-top: 50px;
    padding: 0px 20px;
}
.faq__item.partners {
    display: flex;
    padding: 20px;
    max-width: 600px;
    min-height: 200px;
    background-color: #F7F7F7;
    border-radius: 30px;
    align-items: center;

}
.faq__item.partners:not(:first-child) {
    margin-top: 20px;
}
.faq__items.partners img {
    height: 60px; 
    width: auto;
    display: block;
    margin-right: 20px;
}
.faq__item.partners h4 {
   font-size: 28px; 
   margin-bottom: 10px;
}
.faq__item.partners p {
    font-size: 22px;
}
.documents-container-buttons.partners {
    margin-right: 20px;
}
.for-who.partners.share h2 {
    max-width: 70%;
    text-align: center;
}
.faq__item.partners.share {
    min-height: auto;
}

























h2 {
    font-size: 35px;
}
h3 {
    font-size: 30px;
    font-weight: 900;    
}

@media (max-width: 1240px) {
        .burger {
        display: flex;
    }

    .menu__nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .menu__nav.active {
        display: flex;
    }

    .menu__nav li {
        margin-bottom: 15px;
    }
}
@media (max-width: 1000px) {
    .main__page::before {   
        width: 90vw; /*мзменил*/
        height: 380px; /*мзменил*/
    }
    .main__page_content {
        flex-direction: column; /*изменил*/
        height: auto; /*мзменил*/
      }
    .main__page_content-text {
        width: 80%;
        padding-top: 40px; /*мзменил*/
    }
    .main__page_content-text h1 {
        font-size: 40px;
    }
    .main__page_content-img {
        justify-content: center; /*изменил*/
        margin-top: 80px; /*изменил*/
        
    }
    .main__page_content-img img {
        width: 80vw; /*изменил*/
        max-width: 800px; /*изменил*/
    }
    .problems__solutions-container {
        flex-direction: column;
    }
    .psc-card {
        min-height: auto;
        height: auto;
    }
    .hiw-cards {
        grid-template-columns: repeat(1, 1fr); /* 2 карточки в ряд */
    }
    .demonstration-container-ins {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
      
    .demonstration-container-ins::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 95vw;
        height: 35%; /*изменил*/
        background-color: #51A8E2;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
        z-index: 1;
      }
      
    .dialog-box {
        display: flex;
        flex-direction: column;
        color: white;
        justify-content: center; /*изменил*/
        align-items: flex-end; /*изменил*/
        text-align: right; /*изменил*/
        margin-bottom: 30px; /*изменил*/
    }
    .dialog-box p {
        font-size: 22px;
        color: black;
        font-weight: 600;
    }
    .demonstration-audio {
        max-width: 1400px;
        display: flex;
        flex-direction: column-reverse; /*изменил*/
        position: relative;
        align-items: center; /*изменил*/
        z-index: 2;
    }
    .for-who {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .for-who-container {
        margin-top: 100px;
        max-width: 1400px;
        width: 100%;
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center;
    }
    .for-who-container h2 {
        text-align: center;
        font-size: 35px;
        margin-bottom: 20px;
    }
    .for-who-container-text {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%; /*изменил*/
        margin-right: auto;
        gap: 30px;
        box-sizing: border-box;
        margin-bottom: 30px;
        padding: 0px 50px; /*изменил*/
    }
    .for-who-container-text-img img {
        width: 100px; /*изменил*/
    }
    .join-model-table {
        max-width: 90vw; /*изменил*/
        width: auto; /*изменил*/
    }


    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row label {
        flex: none;
        margin-bottom: 6px;
        text-align: left;
    }
    
    .form-row input {
        text-align: left;
        font-size: 17px;
    }
    #formMessage {
        height: 60px;
        color: rgba(0, 0, 0, 0.762);
        font-size: 17px;
    }
    .footer-container {
        border-radius: 0px; /*изменил*/
        margin-top: 50px; /*изменил*/
    }
    /*PARTNERS*/
    .main__page_content-img.partners  {
        margin-top: 150px;
    }
    .main__page_content-img.partners img {
        max-width: 600px;
    }
    .demonstration-audio.partners ul {
        margin-top: 50px;
    }

    .dialog-box.partners {
        align-items: center;
        justify-content: center;
        
    }
    .dialog-box.partners h2 {
        padding-top: 60px;
    }
}





@media (max-width: 790px) {
    .buttons__contact.partners {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 700px) {
    .main__page_content-text h1 {
        font-size: 35px; /*изменил повторно*/
    }
    .main__page_content-text p {
        width: 70vw; /*изменил повторно*/
    }
    .main__page_content-img {
        justify-content: center; /*изменил*/
        margin-top: 80px; /*изменил*/
        
    }
    .main__page_content-img img {
        width: 80vw; /*изменил*/
        max-width: 800px; /*изменил*/
    }
    .problems__solutions-container {
        flex-direction: column;
    }
    .psc-card {
        min-height: auto;
        height: auto;
    }
    .hiw-cards {
        grid-template-columns: repeat(1, 1fr); /* 2 карточки в ряд */
    }
    .demonstration-container-ins {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
      
    .demonstration-container-ins::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 95vw;
        height: 35%; /*изменил*/
        background-color: #51A8E2;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
        z-index: 1;
      }
      
    .dialog-box {
        display: flex;
        flex-direction: column;
        color: white;
        justify-content: center; /*изменил*/
        align-items: flex-end; /*изменил*/
        text-align: right; /*изменил*/
        margin-bottom: 30px; /*изменил*/
    }
    .dialog-box p {
        font-size: 22px;
        color: black;
        font-weight: 600;
    }
    .demonstration-audio {
        max-width: 1400px;
        display: flex;
        flex-direction: column-reverse; /*изменил*/
        position: relative;
        align-items: center; /*изменил*/
        z-index: 2;
    }
    .for-who {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .for-who-container {
        margin-top: 100px;
        max-width: 1400px;
        width: 100%;
        display: flex;
        flex-direction: column; 
        align-items: center;
        justify-content: center;
    }
    .for-who-container h2 {
        text-align: center;
        font-size: 35px;
        margin-bottom: 20px;
    }
    .for-who-container-text {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%; /*изменил*/
        margin-right: auto;
        gap: 30px;
        box-sizing: border-box;
        margin-bottom: 30px;
        padding: 0px 50px; /*изменил*/
    }
    .for-who-container-text-img img {
        width: 100px; /*изменил*/
    }
    .join-model-table {
        max-width: 90vw; /*изменил*/
        width: auto; /*изменил*/
    }
    .contact-form {
        width: 80vw; /*изменил*/
    }
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row label {
        flex: none;
        margin-bottom: 6px;
        text-align: left;
    }
    
    .form-row input {
        text-align: left;
        font-size: 17px;
    }
    .footer-container {
        border-radius: 0px; /*изменил*/
        margin-top: 50px; /*изменил*/
    }
    .footer-main-line div h3 {
        font-size: 20px; /*изменил повторно*/
    }
    .line-1-contacts a,
    .line-1-contacts-button a,
    .footer-line-1 p,
    .footer-line-1 p a,
    .footer-line-2-docs a,
    .footer-2nd-line p {
        font-size: 17px; /*изменил повторно*/
    }

    

}
@media (max-width: 559px) {
    .main__page::before {   
        height: 450px; /*изменил повторно повторно*/
    }
    .main__page_content-text h1 {
        font-size: 28px; /*изменил повторно повторно*/
        width: 80vw; /*изменил повторно повторно*/
        height: 100px; /*изменил повторно повторно*/

    }
    .main__page_content-text-p {
        height: 150px; /*изменил повторно повторно*/
    }
    .main__page_content-img {
        margin-top: 80px; /*изменил*/
        
    }
    .main__page_content-img img {
        width: 90vw; /*изменил повторно повторно*/
    }
    .problems__solutions-container {
        flex-direction: column;
    }
    .psc-card {
        min-height: auto;
        height: auto;
    }
    .hiw-cards h3 {
        font-size: 20px; /*изменил повторно повторно*/
    }
    .hiw-header span {
        margin-right: 15px; /*изменил повторно повторно*/
        width: 50px; /*изменил повторно повторно*/
        height: 50px; /*изменил повторно повторно*/
        padding: 0px 20px; /*изменил повторно повторно*/
        font-size: 20px; /*изменил повторно повторно*/
    }
    .demonstration-container-ins {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
      
    .demonstration-container-ins::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 95vw;
        height: 35%; /*изменил*/
        background-color: #51A8E2;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
        z-index: 1;
    }
    .audio-list li {
        width: auto; /*изменил повторно повторно*/
        padding: 0px 10px; /*изменил повторно повторно*/
    }
    .audio-list li p {
        font-size: 17px; /*изменил повторно повторно*/
    }
      
    .dialog-box {
        padding-right: 20px; /*изменил повторно повторно*/
    }
    .dialog-box h2 {
        font-size: 25px; /*изменил повторно повторно*/
    }
    .dialog-box p {
        font-size: 20px; /*изменил повторно повторно*/
        width: 75vw;
    }
    .for-who-container-text {
        flex-direction: column; /*изменил повторно повторно*/
        padding: 0px 20px; /*изменил повторно повторно*/
        text-align: center; /*изменил повторно повторно*/
    }
    .fw-card {
        width: auto; /*изменил повторно повторно*/
        height: auto; /*изменил повторно повторно*/
        margin: 0px 20px; /*изменил повторно повторно*/
    }
  
  
    .fw-card img {
        width: 80px; /*изменил повторно повторно*/
    }
    .join-model-table ul li {
        margin: 20px 0px; /*изменил повторно повторно*/
    }
    .documents h2 {
        text-align: center; /*изменил повторно повторно*/
    }
    .documents-container {
        flex-direction: column; /*изменил повторно повторно*/
    }
    .documents-container-buttons {
        padding: 0px 20px; /*изменил повторно повторно*/
    }
    .documents-container-buttons a p {
        text-align: left; /*изменил повторно повторно*/
    }
    .documents-container-img img {
        width: 200px; /*изменил повторно повторно*/
    }
    .form-contact-us h3 {
        text-align: left;
    }
    .form-contact-us-ins i {
        font-size: 30px;
    }
    .form-contact-us-ins a {
        font-size: 20px;
    }
    .footer-main-line {
        flex-direction: column;
        align-items: center;
    }
    .footer-line-1,
    .footer-line-2,
    .footer-line-2 h3,
    .footer-line-2-docs {
        text-align: center;
    }
    .footer-line-2 {
        margin-top: 20px;
    }


    /*PARTNERS*/
    h2 {
        padding: 0px 10px;
    }
   .psc-card-partners-header h3 {
        font-size: 22px;
   }
   .buttons__contact.partners a {
        font-size: 22px;
   }
   .for-who.partners {
    text-align: center;
   }
   .faq__items_text h4 {
    font-size: 22px;
   }
   .faq__items_text p {
    font-size: 20px;
   }
}
@media (max-width: 450px) {
    .faq__item.partners {
        flex-direction: column;
    }
    .dialog-box.partners h2 {
        margin-left: 25px;
    }
}