:root {
    /* ---------------------------------- color --------------------------------- */
    --blue: #2e75c9;
    --deep-blue: #1a3660;
    --white: white;

    --black: black;




    /* -------------------------------- tipografy ------------------------------- */
    --primary-ff: "Montserrat", sans-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;
}

.row {
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.margin_top100 {
    margin-top: 100px !important;
}


.btn_up img {
    width: 80%;
}


/* HEADER */

.header_container {
    background-color: rgba(255, 255, 255, 0.76);
    width: 100%;
    z-index: 3;
    position: fixed;
    top: 0;
    transition: background-color 0.3s ease;
    /* Добавлено для плавного перехода цвета фона */
}

.header_container.transparent {
    background-color: transparent;
}

.header_container.black {
    background-color: rgba(0, 0, 0, 0.76);
}

.wrapper_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper_logo a {
    width: 50%;

}

.wrapper_logo p {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}



/* 
 
 .header_container {
    min-width: 100% !important;
 
    z-index: 3;
    background-color: transparent;
    position: absolute;
 
 } */

.logoimg {
    width: 100%;
    transition: all 0.2s;
}

.row_header {
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;

}

.number {
    color: var(--blue);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.2s;
}

.number_header {
    color: var(--blue);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.2s;
}

.number_footer {
    color: var(--blue);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.2s;
}

.number:hover {
    color: var(--deep-blue) !important;
}

.phone_icon {
    color: var(--deep-blue);
    font-size: 25px;
    transition: all 0.2s;
}

.phone_icon:hover {
    color: var(--late);
}





.social_header:hover {
    color: var(--white) !important;
}

.nav {
    justify-content: center;

}

.nav-link {
    color: var(--blue);
    font-size: 15px;
    font-weight: 500;
    padding: 2px 15px;
}

.nav-link:hover {
    color: var(--deep-blue) !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: center;
}

.contact_block ul li {
    margin-left: 10px;
}

/* MOBILE */
.mobile_icon {
    display: none !important;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.mobile_icon a {
    font-size: 17px;
    color: var(--blue);
    font-weight: 500;
    display: block;
}

.social_header {
    font-size: 25px !important;
}

.burger_icon {
    font-size: 25px !important;
    color: var(--blue);
    font-weight: 700;
    display: none;
}



.menu_mob_left {
    visibility: visible;
    background-color: white;

}

.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: 100vh;
    background-image: url(./img/111/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;
}

.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.253) 0%);
}


.intro_row {
    justify-content: center;
    width: 100%;
    z-index: 1;
}

.intro_box {

    text-align: left;
    border-radius: 5px;
    height: fit-content;
    padding: 20px;

}

.intro_title {
    font-size: 50px;
    font-weight: 700;
    /* text-transform: uppercase; */
    line-height: 50px;
    color: var(--white);
    text-align: center;
    margin-top: 100px;
}

.intro_undertitle {
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    color: var(--white);
    line-height: 40px;
}

.intro_undertitle span {
    font-weight: 900;
    color: var(--late);
}

.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;

}


.cta {
    border: 2px solid var(--blue);
    background-color: var(--deep-blue);
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 20px;
    transition: all 0.2s;
    text-align: center;
}

.cta:hover {
    border: 2px solid var(--blue);
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 20px;
}

.cta span {

    letter-spacing: 4px;
    font-size: 14px;

    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}

.cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
    fill: var(--white);
}

.cta:hover svg {
    transform: translateX(0);
    fill: var(--late) !important;
}

.cta:active svg {
    transform: scale(0.9);
}

/* .hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
} */

/* .hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--late);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
} */

.cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* ABOUT */
.about_container {
    min-height: 40vh;
    background-image: url(./img/about.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 50px;
}

.about_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
}

.per_row {
    padding-top: 100px;
    justify-content: center;
    padding-bottom: 50px;
    color: var(--black);
}

.princ_row {
    padding-top: 0px;
    justify-content: center;
    padding-bottom: 100px;
}

.per_box {
    text-align: center;
    margin-top: 40px;
}

.per_box img {
    position: relative;
    width: 60px;

}

.per_box_title {
    font-size: 18px;
    margin-top: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.per_box_undertitle {
    margin-top: 10px;
    font-size: 17px;
    text-align: justify;
}

.mini_title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--blue);
    position: relative;
    text-transform: uppercase;
}

.mini_title span {
    font-weight: 700;
    color: var(--cofe);
}


.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #06192700;
    background-image: linear-gradient(180deg, #06192700 0%, #ffffffde 100%);
    /* background-color: #06192700;
    background-image: linear-gradient(90deg, #06192700 0%, #fdf9ee 100%); */
 
 
 }

/* SERVICES */
.services_container {
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    background-image: url(./img/serv.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.services_row {
    justify-content: center;
    position: relative;
}

.services_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.title {
    color: var(--blue);
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.photo {
    width: 200px;
    height: 150px;
    margin: 10px;
}



.photo img {
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.2s;
}

.photo img:hover {
    transform: scale(1.1);
}

.photo2 {
    width: 200px;
    height: 150px;
    margin: 10px;
}



.photo2 img {
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.2s;
}

.photo2 img:hover {
    transform: scale(1.1);
}


.close {
    font-size: 30px;
    cursor: pointer;
    color: var(--blue);
}

.modal_fed_btn {
    font-size: 20px;
    color: var(--blue);
    cursor: pointer;
    font-weight: 500;
    margin: 20px;

}

.modal {
    backdrop-filter: blur(2px);
}

.image-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #06192700;
    background-image: linear-gradient(0deg, #06192700 0%, #ffffffde 100%);
 
 }

 /* CONTACT */
.footer_container {
    min-height: 90vh;
    /* background-image: url(./img/price2.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

/* .price_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
} */

.footer_row {
    justify-content: center;
    position: relative;
    padding-top: 30px;
}

.footer_row p {
    text-align: left;
    font-size: 20px;
}

.mail {
    color: var(--dark);
}

.mail:hover {
    color: var(--dark);
}

.footer_text {
    font-style: italic;
    margin-top: 20px;
}

.copyright {
    font-size: 15px;
    color: var(--dark);
    text-align: center;
    margin-top: 50px;
 }

 .copyright a {
    color: var(--dark);
 }

 .block_more_info p {
    font-size: 20px;
 }

 iframe {
    width: 100%;
    height: 400px;
}


 .push li img {
    width: 250px;
}


/* DROPDOWN */

.btn-secondary {
    color: var(--blue);
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    font-weight: 500;
}

.btn-secondary:hover {
    color: var(--deep-blue);
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    font-weight: 500;
}
.btn-secondary:focus {
    color: var(--deep-blue);
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    font-weight: 500;
    box-shadow: none;
}

.btn-secondary:active {
    color: var(--deep-blue);
    background-color: transparent;
    border-color: transparent;
    padding: 0px;
    font-weight: 500;
    box-shadow: none;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0px;
    margin: 0px;
    font-size: 1rem;
    color: rgb(33, 37, 41);
    text-align: left;
    list-style: none;
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


























/* MODAL */

.modal-dialog {
    max-width: fit-content;
}
.modal-content {
    width: 700px !important;
}

.modal-body {
    width: 700px !important;
}

.modal-image {
    height: 500px;
}



/* МEDIA */

/* !TABLET */
@media (min-width: 569px) and (max-width:1024px) {}

/* !MOBILE */
@media (min-width: 0px) and (max-width:568px) {

    /* HEADER */
    .header_menu {
        display: none;
    }

    .header_container {
        background-color: var(--white);
        width: 100%;
        z-index: 3;
        position: fixed;
        top: 0;
        transition: background-color 0.3s ease;
        /* Добавлено для плавного перехода цвета фона */
    }

    .logoimg {
        margin-bottom: 10px;
    }

    .row_header {
        padding-bottom: 0px;
        align-items: center;
    }

    .contact_block {
        display: none;
    }

    .mobile_icon {
        display: block !important;
        display: flex !important;
        justify-content: space-between;

        flex-direction: row;
    }

    .phone_icon {
        font-size: 25px;
    }

    .burger_icon {

        display: block;
    }

    .margin_top {
        margin-top: 30px;
    }

    .wrapper_logo {
        margin-bottom: 0px;
        text-align: center;
        align-items: center;


    }

    .wrapper_logo a {
        width: 50%;

    }

    .wrapper_logo p {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 5px;
    }

    /* INTRO */

    .intro_container {
        justify-content: center;

    }



    .intro_box {

        text-align: center;
        border-radius: 5px;
        height: 400px;
        padding: 10px;
        padding-top: 20px;

    }

    .mini_title {
        font-size: 25px;
        text-align: center;
        margin-bottom: 20px;
        color: var(--blue);
        position: relative;
    }



    .intro_title {
        font-size: 25px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 35px;
        margin-top: 170px;
    }

    .intro_undertitle {
        font-size: 20px;
        font-weight: 500;
        margin-top: 30px;
        line-height: 30px;
        width: 100%;
    }


    .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;

    }

    .order,
    .more {
        width: 100%;
        padding: 10px;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 10px;
    }

    /* ABOUT */
    .about_container {
        min-height: 100vh;
        background-image: url(./img/about.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        padding-bottom: 50px;
        background-position-x: -3000px;
    }

    .right_i {
        font-size: 40px;
        color: var(--yelow);
        transform: rotate(90deg);
    }

    .i_mobile_yes {
        display: block;
        margin-top: 30px;
    }

    .road_row_box {
        height: fit-content;
        margin-top: 30px;
    }

    .road_box {
        text-align: center;
        min-height: fit-content;
        padding: 0 !important;
        margin-top: 30px !important;
    }

    .road_img {
        width: 50px;
    }

    .per_box img {
        position: relative;
        width: 50px;

    }

    /* SERVICES */
    .photo {
        width: 100px;
        height: 50px;
        margin: 2px;
    }
    
    
    
    .photo img {
        cursor: pointer;
        border-radius: 5px;
        width: 100%;
        height: 50px;
        object-fit: cover;
        transition: all 0.2s;
    }


    .photo2 {
        width: 100px;
        height: 50px;
        margin: 2px;
    }
    
    
    
    .photo2 img {
        cursor: pointer;
        border-radius: 5px;
        width: 100%;
        height: 50px;
        object-fit: cover;
        transition: all 0.2s;
    }
    .title {
        color: var(--blue);
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .modal-dialog {
        max-width: fit-content;
    }
    .modal-content {
        width: 100% !important;
    }
    
    .modal-body {
        width: 100% !important;
    }
    
    .modal-image {
        height: 250px;
    }


}