/* START Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(219, 86, 71, 0.6);
    }
    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 8px rgba(219, 86, 71, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(219, 86, 71, 0);
    }
}
/* END Animations */

body .slides .main-slide-text {
    bottom: 79px;
    top: auto;
}
@media (max-width: 620px) {
    body .slides .main-slide-text p {
        font-size: 1rem !important;
        line-height: 1.7rem;
    }

    body .slides .main-slide-text {
        bottom: 0;
    }
}

/* START Home page slider call to action button START */

body .slider .callToAction-v1 {
    background: none;
    height: auto;
    padding: 0px 0px 12px 0px;
}
body .slider .callToAction-v1 .action.button {
    background: #db5647e8;
    padding: 0px 25px;
    border: 3px solid #f9d0d0;
    border-radius: 3px;
    
    animation: pulse 1.6s infinite;
    position: relative;
}
body .slider .callToAction-v1 .action.button a {
    font-size: 1.2rem;
}
body .callToAction-v1__specialoffer {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #db5647e8;
    padding: 8px 0px;
}
body .callToAction-v1__specialoffer p {
    color: #ffffff;
    font-size: 1.2rem !important;
}
body .callToAction-v1__container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 620px) {
    body #project01 .sectionContainer .title.dark {
        padding: 0;
        text-align: center;
    }
    body .callToAction-v1__specialoffer p {
        font-size: 1.2rem !important;
    }
}
/* END Home page slider call to action button END */


/*START fix-footer */
body .fix-footer {
    background: #db5647e8;
    text-align: center;
}
body .sales-popup-form.show {
    z-index: 999999;
}
/* END fix-footer */

/*START Services special offer */
body .services .services__special-offer {
    background: #db5647e8;
    display: flex !important;
    align-items: center;
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    
    cursor: pointer;
}
.services__special-offer p {
    color: #ffffff;
}
@media (max-width: 620px) {
    body .services .services__special-offer {
        display: none !important;
    }
}
/* END Services special offer */

/*START Video-player */
body .ytVideoBlock {
    z-index: 999999;
}