strong {
    font-weight: 600 !important;
} .bg-gr {
    background-color: #DB1F33 !important;
}.text-gr {
    color: #DB1F33 !important;
} .bg-gr-light {
    background: #F6FCFC;
} .btn-gr {
    background-color: #DB1F33 !important;
    color: #fff !important;
    border: 0;
} .btn-gr:hover {
    background-color: #fff !important;
    color: #020202 !important;
}

.hero-video {
    height: 100vh;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* adjust darkness */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.content-div h1,
.content-div h2,
.content-div h3,
.content-div h4,
.content-div h5,
.content-div h6 {
    margin: 15px 0;
    border-top: 1px solid #282828;
    padding-top: 15px;
} .content-div p {
    margin-bottom: 20px;
} .content-div ul li {
    list-style-type: disc;
    margin-left: 25px;
} .content-div ol li {
    list-style-type: decimal;
    margin-left: 25px;
}

/* =========================================
   Base Styles (Large Desktop: 1400px+)
========================================= */
h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================
   Laptop / Small Desktop (1200px - 1399px)
========================================= */
@media (max-width: 1399px) {
    h1 { font-size: 54px; }
    h2 { font-size: 38px; }
    h3 { font-size: 30px; }
    h4 { font-size: 24px; }
}


/* =========================================
   Tablet Landscape (992px - 1199px)
========================================= */
@media (max-width: 1199px) {
    h1 { font-size: 48px; }
    h2 { font-size: 34px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    h5 { font-size: 19px; }
    h6 { font-size: 17px; }
    p  { font-size: 15px; }
}


/* =========================================
   Tablet Portrait (768px - 991px)
========================================= */
@media (max-width: 991px) {
    h1 { font-size: 42px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    p  { font-size: 15px; }
}


/* =========================================
   Mobile Large (576px - 767px)
========================================= */
@media (max-width: 767px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }
    h5 { font-size: 17px; }
    h6 { font-size: 15px; }
    p  { font-size: 14px; }
}


/* =========================================
   Mobile Small (Below 576px)
========================================= */
@media (max-width: 575px) {
    h1 { font-size: 30px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    h5 { font-size: 16px; }
    h6 { font-size: 14px; }
    p  { font-size: 14px; }
}

.backdrop-dim {
    position: relative;
    z-index: 0;
}.backdrop-dim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}