﻿

@font-face {
    font-family: 'Montseratt-R';
    src: url(/Fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: 'Montseratt-M';
    src: url(/Fonts/Montserrat-Medium.ttf)
}

* {
    margin: 0;
    padding: 0;
    font-family: Montseratt-R;
}

h1 {
    font-family: Montseratt-R !important;
}

h2 {
    font-family: Montseratt-M !important;
}

html {
    background: #171A17;
}

#addFields_razmot {
    display: none;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

    #addFields_razmot.show {
        display: flex;
    }

#addFields_condit {
    display: none;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

    #addFields_condit.show {
        display: flex;
    }

#addFields_food {
    display: none;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

    #addFields_food.show {
        display: flex;
    }

header {
    border-bottom: none;
    border-color: none;
    background-color: #171A17;
    z-index: 1000;
    position: fixed;
    width: 50%;
    top: 0;
    left: 0;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 500px 10px 500px;
    font-size: 18px;
    height: 50px;
}

footer {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: #fff;
}

    footer div {
        display: flex;
        flex-direction: column;
    }

    footer div span {
        text-align: center;
    }

.logo {
    margin-right: 30px;
}

.left-border,
.center-border,
.right-border {
    position: absolute;
    bottom: 0;
    height: 5px;
}

.left-border {
    left: 0;
    width: 15.6%;
    background: white;
}

.center-border {
    left: 15.6%;
    width: 66.4%;
    background: rgb(74,122,188);
}

.right-border {
    right: 0;
    width: 18%;
    background: white;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        text-decoration: none;
        color: white;
        padding: 0px 15px;
        display: block;
        transition: 0.3s ease;
        border-radius: 6px;
    }

        .logo a:hover {
            background-color: white;
            color: #171A17;
        }

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

    .menu li {
        position: relative;
    }

    .menu a {
        text-decoration: none;
        color: white;
        padding: 10px 15px;
        display: block;
        transition: 0.3s ease;
        border-radius: 6px;
    }

        .menu a:hover {
            background-color: white;
            color: #171A17;
        }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #444;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        color: white;
        white-space: nowrap;
        border-radius: 0;
    }

    .dropdown-menu li:first-child a {
        border-radius: 5px 5px 0 0;
    }

    .dropdown-menu li:last-child a {
        border-radius: 0 0 5px 5px;
    }

    .dropdown-menu a:hover {
        background-color: white;
    }

.dropdown:hover .dropdown-menu {
    display: block;
}

.condit_mobil {
    display: none;
}

.food_mobil {
    display: none;
}

.main_all_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.main {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-title {
    font-size: 40pt;
    font-weight: normal;
    color: white;
    text-align: center;
}

.main img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    width: 900px;
    border-radius: 20px;
}

.main button {
    font-size: 20pt;
    margin-top: 30px;
    color: white;
    margin-bottom: 30px;
    border-radius: 13px;
    border: none;
    color: #101210;
    width: 300px;
    height: 70px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
    scroll-behavior: smooth;
    cursor: pointer;
}

    .main button:hover {
        opacity: 0.7
    }

.details_arrrow_img {
    width: 4%;
}

.video_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20pt;
}

.video_div video {
    border-radius: 10px;
}

.info-desc details {
    text-align: justify;
    display: flex;
    flex-direction: column;
}

summary::marker {
    content: none;
}

summary::-webkit-details-marker {
    display: none;
}

.info-desc details summary {
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.info-desc details[open] summary ~ div {
    overflow: hidden;
    animation: sweepOpen 0.5s ease-in-out;
}

@keyframes sweepOpen {
    0% {
        max-height: 0;
        opacity: 0;
    }

    100% {
        max-height: 5000px;
        opacity: 1;
    }
}

.info-desc details summary:hover {
    transform: scale(1.13);
}

.info-desc details summary img {
    transition: transform 0.3s ease;
}


.info-desc details[open] summary img {
    transform: rotate(180deg);
}

.info {
    margin-bottom: 50px;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1255px;
    padding: 20px;
}

.info-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.info-desc {
    font-size: 26px;
}

.info_content_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-left: 70px;
}

.production {
    background: white;
    border-radius: 16px;
    width: 1255px;
    padding: 20px;
    margin-bottom: 50px;
}

.production-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.production_item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    max-height: 700px;
}

.production_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.production_item img {
    width: 100%;
    min-height: 400px;
    max-height: 400px;
    display: block;
    transition: 0.3s ease;
    object-fit: cover;
}

.production_list > a:first-child figure img,
.production_list > a:nth-child(2) figure img,
.production_list > a:nth-child(3) figure img,
.production_list > a:nth-child(4) figure img {
    max-height: none;
}

.production_item figcaption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(58, 79, 65, 0.95);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 28px;
    transition: 0.3s ease;
}

.production_item:hover {
    background: rgba(58, 79, 65, 1);
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

    .production_item:hover > figcaption {
        background: rgba(58, 79, 65, 1);
        font-size: 30px;
    }

    .production_item:hover > img {
        transform: scale(1.05);
    }

.production_item a:hover {
    background: rgba(58, 79, 65, 1);
}

.production_list > a:first-child,
.production_list > a:nth-child(2),
.production_list > a:nth-child(3),
.production_list > a:nth-child(4) {
    grid-column: span 2;
}

.slider {
    margin-bottom: 70px;
    background: white;
    border-radius: 16px;
    width: 1255px;
    padding: 20px;
}

.videos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.video_format {
    height: 400px;
    width: 600px;
}

.videos video {
    max-height: 100%;
    max-width: 100%;
    border-radius: 16px;
}

.videos_onechild {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .videos_onechild video {
        width: 90%;
        border-radius: 16px;
    }

.videos-title {
    font-size: 36px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.slider-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.slider_slides {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 90%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

.prev,
.next {
    visibility: collapse;
}

.slider_indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: gray;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

    .indicator.active {
        background-color: #00b80d;
    }

.info_content ul {
    list-style-type: disc;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 20px;
}

.info_content ul li {
    margin-bottom: 1rem;
    text-align: justify;
}

.contacts {
    margin-bottom: 70px;
    background: white;
    border-radius: 16px;
    width: 1255px;
    padding: 20px;
}

.contacts-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.contacts_info {
    display: flex;
    flex-direction: column;
}

    .contacts_info address {
        font-size: 36px;
        margin-bottom: 50px;
        text-decoration: none;
        font-style: normal;
    }

.contacts_address--location {
    font-size: 30px !important;
}

.contacts_container {
    display: flex;
    justify-content: space-between;
    padding-left: 2%;
    padding-right: 5%;
}

.contacts_form {
    width: 40%;
    background: #659157;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
}

    .contacts_form form {
        display: flex;
        flex-direction: column;
        width: 92%;
        gap: 50px;
    }

.contacts_form-title {
    font-size: 32px;
    color: #FEF6D6;
    font-style: normal;
    font-weight: normal;
    padding-top: 3%;
    padding-bottom: 9%;
}

.contacts_form input, select {
    width: 100%;
    font-size: 18pt;
    color: rgba(254, 246, 214, 1);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(254, 246, 214, 0.4);
    outline: none;
    transition: border-color 0.3s ease;
}

.contacts_form select option {
    background: #659157;
}

.contacts_form input::placeholder {
    color: rgba(254, 246, 214, 0.4);
}

.contacts_form input:not(:placeholder-shown) {
    border-bottom-color: rgba(254, 246, 214, 1);
}

.contact_icons--social img {
    transition: 0.3s ease;
}

    .contact_icons--social img:hover {
        transform: scale(1.1);
    }

.contact_icons--geolocation img {
    transition: 0.3s ease;
}

    .contact_icons--geolocation img:hover {
        transform: scale(1.1);
    }

.submit_div {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .submit_div input {
        color: #101210;
        background: #FEF6D6;
        border-radius: 16px;
        width: 310px;
        height: 70px;
        cursor: pointer;
        transition: 0.2s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        font-size: 23pt;
        margin-bottom: 30px;
    }

        .submit_div input:hover {
            opacity: 0.8;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
        }

        .submit_div input:disabled {
            opacity: 0.5;
        }

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

    section.active {
        opacity: 1;
        transform: translateY(0px);
    }

@media only screen and (max-width: 1441px) {
    .condit_desk {
        display: none;
    }

    .food_desk {
        display: none;
    }

    .condit_mobil {
        display: block;
    }

    .food_mobil {
        display: block;
    }
}

@media only screen and (max-width: 1300px) {
    .videos {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

        .videos video {
            max-height: auto;
            max-width: 100%;
            border-radius: 16px;
        }

    .videos-title {
        font-size: 36px;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    header {
        border-bottom: none;
        border-color: none;
        background-color: #171A17;
        z-index: 1000;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding: 0;
        font-size: 18px;
        border-bottom: 5px solid;
        border-color: rgb(74,122,188);
    }

    .left-border,
    .center-border,
    .right-border {
        display: none;
    }

    .left-border {
        display: none;
    }

    .center-border {
        display: none;
    }

    .right-border {
        display: none;
    }

    .logo {
        display: flex;
        align-items: center;
    }

        .logo a {
            text-decoration: none;
            color: white;
            padding: 10px 15px;
            display: block;
            transition: 0.3s ease;
            border-radius: 6px;
        }

            .logo a:hover {
                background-color: white;
                color: #171A17;
            }

    .menu {
        list-style: none;
        display: flex;
        gap: 20px;
    }

        .menu li {
            position: relative;
        }

        .menu a {
            text-decoration: none;
            color: white;
            padding: 10px 15px;
            display: block;
            transition: 0.3s ease;
            border-radius: 6px;
        }

            .menu a:hover {
                background-color: white;
                color: #171A17;
            }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #444;
        list-style: none;
        padding: 0;
        margin: 0;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            color: white;
            white-space: nowrap;
            border-radius: 0;
        }

        .dropdown-menu li:first-child a {
            border-radius: 5px 5px 0 0;
        }

        .dropdown-menu li:last-child a {
            border-radius: 0 0 5px 5px;
        }

        .dropdown-menu a:hover {
            background-color: white;
        }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .main img {
        width: 900px;
    }

    .info {
        width: 900px;
    }

    .info-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .info-desc {
        font-size: 23px;
        padding-left: 2%;
    }

    .production {
        width: 900px;
    }

    .production-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .production_list {
        display: grid;
        flex-direction: column;
        justify-content: center;
    }

    .production_item figcaption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(58, 79, 65, 0.95);
        color: white;
        padding: 10px;
        text-align: center;
        font-size: 30px;
        transition: 0.3s ease;
    }

    .production_item:hover {
        font-size: 35px;
    }

        .production_item:hover > figcaption {
            font-size: 35px;
        }

    .production_item a:hover {
        background: rgba(58, 79, 65, 1);
    }

    .slider {
        width: 900px;
    }

    .slider-title {
        font-size: 30px;
    }

    .slider_slides {
        height: 500px;
    }

    .contacts {
        width: 900px;
    }

    .contacts_form {
        width: 70%;
    }

    .details_arrrow_img {
        width: 6%;
    }

    .info-desc details summary:hover {
        transform: scale(1.13);
    }

    .condit_desk {
        display: none;
    }

    .food_desk {
        display: none;
    }

    .condit_mobil {
        display: block;
    }

    .food_mobil {
        display: block;
    }
}


@media only screen and (max-width: 1023px) {
    .videos-title {
        font-size: 30px;
    }

    .videos video {
        max-height: auto;
        max-width: 100%;
        border-radius: 16px;
    }

    header {
        border-bottom: none;
        border-color: none;
        background-color: #171A17;
        z-index: 1000;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        font-size: 18px;
        border-bottom: 5px solid;
        border-color: rgb(74,122,188);
    }

    .left-border,
    .center-border,
    .right-border {
        display: none;
    }

    .left-border {
        display: none;
    }

    .center-border {
        display: none;
    }

    .right-border {
        display: none;
    }

    .logo {
        display: flex;
        align-items: center;
    }

        .logo a {
            text-decoration: none;
            color: white;
            padding: 10px 15px;
            display: block;
            transition: 0.3s ease;
            border-radius: 6px;
            font-size: 10pt;
        }

            .logo a:hover {
                background-color: white;
                color: #171A17;
            }

    .menu {
        list-style: none;
        display: flex;
        gap: 20px;
        font-size: 10pt;
    }

        .menu li {
            position: relative;
        }

        .menu a {
            text-decoration: none;
            color: white;
            padding: 10px 15px;
            display: block;
            transition: 0.3s ease;
            border-radius: 6px;
        }

            .menu a:hover {
                background-color: white;
                color: #171A17;
            }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #444;
        list-style: none;
        padding: 0;
        margin: 0;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            color: white;
            white-space: nowrap;
            border-radius: 0;
        }

        .dropdown-menu li:first-child a {
            border-radius: 5px 5px 0 0;
        }

        .dropdown-menu li:last-child a {
            border-radius: 0 0 5px 5px;
        }

        .dropdown-menu a:hover {
            background-color: white;
        }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .main-title {
        font-size: 26pt;
        max-width: 800px;
    }

    .main img {
        width: 690px;
    }

    .info {
        width: 670px;
    }

    .info-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .info-desc {
        text-align: left;
        font-size: 23px;
        padding-left: 2%;
    }

    .production {
        width: 670px;
    }

    .production-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .production_list {
        display: grid;
        flex-direction: column;
        justify-content: center;
    }

    .production_item figcaption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(58, 79, 65, 0.95);
        color: white;
        padding: 10px;
        text-align: center;
        font-size: 18px;
        transition: 0.3s ease;
    }

    .production_item:hover {
        font-size: 19px;
    }

        .production_item:hover > figcaption {
            font-size: 20px;
        }

    .production_item a:hover {
        background: rgba(58, 79, 65, 1);
    }

    .slider {
        width: 670px;
    }

    .slider-title {
        font-size: 30px;
    }

    .slider_slides {
        height: 400px;
    }

    .contacts {
        width: 670px;
    }

    .contacts-title {
        font-size: 30px;
    }


    .contacts_info address {
        font-size: 36px;
        margin-bottom: 50px;
        text-decoration: none;
        font-style: normal;
    }

    .contacts_address--location {
        font-size: 30px !important;
    }

    .contacts_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .contacts_form {
        width: 90%;
        background: #659157;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .contacts_form form {
            display: flex;
            flex-direction: column;
            width: 92%;
            gap: 50px;
        }

    .contacts_form-title {
        font-size: 33px;
    }

    .contacts_form input {
        font-size: 26pt;
    }

    .contacts_form select {
        font-size: 26pt;
    }

    .submit_div input {
        color: #101210;
        background: #FEF6D6;
        border-radius: 16px;
        width: 310px;
        height: 70px;
        cursor: pointer;
        transition: 0.2s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        font-size: 23pt;
        margin-bottom: 30px;
    }

    .details_arrrow_img {
        width: 9%;
    }

    .info-desc details summary:hover {
        transform: scale(1.15);
    }

    .condit_desk {
        display: none;
    }

    .food_desk {
        display: none;
    }

    .condit_mobil {
        display: block;
    }

    .food_mobil {
        display: block;
    }

    .info_content_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .info_content ul {
        list-style-type: disc;
        padding-left: 20px;
        padding-right: 0px;
        margin-bottom: 20px;
    }

        .info_content ul li {
            margin-bottom: 1rem;
            text-align: justify;
        }
}

@media only screen and (max-width: 767px) {
    .videos {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .videos-title {
        font-size: 30px;
    }

    .videos video {
        max-height: auto;
        max-width: 100%;
        border-radius: 16px;
    }

    header {
        border-bottom: none;
        border-color: none;
        background-color: #171A17;
        z-index: 1000;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        font-size: 14px;
        border-bottom: 5px solid;
        border-color: rgb(74,122,188);
    }

    .aboutCompany {
        display: none;
    }

    .left-border,
    .center-border,
    .right-border {
        display: none;
    }

    .left-border {
        display: none;
    }

    .center-border {
        display: none;
    }

    .right-border {
        display: none;
    }

    .logo {
        margin: 0;
        padding: 0;
    }

        .logo a {
            font-size: 8pt;
            max-width: 150px;
            padding: 0;
        }

    .menu {
        list-style: none;
        display: flex;
        gap: 20px;
        font-size: 9pt;
    }

        .menu li {
            position: relative;
        }

        .menu a {
            text-decoration: none;
            color: white;
            padding: 10px 15px;
            display: block;
            transition: 0.3s ease;
            border-radius: 6px;
        }

            .menu a:hover {
                background-color: white;
                color: #171A17;
            }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #444;
        list-style: none;
        padding: 0;
        margin: 0;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            color: white;
            white-space: nowrap;
            border-radius: 0;
        }

        .dropdown-menu li:first-child a {
            border-radius: 5px 5px 0 0;
        }

        .dropdown-menu li:last-child a {
            border-radius: 0 0 5px 5px;
        }

        .dropdown-menu a:hover {
            background-color: white;
        }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .main-title {
        font-size: 22pt;
        max-width: 350px;
    }

    .main img {
        width: 360px;
    }

    .info {
        width: 325px;
    }

    .request_button {
    }

    .info-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .info-desc {
        font-size: 18px;
        padding-left: 2%;
    }

    .production {
        width: 325px;
    }

    .production-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .production_list {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .production_item figcaption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(58, 79, 65, 0.95);
        color: white;
        padding: 10px;
        text-align: center;
        font-size: 18px;
        transition: 0.3s ease;
    }

    .production_item:hover {
        font-size: 19px;
    }

        .production_item:hover > figcaption {
            font-size: 20px;
        }

    .production_item a:hover {
        background: rgba(58, 79, 65, 1);
    }

    .slider {
        width: 325px;
    }

    .slider-title {
        font-size: 30px;
    }

    .slider_slides {
        height: 200px;
    }

    .contacts {
        width: 325px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contacts-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .contacts_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .contacts_info address {
            font-size: 36px;
            margin-bottom: 50px;
            text-decoration: none;
            font-style: normal;
        }

    .contacts_address--location {
        font-size: 30px !important;
    }

    .contacts_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .contacts_form {
        width: 100%;
        background: #659157;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .contacts_form form {
            display: flex;
            flex-direction: column;
            width: 92%;
            gap: 50px;
        }

    .contacts_form-title {
        font-size: 26px;
    }

    .contacts_form input {
        font-size: 18pt;
    }

    .contacts_form select {
        font-size: 12pt;
    }


    .submit_div input {
        width: 200px;
        height: 70px;
        font-size: 23pt;
    }

    .contacts_address--person {
        font-size: 27px !important;
    }

    .contacts_address--location {
        font-size: 27px !important;
    }

    .details_arrrow_img {
        width: 15%;
    }

    .info-desc details summary:hover {
        transform: scale(1.15);
    }

    .condit_desk {
        display: none;
    }

    .food_desk {
        display: none;
    }

    .condit_mobil {
        display: block;
    }

    .food_mobil {
        display: block;
    }

    .info_content_grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .info_content ul {
        list-style-type: disc;
        padding-left: 20px;
        padding-right: 0px;
        margin-bottom: 20px;
        font-size: 14pt;
    }

        .info_content ul li {
            margin-bottom: 1rem;
            text-align: justify;
        }
}

@media only screen and (max-width: 367px) {
    .videos {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .videos-title {
        font-size: 30px;
    }

    .videos video {
        max-height: auto;
        max-width: 100%;
        border-radius: 16px;
    }


    header {
        border-bottom: none;
        border-color: none;
        background-color: #171A17;
        z-index: 1000;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0;
        font-size: 15px;
        border-bottom: 5px solid;
        border-color: rgb(74,122,188);
    }

    .aboutCompany {
        display: none;
    }

    .left-border,
    .center-border,
    .right-border {
        display: none;
    }

    .left-border {
        display: none;
    }

    .center-border {
        display: none;
    }

    .right-border {
        display: none;
    }

    .logo {
        margin: 0;
        padding: 0;
    }

        .logo a {
            font-size: 8pt;
            max-width: 150px;
            padding: 0;
        }

    .menu {
        list-style: none;
        display: flex;
        gap: 20px;
        font-size: 9pt;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #444;
        list-style: none;
        padding: 0;
        margin: 0;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 20px;
            color: white;
            white-space: nowrap;
            border-radius: 0;
        }

        .dropdown-menu li:first-child a {
            border-radius: 5px 5px 0 0;
        }

        .dropdown-menu li:last-child a {
            border-radius: 0 0 5px 5px;
        }

        .dropdown-menu a:hover {
            background-color: white;
        }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .condit_desk {
        display: none;
    }

    .food_desk {
        display: none;
    }

    .condit_mobil {
        display: block;
    }

    .food_mobil {
        display: block;
    }

    .main-title {
        font-size: 18pt;
        max-width: 300px;
    }

    .main img {
        width: 300px;
    }

    .info {
        width: 270px;
    }

    .info-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .info-desc {
        font-size: 18px;
        padding-left: 2%;
        text-align: left;
    }

    .info_content {
        line-height: 1.4;
        text-align: justify;
        letter-spacing: -0.01em;
        white-space: normal;
        overflow-wrap: break-word;
        text-overflow: ellipsis;
    }

    .production {
        width: 270px;
    }

    .production-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .production_list {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .production_item figcaption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(58, 79, 65, 0.95);
        color: white;
        padding: 10px;
        text-align: center;
        font-size: 18px;
        transition: 0.3s ease;
    }

    .production_item:hover {
        font-size: 19px;
    }

        .production_item:hover > figcaption {
            font-size: 20px;
        }

    .production_item a:hover {
        background: rgba(58, 79, 65, 1);
    }

    .slider {
        width: 270px;
    }

    .slider-title {
        font-size: 25px;
    }

    .slider_slides {
        height: 200px;
    }

    .contacts {
        width: 270px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contacts-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .contacts_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .contacts_info address {
            font-size: 36px;
            margin-bottom: 50px;
            text-decoration: none;
            font-style: normal;
        }

    .contacts_address--location {
        font-size: 30px !important;
    }

    .contacts_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contacts_form {
        width: 100%;
        background: #659157;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .contacts_form form {
            display: flex;
            flex-direction: column;
            width: 92%;
            gap: 50px;
        }

    .contacts_form-title {
        font-size: 26px;
    }

    .contacts_form input {
        font-size: 18pt;
    }

    .contacts_form select {
        font-size: 12pt;
    }


    .submit_div input {
        width: 200px;
        height: 70px;
        font-size: 23pt;
    }

    .contacts_address--person {
        font-size: 27px !important;
    }

    .contacts_address--location {
        font-size: 27px !important;
    }

    .details_arrrow_img {
        width: 20%;
    }

    .info-desc details summary:hover {
        transform: scale(1.15);
    }

    .info_content_grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .info_content ul {
        list-style-type: disc;
        padding-left: 20px;
        padding-right: 0px;
        margin-bottom: 20px;
        font-size: 14pt;
    }

        .info_content ul li {
            margin-bottom: 1rem;
            text-align: justify;
        }

}
