@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap');
/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

    *, *:before, *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

nav, footer, header, aside {
    display: block;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input, button, textarea {
    font-family: inherit;
}

    input::-ms-clear {
        display: none;
    }

button {
    cursor: pointer;
}

    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

a, a:visited {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
}
/*--------------------*/

/* Main style */

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
}

.main-content {
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 1 0 auto;
}

footer {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
}


html, body {
    font-family: "Golos Text";
    background: #F0F5FB;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

h2 {
    color: #373C59;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}


/* лоадер отправки формы */

.loadercirclediv {
    width: 50px;
    height: 50px;
}

.loadercircle {
    animation: 2s linear infinite svg-animation;
}

@keyframes svg-animation {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg)
    }
}

.circlemail {
    animation: 1.4s ease-in-out infinite both circle-animation;
    display: none;
    fill: transparent;
    stroke: #006;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 280;
    stroke-width: 10px;
    transform-origin: 50% 50%;
}

@keyframes circle-animation {
    0%, 25% {
        stroke-dashoffset: 280;
        transform: rotate(0);
    }

    50%, 75% {
        stroke-dashoffset: 75;
        transform: rotate(45deg);
    }

    100% {
        stroke-dashoffset: 280;
        transform: rotate(360deg);
    }
}

input[type=file]::file-selector-button {
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

input[type=file]::file-selector-button {
    color: #373C59;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    font-family: "Golos Text";
    font-weight: 700;
    line-height: 130%; /* 23.4px */
    background: #F0F5FB;
    box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    padding: 14px 26px;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
}

h3 {
    color: #373C59;
    font-family: "Golos Text";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

/* Header */

/*--------------------*/

/* Navigation */

.navigation {
    display: flex;
    margin-top: 160px;
}

.navigation-row {
    display: flex;
}

.navigation-menu {
    display: inline-flex;
}

.navigation-ul {
    display: inline-flex;
    gap: 5px;
}

    .navigation-ul a:visited {
        color: #5B5B5B;
    }

    .navigation-ul a:hover {
        color: #5B5B5B;
    }

    .navigation-ul li:first-child {
        font-weight: 600;
    }

/*--------------------*/


/*Main*/

.main-content {
    margin-bottom: 90px;
}

.catalog h2 {
    margin-bottom: 90px;
}

.main {
    padding-top: 90px;
    background-image: url(/img/banner.svg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-bottom: 160px;
}

.main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main span {
    display: flex;
    color: #FFF;
    font-size: 19.5px;
    font-weight: 700;
    padding-bottom: 40px;
}

.main-button {
    display: flex;
}

    .main-button button {
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
        color: #FFF;
        padding: 14px 26px;
        border-radius: 10px;
        background: #1453AC;
        transition: all 0.3s;
        filter: drop-shadow(1px 4px 10px rgba(0, 0, 0, 0.55));
    }

        .main-button button:hover {
            transition: all 0.3s;
            box-shadow: 8px 8px 20px 0px rgba(20, 82, 170, 0.90), -8px -8px 16px 0px rgba(20, 84, 174, 0.90), 8px -8px 16px 0px rgba(20, 82, 170, 0.20), -8px 8px 16px 0px rgba(20, 82, 170, 0.20), -1px -1px 2px 0px rgba(20, 82, 170, 0.50) inset, 1px 1px 2px 0px rgba(20, 84, 174, 0.30) inset;
        }

h1 {
    padding-top: 90px;
    padding-bottom: 40px;
    color: #F3F3F3;
    font-size: 90px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 108px */
}

.slider-container {
    position: relative;
    margin-top: 133px;
    width: 509px;
    height: 448px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 21px 21px 53px 0px rgba(13, 9, 43, 0.90), -21px -21px 42px 0px rgba(23, 15, 75, 0.90), 21px -21px 42px 0px rgba(13, 9, 43, 0.20), -21px 21px 42px 0px rgba(13, 9, 43, 0.20), -1px -1px 2px 0px rgba(13, 9, 43, 0.50) inset, 1px 1px 2px 0px rgba(23, 15, 75, 0.30) inset;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .slider.active {
        opacity: 1;
    }

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center; /* Центрирование текста */
    background: #232E75;
    color: #fff;
    font-size: 16px;
    padding: 5px 0; /* Обновленные отступы */
    border-radius: 5px;
}



.catalog h2 {
    margin-top: 90px;
}

.catalog-row-top {
    display: flex;
    justify-content: space-around;
    gap: 39px;
}

.catalog-row-bottom {
    display: flex;
    justify-content: center;
    gap: 39px;
}

.catalog-style {
    position: relative;
    width: 407px;
    height: auto;
    display: flex;
    padding: 30px 30px;
    border-radius: 10px;
    background: #F0F4F7;
    box-shadow: 7px 7px 18px 0px rgba(168, 171, 173, 0.90), -7px -7px 14px 0px rgba(255, 255, 255, 0.90), 7px -7px 14px 0px rgba(168, 171, 173, 0.20), -7px 7px 14px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    background-image: url(/img/Ellipse.svg);
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .catalog-style:hover {
        transform: scale(1.05);
        box-shadow: 20px 20px 50px 0px rgba(168, 171, 173, 0.90), -20px -20px 40px 0px rgba(255, 255, 255, 0.90), 20px -20px 40px 0px rgba(168, 171, 173, 0.20), -20px 20px 40px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    }

.catalog-content p {
    padding-top: 12px;
    padding-left: 25px;
    color: var(--unnamed, #303239);
    font-size: 16px;
    font-weight: 600;
    line-height: 130%; /* 23.4px */
}


.catalog-plastini img {
    width: 195.355px;
    height: 106.914px;
    margin-left: -22px;
}


.catalog-plastini p {
    padding-left: 0px;
}

.catalog-block img {
    margin-left: -22px;
}

.catalog-block p {
    padding-left: 0px;
}


.catalog-razbor img {
    padding-top: 12px;
}

.catalog-nasos p {
    padding-top: 22px;
}

.catalog-nasos img {
    width: 166px;
    height: 110px;
    margin-left: -15px;
}




.catalog-content span {
    color: var(--unnamed, #303239);
    font-size: 18px;
    font-weight: 600;
    line-height: 130%; /* 23.4px */
}



.advantages-row {
    gap: 160px;
    padding: 50px 60px 10px 50px;
    display: flex;
    justify-content: space-between;
    background-image: url(/img/Contacts.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.advantages-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .advantages-left h2 {
        color: #F0F4F7;
    }

    .advantages-left img {
        width: 144px;
        height: 146px;
    }

.advantages-img {
    display: flex;
    justify-content: center;
}

.advantages-right {
}

.advantages-right-row {
    display: flex;
    justify-content: space-around;
    gap: 120px;
}

.advantages-style {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
}

    .advantages-style img {
        width: 60px;
        height: 60px;
    }

    .advantages-style span {
        color: #FFF;
        font-size: 14px;
        font-weight: 600;
        text-align: justify;
        line-height: normal;
    }





.news-main {
    margin-top: 90px;
}

.news {
    display: flex;
    flex-direction: column;
}

.news-main h2 {
    margin-bottom: 70px;
}

.news-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}


.news-style {
    display: flex;
    position: relative;
    height: auto;
    width: 100%; /* Занимает всю ширину контейнера */
    max-width: 412px; /* Максимальная ширина новости */
    margin-bottom: 20px; /* Отступ снизу между новостями */
    color: #373C59;
    flex-direction: column;
    border-radius: 7.5px;
    background: #F0F5FB;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 15px 15px 38px 0px rgba(154, 157, 161, 0.90), -15px -15px 30px 0px rgba(255, 255, 255, 0.90), 15px -15px 30px 0px rgba(154, 157, 161, 0.20), -15px 15px 30px 0px rgba(154, 157, 161, 0.20), -1px -1px 2px 0px rgba(154, 157, 161, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
}

    .news-style:hover {
        transform: translateY(-15px);
        box-shadow: 35px 35px 88px 0px rgba(96, 98, 100, 0.90), -35px -35px 70px 0px rgba(255, 255, 255, 0.90), 35px -35px 70px 0px rgba(96, 98, 100, 0.20), -35px 35px 70px 0px rgba(96, 98, 100, 0.20), -1px -1px 2px 0px rgba(96, 98, 100, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    }



.news-style-content {
    display: flex;
    flex-direction: column;
}


.news-text {
    padding-left: 45px;
    font-family: "Golos Text";
    padding-bottom: 50px;
}

.news-style span {
    padding-left: 45px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #969AB4;
}

.news-style h5 {
    padding-left: 45px;
    padding-top: 20px;
    color: var(--black, #373C59);
    font-size: 24px;
    font-weight: 700;
}

.news-style p {
    padding: 15px 44px 95px 45px;
    color: #373C59;
    font-size: 21px;
    font-weight: 400;
    line-height: 130%; /* 27.3px */
}

.text-content p {
    color: #373C59;
}



.news-style img {
    width: 412px;
    border-radius: 7.5px 7.5px 0px 0px;
}



.button-news {
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

    .button-news button {
        color: #373C59;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 23.4px */
        background: #F0F5FB;
        box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
        padding: 14px 36px;
        border-radius: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .button-news button:hover {
            transform: scale(1.05);
            box-shadow: 20px 20px 50px 0px rgba(168, 171, 173, 0.90), -20px -20px 40px 0px rgba(255, 255, 255, 0.90), 20px -20px 40px 0px rgba(168, 171, 173, 0.20), -20px 20px 40px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
        }




.clients h2 {
    margin: 80px 0px;
}

.client-animation {
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}


    .client-animation:hover {
        transform: scale(1.05);
    }


    .clients-row{
        display: grid; 
        grid-template-columns: 1fr 1fr 1fr 1fr; 
        grid-template-rows: 1fr 1fr; 
        gap: 30px 50px;
        margin-bottom: 90px;
        justify-content: center;
    }
    
    .client-style{
        border-radius: 15px;
        background: #F0F4F7;
        padding: 30px 50px;
    }
    
    
    .client-style img{
        width: 100%;
        display: block;
    }
    
    

.info {
    margin-top: 90px;
    background: #303239;
    padding-top: 130px;
}

    .info h2 {
        color: #F8F8F8;
    }

.info-row {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-content {
    display: flex;
    margin-top: 20px;
    margin-bottom: 30px;
    gap: 50px;
}

    .info-content img {
        border-radius: 12px;
    }

    .info-content p {
        color: #F5F5F5;
        font-size: 26.5px;
        font-weight: 400;
        font-style: normal;
        line-height: 65px; /* 206.78% */
        text-align: justify;
    }

.info-icon {
    display: flex;
    justify-content: space-between;
    padding-bottom: 120px;
}

.info-icon-style {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .info-icon-style span {
        color: #F3F3F3;
        text-align: center;
        font-size: 16.5px;
        font-style: normal;
        font-weight: 700;
        line-height: 145%; /* 23.925px */
    }

    .info-icon-style img {
        width: 80px;
        height: 80px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .info-icon-style img:hover {
            transform: scale(1.05);
        }





.main-form h2 {
    margin-top: 90px;
    text-align: center;
    margin-bottom: 30px;
}

.main-form span {
    display: flex;
    justify-content: center;
    color: #373C59;
    font-size: 16.5px;
    font-weight: 400;
}

.main-form-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Выравнивание элементов по вертикали */
    margin-top: 35px;
    width: 100%;
    gap: 15px;
}
.main-form-input {
    flex: 1;
    display: flex; /* Добавим flex для растягивания элементов внутри .main-form-input */
    width: 100%;
}
    .main-form-input input {
        flex: 1; /* Растягиваем инпут на всю ширину родителя */
        
        height: 50px;
        color: #5B5B5B;
        font-size: 17px;
        font-weight: 400;
        line-height: 130%;
        padding: 5px 16px;
        background: #F0F5FB;
        box-shadow: 13px 13px 33px 0px rgba(175, 179, 183, 0.90), -13px -13px 26px 0px rgba(255, 255, 255, 0.90), 13px -13px 26px 0px rgba(175, 179, 183, 0.20), -13px 13px 26px 0px rgba(175, 179, 183, 0.20), -1px -1px 2px 0px rgba(175, 179, 183, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    }

.main-form input::placeholder {
    color: #5B5B5B;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}


.main-form-textarea {
    display: flex;
    margin-top: 35px;
}

    .main-form-textarea textarea {
        width: 100%;
        display: flex;
        color: #5B5B5B;
        font-size: 18px;
        font-weight: 400;
        padding: 5px 16px;
        line-height: 130%; /* 23.4px */
        resize: none;
        height: 269px;
        background: #F0F5FB;
        box-shadow: 13px 13px 33px 0px rgba(175, 179, 183, 0.90), -13px -13px 26px 0px rgba(255, 255, 255, 0.90), 13px -13px 26px 0px rgba(175, 179, 183, 0.20), -13px 13px 26px 0px rgba(175, 179, 183, 0.20), -1px -1px 2px 0px rgba(175, 179, 183, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    }

    .main-form-textarea::placeholder {
        color: #5B5B5B;
        font-family: "Golos Text";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

.form-button-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.button-input-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-button-input button {
    color: #373C59;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 23.4px */
    background: #F0F5FB;
    box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    padding: 14px 36px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .form-button-input button:hover {
        transform: scale(1.05);
        box-shadow: 20px 20px 50px 0px rgba(168, 171, 173, 0.90), -20px -20px 40px 0px rgba(255, 255, 255, 0.90), 20px -20px 40px 0px rgba(168, 171, 173, 0.20), -20px 20px 40px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    }


.form-button-input span {
    color: #5B5B5B;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
}

.form-button-input a {
    color: #5B5B5B;
    text-decoration: underline;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
}

.form-button-input:visited {
    color: #5B5B5B;
    text-decoration: underline;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
}

.accept {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

    .accept span {
        margin-top: 0px;
        color: #5B5B5B;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
    }

    .accept a {
        color: #5B5B5B;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        text-decoration: underline;
        text-transform: none;
    }



.contact {
    margin-top: 90px;
}

.contact-map {
    display: flex;
}

.contact-main-mail{
    display: flex;
}

.contact-main-adress{
    display: flex;
}

.contact-main-row {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}


.contact-main-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .contact-main-block a {
        color: #373C59;
        font-family: "Golos Text";
        font-size: 19.5px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

.contact-main-telephone {
    display: flex;
}

.contact-main-telephone-img {
    display: flex;
    align-items: center;
}

.contact-main-telephone-text {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.contact-main-block img {
    margin-right: 20px;
}











/*Анимация*/


/* Анимация для появления слева */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Анимация для появления справа */
@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Анимация для появления с изменением прозрачности */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide-left {
    animation: slideFromLeft 1s ease;
}

.slide-right {
    animation: slideFromRight 1s ease;
}

.fade-in {
    animation: fadeIn 1s ease;
}

.element-animation {
    /* Скроем элемент в начальном состоянии */
    opacity: 0;
    transform: translateY(10px);
}

    .element-animation.element-show {
        opacity: 1;
        transition: all 0.5s;
        transform: translateY(0%);
    }

.message-row-error.open {
    left: 0;
    right: initial; /* Сбрасываем значение right при открытии */
}

.message-row-error.close {
    left: initial; /* Сбрасываем значение left при закрытии */
    right: 0;
}

.message-row-ok.open {
    left: 0;
    right: initial; /* Сбрасываем значение right при открытии */
}

.message-row-ok.close {
    left: initial; /* Сбрасываем значение left при закрытии */
    right: 0;
}




/*--------------------*/

@media screen and (max-width: 1024px) {
    .container{
        max-width: 1024px;
        margin: 0px 15px 0px 15px;
        

    }

    .news-main-row{
        flex-direction: column;
    }

    .news-main-img{
        display: flex;
        justify-content: center;
    }



    .news-main-img img{
        width: 600px;
    }


}
@media screen and (max-width: 1024px) {
    .container{
        max-width: 1024px;
        margin: 0px 15px 0px 15px;
        

    }
    
    h1{
        font-size: 57px;
    }

    .main-row{
        gap: 25px;
    }

    .main span{
        font-size: 15.5px;
    }

    .main-button button{
        font-size: 15px;

    }

    .slider-container{
        width: 378px;
    
    }

    .catalog-row-top{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .catalog-style{
        margin-bottom: 0px;
    }

    .catalog-row-bottom{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .advantages-row {
        flex-direction: column;
        gap: 50px;
    }

    .advantages-left h2{
        text-align: center;
    }

    .info-content{
        flex-direction: column;
    }

    .info-content p{
        font-size: 23.5px;
        text-align: left;
    }

    .info h2{
        text-align: center;
    }

    .info-icon-style img {
        width: 65px;
        height: 65px;
    }

    .info-icon{
        gap: 81px;
    }

    .clients h2{
        text-align:  center;
    }

    .clients-row{
        grid-template-columns: 1fr 1fr 1fr;
    }
  
    .client-animation{
        align-items: center;
    }

    .main-form-row{
        flex-direction: column;
        gap: 30px;
    }

    .main-form-input input {
        width: 100%;
    }
    
    .main-form span{
        text-align: center;
    }

    .info-icon-style span {
        font-size: 12.5px;
    }

    .contact-main-row{
        flex-direction:  column;
        gap: 30px;
    }

    .contact-main-block h2{
        align-items: center;
    }

    .news-row{
        align-items: center;
        flex-direction: column;
    }


}



@media screen and (max-width: 769px) {
    .clients-row{
        grid-template-columns: 1fr 1fr;
    }
  

    .navigation {
        margin-top: 120px;
    }
    .container{
        max-width: 768px;
        margin: 0px 35px 0px 35px;
        
    }
    .news-row{
        flex-direction: column;
        align-items: center;
    }
    .accept {
        flex-direction: column;
        text-align: center;
    }

        .accept span {
            font-size: 12px;
        }

        .accept a {
            font-size: 12px;
        }
}


@media screen and (max-width: 425px) {

    .container{
        max-width: 600px;
        margin: 0px 15px 0px 15px;
        

    }

    .clients-row{
        grid-template-columns: 1fr;
    }
  

    .slider-container {
        width: 309px;
        height: 307px;
        margin-top: 60px;
    }

    .slide-caption{
        font-size: 14px;
    }

    .main-row{
        flex-direction: column;
    }


    .catalog-style{
        width: 305px;
        padding: 15px 10px;
    }

    .catalog-content p{
        font-size: 14px;

    }

    .catalog-plastini img {
        width: 151.355px;
        height: 76.914px;
        margin-left: -8px;
        margin-top: 10px;
    }

    .catalog-nasos img {
        width: 148px;
        height: 115px;
        margin-left: 1px;
    }

    .advantages-left h2 {
        text-align: center;
        font-size: 17px;
    }

    .advantages-left img {
        height: 87px;
    }

    .advantages-style span {
        font-size: 12px;
        text-align: center;
    }

    .advantages-right-row {
        flex-direction: column;
        gap: 5px;
    }

    .advantages-style{
        align-items: center;
    }


    .news-row{
        align-items: center;
        flex-direction: column;
    }

    .news-style {
        width: 284px;
        flex-direction: column;

    }
    
    
    
    .news-style-content {
        flex-direction: column;
    }

    
    
    .news-style span {
        padding-left: 15px;
        padding-top: 15px;
        font-size: 15px;
    }
    
    .news-style h5 {
        text-align: center;
        padding: 15px 10px 15px;
        font-size: 19px;
    }
    
    .news-style p {
        text-align: left;
        padding: 0px 15px 81px 15px;
        font-size: 17px;
    }
    
    .text-content p {
        color: #373C59;
    }

    .news-style img{
        width: 284px;
    }

    .info-icon {
        flex-direction: column;
        gap: 30px;
    }

    .client-two {
        width: 228px;
    }

    .client-four img{
        width: 300px;
    }

    h2{
        font-size: 25px;
    }

    .form-button-input span {
        display: flex;
        flex-direction: column;
    }

    .info-content p {
        font-size: 18.5px;
        text-align: center;
    }

    iframe{
        width: 100%;
    }

    #map {
        width: 230px;
        height: 220px;
        border: 1px solid black;
    }

    .main-form-input input{
        box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
    }

    .main-form-textarea textarea{
        box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
}
    



}