/* Custom */
.z-index-1 {
    z-index: 1;
}
.btn-primary {
    --bs-btn-bg: #dc2626 !important;
    --bs-btn-color: #fff;
    --bs-btn-border-color: #dc2626;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b91c1c;
    --bs-btn-hover-border-color: #b91c1c;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b91c1c;
    --bs-btn-active-border-color: #b91c1c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
}

.btn-outline-primary {
    --bs-btn-color: #dc2626;
    --bs-btn-border-color: #dc2626;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #dc2626;
    --bs-btn-hover-border-color: #dc2626;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b91c1c;
    --bs-btn-active-border-color: #b91c1c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.bg-primary {
    background-color: #dc2626 !important;
}

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #374151;
    --bs-btn-border-color: #374151;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #4b5563;
    --bs-btn-hover-border-color: #4b5563;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4b5563;
    --bs-btn-active-border-color: #4b5563;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
}

.text-bg-primary {
    color: #fff !important;
    background-color: #dc2626 !important;
}

.text-primary {
    color: #dc2626 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #dc2626 !important;
}

.swiper-pagination-bullet-active {
    background-color: #dc2626 !important;
}
/* Styles */

.navbar {
    z-index: 9999;
    transition: 0.4s ease-in-out;
}
.navbar.navbar-scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-size: 0.9rem !important;
}

.navbar > a img {
    transition: 0.4s ease-in-out;
}

.navbar.navbar-scrolled > a img {
    width: 180px !important;
}
.navbar button {
    transition: 0.4s ease-in-out;
}
.navbar.navbar-scrolled button {
    font-size: 0.9rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
}

header {
    background-color: #192130;
    padding-bottom: 8rem !important;
}

header > svg {
    color: #f8f9fa;
}

.features-cards-animated-div {
    clip-path: polygon(100% 0px, 100% 100%, 0px 100%);
    opacity: 0;
    background-color: rgb(239 68 68 /  1);
    width: 3rem;
    height: 3rem;
    transition: 0.4s ease-in-out;
}
.card:has(.features-cards-animated-div) .card-body {
    transition: 0.4s ease-in-out;
}

.card:has(.features-cards-animated-div):hover .features-cards-animated-div {
    opacity: 0.2;
}
.card:has(.features-cards-animated-div):hover .card-body {
    background-color: rgb(239 68 68 /  0.1);
}

table tr td {
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

table tr:hover td {
    background-color: rgb(239 68 68 /  0.2);
}

footer {
    background-color: #111827;
}

footer svg {
    width: 30px;
    height: 30px;
    transition: 0.4s ease-in-out;
}
footer svg:hover {
    color: #fff !important;
}

footer form input {
    background-color: rgb(31, 41, 55);
    transition: 0.4s ease-in-out;
    border: 1px solid rgb(31, 41, 55) !important;
    outline: none;
}

footer form input:focus {
    border: 1px solid rgb(239 68 68 /  1) !important;
}

footer hr {
    border-color: rgb(31, 41, 55);
    border-width: 3px;
}

footer a {
    transition: 0.4s ease-in-out;
}
footer a:hover {
    color: #fff !important;
}
.scale-up-hover {
    transition: 0.5s ease-in-out;
}
.scale-up-hover:hover {
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 600px) {
    body header > svg.bottom-0 {
        bottom: -6vh !important;
    }
}