/*глобальные стили */
/*=============================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", "Helvetica Neue", sans-serif;
}

div.container > div {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.a-button {
    display: flex; /* теперь работает как кнопка */
    background: black;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none; /* убираем подчёркивание */
    box-sizing: border-box; /* ширина считается правильно */
    justify-content: center;
    align-items: center;
}

header {

    justify-content: space-between;
    align-items: center;
    background: rgba(255 255 255 / 63%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.feedback_but a{
    text-decoration: none;
    color: white;
}

/* логотип */
header .logo {
    height: 50px;
    cursor: pointer;
}

/* меню слева */
.header-left {
    display: flex;
    gap: 30px;
}

.header-left a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-left a:hover {
    color: #432e6c;
}

/* блок справа */
.header-right a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
}

/* адаптив */
@media (max-width: 768px) {

    .header-left {
        display: none;

    }

    .header-right {
        display: none;

    }
}


h1 {
    font-size: 35px;
    line-height: 1.2;

}

h2 {
    font-size: 20px;
    line-height: 1.3;

}


@media (max-width: 1024px) {
    h1 {
        font-size: 28px;
    }

}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

}


@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

}


/*=============================*/





div.container{
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    box-sizing: border-box;
}

.company_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 90px;
    margin-top: 20px;
}


.company_header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}


.company_header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #434343;
    margin-bottom: 40px;
    line-height: 1.5;
}

.company_header .a-button {
    display: inline-block;
    padding: 20px 25px;
    font-size: 25px;
    text-align: center;
    color: #fff;
    background: #000;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.company_header .a-button:hover {
    background: #333;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .company_header h1 {
        font-size: 34px;
    }
    .company_header h2 {
        font-size: 26px;
    }
    .company_header .a-button {
        font-size: 25px;
        padding: 15px 25px;
        width: 40%;
    }
}

@media (max-width: 768px) {
    .requisites_company h1{
        margin-bottom: 20px !important;
    }

    .container.always{
        padding-bottom: 50px !important;
    }

    .company_header{
        margin-bottom: 30px;
    }

    .always_title h1{
        margin-bottom: 0 !important;
    }

    .contact_info{
        flex-direction: column;
    }

    .always_connect > h2{
        max-width: 100% !important;
    }

    .contact_but_contaner{
        width: 100% !important;
    }

    .company_header h1 {
        font-size: 24px;
    }
    .company_header h2 {
        font-size: 18px;
    }
    .company_header .a-button {
        font-size: 16px;
        padding: 10px 18px;
        width: 60%;
    }
}

@media (max-width: 480px) {
    .company_header h1 {
        font-size: 35px;
    }
    .company_header h2 {
        font-size: 18px;
    }
    .company_header .a-button {
        font-size: 14px;
        padding: 12px 15px;
        width: 80%;
    }
}



.park_texnik {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.park_texnik > p{
    max-width: 80%;
    font-size: 25px;
}

.park_texnik__sklad_texno,
.park_texnik__sklad_zapchast {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-direction: column;
}

.park_texnik__sklad_zapchast{
    align-items: flex-end

}

.park_texnik__sklad_texno {
    justify-content: flex-start;
}

.park_texnik__sklad_texno p {
    text-align: start;
    flex: 1;
    font-size: 20px;
}

.park_texnik__sklad_texno img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.park_texnik__sklad_zapchast {
    justify-content: flex-end;
}

.park_texnik__sklad_zapchast img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.park_texnik__sklad_zapchast p {
    flex: 1;
    padding-left: 20px;
}


.park_texnik__sklad_zapchast > div{
    align-items: flex-end
}

/* адаптив */
@media (max-width: 768px) {
    @media (max-width: 768px) {
        .contact_but_contaner{
            width: 100%;
        }


    }

    .park_texnik__sklad_texno,
    .park_texnik__sklad_zapchast > div {
        flex-direction: column; /* на мобильных изображение под текстом */
        text-align: center;
    }

    .park_texnik__sklad_texno img,
    .park_texnik__sklad_zapchast img {
        max-width: 100%;
        margin: 0 auto;
        padding: 10px 0;
    }

    .park_texnik__sklad_zapchast p {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .park_texnik p{
        font-size: 15px;
    }

}


.always_connect{
    align-items: flex-start;
    gap: 30px;
}

.always_connect .contact{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.always_connect h1{
    margin-bottom: 30px;
    text-align: center;
}

.always_connect > h2{
    margin-left: 20px;
    max-width: 60%;
    font-size: 25px;
    font-weight: 400;
}

.contact_but_contaner{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
}

.contact_but_contaner .a-button > a{
    font-size: 30px;
    margin-right: 10px;
}

.contact_but_contaner .a-button img{
    width: 50px;
}

.contact_info {
    gap: 20px;
    display: flex;
    justify-content: space-between;
}

.contact_info > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #D9D9D9;
    border-radius: 10px;
    padding: 20px;
    font-size: 25px;
}


.always_title {

    width: 100%;
}


.always_title h1 {
    font-size: 35px;
}



.container.always{
    padding-bottom: 100px;
}















.requisites_company{
    align-items: center;
}

.requisites_company h1{
    text-align: center;
    margin-bottom: 40px;
}



.ooo_mtk{
    background: #D9D9D9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 50px;
}

.ooo_mtk h2{
    text-align: center;
}

.requisites_info{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.requisites_info > div {
    background: #D9D9D9;
    border-radius: 10px;
    padding: 20px;
}

.requisites_info > div h3 {
    font-size: 20px;
    margin-bottom: 10px;
}


.requisites_info > div span {

    font-size: 20px;
}

@media (max-width: 768px) {
    .requisites_info{
        grid-template-columns: repeat(1, 1fr);
    }

    div.container > div{
        align-items: center;
    }

}


