@font-face {
    font-family: Calibri;
    src: url(/static/font/calibri-regular.ttf);
    font-weight: regular;
}

@font-face {
    font-family: Calibri;
    src: url(/static/font/calibri-bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Dosis;
    src: url(/static/font/Dosis-Bold.ttf);
    font-weight: bold;
}

:root, [data-bs-theme="light"] {
    --bs-primary: #A90A0A;
    --bs-primary-rgb: 169, 10, 10;
    --bs-body-color: #374151;
    --nm-dark-1: #23212A;
    --nm-dark-2: #111827;
    --nm-grayish: #848484;
    --nm-grayish-2: #E5E5E5;
    --nm-blue: #133477;
    --nm-yellow: #FBE09C;
    --nm-whitish: #D9DBE1;
    --nm-red: #D30202;
    --bs-link-hover-color: var(--bs-primary);
    --bs-link-color-rgb: 169, 10, 10;
}

body {
    font-family: 'Calibri', sans-serif;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-check-input:checked {
    background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:focus {
    box-shadow: none;
  }

input[type=number] {
    -moz-appearance: textfield;
}

.list-style-none li {
    list-style: none;
}

.country-list {
    max-height: 150px;
    overflow-y: auto;
}

.form-select:focus {
    border-color: inherit;
    outline: 0;
    box-shadow: none;
}

.mw-840 {
    max-width: 840px;
}

.mw-650 {
    max-width: 650px;
}

.mw-550 {
    max-width: 550px;
}

.red-bg-img {
    background: url("/static/assets/img/red-bg.png") 50% / cover no-repeat, #A90A0A 50% / cover no-repeat;
}

.cta-section {
    background: url("/static/assets/img/cta-bg.jpg") 50% / cover no-repeat, #A90A0A 50% / cover no-repeat;
}

.bg-blue {
    background-color: var(--nm-blue);
}

.bg-grayish-2 {
    background-color: var(--nm-grayish-2);
}

.bg-yellow {
    background-color: var(--nm-yellow);
}

.bg-grey {
    background: linear-gradient(0deg, #F8F9FA 0%, #F8F9FA 100%), #F0F0F0;
}

.line-around {
    position: relative;
    z-index: 1;
}

.line-around button {
    z-index: 2;
}

.line-around::after {
    content: "";
    width: 100%;
    height: 0px;
    border-top: 1px dashed #E4E5E9;
    position: absolute;
    left: 0;
    top: 50%;
}

.icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-pointer {
    position: relative;
    margin-bottom: 1.5rem;
}

.title-pointer::after {
    content: "";
    width: 68px;
    height: 4px;
    position: absolute;
    bottom: -.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bs-primary);
    border-radius: 14px;
}

/* Font Style Start */
.text-dosis {
    font-family: 'Dosis', sans-serif;
}

.text-dark-1 {
    color: var(--nm-dark-1);
}

.text-dark-2 {
    color: var(--nm-dark-2);
}

.text-blue {
    color: var(--nm-blue);
}

.text-whitish {
    color: var(--nm-whitish);
}

.text-body {
    color: var(--bs-body-color);
}

.text-red {
    color: var(--nm-red);
}

.text-grayish {
    color: var(--nm-grayish);
}

.fs-18 {
    font-size: 18px;
}

.fs-16 {
    font-size: 1rem;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fs-13 {
    font-size: 13px;
}

.fs-12 {
    font-size: 12px;
}

.fs-11 {
    font-size: 11px;
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 3.75rem;
    }
}

/* Font Style End */
/* Form Style Start */
.input-group-text {
    position: absolute;
    z-index: 6;
}

.form-control {
    color: #23212A;
}

.form-control::placeholder {
    color: #23212A;
    opacity: .3;
}

.dropdown-toggle::after {
    /* position: absolute; */
}

.pointer {
    cursor: pointer;
}

.box-shadow-none {
    box-shadow: none !important;
}

.dropdown-toggle:focus, .form-control:focus {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); 
    border-color: var(--bs-border-color);
}

.dropdown-menu {
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.20);
    cursor: pointer;
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: #F2F2F2;
}

.dropdown-menu li {

}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #A90A0A;
    --bs-btn-border-color: #A90A0A;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #133477;
    --bs-btn-hover-border-color: #133477;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #A90A0A;
    --bs-btn-active-border-color: #A90A0A;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

/* Form Style End */
.accordion {
    --bs-accordion-btn-bg: rgba(248, 249, 250, 0.50);
    --bs-accordion-active-bg: #A90A0A;
    --bs-accordion-active-color: #fff;
    --bs-accordion-btn-icon: url("https://test.moovax.com/static/assets/svg/toggle-down.svg");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2016%204%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.843%203.15568c.639%200%201.157-.51746%201.157-1.15578S15.482.844116%2014.843.844116H1.15696c-.638981%200-1.15697526.517464-1.15697526%201.155784%200%20.63832.51799426%201.15578%201.15697526%201.15578H14.843Z%22%2F%3E%3C%2Fsvg%3E");
}

.accordion-button:not(.collapsed)::after {
    transform: translateY(-40%) rotate(-180deg);
    filter: invert(1);
}

.accordion-button {
    font-weight: normal;
}

.accordion-button:not(.collapsed) {
    font-weight: bold;
}

.accordion-button:focus {
    border-color: inherit;
    box-shadow: none;
}

/* Header Start */
.navbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22none%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M4%2018h16M4%2012h16M4%206h16%22%2F%3E%3C%2Fsvg%3E");
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-nav {
    --bs-nav-link-color: #fff;
    --bs-navbar-active-color: #fff;
    --bs-navbar-hover-color: #fff;
}

.navbar-nav .nav-link.active {
    font-weight: 700;
    opacity: 1;
}

.navbar-nav .nav-link {
    position: relative;
    opacity: .87;
}

.navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
}

/* Header End */
/* Testimonial Start  */
.testimonial-carousel .testimonial-item .card {
    background-image: url("/static/assets/svg/quote.svg") !important;
    background-repeat: no-repeat;
    background-position: 18px 26px;
}

.author-subtitle {
    color: #6C4B98;
    opacity: 0.4;
}

.testimonials .testimonial-text {
    font-size: 12px;
}

.testimonials .navContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .navContainer button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.testimonials .owl-stage-outer {
    padding: 30px 0;
}

.testimonials .owl-item {
    opacity: .5;
}

.testimonials .owl-dots .owl-dot span {
    position: relative;
    height: 7.5px;
    width: 7.5px;
    border-radius: 50%;
    display: block;
    background: transparent;
    border: 0.469px solid #AD1818;
    margin: 0 5px;
}

.testimonials .owl-dots .owl-dot {
    background-color: transparent;
    border: none;
    padding: 0;
}

.testimonials .owl-dots .owl-dot.active {
    box-shadow: none;
}

.testimonials .owl-dots .owl-dot.active span {
    background: #AD1818;
    width: 12px;
    height: 12px;
}

.testimonials .owl-dots {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 2rem;
}

.testimonials .card {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 8px 32px 0px rgba(13, 15, 40, 0.08);
    margin: 0 20px;
    padding: 0 10px;
    border: 0;
}

.testimonials .active {
    transition: all 0.3s;
}

.testimonials .center .testimonial-text {
    font-size: 1rem;
}

.testimonials .center {
    opacity: 1;
}

.testimonials {
    position: relative;
}

@media (max-width: 767px) {
    .testimonials {
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .testimonials .owl-item {
        opacity: 1;
    }
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-nav button {
    &.owl-next, &.owl-prev {
        outline: 0;
    }
}

/* Testimonial End  */
/* Footer Start */
.footer-social li a {
    background: rgba(146, 146, 146, 0.24);
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.list-seperator li:not(:last-child)::after {
    content: "|";
    padding-inline: .5rem;
    color: var(--nm-whitish);
}

.list-seperator li {
    padding: 0;
}

/* Footer End */
.button-qty {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0px 3.555548667907715px 7.11109733581543px rgba(50, 50, 50, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-qty.disabled {
    opacity: 0.6;
}

.btn-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 992px) {
    .navbar-nav .nav-link.active::after, .navbar-nav .nav-link:hover::after {
        height: 1px;
    }
}

@media screen and (min-width: 576px) {
    .position-sm-absolute {
        position: absolute;
    }
}
.hover-pointer{
    cursor: pointer;
}