/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap"); */

:root {
    --red: #ed3237;
    --white: #fff;
    --light-red: #d42f2f;
}

.light-red {
    background-color: var(--light-red);
}
body {
    font-family: "Poppins", sans-serif;
}
.col-4 {
    flex: 0 0 auto;
    width: 30.533333% !important;
}
.col-8 {
    flex: 0 0 auto;
    width: 61.666667% !important;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: var(--red);
}
/* ----------------form--------------- */
.form-control {
    color: var(--red) !important;
}
/* -------------------FOrm------------------- */

.vh-80 {
    height: 80vh;
}

.vh-70 {
    height: 70vh;
}

.bg-banner {
    background: url("../images/banner-image.jpg");
    background-position: top;
    background-size: cover;
}

.nav-link {
    font-size: 0.95rem;
}
.fs-6 {
    font-size: 0.9rem !important;
}
.text-small {
    font-size: 0.7rem;
}
.rounded {
    border-radius: 9% !important;
}
.img-circle {
    border-radius: 50%;
}
.active {
    color: var(--red);
}

.banner_head {
    color: var(--red);
}
.banner_image {
    background-image: url("../images/banner.jpg");
    background-size: cover;
    height: 500px;
    background-position: center;
    border-radius: 20% 0;
}
.scale {
    transform: scale(1);
    transition: transform 0.5s ease;
}
.scale:hover {
    transform: scale(1.05);
}
.banner_text1 {
    top: 19%;
    left: -87px;
    font-size: 0.8rem;
    font-weight: bold;
}
.banner_text2 {
    bottom: 14px;
    left: -87px;
    font-size: 0.8rem;
    font-weight: bold;
}
.banner_text3 {
    top: -17px;
    right: -87px;
    font-size: 0.8rem;
    font-weight: bold;
}
.banner_text4 {
    top: 223px;
    right: -88px;
    font-size: 0.8rem;
    font-weight: bold;
}
.section_margin {
    margin: 0 0 70px 0;
}
.quote {
    z-index: 2;
}

.page-break {
    page-break-after: always;
}
@page {
    margin: 0px;
}
tfoot tr td {
    font-weight: bold;
    font-size: x-small;
}
.information {
    background-color: #ec3737;
    color: #fff;
}

.footer-admin {
    position: absolute !important;
    bottom: 0 !important;
    width: 100%;
}

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

.search_svg {
    animation: zoominoutsinglefeatured 1s infinite;
}
.list-group-item.active {
    background-color: #d42f2f !important;
    border-color: #d42f2f;
}

@keyframes textanim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.text-anim {
    animation: textanim 2s infinite;
}

.promotion {
    background: url("../images/promotion.png");
    /* filter: grayscale(100%); */
}

.page-link {
    color: var(--red);
}
.page-link:hover {
    color: var(--light-red);
}
.page-item.active .page-link {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
}

