/*------------------------------------
  Import Aptos Font
------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Aptos:wght@400;500;600;700&display=swap');

/*------------------------------------
  Global Font + Base Colors
------------------------------------*/
:root {
  /* === Brand Colors === */
  --primary: #F7B500;     /* Schlep Yellow */
  --secondary: #1C4C84;   /* Schlep Blue */
  --light: #F8F9FA;       /* Soft Light Background */
  --dark: #000000;        /* Black */

  /* === Extended Theme Colors === */
  --primary-color: #F7B500;   /* Matches brand yellow */
  --primary-dark: #1C4C84;    /* Brand blue for hover/contrast */
  --text-light: #FFFFFF;      /* White text on dark background */
  --text-dark: #333333;       /* Standard dark text */
  --bg-dark: #000000;         /* Background black */
  --tab-active-color: #1C4C84;/* Active tab highlight (brand blue) */
}

/*------------------------------------
  Typography
------------------------------------*/
html, body, h1, h2, h3, h4, h5, h6, p, a, li, span, button, input, textarea {
font-family: 'Aptos', sans-serif !important;
color: var(--text-dark);
}


/* Navigation font */
.navbar .nav-link {
font-size: 16px !important;
font-weight: 500;
text-transform: uppercase;
}


/* Header font (home page and section titles) */
header, .carousel-caption h1, .page-header h1, .section-heading h2, a {
font-size: 16px !important;
font-weight: 600;
}

/* Body text and paragraph */
body, p, li, span {
font-size: 14px !important;
line-height: 1.7;
}

/* Fine print or smaller text */
.small-text, footer, .copyright, .note {
font-size: 12px !important;
}

/*------------------------------------
Font Rendering Consistency
------------------------------------*/
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/*------------------------------------
Ensure Mobile Uses Same Font
------------------------------------*/
@media (max-width: 991.98px) {
body, html, h1, h2, h3, h4, h5, h6, p, a, li, span, button, input, textarea {
font-family: 'Aptos', sans-serif !important;
}
}

/*------------------------------------
Additional Adjustments (Optional)
------------------------------------*/
.navbar .nav-link.active, .navbar .nav-link:hover {
color: var(--primary) !important;
text-decoration: none;
}

footer {
background: var(--dark);
color: var(--text-light);
padding: 30px 0;
}

footer a {
color: var(--primary);
}

footer a:hover {
color: var(--secondary);
}


/*** Back to Top ***/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: var(--dark);
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*------------------------------------
  NAVBAR – GLOBAL
------------------------------------*/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar {
    background: var(--dark);
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

/* Yellow underline (all nav links, including dropdowns) */
.navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    width: 100%;
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
   /* content: "\f107";*/
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    vertical-align: middle;
}

/*------------------------------------
  NAVBAR – MOBILE
------------------------------------*/
@media (max-width: 991.98px) {

    .navbar {
        background: #ffffff !important;
    }

    .navbar-toggler {
        border: 1px solid #333;
        padding: 0.5rem 0.75rem;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,33,33,0.75%29' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        border: 1px solid #e0e0e0;
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.75rem 0 !important;
        color: #333 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* No underline on mobile */
    .navbar .navbar-nav .nav-link::before {
        display: none;
    }
    .navbar .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 700 !important;
    background-color: rgba(247, 181, 0, 0.15);
    }

    /* Mobile dropdown arrow (re-applied to prevent override) */
    .navbar .dropdown-toggle::after {
       /* content: "\f107";*/
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: auto;
        color: #333;
        transition: transform 0.3s ease;
    }

    /* Rotate arrow when open */
    .navbar .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .navbar .dropdown-menu {
        background: #f8f9fa !important;
        border: none !important;
        padding-left: 1rem;
        box-shadow: none !important;
        margin-top: 0.5rem !important;
        position: static !important;
        width: 100%;
    }

    .navbar .dropdown-item {
        color: #333 !important;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar .dropdown-item:hover {
        background: rgba(247, 181, 0, 0.2) !important;
        color: var(--primary) !important;
    }
}

/*------------------------------------
  NAVBAR – DESKTOP DROPDOWN
------------------------------------*/
@media (min-width: 992px) {

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background: #FFFFFF;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        position: absolute !important;
        left: 0;
        min-width: 200px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu .dropdown-item {
        color: var(--dark);
        font-weight: 500;
        padding: 8px 16px;
        transition: 0.3s;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: var(--primary);
        color: var(--dark);
    }
}

/* Ensure dropdown stays inside navbar */
.navbar .dropdown-menu.dropdown-fix {
    position: absolute !important;
    left: 0;
    right: auto;
    top: 100%;
    min-width: 240px;
    max-width: 280px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    z-index: 9999;
}
/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}


.carousel-control-prev,
.carousel-control-next {
    width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 50%;
}

.carousel-caption .breadcrumb-item + .breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}


/* --------------------------------------
   FIXED, CLEAN, RESPONSIVE SLIDER RULES
-------------------------------------- */

/* Tablet */
@media (max-width: 992px) {
    #header-carousel {
        height: 45vh;
        min-height: 300px;  /* FIX: removed 550px */
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 15%;
        transform: translateY(-50%);
    }
     
    #header-carousel {
        overflow: hidden;
        position: relative;
    }

    /* Ensure slides fill entire height */
    #header-carousel .carousel-item {
        height: 150px;
    }

    /* Ensure images fill slide area */
    #header-carousel .carousel-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #header-carousel {
        height: 40vh;       /* Controls total height */
        overflow: hidden;
    }

    /* Slides fill entire carousel */
    #header-carousel .carousel-item {
        height: 100%;
    }

    /* Images fill entire slide area */
    #header-carousel .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Arrows position */
    .carousel-control-prev,
    .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    #header-carousel {
        height: 35vh;
        min-height: 220px;  /* FIX: lowered for tiny screens */
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 22%;
    }
     
#header-carousel {
    overflow: hidden;
    position: relative;
}

/* Ensure slides fill entire height */
#header-carousel .carousel-item {
    height: 150px;
}

/* Ensure images fill slide area */
#header-carousel .carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    display: block;
}
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url(../img/contact-heading.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary);
}

/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}

/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #000000 !important;
}

/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)),
        url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: #1C4C84;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    background-color: #1C4C84;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #1C4C84;
    background: var(--secondary);
    border-color: var(--secondary);
}

/*** Footer ***/
.footer {
    background: var(--dark);
    color: #bbbbbb;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #bbbbbb;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #bbbbbb;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    box-shadow: none;
    letter-spacing: 1px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--secondary);
}

/*------------------------------------
  PRODUCT PAGE
------------------------------------*/

/* Partner Logo Section */
.partner-logo-section {
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.partner-logo-section img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.product-header {
    background-color: #f5f5f5 !important;
}

/* Split Container */
.split-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    background-color: #fff;
    margin-top: 0;
}

/* Left Section */
.left-section {
    flex: 1 1 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left-section img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.left-section img:hover {
    transform: scale(1.05);
}

/* Right Section */
.right-section {
    flex: 1 1 50%;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.right-section .product-info {
    margin-top: 20px;
}

.right-section .info-label {
    font-weight: 600;
    color: #ccc;
}

.right-section .info-value {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

/* Tabs */
.nav-tabs {
    border-bottom: 3px solid #e0e0e0;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}

.nav-tabs .nav-item {
    flex: 1;
    text-align: center;
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 10px 0;
    font-weight: 600;
    color: #333;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    margin-right: 2px;
}

.nav-tabs .nav-link.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000 #000000 transparent;
}

.nav-tabs .nav-link:hover:not(.active) {
    background-color: #000000;
    color: #ffffff;
}

/* Tab Content */
.tab-content {
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-top: none;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    margin-top: 10px;
}

/* Product boxes */
.product-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-box img {
    width: auto;
    height: 250px;
    object-fit: contain;
    margin-bottom: 15px;
}

/*------------------------------------
  BANNER LABELS
------------------------------------*/

/* Left-side red label */
.banner-left-label {
    position: absolute;
    top: 84%;
    left: 30px;
    transform: translateY(-50%);
    background-color: #d32f2f;
    padding: 20px 30px;
    color: #ffffff; 
    text-align: left;
    max-width: 470px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.banner-left-label h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: #ffffff !important;
}

/* Banner Left Red Label - Wire */
.banner-left-label-wire {
    position: absolute;
    top: 84%;
    left: 30px;
    transform: translateY(-50%);
    background-color: #d32f2f;
    padding: 20px 30px;
    color: #ffffff;
    text-align: left;
    max-width: 550px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.banner-left-label-wire h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold; 
    color: #ffffff;
}

/* Banner Pronix */
.banner-left-label-pronix {
    position: absolute;
    top: 91%;
    left: 30px;
    transform: translateY(-50%);
    background-color: #008d42;
    padding: 20px 30px;
    color: #ffffff;
    text-align: left;
    max-width: 620px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.banner-left-label-pronix h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold; 
    color: #ffffff;
}

/* Banner Sebeary */
.banner-left-label-sebeary {
    position: absolute;
    top: 91%;
    left: 30px;
    transform: translateY(-50%);
    background-color: #F06E21;
    padding: 20px 30px;
    color: #ffffff;
    text-align: left;
    max-width: 620px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.banner-left-label-sebeary h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold; 
    color: #ffffff;
}

/* Responsive banner labels */
@media (max-width: 768px) {
    .banner-left-label,
    .banner-left-label-wire,
    .banner-left-label-pronix,
    .banner-left-label-sebeary {
        left: 15px;
        padding: 15px 20px;
        max-width: 90%;
    }
    
    .banner-left-label h1,
    .banner-left-label-wire h1,
    .banner-left-label-pronix h1,
    .banner-left-label-sebeary h1 {
        font-size: 1.8rem;
    }
}

/*------------------------------------
  TINYMCE CONTENT STYLES
------------------------------------*/
.tinymce-content {
  font-family: 'Aptos', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.7;
  color: #333;
}

.tinymce-content strong,
.tinymce-content b {
    font-weight: 700;
    color: #000;
}

.tinymce-content em,
.tinymce-content i {
    font-style: italic;
}

.tinymce-content p {
    margin-bottom: 15px;
}

.tinymce-content p[style*="text-align:justify"],
.tinymce-content div[style*="text-align:justify"] {
    text-align: justify !important;
}

.tinymce-content ul,
.tinymce-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.tinymce-content ul li,
.tinymce-content ol li {
    margin-bottom: 8px;
    list-style: disc;
}

.tinymce-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tinymce-content table,
.tinymce-content th,
.tinymce-content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tinymce-content .mb15 {
    margin-bottom: 15px !important;
}

.tinymce-content .lgrid2,
.tinymce-content .nlgrid {
    display: block;
    list-style: disc inside;
    margin-left: 20px;
}

.tinymce-content .excont {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #e7a00a;
    margin-bottom: 20px;
}

/*------------------------------------
  UTILITY CLASSES
------------------------------------*/

/* Hover Shadow */
.hover-shadow:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

.text-body {
    color: #1C4C84 !important;
}

.bg-primary {
    background-color: #1C4C84 !important;
}

.text-warning {
    color: #1C4C84 !important;
}

/*------------------------------------
  SWIPER SLIDER
------------------------------------*/
.my-product-slider {
    width: 100%;
    max-width: 100%;
    height: 500px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.my-product-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.my-product-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

/* Responsive Swiper */
@media (max-width: 768px) {
    .my-product-slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .my-product-slider {
        height: 220px;
    }
}

/*------------------------------------
  WHATSAPP FLOAT BUTTON
------------------------------------*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float .whatsapp-icon {
    width: 40px;
    margin-top: 10px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}
/* GLOBAL FIX — Removes unwanted white space before & after banner */
.product-header.partner-logo-section,
.product-header.partner-logo-section .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ===========================================
   GLOBAL RESPONSIVE BANNER SYSTEM (FINAL)
   =========================================== */

/* Wrapper */
.page-banner {
    width: 100%;
    height: 320px;              /* Desktop height */
    position: relative;
    overflow: hidden;
    margin: 0 !important;       /* Removes white gap */
    padding: 0 !important;
}

/* Background Image */
.page-banner-bg {
    width: 100%;
    height: 100%;
    background-size: cover;         /* Always fills */
    background-position: center top; 
    background-repeat: no-repeat;
}

/* LEFT LABEL */
.page-banner .banner-left-label {
    position: absolute;
    top: 88%;                      /* Perfect vertical balance */
    left: 20px;
    padding: 18px 26px;
    color: #fff;
    max-width: 75%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Label Title */
.page-banner .banner-left-label h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ==========================
   TABLET
   ========================== */
@media (max-width: 768px) {
    .page-banner {
        height: 260px;
    }
    .page-banner .banner-left-label h1 {
        font-size: 1.6rem;
    }
}

/* ==========================
   MOBILE
   ========================== */
@media (max-width: 480px) {
    .page-banner {
        height: 220px;
    }
    .page-banner .banner-left-label {
        top: 88%;
        max-width: 85%;
        padding: 12px 18px;
    }
    .page-banner .banner-left-label h1 {
        font-size: 1.3rem;
    }
}

.display-6 {
  font-size: 18px !important;
 
}

.a-hyperlink {
  font-size: 14px !important;
 
}

.bullet-class {
  font-size: 14px !important;
 
}