:root {
    /* ---------------------------------- color --------------------------------- */

    --white: white;
    --black: #171717;
    --orange: #eb320b;
    --l-orange: #ff522e;
    --gray: #f2f2f2;


    /* -------------------------------- tipografy ------------------------------- */
    --primary-ff: "Playfair Display", serif;
    --secondary-ff: serif;

    /* ----------------------------------font-size-------------------------- */

}

/* Scrooling */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    background-color: var(--white);
    font-family: var(--primary-ff) !important;
    font-size: 10px;
    overflow: auto !important;

}

a {
    text-decoration: none !important;

}

a:hover {
    text-decoration: none !important;
}

/* a:focus {
    color: var(--white) !important;
 } */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* обнуляем дефолтные маркеры у всех маркированных списков */
/* form */
button,
input,
select,
textarea {
    margin: 0;
}

img {
    width: 100%;
}

strong {
    color: var(--blue);
}

.container {
    min-width: 100% !important;
}


.title {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 20px;

}

.row {
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.margin_top100 {
    margin-top: 100px !important;
}

strong {
    color: var(--orange);
}

.btn_up {
    /* background-color: rgba(0, 0, 0, 0.541) !important; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    position: fixed;
    cursor: pointer;
    text-align: center;
}

.chat_icon {
    font-size: 35px;
    color: var(--l-orange);
}

/* HEADER */

.header_container {
    width: 100%;
    z-index: 3;
    position: fixed;
    top: 0;

    background-color: rgba(0, 0, 0, 0.76);
    transition: background-color 0.3s ease;
    /* Добавлено для плавного перехода цвета фона */
}

.header_container.transparent {
    background-color: transparent;
}

.header_container.black {
    background-color: var(--black);
}

.active {
    border-bottom: 1px solid var(--orange) !important;
}



/* 
 
 .header_container {
    min-width: 100% !important;
 
    z-index: 3;
    background-color: transparent;
    position: absolute;
 
 } */

.wrapper_logo {
    text-align: center;
}

.logoimg {
    width: 100%;
    transition: all 0.2s;
}

.row_header {
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;

}

.number {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    font-family: var(--secondary-ff);
}

.number:hover {
    color: var(--white);
}

.phone_icon {
    color: var(--yelow);
    font-size: 25px;
    transition: all 0.2s;
}

.phone_icon:hover {
    color: var(--white);
}



.social_header:hover {
    color: var(--white) !important;
}

.nav {
    justify-content: center;

}

.nav-link {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
    padding: 2px 2px;
    text-transform: uppercase;
    margin-left: 20px;
    margin-right: 20px;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    border-bottom: 1px solid var(--orange);
    color: white;
}


.language_select {
    background-color: transparent;
    color: var(--white);
    margin-left: 15px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px !important;
}

.language_select:focus {
    border: none;
    outline: none;
    background-color: var(--black);
}

.language_select option {
    background-color: var(--l-orange);
    color: var(--white);
    cursor: pointer !important;
    font-size: 15px !important;
}

.language_select option:hover {
    background-color: var(--l-orange) !important;
}





.contactus {
    background-color: var(--dark);
    color: var(--white) !important;
    border-radius: 5px;
    transition: all 0.2s;

}

.contactus:hover {
    background-color: var(--light);
    color: var(--dark) !important;
    border-radius: 5px;
}

.botom_border {
    transition: all 0.2s !important;
    border-bottom: 1px solid var(--white) !important;
}

.botom_border:hover {
    border-bottom: 1px solid var(--light) !important;
}


.header_menu {
    font-size: 17px;
}

.contact_block {
    font-size: 20px;
    font-weight: 600;
}

.contact_block ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* MOBILE */
.mobile_icon {
    display: none;
}

.mobile_icon a {
    font-size: 17px;
    color: var(--white);
    font-family: var(--secondary-ff);
}

.social_header {
    font-size: 25px !important;
}

.burger_icon {
    font-size: 25px !important;
    color: var(--orange);
    font-weight: 700;
    display: none;
}

.menu_mob_left {
    visibility: visible;
    background-color: #000000d3;

}

.offcanvas-header img {
    width: 100%;
}

.list_mobile_menu {
    font-size: 20px;
    color: var(--dark);
    font-weight: 500;
    border-top: 1px solid var(--yelow);

}

/* INTRO */
.intro_container {
    min-height: 75vh;
    background-image: url(../img/contacts/intro.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-attachment: fixed;

}

.intro_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.562) 0%);
}


.intro_row {
    justify-content: center;
    width: 100%;
    z-index: 1;
    position: relative;
}

.intro_box {
    position: relative;
    text-align: center;
    border-radius: 5px;
    height: fit-content;
    padding: 20px;

}



.intro_title {
    font-size: 60px;
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-top: 0px;
    color: var(--white);
}

.intro_undertitle {
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
    color: var(--white);
}

.more_btn_wrapper {
    margin: 0 auto;
    font-size: 20px;
    margin-top: 50px;
    width: 100%;
    padding: 5px 10px 5px 10px;
    color: white;
    display: flex;
    justify-content: center;

}

.more {
    background-color: #ffffff00;
    color: #fff;
    width: fit-content;
    padding: 5px 10px 5px 20px;
    border: var(--orange) 1px solid;
    border-radius: 11px;
    text-align: right;
    transition: all 0.6s ease;
    text-transform: uppercase;
    font-size: 17px;
    margin-left: 10px;
}

.more_about {
    color: var(--black);
}

.more:hover {
    background-color: var(--orange);
    cursor: pointer;
    color: white;
}

.more_about:hover {
    background-color: var(--orange);
    cursor: pointer;
    color: white;
}

.more svg {
    width: 1em;
    margin: 0.3em 0.2em 1em;
    position: absolute;
    display: flex;
    transition: all 0.6s ease;
}

.more:hover svg {
    transform: translateX(5px);
}

.more_about:hover svg {
    transform: translateX(5px);
}

.text {
    margin: 0 1.5em
}

.weather_box {
    color: white;
    font-size: 10px;
    text-align: center;
    font-family: var(--secondary-ff);

    width: 100%;
}

.weather_box img {
    width: 30px;
}





/* FOOTER */
.footer_container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--black);
    color: var(--white);
}

.footer_row {
    justify-content: space-between;
    padding-top: 50px;
    align-items: center;

}

.footer_logo {
    width: 80%;
}

.map_box p {
    font-size: 20px;
}

.metro {
    color: #00933d;
    font-size: 25px;
}

.order_footer {
    width: 50% !important;
    display: block;
    background-color: orange;
    font-size: 20px;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    color: white;
    padding: 10px;
    transition: all 0.2s;
}

.order_footer:hover {
    background-color: transparent;
    color: white;

}

.footer_number img {
    width: 100px;
}

.footer_cons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logofooter {
    width: 100%;
}

.footer_list {
    width: fit-content;
    font-size: 20px;
    /* margin: 0 auto;
    text-align: center; */
}

.footer_list a {
    color: var(--white);
    font-weight: 500;
    font-size: 17px;

}

.contact_list {
    width: fit-content;
    font-size: 17px;
}

.contact_list a {
    color: var(--white);
    font-weight: 500;

}

.contact_list li {
    color: var(--white);
    font-weight: 500;

}

.copyright {
    font-size: 15px;
    color: var(--white);
    text-align: center;
    margin-top: 50px;
}

.time {
    font-size: 17px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;

}

.title_adress2 {
    color: var(--orange);
}

iframe {
    width: 100%;
    height: 400px;
}

.contact_row {
    margin-top: 100px !important;
}

.adress {
    font-size: 20px;
}

.mobile_social {
    display: flex;
    position: relative;
    z-index: 3;
}

/* FORM */

.form {
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    background: #606c885e;
    background: -webkit-linear-gradient(to right, #3f4c6b6e, #606c886c);
    background: linear-gradient(to right, #3f4c6b70, #606c885b);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    width: 50%;
 
 }
 
 .title {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
 }
 
 .description {
    line-height: 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    color: rgb(209 213 219);
 }
 
 .form div {
    display: flex;
 flex-wrap: wrap;
    max-width: 28rem;
    margin-top: 1rem;
    column-gap: 0.5rem;
 }
 
 .form div input {
    outline: none;
    line-height: 1.5rem;
    font-size: 0.875rem;
    color: rgb(255 255 255);
    padding: 0.5rem 0.875rem;
    background-color: rgb(255 255 255 / 0.05);
    border: 1px solid rgba(253, 253, 253, 0.363);
    border-radius: 0.375rem;
    flex: 1 1 auto;
    margin-top: 5px;
 }
 
 .form div input::placeholder {
    color: rgb(216, 212, 212);
 }
 
 .form div input:focus {
    border: 1px solid var(--red);
 }
 
 .form div button {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.625rem 0.875rem;
    background-color: var(--l-orange);
    border-radius: 0.375rem;
    border: none;
    outline: none;
    margin-top: 5px;
 }



























































/* МEDIA */

/* !TABLET */
@media (min-width: 569px) and (max-width:1024px) {}

/* !MOBILE */
@media (min-width: 0px) and (max-width:568px) {

    /* HEADER */
    .header_menu {
        display: none;
    }

    .logoimg {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact_block {
        display: none;
    }

    .mobile_icon {
        display: block;
    }

    .phone_icon {
        font-size: 18px;
    }

    .burger_icon {

        display: block;
    }

    .margin_top {
        margin-top: 30px;
    }

    .wrapper_logo {
        margin-bottom: 10px;
        text-align: center;
    }

    /* INTRO */

    .intro_container {
        justify-content: center;
        background-attachment: scroll;
        padding-top: 150px;


    }



    .intro_box {

        text-align: center;
        border-radius: 5px;
        height: fit-content;
        padding: 10px;
        padding-top: 0px;

    }

    .more {
        margin: 0 auto !important;
        background-color: #ffffff00;
        color: #fff;
        width: fit-content;
        padding: 5px 10px 5px 20px;
        border: var(--orange) 1px solid;
        border-radius: 11px;
        text-align: right;
        transition: all 0.6s ease;
        text-transform: uppercase;
        font-size: 17px;
        margin-left: 0px;
        margin-bottom: 10px !important;
    }

    .more2 {
        width: 70%;
    }

    .intro_title {
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 35px;
    }

    .intro_undertitle {
        font-size: 20px;
        font-weight: 500;
        margin-top: 30px;
        line-height: 30px;
        width: 100%;
        text-align: justify;
    }


    .more_btn_wrapper {
        margin: 0 auto;
        font-size: 20px;
        margin-top: 50px;
        width: 100%;
        padding: 5px 10px 5px 10px;
        color: white;
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;

    }


    .modal-bg {
        color: var(--dark);
        position: relative;
        display: flex;
        flex-direction: column;

    }

    .modal-header {
        width: 100%;
    }

    .weather_box {
        color: white;
        font-size: 20px;
        text-align: center;
        font-family: var(--secondary-ff);
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
    }

    .weather_box img {
        width: 30px;
    }


    

    /* FOOTER */
    .footer_undertitle {
        width: 100%;
    }

    .footer_list {

        margin: 0 auto;
        text-align: center;
        margin-top: 30px;
    }


    .contact_list {

        font-size: 20px;
        margin: 0 auto;
        text-align: center;
        margin-top: 30px;
    }

    .footer_cons {
        margin-top: 20px;
    }

    .footer_cons p {
        text-align: justify;
        font-size: 20px;
    }

    .order_footer {
        margin-top: 20px;
        width: 80% !important;
    }


    .title_text {
        font-size: 25px;
        text-align: center;
        color: var(--black);
    }


    .footer_logo {
        width: 100%;
    }



    .form div {
        display: flex;
        flex-wrap: wrap;
        max-width: 28rem;
        margin-top: 1rem;
        column-gap: 0.5rem;
     }
  
     .form {
        margin-top: 20px;
        width: 100%;
     }
  
     .wrapper_where img {
        width: 100%;
     height: 200px;
     border-radius: 10px;
     }



}