

/****** Contact Form PopUp ******/
.page-left-contact {
    position: fixed;
    top: 50%;
    left: -85px;
    height: 50px;
    transform: translate(0, -50%) rotate(90deg);
    z-index: 99;
    display: flex;
    background-color: var(--theme-color-01);
    overflow: hidden;
}

.page-left-contact .contact-form {
    text-align: center;
    color: var(--white-color);
    position: relative;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-left-contact .contact-call {
    text-align: center;
    color: var(--white-color);
    height: 50px;
    width: 50px;
    position: relative;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: rotate(-90deg);
}

.page-left-contact .contact-whats {
    text-align: center;
    color: var(--white-color);
    height: 50px;
    width: 50px;
    position: relative;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: rotate(-90deg);
}

.page-left-contact a .contact-form,
.page-left-contact a .contact-form:focus {
    color: var(--white-color);
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    background-color: var(--blue-color-01);
    transition: all 0.3s ease-in-out;
}

    .page-left-contact a .contact-form:hover {
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

.page-left-contact a .contact-call,
.page-left-contact a .contact-call:focus {
    color: var(--white-color);
    display: block;
    background-color: var(--blue-color-02);
    transition: all .3s ease-in-out;
}

    .page-left-contact a .contact-call:hover {
        color: var(--white-color);
        background-color: var(--blue-color-03);
        transition: all .3s ease-in-out;
    }

    .page-left-contact a .contact-call .svg {
        width: 20px;
        height: auto;
        fill: var(--white-color);
    }

.page-left-contact a .contact-whats,
.page-left-contact a .contact-whats:focus {
    color: var(--white-color);
    display: block;
    fill: var(--white-color);
    background-color: var(--blue-color-02);
    transition: all .3s ease-in-out;
}

    .page-left-contact a .contact-whats:hover {
        color: var(--white-color);
        background-color: #25D366;
        transition: all 0.3s ease-in-out;
    }

    .page-left-contact a .contact-whats .svg {
        width: 20px;
        height: auto;
        fill: var(--white-color);
    }

.fast-contact-form {
    position: fixed;
    top: 40%;
    left: 60px;
    height: auto;
    width: 300px;
    transform: translate(0, -50%);
    z-index: 99;
    padding: 1rem;
    background-color:#fff;
    color:#000;
    border: 2px solid var(--blue-color-01);
    margin-top: 72px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

    .fast-contact-form .form-outline .form-control {
        background-color: #fff;
    color:#000;
    }
    .fast-contact-form .mb-3 {
        width: 100%;
    }

    .fast-contact-form::before {
        position: absolute;
        content: "";
        height: 10px;
        width: 10px;
        background: var(--white-color);
        left: 0px;
        top: 10px;
        transform: translate(-50%) rotate(45deg);
    }

    .fast-contact-form.show {
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease-in-out;
    }

.fast-contact-form-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 90;
    display: none;
    transition: all 0.3s ease-in-out;
}

.con-form .fast-contact-form-bg {
    display: block;
    transition: all 0.3s ease-in-out;
}


/****** Contact Banner ******/

.contact-banner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 1rem;
    margin: 1.5rem 0;
    border: 1px solid var(--blue-color-01);
    border-radius: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
    position: relative;
    z-index: 0;
    width: auto;
    height: auto;
}

    .contact-banner::before {
        content: "";
        background-color: #00000040;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .contact-banner img.logo-cus {
        width: auto;
        height: 50px;
    }

    .contact-banner img.svg {
        width: auto;
        height: 22px;
        fill: var(--white-color);
    }
    .contact-banner .svg {
        width: auto;
        height: 22px;
        fill: var(--white-color);
    }



/****** Offer PopUp ******/

.offer-popup {
    position: relative;
    display: block;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: none;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    color: var(--white-color);
    background-color: var(--blue-color-01);
}

    .offer-popup .offer-popup-img {
        padding: 0;
        padding-top: 50%;
        margin: 0;
        border-radius: 0;
        border: none;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
    }

    .offer-popup .popup-body {
        padding: 1.5rem;
        position: relative;
    }

    .offer-popup .popup-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
    }

.model-frameless.model-popup .btn-close {
    top: -1.5rem;
    right: 0;
}


/****** Article Content ******/

.article-content {
    position: relative;
}

.article-content-card {
    background-color: var(--blue-color-05);
    padding: .5rem;
    color: var(--white-color);
    border: 1px solid var(--blue-color-01);
    border-radius: 0;
    margin-bottom: 1.5rem;
}

    .article-content-card .article-content-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: inline-block;
        padding-bottom: .5rem;
        border-bottom: 1px solid var(--blue-color-01);
    }

    .article-content-card p {
        font-size: .9375rem;
    }

    .article-content-card a.art-link,
    .article-content-card a.art-link:focus {
        position: relative;
        font-size: .9375rem;
        color: var(--white-color);
        display: block;
        padding-top: .5rem;
        padding-bottom: .5rem;
        padding-right: 1rem;
        transition: all 0.3s ease-in-out;
    }

        .article-content-card a.art-link:hover {
            color: var(--blue-color-01);
            transition: all 0.3s ease-in-out;
        }

        .article-content-card a.art-link::before {
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: var(--white-color);
            font-size: .875rem;
            font-weight: 300;
            margin-right: 0;
            position: absolute;
            top: 20px;
            right: 0;
            transition: all 0.3s ease-in-out;
        }

        .article-content-card a.art-link:hover::before {
            background-color: var(--blue-color-01);
            transition: all 0.3s ease-in-out;
        }
.rc-anchor-normal {
    width: 87%!important;
    float: right!important;
}