@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/brands.min.css');

html {
    max-width: 1600px;
    margin: 0 auto;
}

body {
    font-family: 'Roboto Flex', sans-serif;
    margin: 1% 2%;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #669ac8;
}

h1 {
    font-size: 4em;
    font-weight: 400;
    margin-bottom: 0;
}

h2 {
    font-size: 3.5em;
    font-weight: 300;
}

h3 {
    font-size: 2em;
    font-weight: 300;
}

h4 {
    font-size: 1.5em;
    font-weight: 200;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    background: none;
}

/*~~~~~~~~~~~~~~~~~~~~BURGER MENU & MOBILE HEADER~~~~~~~~~~~~~~~~~~*/
.mobile_wrapper {
    display: none;
    width: 100%;
    flex-direction: column;
    /*align-items: center;*/
    gap: 1em;
}

.phones_header {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

.mobile_header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.h4_bold {
    font-size: x-large;
    font-weight: bold;
}

.mobile_phones {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    gap: 0.5em;
}

.mobile_number {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    gap: 0.3em;
    font-size: xx-large;
    /*text-shadow: 0 0 1em #6BADE6FF;*/
    border: lightgrey solid 1px;
    border-radius: 5px;
}

.num {
    text-decoration-line: underline;
    color: #0059b3;
}

.mobile_menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.menu_and_burger {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    background-color: #6BADE6FF;
    border-radius: 10px;
    padding-left: 0.5em;
}

.hidden_menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.menuBurger {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.menu_name {
    display: flex;
    font-size: 3em;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 100%;
    color: white;
    text-shadow: 1px 1px 2px darkgrey;
}

.header_burger {
    display: flex;
    font-size: 2em;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 100%;
    color: white;

}

.burger_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: #6BADE6FF;
    gap: 7px;
    border: solid white 1px;
    margin: 0.5em 0.5em;
    cursor: pointer;

}

.burger_line {
    display: flex;
    width: 38px;
    height: 4px;
    background-color: white;
    border-radius: 3px;
}

.before_navigation {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.rooftop {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.rooftop_text {
    font-size: 1.3em;
    font-weight: 200;
}

.rooftop_phone {
    font-size: 1.3em;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.title_block {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    background-color: #D3D3D3B0;
    margin: 1% 0;
    padding: 1% 0;
    text-align: center;
    border-radius: 5px;
}

/*~~~~~~~~~~~~~~~~~~~~~NAVIGATION~~~~~~~~~~~~~~~~~~~~~~~~~*/
.navigation {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    margin-bottom: 1%;
    border-bottom: solid 1px;
}

.nav-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    list-style-type: none;
    font-size: 22px;
}

.nav-menu__link {
    color: inherit;
    text-decoration: none;
    transition: 1s;
    text-align: center;
    border-bottom: #6bade6 solid 2px;
}

.nav-menu__link:hover {
    color: #669ac8;
    text-decoration: none;
    transform: scale(2);
    border-bottom: none;
}

.nav-menu__item {
    transition: 200ms;
}

.nav-menu__item:hover {
    transform: scale(1.5);
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~RIBBON~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.box {
    display: flex;
    width: 100%;
    /*border: 1px solid #ddd;*/
    /*background-color: #D3D3D3B0;;*/
    height: 130%;
    position: relative;
    margin: 1em auto;
}

.popular_box {
    width: 400px;
    border: 1px solid #ddd;
    /*height: 200px;*/
    position: relative;
    margin: 0 auto;
    /*background: #efefef;*/
}

.ribbon-right {
    position: absolute;
    top: 3.2em;
    right: -20px;
    background: #61ef3a;
    padding: 5px 20px;
    box-shadow: 1px 1px 3px #878787;
    color: #fff;
    text-transform: uppercase;
}

.ribbon-right:after {
    content: '';
    position: absolute;
    top: 104%;
    right: 0;
    width: 0;
    height: 0;
    line-height: 0;
    border-right: 20px solid transparent;
    border-top: 10px solid #c8c8c8;
}


.ribbon {
    display: flex;
    justify-content: space-around;
    width: calc(100% + 22px);
    /*height: calc(100% + 22px);*/
    /*height: 120%;*/
    line-height: 40px;
    /*text-align: center;*/
    margin: 0.5em -0.5em;
    background: #6BADE6FF;
    position: relative;
    color: #fff;
}

.ribbon:before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    bottom: -10px;
    left: 0;
    border-top: 10px solid #317316;
    border-left: 10px solid transparent;
}

.ribbon:after {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    right: 0;
    bottom: -10px;
    border-top: 10px solid #317316;
    border-right: 10px solid transparent;
}

/*~~~~~~~~~~~~~~~~~~~~~BLOCK 1~~~~~~~~~~~~~~~~~~~~*/
#block1 {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 3%;
}

.price_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /*padding: 1% 1%;*/
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(130, 130, 130, 0.35);
    border-radius: 6px;
    text-align: center;
}

table {
    width: 100%;
    box-sizing: border-box;
    /*margin-bottom: 1%;*/
    /*border-collapse: collapse;*/
    border-spacing: 0;
    border-radius: 5px;
}

.price_table_item {
    font-size: 1.3em;
    font-weight: 300;
    text-align: center;
}

tr {
    /*border: solid 2px #00cc22;*/
}

td {
    /*padding: 0.5% 3%;*/
    /*border: solid 2px #00cc22;*/
}

th {
    padding: 1.2% 0;
    border: solid 2px white;
    border-bottom: none;
    background-color: lightgray;
    font-family: "Roboto Flex", sans-serif;
    font-style: normal;
    align-items: center;
    text-align: center;
}

.concrete_description {
    padding: 0 1em;
    text-align: justify;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~BLOCK-2~~~~~~~~~~~~~~~~~~~~~~*/
.cargo_list {
    text-align: justify;
    margin: 0 2em;
    line-height: 1.5em;
    font-size: 1.3em;
    font-weight: 400;
}

#block2 {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 3%;
}

.transport_card {
    display: flex;
    flex-direction: column;
    width: 25%;
    align-items: center;
    border: solid 1px lightgrey;
    border-radius: 5px;
    gap: 0.5em;
}

.transport_title {
    margin: 10px 10px;
    display: flex;
    width: 90%;
    justify-content: center;
    background-color: lightgrey;
    border-radius: 5px;
    text-align: center;
    /*border: solid 1px #6bade6;*/
}

.strong_name_transport_title {
    font-weight: 500;
    font-size: 1.2em;
    margin: 0.7em 0.15em;
}

.transport_img {
    height: 230px;
    /*border: solid 1px #6bade6;*/
}

.transport_image_prop {
    max-width: 100%;
    height: auto;
}

.transport_description {
    display: flex;
    width: 95%;
    height: 8em;
    text-align: justify;
    border-top: thick double #669AC8FF;
    font-size: 18px;
    font-weight: 200;
}

.transport_price {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    background-color: lightgrey;
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 20px;
    font-weight: 300;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.transport_button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1em;
    margin-top: 1em;
}

.a_button {
    display: flex;
    width: 90%;
    justify-content: center;
}

.order_button {
    border: none;
    outline: none;
    display: flex;
    width: 70%;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0.8em 1.2em;
    border-radius: 100px;
}

.order_button:hover {
    /*background-color: lightgrey;*/
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.fa-phone {
    font-size: x-large;
    color: #00cc22;
    /*margin-left: 2em;*/
}

.strong_name_button_title {
    font-weight: 500;
    font-size: 20px;
    color: #669AC8FF;
}

.phone_wrapper {
    background-color: lightgrey;
    border-radius: 50%;
    padding: 1em 1em;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~BLOCK-3~~~~~~~~~~~~~~~~~~~~~~*/
#nasos, #delivery, #beton {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order_call_button {
    border: none;
    outline: none;
    display: flex;
    /*width: 70%;*/
    gap: 5%;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    padding: 0.8em 1.2em;
    border-radius: 100px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(229, 229, 229, 0.7);
}

.modal-content {
    background-image: linear-gradient(
            360deg,
            rgba(225, 225, 225, 1) 50%,
            rgba(13, 96, 111, 0.5) 100%
    );
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: center center;
    color: #0D606FFF;
    font-size: 1.2em;
    text-align: center;
    margin: 15% auto;
    border-radius: 10px;
    width: 650px;
}

.modal-form {
    border-radius: 10px;
}

.modal-form_close {
    color: #0D606FFF;
    font-size: 40px;
    cursor: pointer;
    float: right;
    font-weight: bold;
    padding-right: 15px;
    padding-top: 15px;
}

.modal-form_close:hover {
    color: #0D606FFF;;
    transform: scale(1.5);
    transition: 200ms;
}

.modal-form_title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    padding-top: 25px;
    margin-bottom: 30px;
}

.modal-form_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2em;
}

.modal-form_button {
    display: block;
    background-color: #1877f2;
    width: 50%;
    border: none;
    border-radius: 10px;
    padding: 13px 0;
    margin-bottom: 20px;
}

.modal-form_input {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1em;
}

.modal-form_input-text {
    font-size: 1em;
    line-height: 1.2;
    align-self: flex-start;
    margin-bottom: 0.3em;
    margin-top: 0.3em;
}

.modal-form_input-box {
    min-width: 22em;
    background-color: #FFFFFFFF;
    font-size: x-large;
    border: none;
    border-radius: 10px;
    padding: 0.6em 0;
    outline: none;
}

.modal-form_button_dark {
    background-color: #0D606FFF;
    padding: 0.6em 0;
    margin-bottom: 0.8em;
}

#bestButtonEver {
    cursor: pointer;
}

.modal-form_button-text {
    font-weight: 400;
    font-size: 1.4em;
    line-height: 1.3;
    color: #FFFFFFFF;
    background-color: #0D606FFF;
    border: none;
}

::placeholder {
    color: lightgrey;
    font-style: italic;
}

.message_ok {
    display: none;
    color: #00cc22;
}

.message_not_ok {
    display: none;
    color: #ff253a;
}

.errorForm {
    display: none;
    color: #ff253a;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~BLOCK-4~~~~~~~~~~~~~~~~~~~~~~*/
#contacts {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
    gap: 3%;
}

.social_img {
    display: flex;
    width: 100%;
}

.social_media_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social_pic {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.fa-viber {
    font-size: xx-large;
    color: #B197FC;
}

.fa-telegram {
    color: #74C0FC;
    font-size: xx-large;
}

.fa-envelope {
    color: #FFD43B;
    font-size: xx-large;
}

.fa-instagram {
    color: #f94848;
    font-size: xx-large;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~BLOCK 5~~~~~~~~~~~~~~~~~~~~*/
/*.formDiv_wrapper {*/
/*    display: flex;*/
/*    width: 100%;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/
/*.formDiv_header {*/
/*    !*margin: 1em 0;*!*/
/*    display: flex;*/
/*    !*width: 80%;*!*/
/*    justify-content: center;*/
/*    border: black solid 1px;*/
/*}*/
/*.formDiv_contentForm {*/
/*    !*padding: 1em 5em;*!*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    width: inherit;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/
/*.formDiv_leftSide {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 50%;*/
/*    justify-content: space-around;*/
/*    align-items: center;*/
/*    gap: 0.7em;*/
/*}*/
/*.formDiv_rightSide {*/
/*    display: flex;*/
/*    width: 50%;*/
/*    justify-content: space-around;*/
/*}*/
/*.headerInput_block {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    width: 100%;*/
/*}*/
/*.input_header_label {*/
/*    font-size: large;*/
/*    margin-bottom: 0.5em;*/
/*}*/
/*.input_header {*/
/*    width: 40%;*/
/*    font-size: large;*/
/*    border-top: none;*/
/*    border-right: none;*/
/*    border-bottom: solid 0.5px lightgrey;*/
/*    border-left: solid 0.5px lightgrey;*/
/*}*/
/*.input_header:focus {*/
/*    border: solid 0.5px lightgrey;*/
/*}*/
.block_5_header {
    display: flex;
    justify-content: center;
}

.honeymoney {
    display: none;
}

.required_span {
    justify-content: flex-end;
}

.error {
    color: #FF0000;
}

.error_true, .no_error {
    font-size: large;
    text-align: right;
}

.error_true, .sendError {
    display: none;
    color: red;
}

.no_error {
    font-size: large;
    display: none;
    color: green;
    font-weight: 500;
}

#submitBtn {
    width: 20%;
    background-color: #30c76a; /* Красный */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    align-items: flex-end;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

#submitBtn:hover {
    background-color: #15833FFF; /* Темно-красный */
    color: white;
}

.butt {
    display: flex;
    justify-content: flex-end;
}

#myForm {
    display: flex;
    flex-direction: column;
    width: 70%;
}

#myForm_body {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

.form_stroke {
    display: flex;
    width: 100%;
    justify-content: center;
}

.label_cl, .input_cl {
    display: flex;
}

.label_cl {
    width: 50%;
    align-items: center;
    justify-content: flex-end;
}

.input_cl {
    width: 50%;
    margin-left: 0.5em;
}

.radio_cl {
    display: flex;
    width: 40%;
    gap: 0.5em;
    justify-content: flex-end;
}

#name, #phone, #cubes, #address {
    font-size: medium;
    height: 1.5em;
}

#concrete, #mortar {
    transform: scale(1.3);
    opacity: 0.9;
    cursor: pointer;
}

#message {
    height: 5em;
    font-size: 1.4em;
}

/*~~~~~~~~~~~~~~~~~~~BEFORE FOOTER SOCIAL MEDIA BLOCK~~~~~~~~~~~~~*/
#iframe_yandex {
    width: 400px;
    height: 304px;
    border: none;
}

#contacts {
    margin-top: 0.3em;
}

.contacts_block {
    width: 33%;
}

.header_img {
    width: 100%;
}

.header_footer {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    color: #004d99;
    font-size: 1.7em;
    font-weight: 500;
    text-decoration: underline
}

/*~~~~~~~~~~~~~~~~~~~~~~~~FOOTER~~~~~~~~~~~~~~~~~~~~~~*/
.footer {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #D3D3D3B0;
    margin: 0.5em 0;
    padding: 0.5em 0;
}
.footer_7319 {
    gap: 0.1em;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

/*+++++++++++++++++++++++++ MOBILE VERSIONS++++++++++++++++++++++++++*/
@media only screen and (max-width: 489px) {
    html {
        margin: 0 auto;
    }
    body {
        margin: 1% 3%;
    }
    h2 {
        font-size: 1.7em;
    }
    .cargo_list {
        font-size: 1em;
    }
    .transport_button, .transport_price {
        margin-top: 0;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }
    .mobile_wrapper {
        display: flex;
    }
    #block1, #block2, #contacts {
        flex-direction: column;
        align-items: center;
    }
    .block_5_header {
        text-align: center;
    }
    .contacts_block {
        align-items: center;
    }
    .transport_card {
        width: 100%;
    }
    .mobile_phones {
        justify-content: space-between;
    }
    .mobile_number {
        padding: 5px 5px;
        justify-content: space-evenly;
        align-items: center;
        font-size: 0.9em;
        /*text-shadow: 0 0 1em #6b92e6;*/
    }
    .logo_small {
        width: 20px;
    }
    .header_burger {
        display: none;
    }
    .hidden_menu {
        justify-content: flex-end;
    }
    .menu_and_burger {
        width: 45%;
    }
    .mobile_menu {
        justify-content: flex-end;
    }
    .menu_name {
        font-size: 1.7em;
    }
    .price_table_item {
        font-size: 1.1em;
    }
    .transport_description {
        height: auto;
    }
    #myForm {
        width: 100%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
}

@media only screen and (min-width: 490px) and (max-width: 589px) {
    body {
        margin: 1% 5%;
    }
    h2 {
        font-size: 1.7em;
    }
    .cargo_list {
        font-size: 1.1em;
        text-align: left;
    }
    .transport_button, .transport_price {
        margin-top: 0;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }
    .mobile_wrapper {
        display: flex;
    }
    #block1, #block2, #contacts {
        flex-direction: column;
        align-items: center;
    }
    .contacts_block {
        align-items: center;
    }
    .transport_card {
        width: 100%;
    }
    .mobile_number {
        padding: 5px 5px;
        justify-content: space-evenly;
        align-items: center;
        font-size: 1.3em;
        /*text-shadow: 0 0 1em #6b92e6;*/
    }
    .header_burger {
        display: none;
    }
    .hidden_menu {
        justify-content: flex-end;
    }
    .menu_and_burger {
        width: 45%;
    }
    .mobile_menu {
        justify-content: flex-end;
    }
    .menu_name {
        font-size: 1.7em;
    }
    .price_table_item {
        font-size: 1.1em;
    }
    .transport_description {
        height: auto;
    }
    #myForm {
        width: 100%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
}

@media only screen and (min-width: 590px) and (max-width: 649px) {
    body {
        margin: 1% 4%;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }

    .mobile_wrapper {
        display: flex;
    }

    #block1, #block2, #contacts {
        flex-direction: column;
    }
    .transport_card {
        width: 100%;
    }
    .transport_description {
        height: auto;
    }
    .transport_button {
        margin-top: 0;
    }
    h2 {
        font-size: 2em;
    }
    .menu_name {
        font-size: 2em;
    }

    .order_button {
        width: 50%;
    }
    .mobile_number {
        padding: 5px 5px;
        font-size: x-large;
    }

    .transport_title {
        width: 100%;
    }
    #myForm {
        width: 100%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
    #iframe_yandex {
        width: 100%;
    }
}

@media only screen and (min-width: 650px) and (max-width: 679px) {
    body {
        margin: 1% 4%;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }
    .mobile_wrapper {
        display: flex;
    }
    #block1, #block2, #contacts {
        flex-direction: column;
    }
    .transport_card {
        width: 100%;
    }
    .transport_description {
        height: auto;
    }
    .transport_button {
        margin-top: 0;
    }
    h2 {
        font-size: 2em;
    }
    .menu_name {
        font-size: 2em;
    }
    .order_button {
        width: 50%;
    }
    .mobile_number {
        padding: 5px 5px;
        font-size: x-large;
    }
    .transport_title {
        width: 100%;
    }
    #myForm {
        width: 100%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
    #iframe_yandex {
        width: 100%;
    }
}
@media only screen and (min-width: 680px) and (max-width: 789px) {
    body {
        margin: 1% 4%;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }
    .mobile_wrapper {
        display: flex;
    }
    #block1, #block2, #contacts {
        flex-direction: column;
    }
    .transport_card {
        width: 100%;
    }
    .transport_description {
        height: auto;
    }
    .transport_button {
        margin-top: 0;
    }
    h2 {
        font-size: 2em;
    }
    .menu_name {
        font-size: 2em;
    }
    .order_button {
        width: 50%;
    }
    .mobile_number {
        padding: 5px 5px;
        font-size: x-large;
    }
    .transport_title {
        width: 100%;
    }
    #myForm {
        width: 100%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
    #iframe_yandex {
        width: 100%;
    }
}

@media only screen  and (min-width: 790px) and (max-width: 824px) {
    body {
        margin: 1% 4%;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }
    .mobile_wrapper {
        display: flex;
    }
    #block1, #block2, #contacts {
        flex-direction: column;
    }
    .transport_card {
        width: 100%;
    }
    .transport_description {
        height: auto;
    }
    .transport_button {
        margin-top: 0;
    }
    h2 {
        font-size: 2em;
    }
    .menu_name {
        font-size: 2em;
    }
    .order_button {
        width: 50%;
    }
    .mobile_number {
        padding: 5px 5px;
        font-size: x-large;
    }
    .transport_title {
        width: 100%;
    }
    #myForm {
        width: 100%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
    #iframe_yandex {
        width: 100%;
    }
}

@media only screen and (min-width: 825px) and (max-width: 899px) {
    body {
        margin: 1% 3%;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }
    .mobile_wrapper {
        display: flex;
    }
    #block1, #block2, #contacts {
        flex-direction: column;
    }
    .transport_card {
        width: 100%;
    }
    .transport_description {
        height: auto;
    }
    .transport_button {
        margin-top: 0;
    }
    h2 {
        font-size: 2em;
    }
    .menu_name {
        font-size: 2em;
    }
    .order_button {
        width: 50%;
    }
    .mobile_number {
        padding: 5px 5px;
        font-size: x-large;
    }
    .transport_title {
        width: 100%;
    }
    #myForm {
        width: 80%;
    }
    .label_cl, .form_stroke {
        justify-content: flex-start;
    }
    .contacts_block {
        width: 100%;
    }
    .social_pic {
        margin-bottom: 0.3em;
    }
    #iframe_yandex {
        width: 100%;
    }
}

@media only screen and (min-width: 900px) and (max-width: 1199px) {
    body {
        margin: 1% 3%;
    }
    .navigation,
    .before_navigation,
    #ltd_details {
        display: none;
    }

    .mobile_wrapper {
        display: flex;
    }

    #block1, #block2 {
        flex-direction: column;
    }

    .transport_card {
        width: 100%;
    }

    .social_media_block {
        gap: 0;
    }

    .transport_title {
        width: 40%;
    }

    .order_button {
        width: 40%;
        justify-content: center;
        gap: 0.5em;
    }

    .transport_description {
        height: fit-content;
    }

    .ribbon-right {
        top: 0;
    }
    #myForm {
        width: 90%;
    }
    .contacts_block {
        width: 100%;
    }
    #contacts {
        gap: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1324px) {
    #ltd_details {
        display: none;
    }
    .rooftop_phone {
        font-size: 1.1em;
    }
    #contacts {
        justify-content: center;
        /*gap: 5%;*/
    }

    .contacts_block {
        width: 50%;
    }
}

@media only screen and (min-width: 1325px) and (max-width: 1345px) {
    .rooftop_text, .rooftop_phone {
        font-size: 1em;
    }
}
/*~~~~~~~~~~~~~~~~~~~~~~~MENU~~~~~~~~~~~~~~~~~~~~~~*/
.myModal {
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(221, 211, 211, 0.3);
    backdrop-filter: blur(5px);
}
#pop_up {
    display: none;
    position: relative;
    width: fit-content(150%);
    height: max-content;
    border: 0.5px solid #6BADE6FF;
    border-radius: 5px;
    background-color: white;
    z-index: 2;
    padding-left: 1em;
}
.pop_up_nav {
    margin-left: 10px;
    margin-top: 30px;
    color: black;
    font-size: 1.3em;
    font-weight: 400;
    /*line-height: 22px;*/
    letter-spacing: 0;
    text-align: left;
}
.pop_up_nav_item {
    list-style-type: none;
    margin-bottom: 15px;
}
.popup_href {
    text-decoration: none;
    color: black;
}
.pop_up_close_cross {
    position: absolute;
    float: right;
    right: 15px;
    top: 15px;
    width: 15px;
    height: 15px;
    background: url(./assets/icons/cross_X.png) no-repeat center/cover;
    cursor: pointer;
}
#faPhone, #faCard, #faCoins, #faTruck, #faList, #faContacts  {
    font-size: medium;
}
#faCoins {
    color: #00cc22;;
}
#faCard, #faTruck, #faList, #faContacts {
    color: #6BADE6FF;
}