: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/team/intro.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: -300px;
    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: 20px;
    color: var(--white);
}

.intro_undertitle {
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    color: var(--white);
}

.more_btn_wrapper {

    margin: 0 auto;
    font-size: 20px;
    margin-top: 0px;
    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;
}

/* COUNTER */
.counter_container {

    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--black);
}

.stats {
    text-align: center;

}

.stats .counting {
    color: var(--white);
    font-family: var(--secondary-ff);
    font-size: 40px;
    font-weight: 600;
}

.stats h5 {
    color: var(--white);
    font-family: 300;
    font-size: 17px;
}

.stat_icon {
    font-size: 50px;
    color: var(--l-orange);
}


.under_number_text {
    text-align: center;
    color: white;
    font-size: 35px;
    margin-top: 50px;
}

/* TEAM */
.team_container {
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--black);
    color: white;
}

.team_row {
    justify-content: center;
}

.team_first_block,
.team_second_block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team_text {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.team_first_block img {
    width: 100%;
    border-radius: 10px;
}

.team_second_block img {
border-radius: 10px;
}

.desc_none {
    display: none;
}

.downolad_wrapper {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    width: 100%;
    margin-top: 50px;
}

.download_item {
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.Btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    /* background-color: rgb(27, 27, 27); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
    margin-left: 5px;
  }
  
  .svgIcon {
    fill: var(--l-orange);
  }
  
  .icon2 {
    width: 18px;
    height: 5px;
    border-bottom: 2px solid var(--l-orange);
    border-left: 2px solid var(--l-orange);
    border-right: 2px solid var(--l-orange);
  }
  
  .tooltip {
    position: absolute;
    right: -105px;
    opacity: 0;
    background-color: rgb(12, 12, 12);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    pointer-events: none;
    letter-spacing: 0.5px;
  }
  
  .tooltip::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: rgb(12, 12, 12);
    background-size: 1000%;
    background-position: center;
    transform: rotate(45deg);
    left: -5%;
    transition-duration: .3s;
  }
  
  .Btn:hover .tooltip {
    opacity: 1;
    transition-duration: .3s;
  }
  
  .download_item:hover .Btn {
    background-color: var(--l-orange);
    transition-duration: .3s;
  }
  
  .download_item:hover .icon2 {
    border-bottom: 2px solid rgb(235, 235, 235);
    border-left: 2px solid rgb(235, 235, 235);
    border-right: 2px solid rgb(235, 235, 235);
  }
  
  .download_item:hover .svgIcon {
    fill: rgb(255, 255, 255);
    animation: slide-in-top 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-10px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  




/* GALLERY */
.gallery_container {
    min-height: 100vh;
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    background-color: var(--black);

}

.gallery_row {
    justify-content: center;
    width: 100%;
    z-index: 1;
    position: relative;
}

.photo {
    cursor: pointer;
}

.modal_fed_btn {
    font-size: 20px;
    color: var(--gold);
    cursor: pointer;
    font-weight: 500;
    margin: 20px;
    color: var(--orange);

}

.close {
    font-size: 30px;
    cursor: pointer;
    color: var(--gold);
}




/* CONSULTATION */

.cons_container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/consultation.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.cons_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.829) 0%, rgba(255, 255, 255, 0.842) 0%);
}

.cons_row {
    align-items: flex-end;
    position: relative;
}

.cons_title {
    font-size: 35px;
    font-weight: 600;
}

.cons_under_title {
    font-size: 20px;
    margin-top: 20px;
}

.cons_btn_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.key_btn {
    font-size: 20px;
    background-color: var(--medium);
    color: var(--white);
    text-align: center;
    width: 40%;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 40px;
    transition: all 0.2s;
}

.cons_btn:hover {
    font-size: 20px;
    background-color: var(--light);
    color: var(--white);
    text-align: center;
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;

}

.key_btn:hover {
    font-size: 20px;
    background-color: var(--light);

}

.mail_img {
    text-align: center;
}

.mail_img img {
    width: 80%;
}

.mail_ico {
    font-size: 28px;
    color: var(--white) !important;
}




/* 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);
}







































/* !!!!!!!!!!!!!!!!!!!!!!!!!!MODAL */
.modal-dialog {
    max-width: 700px;
}

.modal-bg {

    color: var(--dark);
    position: relative;
    display: flex;
    flex-direction: row;

}

.modal-header::before {
    z-index: 1;
    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.37) 0%);
}

.modal-header {
    border-bottom: none;
    text-align: center;
    width: 40%;
    position: relative;
    background-image: url(../img/intro.jpg);
    background-size: cover;
    background-position-x: 0px;
    display: flex;
    flex-direction: column;

}

.modal-header2 {
    border-bottom: none;
    text-align: center;
    width: 40%;
    position: relative;
    background-image: url(../img/intro.jpg);
    background-size: cover;
    background-position-x: 0px;
    display: flex;
    flex-direction: column;

}

.thnks {
    min-height: 400px;
}

.modal-header img {
    width: 100px;
    margin: 0 auto;
}

.modal-title img {
    margin: 0 auto;
}

.label_input {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.label_input label {
    font-size: 15px;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    font-weight: 600;
}

.label_input input {
    width: 100%;
    border: 1px solid var(--orange);
    outline: none;
    padding-left: 10px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--dark);
    margin: 0 auto;
    margin-top: 10px;
    font-family: var(--secondary-ff);
}

.textarea {
    width: 100%;
    border: 1px solid var(--orange);
    outline: none;
    padding-left: 10px;
    border-radius: 5px;
    font-size: 16px;
    color: var(--black);
    margin: 0 auto;
    margin-top: 10px;
}

.form_title {
    font-size: 35px;
    font-weight: 600;
    color: var(--yelow);
    text-align: center;
}

.form_under_title {
    font-size: 20px;
    color: var(--black);
    text-align: center;
}

.form_under_title span {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
}



.first_form_btn {
    width: 100%;
    border: 1px solid var(--orange);
    outline: none;
    border-radius: 2px;
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    background-color: var(--orange);
    transition: all 0.2s;
    text-transform: uppercase;
}

.first_form_btn:hover {

    color: var(--dark);

    background-color: var(--white);
}

.modal_my {
    background-color: var(--white);
    color: var(--black);
    height: 300px;
}

.modalthnks {
    display: none;
}

iframe {
    width: 100%;
    height: 400px;
}

.contact_row {
    margin-top: 100px !important;
}

.adress {
    font-size: 20px;
}

.mobile_social {
    display: flex;
    position: relative;
    z-index: 3;
}

.btn-close {
    right: 0px;
    position: absolute;
}

.radio_wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.radio_lebel_input {
    display: flex;
    align-items: center;

}

.chek_lebel_input {
    display: flex;
    align-items: self-start;
    margin-top: 10px;
}

.radio_lebel_input input {
    width: 10% !important;
    margin-top: 0px !important;
}

.radio_lebel_input label {
    width: 90% !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    text-align: left;
}

.increment_wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.order_icon {
    font-size: 25px !important;
}

.increment_wrapper div {
    width: 20%;
}

.increment_wrapper label {
    width: 80%;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.increment_wrapper span {
    font-size: 11px;
}


.radio_wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.radio_lebel_input {
    display: flex;
    align-items: center;
}

.chek_lebel_input {
    display: flex;
    align-items: self-start;
    margin-top: 10px;
}

.radio_lebel_input input {
    width: 10% !important;
    margin-top: 0px !important;
}

.radio_lebel_input label {
    width: 90% !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.increment_wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.increment_wrapper div {
    width: 20%;
}

.increment_wrapper label {
    width: 80%;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.increment_wrapper span {
    font-size: 11px;
}

.buttons {
    width: 30%;
    display: flex;
    align-items: center;
}

.buttons span {
    border: none;
    font-size: 20px;
    color: var(--gold);
    background: none;
    cursor: pointer;
}

.buttons input {
    width: 30%;
    border: none;
    background-color: rgba(128, 128, 128, 0.219);
    outline: none;
    text-align: center;
    border-radius: 2px;
    font-size: 15px;
    color: var(--dark);
    margin: 0 auto;
    margin-top: 2px;
}


























/* М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 */
.intro_container {
    min-height: 75vh;
    background-image: url(../img/team/intro.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 0px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-attachment: fixed;

}



    .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: 20px;
        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;
    }


    /* COUNTER */
    .counter_container {

        padding-top: 50px;
        padding-bottom: 50px;
        background-color: var(--black);
    }

    .stats {
        text-align: center;
    }

    .stats .counting {
        color: white;

        font-size: 20px;
    }

    .stats h5 {
        color: var(--white);

        font-size: 10px;
    }

    .stat_icon {
        font-size: 30px;
        color: var(--l-orange);
    }

    .under_number_text {
        font-size: 17px !important;
    }


    /* CONS */

    .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;
    }

    .cons_container {
        background-size: cover;
        background-position-y: 130px;
    }


    .under_number_text {
        text-align: justify;
        color: white;
        font-size: 20px;
        margin-top: 50px;
    }


    /* TEAM */
    .team_row {
        justify-content: center;
        flex-direction: column-reverse;
    }

    .team_text {
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .team_first_block img {
    width: 100%;
}

    .desc_none {
        display: block;
    }

    .mob_none {
        display: none;
    }

    .download_item {
        font-size: 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 1px;
    }


    /* 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%;
    }






}