:root {
    /* --primary-bg-color: linear-gradient(to right, #008fd6 0%, #0084c5 50%, #ef612e 50%, #ef612e 100%) no-repeat scroll right bottom / 210% 100% #ef612e !important; */
    --primary-bg-color: #A81D25;
    --primary-hover-bg-color: linear-gradient(to right, #008fd6 0%, #0084c5 50%, #ef612e 50%, #ef612e 100%) no-repeat scroll right bottom / 210% 100% #ef612e !important;
    --primary-background-color: #A81D25;
    --seconndary-background-color: #1690d3;
    --section-bg-color: #f6f7f8;
    --secondary-light-bg-color: #004280;

    --primary-color: #A81D25;
    --primary-hover-color: black;
    --secondary-color: #1690d3;
    --normal-text-color: #888d93;
    --normal--dark-text-color: #21303e;
    --secondary-text-color: black;
    --secondary-light-text-color: #004280;

    --primary-border-color: #dee0e1;
    --primary-active-border-color: black;
    --secondary-border-color: #A81D25;

    --default-font-weight: 700;

    --primary-heading-font-size: 35px;
}

@media (max-width:600px) {
    :root {
        --primary-heading-font-size: 25px;
    }
}

#loader {
    display: none;
    position: fixed;
    z-index: 99999;
    text-align: center;
    inset: 0;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #cccccc70;
}

.circle {
    display: inline-block;
    background-color: var(--primary-background-color);
    height: 15px;
    width: 15px;
    border-radius: 25px;
}

#ball-1 {
    -webkit-animation-name: bounce;
    -webkit-animation-delay: 1s;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
}

#ball-2 {
    -webkit-animation-name: bounce;
    -webkit-animation-delay: 1.1s;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
}

#ball-3 {
    -webkit-animation-name: bounce;
    -webkit-animation-delay: 1.2s;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(23px);
    }

    60% {
        transform: translateY(-25px);
    }

    80% {
        transform: translateY(0);
    }
}

* {
    font-family: "Montserrat", sans-serif;
}

.common-icons {
    font-family: 'cpbs-meta-icon' !important;
}

.common-title {
    font-size: var(--primary-heading-font-size);
    font-weight: var(--default-font-weight);
    color: var(--normal--dark-text-color);
    line-height: 1.3;
    padding-bottom: 0.29em;
    position: relative;
    /* text-align: center; */
}

.common-sub-title {
    color: var(--secondary-light-text-color);
}

.common-title.light-title {
    color: white;
}

.common-title::before {
    content: '';
    height: 3px;
    width: 40px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.common-title.pink-border::before {
    background-color: #ef612e;
}

.common-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-light-text-color);
}

.common-heading-small {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-light-text-color);
}

/* Navbar CSS  */
nav.navbar {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

nav.navbar a.nav-link {
    color: var(--normal--dark-text-color);
    font-weight: 600;
    padding: 1em 1.2em;
}

.auth_true .nav-item {
    display: inline-block;
}

#main_nav {
    /* overflow-y: auto; */
    max-height: 100vh;
}

/* Footer CSS  */

footer {
    background: #1f2e3b;
}

footer a {
    text-decoration: none !important;

}

.footer-logo img {
    width: 150px;
}

.footer-row {
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-headings {
    color: #ffffff;
    font-size: 1.875em;
    font-weight: 700;
    /* line-height: 1.87; */
    margin-bottom: 1.7rem;
}

.footer-row a,
.footer-row p {
    color: #9da0a4;
    font-size: 16px;
    font-weight: 600;
}

.footer-contact-info p,
.footer-contact-info a {
    color: white;
}

.footer-row a:hover {
    color: white;
}

.footer-bottom {
    background-color: #0e0d12;
    color: var(--normal-text-color);
    padding: 15px 0;
}

.footer-bottom a {
    color: white;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: #1690d3;
}

.icon-location {
    color: var(--primary-color);
}

.telephone_icon {
    color: var(--primary-hover-color);
}

a:hover {
    color: #0056b3;
    text-decoration: none !important;
}