.floating_enquire {
    position: fixed;
    right: 0;
    top: 45%;
    background: #ea222c;
    padding: 15px;
    transform: rotate(270deg) translateX(0);
    z-index: 999999;
    color: #fff;
    transform-origin: right center;
}

.floating_enquire:focus,
.floating_enquire:hover {
    color: #fff
}
h2.h4.alt-font.text-white-2 {
    text-decoration: underline;
    text-decoration-color: red;
}

label {
    width: 100%
}

.sbtbtn button,
input[type=email],
input[type=submit],
input[type=text],
select,
textarea {
    width: 100%;
    height: 40px;
    line-height: 30px
}

.sbtbtn button,
input[type=submit] {
    background: #f06850;
    color: #fff;
    border: none
}
 
.alt_error {
    color: #f06850;
    min-height: 24px
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans.woff2') format('woff2');
    font-display: swap;
}

@media screen and (max-width:600px) {
    body {
        margin-bottom: 50px
    }

    .floating_enquire {
        bottom: 40%;
        top: auto;
        transform: rotate(1) translateX(0);
        width: 40%;
        right: 0;
        text-align: center;
        border: solid;
        transform-origin: right center; 
    }
}

/* Custom CTA Section Styles */

.custom-cta-section {
    background-color: #ea222c; /* #cc0000; */
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    font-family: sans-serif;
    max-width: 100%;
    margin: 0 auto;
}

.custom-cta-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.custom-cta-text {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.custom-cta-button-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.custom-arrow {
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
    display: inline-block;
    transform: translateY(1px);
}

.custom-cta-button {
    padding: 12px 30px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.custom-cta-button:hover {
    background-color: #ffffff;
    color: #ea222c;
}

@media (max-width: 600px) {
    .custom-cta-section {
        padding: 30px 15px;
    }

    .custom-cta-title {
        font-size: 22px;
    }

    .custom-cta-text {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .custom-cta-button-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .custom-arrow {
        display: none;
    }

    .custom-cta-button {
        padding: 14px 0;
        width: 100%;
        border-radius: 6px;
        font-size: 16px;
    }
}