.circle-ripple {
    background-color: #ff5b14;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: ripple 0.7s linear infinite;
    position: fixed;
    bottom: 1%;
    left: 5%;
    z-index: 999;

    text-align: center;
    color: #fff;
    display: grid;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

.circle-ripple:focus {
    outline: none !important
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 91, 20, 0.33),
        0 0 0 10px rgba(255, 91, 20, 0.33),
        0 0 0 30px rgba(255, 91, 20, 0.33);

    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 91, 20, 0.33),
        0 0 0 30px rgba(255, 91, 20, 0.33),
        0 0 0 50px rgba(255, 91, 20, 0);

    }
}


@media (max-width: 768px) {
    .circle-ripple {
        width: 50px;
        height: 50px;
        font-size: 10px;
        animation: mobile-ripple 0.7s linear infinite;
        right: auto;
        bottom: 10px;
        left: 10px;
    }

}

@keyframes mobile-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 91, 20, 0.33),
        0 0 0 5px rgba(255, 91, 20, 0.33),
        0 0 0 15px rgba(255, 91, 20, 0.33);

    }
    100% {
        box-shadow: 0 0 0 5px rgba(255, 91, 20, 0.33),
        0 0 0 15px rgba(255, 91, 20, 0.33),
        0 0 0 25px rgba(255, 91, 20, 0);

    }
}

/*---MODAL*/
.modal #inputPhone {
    font-size: 16px;
    height: 45px;
    width: 90%;
    display: block;
    box-shadow: none;
    box-sizing: border-box;
    border: none;
    margin: 40px auto;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.modal {
    font-family: 'Montserrat', sans-serif;
}

.modal .button {
    width: 250px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
}

.modal-header {
    align-items: center;
    border: 0;
    box-shadow: 0 0 25px 0 rgba(57, 69, 54, 0.36);

}

.modal .fa-phone {
    margin: 0 auto;
}

.modal h5 {
    margin: 0 auto;
}

.modal-header .close {

    font-size: 40px;
}

.modal .inputData.color-effect:after {
    background: #ff5b14;
    height: 2px;
    position: absolute;
    content: '';
    transition: 1.7s all;
    bottom: 0;
    left: 0;
    width: 0%;
}

/*.modal .inputData:after {*/
/*    background: #d6d6d6;*/
/*    height: 1px;*/
/*    position: absolute;*/
/*    content: '';*/
/*    transition: 1.7s all;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*}*/

.modal #inputPhone:focus + .inputData.color-effect:after {
    width: 100%;
}

/*
FOOTER*/
.footer_section {
    padding: 25px 0;
    background: #2e3035;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    width: auto;
    overflow: hidden;
    color: #fff;
    font-family: Montserrat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border-radius: 50px 50px 0 0;
    margin-top: 40px;
}

.footerTitle, .phone-footer {
    margin-bottom: 1rem;
    color: #fff;
}

.footerTitle {
    font-size: 20px;
}

.phone-footer a {
    color: #fff;
    padding-left: 10px;
}

.time_block {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.timer #days {
    display: block;
    float: left;
    margin: 0 8px 0 0;
    width: 46px;
    height: 60px;
    background: #f5ca16;
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    color: #222;
}

/*----Start Input form----*/
.inputData {

    position: relative;
}

#err_name, #err_phone {
    top: calc(50% - 12px);
    background: #ff1569;
    font-size: 12px;
    color: #fff;
    padding: 2px 5px;
    position: absolute;
    right: calc(50% - 171px);
    line-height: 18px;
    height: 22px;

    display: none;

}

#err_name:before, #err_phone:before {
    content: '';
    border: 11px solid transparent;
    border-right: 10px solid #ff1569;
    position: absolute;
    left: -21px;
    top: 0;
}


.responsive-gallery {
    height: 700px;
}

.responsive-gallery-video {
    height: 315px;
}
.responsive-gallery-video .slick-prev {
    left: -24px;
}

.responsive-gallery-video .slick-next {
    right: -24px;
}

.gallery-item-video {
    align-content: center;
    align-items: center;
    text-align: center;
}

.gallery-item img {
    margin-left: auto;
    margin-right: auto;
}

.responsive-gallery .slick-slide {
    height: 700px;
}

.responsive-gallery .slick-slide img {
    height: 700px;
}

.intro_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.intro_phones {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.intro_socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}
.intro_socials a {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 12px 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    transition: all .3s ease-in-out;
    border: 1px solid transparent;
    text-decoration: none;
}
.intro_socials a svg {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 5px;
    fill: transparent;
}
.intro_socials a:hover {
    border-color: #ffffff;
    border-radius: 24px;
}
@media (max-width: 768px) {
    #gallery {
        display: none;
    }

    .responsive-gallery-video .slick-prev {
        left: -2px;
    }

    .responsive-gallery-video .slick-next {
        right: -2px;
    }
    .intro_phones {
        justify-content: center;
    }
    h2.title span {
        font-size: 25px;
    }
    .row {
        margin-right: 0;
        margin-left: 0;
    }
    .heizer_flex {
        overflow: hidden;
    }
    .heizer_product .params .item .item_text {
        font-size: 18px;
    }
}
