/* push start */
.push {
    position: fixed;
    right: -400px;
    bottom: 150px;
    width: 400px;
    box-shadow: 0px 0px 4px 0px #02006833;
    transition: 0.2s;
    opacity: 0;
    background-color: #fff;
    z-index: 1110;
    border-radius: 2px;
    box-sizing: border-box;
    padding: 20px;
}


.show_push {
    right: 100px;
    opacity: 1 !important;
}


.push_error {
    border-left: 2px solid red;
}

.push_positive {
    border-left: 2px solid green;
}


.push_info {
    border-left: 2px solid yellow;
}

.push_neutral {
    border-left: 2px solid green;
}



.push_content {
    display: flex;
    align-items: flex-start;
}

.push_content>p {
    margin-left: 15px;
}

.push_exit_btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: 0em;
    color: green;
    margin-top: 17px;
    margin-left: 40px;
    cursor: pointer;
    transition: 0.2s;
}

.push_exit_btn:hover {
    opacity: 0.5;
}


@media (min-width: 992px) and (max-width: 1200px) {

    .push {
        bottom: 90px;
    }

    .show_push {
        right: 40px;
    }
}

@media (min-width: 660px) and (max-width: 991px) {
    .push {
        bottom: 100px;
    }

    .show_push {
        right: 30px;
    }
}

@media (min-width: 500px) and (max-width: 659px) {
    .push {
        bottom: 100px;
    }

    .show_push {
        right: 20px;
    }
}


@media (max-width: 1200px) {
    .product-placeholder {
        font-size: 12px;
    }

}

@media (max-width: 659px) {


    .footer-links {
        width: 100% !important;
    }
}


@media (max-width: 499px) {


    .push {
        bottom: 100px;
        width: 300px;
    }

    .show_push {
        right: 20px;
    }
}


/* push end */


.error-field {
    color: var(--error-#ff3b3e) !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 18px !important;
    letter-spacing: 0em !important;
    text-align: left !important;
    display: none;
    width: 100%;
}

.input-error {
    border-color: var(--error-#ff3b3e) !important;
}



/* edits */

.theme_slider_1 .slider {
    background-size: cover;
    position: relative;
}

.slider-background-filter {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 70%;
}


.main_img {
    width: 420px;
    height: 500px;
    object-fit: cover;
}


.sub_img {
    width: 269px;
    height: 431px;
    object-fit: cover;
}


.sub_img2 {
    width: 302px;
    height: 244px;
    object-fit: cover;
}


.bg_image_3_bg_block {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 70%;
    left: 0;
    top: 0;
}

.bg_image_3_bg_block img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.bg_image_3 {
    background-color: #000;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;

}

.section_desc {
    opacity: 0.8;
}

.services>div>div>.iconbox3 {
    height: 100%;
}







/* form popup styles */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(209 3 5 / 20%);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 28%;
    width: 100%;
    position: relative;
    text-align: center;
    border: 2px solid #ff3b3e;
}

.popup-content h2 {
    color: #000;
    margin-bottom: 10px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    font-size: 24px;
}

.popup-content h2 span {
    color: #ff3b3e;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    font-size: 24px;
}

.popup-content p {
    color: #A9A9A9;
    margin-bottom: 20px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    font-size: 13px;
}

.popup-content label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.popup-content label:last-child {
    margin-bottom: 30px !important;
}

.popup-content input[type="text"],
.popup-content input[type="phone"],
.popup-content input[type="tel"],
.popup-content textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ff3b3e;
    border-radius: 3px;
    background-color: #fff;
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.popup-content input[type="checkbox"] {
    margin-right: 10px;
}

.submit-btn {
    background-color: #ff3b3e;
    border: none;
    color: #fff;
    padding: 15px 50px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    transition: 0.2s ease-out;
}

.submit-btn:hover {
    background-color: #fff;
    color: #ff3b3e;
    outline: 1px solid #ff3b3e;
}

.btn-disabled {
    opacity: 0 !important;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: blue;
    cursor: pointer;
}



.error-field {
    color: #ff3b3e !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 18px !important;
    letter-spacing: 0em !important;
    text-align: left !important;
    display: none;
    width: 100%;
    margin: 5px;
}

.input-error {
    border-color: #ff3b3e !important;
}




.experience_content>.read_more>.button p {
    color: #fff;
}

.banner_phone>span a {
    color: #fff;
}

.main_wrapper {
    overflow: hidden;
}

.testimonial {
    overflow: hidden;
}


@media screen and (max-width: 1000px) {
    .popup-content {
        max-width: 95%;
    }

    .slide_content_img {
        display: none;
    }

    .middle_bar {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 100;
        background-color: #fff;
        height: 70px;
        display: flex;
        align-items: center;
    }

    .middle_bar_inner {
        display: flex !important;
        padding: 0 !important;
    }

    .logo > a > img {
        height: 60px;
    }

    body {
        margin-top: 70px;
    }

    .theme_slider_1 .slider .slide_content {
        padding-top: 60px;
    }

    .header .header_social .top_social {
        padding-top: 15px;
    }

    .ma5menu__container .phone p {
        font-size: 12px !important;
    }

    .ma5menu__head {
        height: 100px;
    }
    
    .ma5menu__logo {
        background-image: none !important;
    }
}