/* =====================================================
   DRUG FREE COUNTRY - HEADER
   All custom classes use the "dfc-" prefix
===================================================== */


/* ===============================
   GLOBAL HEADER RESET
================================ */

.dfc-site-header,
.dfc-site-header *,
.dfc-site-header *::before,
.dfc-site-header *::after {
    box-sizing: border-box;
}


/* ===============================
   HEADER CONTAINER
================================ */

.dfc-header-container {
    width: 100%;
    max-width: 1375px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 30px;
    padding-right: 30px;
}


/* ===============================
   PHONE BAR
================================ */

.dfc-phone-bar {
    width: 100%;

    height: 39px;

    background: #2f8df4;

    display: flex;
    align-items: center;
}


.dfc-phone-link {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    line-height: 1;
}


.dfc-phone-link i {
    font-size: 13px;
}


.dfc-phone-link:hover {
    color: #ffffff;
}


/* ===============================
   MAIN NAVBAR
================================ */

.dfc-main-navbar {
    width: 100%;

    background: #ffffff;

    position: relative;

    z-index: 1000;

    border-bottom: 1px solid #f1f1f1;
}


.dfc-navbar-inner {
    height: 99px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ===============================
   LOGO
================================ */

.dfc-brand-logo {
    display: inline-flex;

    align-items: center;

    text-decoration: none;

    white-space: nowrap;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 29px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.8px;

    position: relative;

    padding-top: 1px;
}


.dfc-brand-red {
    color: #ed2024;
}


.dfc-brand-blue {
    color: #2d8df0;

    margin-left: 7px;

    text-decoration: underline;

    text-decoration-thickness: 3px;

    text-underline-offset: 5px;
}





/* ===============================
   DESKTOP NAVIGATION
================================ */

.dfc-desktop-navigation {
    height: 100%;

    display: flex;

    align-items: center;

    gap: 33px;
}


/* Normal navigation links */

.dfc-nav-item {
    display: inline-flex;

    align-items: center;

    height: 100%;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.dfc-nav-item:hover {
    color: #2d8df0;

    text-decoration: none;
}


.dfc-nav-active {
    color: #2d8df0;
}


/* ===============================
   TREATMENTS DROPDOWN
================================ */

.dfc-nav-dropdown {
    height: 100%;

    display: flex;

    align-items: center;

    position: relative;
}


.dfc-dropdown-button {
    height: 100%;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0;

    border: 0;

    outline: none;

    background: transparent;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 500;

    cursor: pointer;
}


.dfc-dropdown-button i {
    font-size: 12px;

    transition: transform 0.25s ease;
}


.dfc-dropdown-button.dfc-dropdown-open i {
    transform: rotate(180deg);
}


.dfc-dropdown-button:hover {
    color: #2d8df0;
}


/* Dropdown menu */

.dfc-dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);

    left: 50%;

    transform: translate(-50%, 10px);

    width: 235px;

    padding: 9px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 3px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


.dfc-dropdown-menu.dfc-dropdown-visible {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translate(-50%, 0);
}


.dfc-dropdown-menu a {
    display: block;

    padding: 11px 18px;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.dfc-dropdown-menu a:hover {
    color: #2d8df0;

    background: #f5f9ff;
}

/* =====================================================
   TREATMENTS LOCATION DROPDOWN
===================================================== */

.dfc-location-dropdown {
    width: 270px;

    max-height: 520px;

    overflow-y: auto;

    padding: 8px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 0;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.10);
}


/* Individual location */

.dfc-location-dropdown a {
    display: block;

    width: 100%;

    padding: 10px 20px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.55;

    text-decoration: none;

    background: #ffffff;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


/* Hover / active style */

.dfc-location-dropdown a:hover {
    color: #555555;

    background: #f5f5f5;
}


/* First item similar to your screenshot */

.dfc-location-dropdown a:first-child {
    background: #f5f5f5;
}


/* Scrollbar */

.dfc-location-dropdown::-webkit-scrollbar {
    width: 5px;
}

.dfc-location-dropdown::-webkit-scrollbar-track {
    background: #ffffff;
}

.dfc-location-dropdown::-webkit-scrollbar-thumb {
    background: #cccccc;

    border-radius: 10px;
}

/* ===============================
   MOBILE MENU BUTTON
================================ */

.dfc-mobile-toggle {
    display: none;

    width: 44px;

    height: 42px;

    padding: 8px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.dfc-mobile-toggle span {
    display: block;

    width: 28px;

    height: 3px;

    margin: 5px auto;

    background: #222222;

    border-radius: 3px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Hamburger → X */

.dfc-mobile-toggle.dfc-menu-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}


.dfc-mobile-toggle.dfc-menu-open span:nth-child(2) {
    opacity: 0;
}


.dfc-mobile-toggle.dfc-menu-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ===============================
   MOBILE NAVIGATION
================================ */

/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.dfc-mobile-navigation {
    display: none;

    width: 100%;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    padding: 5px 20px 15px;
}


.dfc-mobile-navigation.dfc-mobile-visible {
    display: block;
}


/* ==========================================
   MOBILE MAIN LINKS
========================================== */

.dfc-mobile-nav-item {
    display: block;

    width: 100%;

    padding: 14px 5px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    border-bottom: 1px solid #eeeeee;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.dfc-mobile-nav-item:hover {
    color: #2d8df0;
}


.dfc-mobile-active {
    color: #2d8df0;
}


/* ==========================================
   MOBILE TREATMENTS BUTTON
========================================== */

.dfc-mobile-treatment-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 5px;

    border: 0;

    border-bottom: 1px solid #eeeeee;

    background: #ffffff;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;
}


.dfc-mobile-treatment-button:hover {
    color: #2d8df0;
}


.dfc-mobile-treatment-button i {
    font-size: 12px;

    transition: transform 0.25s ease;
}


/* Rotate arrow when opened */

.dfc-mobile-treatment-button.dfc-mobile-treatment-open i {
    transform: rotate(180deg);
}


/* ==========================================
   TREATMENT LOCATION LIST
========================================== */

.dfc-mobile-treatment-menu {
    display: none;

    width: 100%;

    max-height: 430px;

    overflow-y: auto;

    background: #f8f8f8;

    border-bottom: 1px solid #eeeeee;
}


/* Open state */

.dfc-mobile-treatment-menu.dfc-mobile-treatment-visible {
    display: block;
}


/* ==========================================
   LOCATION ITEMS
========================================== */

.dfc-mobile-treatment-menu a {
    display: block;

    width: 100%;

    padding: 12px 15px;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.45;

    text-decoration: none;

    border-bottom: 1px solid #e7e7e7;

    background: #f8f8f8;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.dfc-mobile-treatment-menu a:hover {
    color: #2d8df0;

    background: #ffffff;
}


/* First location */

.dfc-mobile-treatment-menu a:first-child {
    background: #f1f1f1;
}


/* ==========================================
   MOBILE SUBMENU SCROLLBAR
========================================== */

.dfc-mobile-treatment-menu::-webkit-scrollbar {
    width: 5px;
}


.dfc-mobile-treatment-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}


.dfc-mobile-treatment-menu::-webkit-scrollbar-thumb {
    background: #c8c8c8;

    border-radius: 10px;
}


/* ==========================================
   STICKY HEADER
========================================== */

.dfc-site-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: #ffffff;
}


/* Phone bar */

.dfc-phone-bar {
    width: 100%;
    height: 39px;

    background: #2f8df4;

    display: flex;
    align-items: center;
}


/* Main navigation */

.dfc-main-navbar {
    width: 100%;

    background: #ffffff;

    position: relative;

    z-index: 1000;

    border-bottom: 1px solid #f1f1f1;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ===============================
   MOBILE TREATMENTS
================================ */

.dfc-mobile-treatment-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 0;

    border: 0;

    border-bottom: 1px solid #eeeeee;

    background: transparent;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 500;

    cursor: pointer;

    text-align: left;
}


.dfc-mobile-treatment-button i {
    font-size: 11px;

    transition: transform 0.25s ease;
}


.dfc-mobile-treatment-button.dfc-mobile-treatment-open i {
    transform: rotate(180deg);
}


.dfc-mobile-treatment-menu {
    display: none;

    padding-left: 18px;

    background: #fafafa;
}


.dfc-mobile-treatment-menu.dfc-mobile-treatment-visible {
    display: block;
}


.dfc-mobile-treatment-menu a {
    display: block;

    padding: 11px 0;

    color: #555555;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    text-decoration: none;

    border-bottom: 1px solid #eeeeee;
}


.dfc-mobile-treatment-menu a:hover {
    color: #2d8df0;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .dfc-header-container {
        max-width: 1375px;

        padding-left: 30px;
        padding-right: 30px;
    }

    .dfc-desktop-navigation {
        gap: 33px;
    }
}


/* =====================================================
   DESKTOP / LAPTOP
===================================================== */

@media (min-width: 992px) and (max-width: 1399px) {

    .dfc-header-container {
        max-width: 1180px;
    }

    .dfc-brand-logo {
        font-size: 26px;
    }

    .dfc-desktop-navigation {
        gap: 27px;
    }

    .dfc-nav-item,
    .dfc-dropdown-button {
        font-size: 18px;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .dfc-header-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .dfc-navbar-inner {
        height: 82px;
    }

    .dfc-brand-logo {
        font-size: 25px;
    }

    .dfc-desktop-navigation {
        display: none;
    }

    .dfc-mobile-toggle {
        display: block;
    }

    .dfc-mobile-navigation {
        display: none;
    }

    .dfc-mobile-navigation.dfc-mobile-visible {
        display: block;
    }
}




/* =====================================================
   DRUG FREE COUNTRY - HERO BANNER
   Unique namespace: dfc-hero-
===================================================== */


/* ==========================================
   MAIN HERO
========================================== */

.dfc-hero-banner {
    position: relative;

    width: 100%;
    min-height: 615px;

    overflow: hidden;

    background-image: url("../images/dark-ban.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



/* ==========================================
   DARK RED OVERLAY
========================================== */

.dfc-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            rgba(90, 0, 0, 0.56),
            rgba(70, 0, 0, 0.67)
        );
}


/* ==========================================
   HERO CONTENT
========================================== */

.dfc-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1450px;

    padding: 125px 35px 0;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;
}


/* ==========================================
   HERO TITLE
========================================== */

.dfc-hero-title {
    margin: 0 auto 22px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(42px, 4.4vw, 78px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   HERO DESCRIPTION
========================================== */

.dfc-hero-description {
    width: 100%;

    max-width: 1320px;

    margin: 0 auto;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(18px, 1.35vw, 27px);

    font-weight: 600;

    line-height: 1.55;

    text-align: center;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.35);
}


/* ==========================================
   CALL NOW BUTTON
========================================== */

.dfc-hero-call-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 181px;

    height: 63px;

    margin-top: 27px;

    padding: 0 29px;

    border: 2px solid #ffffff;

    border-radius: 35px;

    background: #ed3025;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 4px;

    line-height: 1;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-hero-call-button:hover {
    color: #ffffff;

    background: #c91f18;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   ICONS CONTAINER
========================================== */

.dfc-hero-icons-wrapper {
    position: absolute;

    z-index: 2;

    left: 50%;

    bottom: 31px;

    transform: translateX(-50%);

    width: min(88%, 1680px);

    min-height: 224px;

    display: flex;

    align-items: center;

    justify-content: space-around;

    gap: 25px;

    padding: 27px 34px;

    border-radius: 115px;

    background: rgba(225, 225, 225, 0.55);

    border: 1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(3px);

    -webkit-backdrop-filter: blur(3px);
}


/* ==========================================
   INDIVIDUAL ICON
========================================== */

.dfc-hero-icon {
    flex: 0 0 auto;

    width: 170px;

    height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(245, 245, 245, 0.80);

    overflow: hidden;
}


/* ==========================================
   ICON IMAGE
========================================== */

.dfc-hero-icon img {
    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399px) {

    .dfc-hero-banner {
        min-height: 590px;
    }

    .dfc-hero-content {
        padding-top: 105px;
    }

    .dfc-hero-title {
        font-size: 58px;
    }

    .dfc-hero-description {
        max-width: 1120px;

        font-size: 20px;
    }

    .dfc-hero-icons-wrapper {
        width: 91%;

        min-height: 195px;

        gap: 15px;

        padding: 22px 28px;
    }

    .dfc-hero-icon {
        width: 145px;

        height: 145px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-hero-banner {
        min-height: 650px;
    }

    .dfc-hero-content {
        padding: 80px 25px 0;
    }

    .dfc-hero-title {
        font-size: 44px;

        line-height: 1.15;

        letter-spacing: -0.8px;

        margin-bottom: 18px;
    }

    .dfc-hero-description {
        max-width: 720px;

        font-size: 17px;

        line-height: 1.55;
    }

    .dfc-hero-call-button {
        height: 55px;

        min-width: 165px;

        margin-top: 23px;

        font-size: 14px;
    }

    .dfc-hero-icons-wrapper {
        bottom: 25px;

        width: 94%;

        min-height: 150px;

        gap: 10px;

        padding: 18px 20px;

        border-radius: 80px;
    }

    .dfc-hero-icon {
        width: 110px;

        height: 110px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-hero-banner {
        min-height: 680px;

        background-position: center center;
    }

    .dfc-hero-content {
        padding: 65px 20px 0;
    }

    .dfc-hero-title {
        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -0.5px;

        margin-bottom: 18px;
    }

    .dfc-hero-description {
        max-width: 600px;

        font-size: 15px;

        line-height: 1.6;
    }

    .dfc-hero-call-button {
        min-width: 150px;

        height: 51px;

        margin-top: 20px;

        padding: 0 22px;

        font-size: 13px;

        letter-spacing: 3px;
    }


    /* Two rows of icons */

    .dfc-hero-icons-wrapper {
        bottom: 18px;

        width: 92%;

        min-height: auto;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 10px;

        padding: 15px;

        border-radius: 35px;
    }


    .dfc-hero-icon {
        width: 100%;

        height: auto;

        aspect-ratio: 1 / 1;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-hero-banner {
        min-height: 720px;
    }

    .dfc-hero-content {
        padding: 52px 17px 0;
    }

    .dfc-hero-title {
        font-size: 29px;
    }

    .dfc-hero-description {
        font-size: 14px;

        line-height: 1.55;
    }

    .dfc-hero-call-button {
        min-width: 140px;

        height: 48px;

        font-size: 12px;

        letter-spacing: 2.5px;
    }

    .dfc-hero-icons-wrapper {
        width: 94%;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 7px;

        padding: 10px;

        border-radius: 25px;
    }
}



/* =====================================================
   TRUSTED NASHA MUKTI KENDRA SECTION
   Unique namespace: dfc-trust-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-trust-section {
    width: 100%;

    background: #ffffff;

    padding: 20px 0 20px;

    color: #222222;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-trust-container {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding-left: 35px;
    padding-right: 35px;
}


/* ==========================================
   HEADING
========================================== */

.dfc-trust-title {
    margin: 0;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


/* ==========================================
   BLUE TITLE LINE
========================================== */

.dfc-trust-title-line {
    width: 103px;

    height: 4px;

    margin-top: 17px;

    margin-bottom: 39px;

    background: #2d8df0;
}


/* ==========================================
   CONTENT
========================================== */

.dfc-trust-content {
    width: 100%;
}


.dfc-trust-content p {
    margin: 0;

    color: #334155;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.8;

    letter-spacing: 0.15px;

    text-align: left;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-trust-container {
        max-width: 1500px;
        padding-left:100px;
        padding-right:100px;
    }

    .dfc-trust-title {
        font-size: 38px;
    }

    .dfc-trust-content p {
        font-size: 20px;

        line-height: 1.8;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399.98px) {

    .dfc-trust-section {
        padding-top: 60px;
        padding-bottom: 65px;
       
    }

    .dfc-trust-container {
        max-width: 1200px;

        padding-left: 30px;
        padding-right: 30px;
    }

    .dfc-trust-title {
        font-size: 34px;
    }

    .dfc-trust-title-line {
        margin-top: 15px;
        margin-bottom: 32px;
    }

    .dfc-trust-content p {
        font-size: 18px;

        line-height: 1.8;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-trust-section {
        padding: 55px 0 60px;
    }

    .dfc-trust-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .dfc-trust-title {
        font-size: 31px;

        line-height: 1.25;
    }

    .dfc-trust-title-line {
        width: 90px;

        height: 3px;

        margin-top: 14px;

        margin-bottom: 30px;
    }

    .dfc-trust-content p {
        font-size: 17px;

        line-height: 1.75;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-trust-section {
        padding: 45px 0 50px;
    }

    .dfc-trust-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dfc-trust-title {
        font-size: 27px;

        line-height: 1.25;

        letter-spacing: -0.2px;
    }

    .dfc-trust-title-line {
        width: 78px;

        height: 3px;

        margin-top: 13px;

        margin-bottom: 25px;
    }

    .dfc-trust-content p {
        font-size: 16px;

        line-height: 1.75;

        letter-spacing: 0;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-trust-section {
        padding: 38px 0 45px;
    }

    .dfc-trust-container {
        padding-left: 17px;
        padding-right: 17px;
    }

    .dfc-trust-title {
        font-size: 24px;

        line-height: 1.3;
    }

    .dfc-trust-title-line {
        width: 70px;

        height: 3px;

        margin-top: 11px;

        margin-bottom: 22px;
    }

    .dfc-trust-content p {
        font-size: 15px;

        line-height: 1.7;
    }
}


/* =====================================================
   REHABILITATION INFORMATION SECTION
   Unique namespace: dfc-rehab-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-rehab-section {
    width: 100%;

    background: #ffffff;

    padding: 18px 0 80px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-rehab-container {
    width: 100%;

    max-width: 1500px;

    margin: 0 auto;

    padding: 0 30px;
}


/* ==========================================
   ROW
========================================== */

.dfc-rehab-row {
    display: flex;

    align-items: stretch;

    gap: 82px;

    width: 100%;
}


/* ==========================================
   IMAGE COLUMN
========================================== */

.dfc-rehab-image-column {
    width: 52%;

    display: flex;

    align-items: center;
}


/* ==========================================
   IMAGE WRAPPER
========================================== */

.dfc-rehab-image-wrapper {
    width: 100%;

    overflow: hidden;

    border-radius: 7px;

    line-height: 0;
}


/* ==========================================
   MAIN IMAGE
========================================== */

.dfc-rehab-main-image {
    display: block;

    width: 100%;

    height: 472px;

    object-fit: cover;

    object-position: center;

    border-radius: 7px;
}


/* ==========================================
   CONTENT COLUMN
========================================== */

.dfc-rehab-content-column {
    flex: 1;

    display: flex;

    align-items: stretch;
}


/* ==========================================
   CONTENT BOX
========================================== */

.dfc-rehab-content-box {
    width: 100%;

    min-height: 472px;

    padding: 49px 25px 38px;

    border: 4px solid #2d8df0;

    background: #ffffff;
}


/* ==========================================
   TITLE
========================================== */

.dfc-rehab-title {
    margin: 0 0 18px;

    color: #080808;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 38px;

    font-weight: 400;

    line-height: 1.2;

    letter-spacing: -0.7px;
}


/* ==========================================
   SUBTITLE
========================================== */

.dfc-rehab-subtitle {
    margin: 0 0 16px;

    color: #2d8df0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.3;
}


/* ==========================================
   DESCRIPTION
========================================== */

.dfc-rehab-description {
    margin: 0;

    color: #334155;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.9;

    letter-spacing: 0.1px;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1500px) {

    .dfc-rehab-container {
        max-width: 1500px;
    }

    .dfc-rehab-row {
        gap: 82px;
    }

    .dfc-rehab-main-image,
    .dfc-rehab-content-box {
        min-height: 472px;
    }

    .dfc-rehab-main-image {
        height: 472px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399.98px) {

    .dfc-rehab-container {
        max-width: 1200px;

        padding: 0 25px;
    }

    .dfc-rehab-row {
        gap: 55px;
    }

    .dfc-rehab-image-column {
        width: 50%;
    }

    .dfc-rehab-main-image {
        height: 430px;
    }

    .dfc-rehab-content-box {
        min-height: 430px;

        padding: 38px 23px 30px;
    }

    .dfc-rehab-title {
        font-size: 36px;
    }

    .dfc-rehab-subtitle {
        font-size: 18px;
    }

    .dfc-rehab-description {
        font-size: 17px;

        line-height: 1.75;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-rehab-section {
        padding: 10px 0 60px;
    }

    .dfc-rehab-container {
        padding: 0 25px;
    }

    .dfc-rehab-row {
        flex-direction: column;

        gap: 30px;
    }

    .dfc-rehab-image-column {
        width: 100%;
    }

    .dfc-rehab-main-image {
        width: 100%;

        height: auto;

        max-height: 500px;
    }

    .dfc-rehab-content-column {
        width: 100%;
    }

    .dfc-rehab-content-box {
        min-height: auto;

        padding: 35px 25px;
    }

    .dfc-rehab-title {
        font-size: 34px;
    }

    .dfc-rehab-description {
        font-size: 17px;

        line-height: 1.75;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-rehab-section {
        padding: 5px 0 50px;
    }

    .dfc-rehab-container {
        padding: 0 18px;
    }

    .dfc-rehab-row {
        gap: 24px;
    }

    .dfc-rehab-main-image {
        height: auto;

        border-radius: 6px;
    }

    .dfc-rehab-content-box {
        border-width: 3px;

        padding: 28px 20px;
    }

    .dfc-rehab-title {
        font-size: 29px;

        line-height: 1.25;

        letter-spacing: -0.3px;

        margin-bottom: 16px;
    }

    .dfc-rehab-subtitle {
        font-size: 18px;

        margin-bottom: 14px;
    }

    .dfc-rehab-description {
        font-size: 15.5px;

        line-height: 1.7;

        letter-spacing: 0;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-rehab-container {
        padding: 0 15px;
    }

    .dfc-rehab-content-box {
        padding: 24px 17px;

        border-width: 3px;
    }

    .dfc-rehab-title {
        font-size: 25px;
    }

    .dfc-rehab-subtitle {
        font-size: 17px;
    }

    .dfc-rehab-description {
        font-size: 14.5px;

        line-height: 1.7;
    }
}












/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .dfc-phone-bar {
        height: 37px;
    }

    .dfc-header-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .dfc-phone-link {
        font-size: 13px;
    }

    .dfc-navbar-inner {
        height: 76px;
    }

    .dfc-brand-logo {
        font-size: 20px;

        letter-spacing: -0.5px;
    }

    .dfc-brand-blue {
        margin-left: 4px;

        text-decoration-thickness: 2px;

        text-underline-offset: 4px;
    }

    .dfc-brand-logo::before {
        width: 48px;

        top: -7px;
    }

    .dfc-mobile-toggle {
        width: 40px;

        padding-right: 0;
    }

    .dfc-mobile-toggle span {
        width: 26px;
    }

    .dfc-mobile-navigation {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .dfc-brand-logo {
        font-size: 17px;
    }

    .dfc-brand-logo img{
        max-width: 80%;}

    .dfc-phone-link {
        font-size: 12px;
    }

    .dfc-navbar-inner {
        height: 70px;
    }
}



/* =====================================================
   REHABILITATION CTA SECTION
   Unique namespace: dfc-cta-
===================================================== */

.dfc-cta-section {
    width: 100%;

    min-height: 160px;

    background: #2d8df0;

    display: flex;

    align-items: center;

    padding: 25px 0;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-cta-container {
    width: 100%;

    max-width: 1375px;

    margin: 0 auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* ==========================================
   TITLE
========================================== */

.dfc-cta-title {
    margin: 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 44px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


/* ==========================================
   CALL BUTTON
========================================== */

.dfc-cta-call-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 185px;

    height: 56px;

    padding: 0 30px;

    border: 2px solid #ffffff;

    border-radius: 30px;

    background: #ed3025;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 4px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-cta-call-button:hover {
    color: #ffffff;

    background: #c91f18;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.20);
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-cta-container {
        max-width: 1375px;
    }

    .dfc-cta-title {
        font-size: 40px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399.98px) {

    .dfc-cta-container {
        max-width: 1200px;

        padding-left: 25px;
        padding-right: 25px;
    }

    .dfc-cta-title {
        font-size: 38px;
    }

    .dfc-cta-call-button {
        min-width: 175px;

        height: 54px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-cta-section {
        min-height: auto;

        padding: 35px 0;
    }

    .dfc-cta-container {
        padding-left: 25px;
        padding-right: 25px;

        gap: 25px;
    }

    .dfc-cta-title {
        font-size: 31px;
    }

    .dfc-cta-call-button {
        min-width: 155px;

        height: 50px;

        padding: 0 20px;

        font-size: 13px;

        letter-spacing: 3px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-cta-section {
        padding: 35px 0;
    }

    .dfc-cta-container {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 25px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .dfc-cta-title {
        font-size: 28px;

        line-height: 1.3;
    }

    .dfc-cta-call-button {
        min-width: 155px;

        height: 50px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-cta-section {
        padding: 30px 0;
    }

    .dfc-cta-container {
        padding-left: 17px;
        padding-right: 17px;
    }

    .dfc-cta-title {
        font-size: 24px;
    }

    .dfc-cta-call-button {
        min-width: 145px;

        height: 48px;

        padding: 0 18px;

        font-size: 12px;

        letter-spacing: 2.5px;
    }
}




/* =====================================================
   HEALING JOURNEY SECTION
   Unique namespace: dfc-healing-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-healing-section {
    width: 100%;

    min-height: 590px;

    display: grid;

    grid-template-columns: 52% 48%;

    background: #000000;

    overflow: hidden;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.dfc-healing-content {
    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    padding:
        60px
        45px
        60px
        38px;

    background: #000000;

    color: #ffffff;
}


/* ==========================================
   TITLE
========================================== */

.dfc-healing-title {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 36px;

    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -0.5px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.dfc-healing-description {
    max-width: 810px;

    margin: 70px 0 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1.9;

    letter-spacing: 0;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

.dfc-healing-image {
    width: 100%;

    height: 100%;

    min-height: 590px;

    overflow: hidden;

    background: #000000;
}


.dfc-healing-image-element {
    display: block;

    width: 100%;

    height: 100%;

    min-height: 590px;

    object-fit: cover;

    object-position: center center;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-healing-section {
        min-height: 590px;

        grid-template-columns: 52.5% 47.5%;
    }

    .dfc-healing-content {
        padding:
            60px
            45px
            60px
            38px;
    }

    .dfc-healing-title {
        font-size: 36px;
    }

    .dfc-healing-description {
        font-size: 20px;

        line-height: 1.9;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399.98px) {

    .dfc-healing-section {
        min-height: 530px;
    }

    .dfc-healing-content {
        padding:
            50px
            35px
            50px
            30px;
    }

    .dfc-healing-title {
        font-size: 31px;
    }

    .dfc-healing-description {
        margin-top: 55px;

        font-size: 17px;

        line-height: 1.8;
    }

    .dfc-healing-image {
        min-height: 530px;
    }

    .dfc-healing-image-element {
        min-height: 530px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-healing-section {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    /* Image first */

    .dfc-healing-image {
        order: 1;

        width: 100%;

        height: auto;

        min-height: 430px;
    }

    .dfc-healing-image-element {
        width: 100%;

        height: auto;

        min-height: 430px;

        max-height: 600px;

        object-fit: cover;
    }


    /* Content second */

    .dfc-healing-content {
        order: 2;

        padding:
            50px
            30px
            55px;
    }

    .dfc-healing-title {
        font-size: 32px;

        line-height: 1.25;
    }

    .dfc-healing-description {
        max-width: 850px;

        margin-top: 35px;

        font-size: 17px;

        line-height: 1.8;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-healing-image {
        min-height: 300px;
    }

    .dfc-healing-image-element {
        min-height: 300px;

        height: 300px;

        object-fit: cover;
    }

    .dfc-healing-content {
        padding:
            38px
            20px
            45px;
    }

    .dfc-healing-title {
        font-size: 27px;

        line-height: 1.3;

        letter-spacing: -0.2px;
    }

    .dfc-healing-description {
        margin-top: 28px;

        font-size: 15.5px;

        line-height: 1.75;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-healing-image {
        min-height: 250px;
    }

    .dfc-healing-image-element {
        height: 250px;

        min-height: 250px;
    }

    .dfc-healing-content {
        padding:
            32px
            17px
            40px;
    }

    .dfc-healing-title {
        font-size: 24px;

        line-height: 1.3;
    }

    .dfc-healing-description {
        margin-top: 24px;

        font-size: 14.5px;

        line-height: 1.7;
    }
}


/* =====================================================
   GUIDED PATH TO ADDICTION-FREE LIVING
   Unique namespace: dfc-path-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-path-section {
    position: relative;

    width: 100%;

    min-height: 850px;

    padding: 34px 0 58px;

    overflow: hidden;

    background-image: url("../images/hand.jpeg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/* ==========================================
   DARK BACKGROUND OVERLAY
========================================== */

.dfc-path-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        rgba(0, 0, 0, 0.56);
}


/* ==========================================
   CONTENT CONTAINER
========================================== */

.dfc-path-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 0 15px;
}


/* ==========================================
   SECTION TITLE
========================================== */

.dfc-path-title {
    margin: 0 0 48px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 26px;

    font-weight: 700;

    line-height: 1.2;

    text-align: center;
}


/* ==========================================
   CARD GRID
========================================== */

.dfc-path-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    column-gap: 46px;

    row-gap: 53px;

    width: 100%;
}


/* ==========================================
   CARD
========================================== */

.dfc-path-card {
    width: 100%;

    min-height: 277px;

    padding: 39px 25px 27px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: #ffffff;

    border-radius: 6px;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-path-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   ICON
========================================== */

.dfc-path-icon {
    width: 54px;

    height: 54px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #3e7df7;

    font-size: 40px;

    line-height: 1;
}


.dfc-path-icon i {
    color: #3e7df7;
}


/* ==========================================
   CARD TITLE
========================================== */

.dfc-path-card-title {
    margin: 0 0 9px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.25;

    text-align: center;
}


/* ==========================================
   CARD DESCRIPTION
========================================== */

.dfc-path-card-text {
    max-width: 275px;

    margin: 0 auto;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16.5px;

    font-weight: 400;

    line-height: 1.35;

    text-align: center;
}


/* ==========================================
   TITLE BREAK
========================================== */

.dfc-path-title-break {
    display: block;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-path-section {
        min-height: 850px;

        padding-top: 34px;
    }

    .dfc-path-container {
        max-width: 1050px;
    }

    .dfc-path-grid {
        column-gap: 46px;

        row-gap: 53px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-path-section {
        min-height: auto;

        padding: 38px 0 55px;
    }

    .dfc-path-container {
        max-width: 960px;

        padding: 0 25px;
    }

    .dfc-path-title {
        margin-bottom: 40px;

        font-size: 25px;
    }

    .dfc-path-grid {
        column-gap: 25px;

        row-gap: 30px;
    }

    .dfc-path-card {
        min-height: 285px;

        padding-left: 20px;

        padding-right: 20px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-path-container {
        max-width: 760px;
    }

    .dfc-path-grid {
        grid-template-columns:
            repeat(2, 1fr);

        column-gap: 25px;

        row-gap: 25px;
    }

    .dfc-path-card {
        min-height: 300px;
    }

    .dfc-path-card-text {
        max-width: 300px;

        font-size: 13px;

        line-height: 1.4;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-path-section {
        padding: 32px 0 45px;

        min-height: auto;
    }

    .dfc-path-container {
        padding: 0 18px;
    }

    .dfc-path-title {
        margin-bottom: 30px;

        font-size: 23px;

        line-height: 1.3;
    }

    .dfc-path-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .dfc-path-card {
        min-height: auto;

        padding: 32px 25px 30px;
    }

    .dfc-path-icon {
        width: 50px;

        height: 50px;

        font-size: 36px;

        margin-bottom: 12px;
    }

    .dfc-path-card-title {
        font-size: 18px;

        margin-bottom: 10px;
    }

    .dfc-path-card-text {
        max-width: 500px;

        font-size: 14px;

        line-height: 1.55;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-path-section {
        padding: 28px 0 40px;
    }

    .dfc-path-container {
        padding: 0 15px;
    }

    .dfc-path-title {
        font-size: 21px;

        margin-bottom: 26px;
    }

    .dfc-path-grid {
        gap: 18px;
    }

    .dfc-path-card {
        padding: 28px 20px;
    }

    .dfc-path-card-title {
        font-size: 17px;
    }

    .dfc-path-card-text {
        font-size: 13.5px;

        line-height: 1.55;
    }
}


/* =====================================================
   SUPPORT & FAQ SECTION
   Unique namespace: dfc-help-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-help-section {
    width: 100%;

    display: grid;

    grid-template-columns: 53% 47%;

    background: #ffffff;

    overflow: hidden;
}


/* ==========================================
   LEFT CONTACT AREA
========================================== */

.dfc-help-contact {
    background: #2d8df0;

    color: #ffffff;

    min-height: 690px;
}


.dfc-help-contact-inner {
    width: 100%;

    max-width: 940px;

    margin-left: auto;

    padding:
        59px
        55px
        60px
        62px;
}


/* ==========================================
   CONTACT TITLE
========================================== */

.dfc-help-contact-title {
    margin: 0 0 68px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


/* ==========================================
   FORM
========================================== */

.dfc-help-form {
    width: 100%;
}


/* ==========================================
   NAME + EMAIL ROW
========================================== */

.dfc-help-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 23px;

    width: 100%;
}


/* ==========================================
   FIELD
========================================== */

.dfc-help-field {
    width: 100%;
}


.dfc-help-field input,
.dfc-help-field textarea {
    width: 100%;

    display: block;

    border: 0;

    outline: none;

    background: #ffffff;

    color: #333333;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    border-radius: 8px;

    box-shadow: none;
}


.dfc-help-field input {
    height: 74px;

    padding: 0 21px;
}


.dfc-help-field textarea {
    height: 188px;

    padding: 20px 21px;

    resize: vertical;
}


.dfc-help-field input::placeholder,
.dfc-help-field textarea::placeholder {
    color: #555555;

    opacity: 1;
}


/* ==========================================
   MESSAGE
========================================== */

.dfc-help-message-field {
    margin-top: 23px;
}


/* ==========================================
   SUBMIT WRAPPER
========================================== */

.dfc-help-submit-wrapper {
    display: flex;

    justify-content: flex-end;

    margin-top: 25px;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.dfc-help-submit-button {
    min-width: 155px;

    height: 54px;

    padding: 0 30px;

    border: 2px solid #ffffff;

    border-radius: 30px;

    background: #ed3025;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 4px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-help-submit-button:hover {
    background: #c91f18;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.18);
}


/* ==========================================
   FAQ AREA
========================================== */

.dfc-help-faq {
    background: #ffffff;

    min-height: 690px;
}


.dfc-help-faq-inner {
    width: 100%;

    padding:
        59px
        36px
        50px
        50px;
}


/* ==========================================
   FAQ TITLE
========================================== */

.dfc-help-faq-title {
    margin: 0 0 47px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 37px;

    font-weight: 700;

    line-height: 1.2;

    text-align: center;
}


/* ==========================================
   FAQ ITEM
========================================== */

.dfc-help-faq-item {
    border-bottom: 1px solid #e2e2e2;
}


/* ==========================================
   FAQ QUESTION
========================================== */

.dfc-help-faq-question {
    width: 100%;

    min-height: 112px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 20px 24px;

    border: 0;

    background: #ffffff;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 23px;

    font-weight: 400;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;
}


.dfc-help-faq-question i {
    flex-shrink: 0;

    color: #2d8df0;

    font-size: 18px;

    transition:
        transform 0.25s ease;
}


/* ==========================================
   FAQ ANSWER
========================================== */

.dfc-help-faq-answer {
    display: none;

    padding:
        0
        24px
        27px;
}


.dfc-help-faq-answer p {
    margin: 0;

    color: #4a4a4a;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 19px;

    font-weight: 400;

    line-height: 1.9;
}


/* ==========================================
   ACTIVE FAQ
========================================== */

.dfc-help-faq-item.dfc-help-faq-active
.dfc-help-faq-answer {
    display: block;
}


.dfc-help-faq-item.dfc-help-faq-active
.dfc-help-faq-question i {
    transform: rotate(180deg);
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399.98px) {

    .dfc-help-contact-inner {
        padding:
            50px
            40px
            50px
            45px;
    }

    .dfc-help-contact-title {
        font-size: 34px;

        margin-bottom: 55px;
    }

    .dfc-help-faq-inner {
        padding:
            50px
            30px
            45px
            35px;
    }

    .dfc-help-faq-title {
        font-size: 32px;

        margin-bottom: 38px;
    }

    .dfc-help-faq-question {
        font-size: 20px;

        min-height: 105px;
    }

    .dfc-help-faq-answer p {
        font-size: 17px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-help-section {
        grid-template-columns: 1fr;
    }


    /* Contact */

    .dfc-help-contact {
        min-height: auto;
    }

    .dfc-help-contact-inner {
        max-width: 850px;

        margin: 0 auto;

        padding:
            50px
            30px
            55px;
    }

    .dfc-help-contact-title {
        text-align: center;

        margin-bottom: 45px;
    }


    /* FAQ */

    .dfc-help-faq {
        min-height: auto;
    }

    .dfc-help-faq-inner {
        max-width: 850px;

        margin: 0 auto;

        padding:
            50px
            30px
            55px;
    }

    .dfc-help-faq-title {
        font-size: 31px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-help-contact-inner {
        padding:
            40px
            20px
            45px;
    }

    .dfc-help-contact-title {
        font-size: 28px;

        line-height: 1.3;

        margin-bottom: 35px;
    }


    .dfc-help-form-row {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .dfc-help-field input {
        height: 58px;

        font-size: 15px;
    }


    .dfc-help-field textarea {
        height: 170px;

        font-size: 15px;
    }


    .dfc-help-message-field {
        margin-top: 16px;
    }


    .dfc-help-submit-wrapper {
        justify-content: center;

        margin-top: 22px;
    }


    .dfc-help-submit-button {
        min-width: 145px;

        height: 50px;

        font-size: 13px;

        letter-spacing: 3px;
    }


    /* FAQ */

    .dfc-help-faq-inner {
        padding:
            40px
            18px
            45px;
    }


    .dfc-help-faq-title {
        font-size: 27px;

        line-height: 1.3;

        margin-bottom: 25px;
    }


    .dfc-help-faq-question {
        min-height: 85px;

        padding:
            18px
            8px;

        font-size: 17px;

        gap: 15px;
    }


    .dfc-help-faq-question i {
        font-size: 14px;
    }


    .dfc-help-faq-answer {
        padding:
            0
            8px
            22px;
    }


    .dfc-help-faq-answer p {
        font-size: 15px;

        line-height: 1.7;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-help-contact-inner {
        padding:
            35px
            15px
            40px;
    }

    .dfc-help-contact-title {
        font-size: 24px;
    }

    .dfc-help-faq-inner {
        padding:
            35px
            15px
            40px;
    }

    .dfc-help-faq-title {
        font-size: 23px;
    }

    .dfc-help-faq-question {
        font-size: 16px;

        min-height: 78px;
    }
}



/* =====================================================
   CLIENT REVIEWS SECTION
   Unique namespace: dfc-review-
===================================================== */

.dfc-review-section {
    position: relative;

    width: 100%;

    min-height: 760px;

    padding: 38px 0 45px;

    overflow: hidden;

     background-image: url("../images/review.jpeg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/* ==========================================
   DARK OVERLAY
========================================== */

.dfc-review-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background: rgba(0, 10, 18, 0.68);
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-review-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 0 15px;
}


/* ==========================================
   HEADING
========================================== */

.dfc-review-heading {
    margin: 0 0 34px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 28px;

    font-weight: 700;

    line-height: 1.25;

    text-align: center;
}


/* ==========================================
   REVIEW GRID
========================================== */

.dfc-review-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    column-gap: 21px;

    row-gap: 19px;

    width: 100%;
}


/* ==========================================
   REVIEW CARD
========================================== */

.dfc-review-card {
    min-height: 205px;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 24px 20px 20px;

    background: #ffffff;

    border: 5px solid #2d8df0;

    border-radius: 10px;

    text-align: center;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-review-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.28);
}


/* ==========================================
   REVIEW NAME
========================================== */

.dfc-review-name {
    margin: 0 0 10px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.25;
}


/* ==========================================
   STARS
========================================== */

.dfc-review-stars {
    margin-bottom: 10px;

    color: #f7c844;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    line-height: 1;
}


/* ==========================================
   REVIEW TEXT
========================================== */

.dfc-review-text {
    max-width: 245px;

    margin: 0 auto;

    color: #536174;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14.5px;

    font-weight: 400;

    line-height: 1.65;

    text-align: center;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-review-section {
        min-height: 760px;

        padding-top: 38px;
    }

    .dfc-review-container {
        max-width: 1050px;
    }

    .dfc-review-card {
        min-height: 205px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-review-section {
        min-height: auto;

        padding: 40px 0 50px;
    }

    .dfc-review-container {
        max-width: 900px;

        padding: 0 20px;
    }

    .dfc-review-grid {
        column-gap: 18px;

        row-gap: 18px;
    }

    .dfc-review-card {
        min-height: 220px;

        padding:
            23px
            16px
            20px;
    }

    .dfc-review-text {
        font-size: 10.5px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-review-container {
        max-width: 760px;
    }

    .dfc-review-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .dfc-review-card {
        min-height: 230px;

        padding:
            25px
            20px;
    }

    .dfc-review-name {
        font-size: 15px;
    }

    .dfc-review-text {
        max-width: 300px;

        font-size: 12px;

        line-height: 1.6;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-review-section {
        padding: 32px 0 40px;
    }

    .dfc-review-container {
        padding: 0 18px;
    }

    .dfc-review-heading {
        font-size: 22px;

        margin-bottom: 25px;
    }

    .dfc-review-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .dfc-review-card {
        min-height: auto;

        padding:
            27px
            22px
            25px;

        border-width: 4px;
    }

    .dfc-review-name {
        font-size: 16px;

        margin-bottom: 11px;
    }

    .dfc-review-stars {
        font-size: 15px;

        margin-bottom: 12px;
    }

    .dfc-review-text {
        max-width: 500px;

        font-size: 13px;

        line-height: 1.7;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-review-section {
        padding: 28px 0 35px;
    }

    .dfc-review-container {
        padding: 0 14px;
    }

    .dfc-review-heading {
        font-size: 20px;

        margin-bottom: 22px;
    }

    .dfc-review-card {
        padding:
            24px
            18px
            23px;
    }

    .dfc-review-name {
        font-size: 15px;
    }

    .dfc-review-text {
        font-size: 12.5px;

        line-height: 1.65;
    }
}



/* =====================================================
   LATEST BLOGS SECTION
   Unique namespace: dfc-blog-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-blog-section {
    width: 100%;

    background: #ffffff;

    padding: 34px 0 42px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-blog-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   SECTION HEADING
========================================== */

.dfc-blog-heading {
    margin: 0 0 46px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 32px;

    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
   BLOG GRID
========================================== */

.dfc-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 66px;

    width: 100%;
}


/* ==========================================
   BLOG CARD
========================================== */

.dfc-blog-card {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e3e3e3;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-blog-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.10);
}


/* ==========================================
   BLOG IMAGE LINK
========================================== */

.dfc-blog-image-link {
    display: block;

    width: 100%;

    overflow: hidden;

    text-decoration: none;
}


/* ==========================================
   BLOG IMAGE
========================================== */

.dfc-blog-image {
    display: block;

    width: 100%;

    height: 222px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.dfc-blog-card:hover .dfc-blog-image {
    transform: scale(1.03);
}


/* ==========================================
   CARD CONTENT
========================================== */

.dfc-blog-card-content {
    padding: 31px 22px 27px;
}

.dfc-blog-card-content a{
    text-decoration:none;
}


/* ==========================================
   BLOG TITLE
========================================== */

.dfc-blog-title {
    margin: 0 0 16px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1.4;
}


/* ==========================================
   BLOG DATE
========================================== */

.dfc-blog-date {
    margin-bottom: 13px;

    color: #368df5;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.4;
}


/* ==========================================
   BLOG EXCERPT
========================================== */

.dfc-blog-excerpt {
    margin: 0 0 8px;

    color: #777777;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;
}


/* ==========================================
   READ MORE
========================================== */

.dfc-blog-read-more {
    color: #368df5;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.5;

    text-decoration: none;

    transition: color 0.2s ease;
}


.dfc-blog-read-more:hover {
    color: #176ecf;

    text-decoration: underline;
}


/* ==========================================
   OLDER ENTRIES
========================================== */

.dfc-blog-older-wrapper {
    margin-top: 38px;

    padding-left: 0;
}


.dfc-blog-older-link {
    color: #368df5;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 400;

    text-decoration: none;

    transition: color 0.2s ease;
}


.dfc-blog-older-link:hover {
    color: #176ecf;

    text-decoration: underline;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-blog-container {
        max-width: 1200px;
    }

    .dfc-blog-grid {
        gap: 66px;
    }

    .dfc-blog-image {
        height: 222px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-blog-container {
        max-width: 1050px;
    }

    .dfc-blog-grid {
        gap: 35px;
    }

    .dfc-blog-heading {
        font-size: 30px;
    }

    .dfc-blog-image {
        height: 205px;
    }

    .dfc-blog-card-content {
        padding:
            27px
            19px
            25px;
    }

    .dfc-blog-title {
        font-size: 20px;
    }

    .dfc-blog-date,
    .dfc-blog-excerpt,
    .dfc-blog-read-more,
    .dfc-blog-older-link {
        font-size: 16px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-blog-section {
        padding: 35px 0 40px;
    }

    .dfc-blog-container {
        max-width: 760px;

        padding: 0 20px;
    }

    .dfc-blog-heading {
        font-size: 29px;

        margin-bottom: 35px;
    }

    .dfc-blog-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }

    .dfc-blog-image {
        height: 190px;
    }

    .dfc-blog-card-content {
        padding: 24px 18px;
    }

    .dfc-blog-title {
        font-size: 19px;

        line-height: 1.4;
    }

    .dfc-blog-date,
    .dfc-blog-excerpt,
    .dfc-blog-read-more {
        font-size: 15px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-blog-section {
        padding: 30px 0 35px;
    }

    .dfc-blog-container {
        padding: 0 17px;
    }

    .dfc-blog-heading {
        font-size: 27px;

        margin-bottom: 28px;
    }

    .dfc-blog-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .dfc-blog-image {
        height: auto;

        aspect-ratio: 16 / 9;
    }

    .dfc-blog-card-content {
        padding: 25px 19px 23px;
    }

    .dfc-blog-title {
        font-size: 20px;
    }

    .dfc-blog-date,
    .dfc-blog-excerpt,
    .dfc-blog-read-more {
        font-size: 15px;
    }

    .dfc-blog-older-wrapper {
        margin-top: 30px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-blog-container {
        padding: 0 14px;
    }

    .dfc-blog-heading {
        font-size: 24px;

        margin-bottom: 24px;
    }

    .dfc-blog-card-content {
        padding: 22px 17px;
    }

    .dfc-blog-title {
        font-size: 18px;
    }

    .dfc-blog-date,
    .dfc-blog-excerpt,
    .dfc-blog-read-more,
    .dfc-blog-older-link {
        font-size: 14px;
    }

    .dfc-blog-excerpt {
        line-height: 1.7;
    }
}



/*** about us page css */ 


/* =====================================================
   ABOUT US INNER PAGE HERO
   Unique namespace: dfc-innerhero-
===================================================== */

.dfc-innerhero-banner {
    position: relative;

    width: 100%;

    height: 285px;

    overflow: hidden;

    background-image: url("../images/blog1.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/* ==========================================
   DARK OVERLAY
========================================== */

.dfc-innerhero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        rgba(0, 35, 32, 0.38);
}


/* ==========================================
   CONTENT CONTAINER
========================================== */

.dfc-innerhero-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1500px;

    height: 100%;

    margin: 0 auto;

    padding:
        0
        30px;

    display: flex;

    align-items: center;
}


/* ==========================================
   PAGE TITLE
========================================== */

.dfc-innerhero-title {
    margin: 0;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 62px;

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-innerhero-banner {
        height: 285px;
    }

    .dfc-innerhero-container {
        max-width: 1500px;

        padding-left: 30px;
    }

    .dfc-innerhero-title {
        font-size: 62px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1399.98px) {

    .dfc-innerhero-banner {
        height: 260px;
    }

    .dfc-innerhero-container {
        max-width: 1200px;

        padding-left: 30px;
    }

    .dfc-innerhero-title {
        font-size: 54px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-innerhero-banner {
        height: 230px;
    }

    .dfc-innerhero-container {
        padding-left: 25px;
    }

    .dfc-innerhero-title {
        font-size: 46px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-innerhero-banner {
        height: 200px;

        background-position: center center;
    }

    .dfc-innerhero-container {
        padding:
            0
            20px;
    }

    .dfc-innerhero-title {
        font-size: 38px;

        letter-spacing: -0.5px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-innerhero-banner {
        height: 175px;
    }

    .dfc-innerhero-container {
        padding-left: 17px;
        padding-right: 17px;
    }

    .dfc-innerhero-title {
        font-size: 32px;
    }
}






/* =====================================================
   CONTACT PAGE INFORMATION + FORM
   Unique namespace: dfc-contactpage-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-contactpage-section {
    width: 100%;

    background: #ffffff;

    padding: 70px 0 55px;

    overflow: hidden;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.dfc-contactpage-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   INFORMATION CARDS GRID
========================================== */

.dfc-contactpage-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 60px;

    width: 100%;

    margin-bottom: 55px;
}


/* ==========================================
   INFORMATION CARD
========================================== */

.dfc-contactpage-info-card {
    min-height: 245px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    padding: 31px 30px 25px;

    border: 1px solid #e2e2e2;

    background: #ffffff;

    text-align: center;
}


/* ==========================================
   INFORMATION ICON
========================================== */

.dfc-contactpage-info-icon {
    width: 34px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #2d8df0;

    font-size: 30px;

    line-height: 1;

    margin-bottom: 24px;
}


.dfc-contactpage-info-icon i {
    color: #2d8df0;
}


/* ==========================================
   INFORMATION TITLE
========================================== */

.dfc-contactpage-info-title {
    margin: 0 0 17px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.3;
}


/* ==========================================
   INFORMATION VALUE
========================================== */

.dfc-contactpage-info-value {
    display: block;

    max-width: 100%;

    margin: 0;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.5;

    text-decoration: none;
}


a.dfc-contactpage-info-value:hover {
    color: #2d8df0;
}


/* ==========================================
   CONTACT FORM
========================================== */

.dfc-contactpage-form {
    width: 100%;
}


/* ==========================================
   FORM ROW
========================================== */

.dfc-contactpage-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 34px;

    width: 100%;
}


/* ==========================================
   FORM FIELD
========================================== */

.dfc-contactpage-field {
    width: 100%;
}


.dfc-contactpage-field input,
.dfc-contactpage-field textarea {
    display: block;

    width: 100%;

    border: 0;

    outline: none;

    background: #f7f7f7;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    box-shadow: none;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.dfc-contactpage-field input {
    height: 63px;

    padding: 0 17px;

    border-radius: 32px;
}


.dfc-contactpage-field textarea {
    height: 150px;

    padding: 21px 17px;

    border-radius: 25px;

    resize: vertical;
}


/* ==========================================
   PLACEHOLDER
========================================== */

.dfc-contactpage-field input::placeholder,
.dfc-contactpage-field textarea::placeholder {
    color: #111111;

    opacity: 1;
}


/* ==========================================
   FOCUS
========================================== */

.dfc-contactpage-field input:focus,
.dfc-contactpage-field textarea:focus {
    background: #f3f3f3;

    box-shadow:
        0 0 0 2px rgba(45, 141, 240, 0.18);
}


/* ==========================================
   MESSAGE FIELD
========================================== */

.dfc-contactpage-message-field {
    margin-top: 33px;
}


/* ==========================================
   SUBMIT WRAPPER
========================================== */

.dfc-contactpage-submit-wrapper {
    display: flex;

    justify-content: flex-end;

    margin-top: 17px;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.dfc-contactpage-submit-button {
    min-width: 101px;

    height: 33px;

    padding: 0 15px;

    border: 0;

    border-radius: 20px;

    background: #16bce8;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.dfc-contactpage-submit-button:hover {
    background: #079fca;

    transform: translateY(-1px);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.12);
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-contactpage-container {
        max-width: 1200px;
    }

    .dfc-contactpage-info-grid {
        gap: 60px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-contactpage-section {
        padding-top: 60px;
    }

    .dfc-contactpage-container {
        max-width: 1050px;
    }

    .dfc-contactpage-info-grid {
        gap: 40px;

        margin-bottom: 48px;
    }

    .dfc-contactpage-info-card {
        min-height: 230px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-contactpage-section {
        padding: 50px 0 50px;
    }

    .dfc-contactpage-container {
        padding: 0 25px;
    }

    .dfc-contactpage-info-grid {
        gap: 25px;
    }

    .dfc-contactpage-info-card {
        min-height: 215px;

        padding:
            28px
            20px;
    }

    .dfc-contactpage-info-title {
        font-size: 22px;
    }

    .dfc-contactpage-info-value {
        font-size: 15px;
    }

    .dfc-contactpage-form-row {
        gap: 25px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-contactpage-section {
        padding: 40px 0 45px;
    }

    .dfc-contactpage-container {
        padding: 0 18px;
    }


    /* Information cards */

    .dfc-contactpage-info-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .dfc-contactpage-info-card {
        min-height: 190px;

        padding:
            27px
            18px;
    }

    .dfc-contactpage-info-icon {
        margin-bottom: 18px;
    }

    .dfc-contactpage-info-title {
        font-size: 21px;

        margin-bottom: 12px;
    }

    .dfc-contactpage-info-value {
        font-size: 15px;

        line-height: 1.6;
    }


    /* Form */

    .dfc-contactpage-form-row {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .dfc-contactpage-field input {
        height: 58px;

        font-size: 15px;
    }

    .dfc-contactpage-field textarea {
        height: 155px;

        font-size: 15px;
    }

    .dfc-contactpage-message-field {
        margin-top: 15px;
    }

    .dfc-contactpage-submit-wrapper {
        justify-content: center;

        margin-top: 20px;
    }

    .dfc-contactpage-submit-button {
        min-width: 110px;

        height: 36px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-contactpage-container {
        padding: 0 15px;
    }

    .dfc-contactpage-info-card {
        min-height: 180px;
    }

    .dfc-contactpage-info-title {
        font-size: 20px;
    }

    .dfc-contactpage-info-value {
        font-size: 14px;
    }

    .dfc-contactpage-field input {
        height: 55px;
    }

    .dfc-contactpage-field textarea {
        height: 145px;
    }
}




/* =====================================================
   AMRITSAR LOCATION CONTENT SECTION
   Unique namespace: dfc-amritsar-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-amritsar-section {
    width: 100%;

    background: #ffffff;

    padding: 35px 0 45px;

    overflow: hidden;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.dfc-amritsar-container {
    width: 100%;

    max-width: 1220px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   HEADING
========================================== */

.dfc-amritsar-heading {
    margin: 0;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 56px;

    font-weight: 700;

    line-height: 1.15;

    text-align: center;

    letter-spacing: -1px;
}


/* ==========================================
   CONTENT GRID
========================================== */

.dfc-amritsar-content {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 55px;

    width: 100%;

    margin-top: 76px;
}


/* ==========================================
   LEFT TEXT
========================================== */

.dfc-amritsar-text {
    width: 100%;

    padding-left: 35px;
}


.dfc-amritsar-text p {
    margin: 0 0 25px;

    color: #344b66;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 2;

    text-align: justify;
}


.dfc-amritsar-text p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   TEXT LINK
========================================== */

.dfc-amritsar-text a {
    color: #2d8df0;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.dfc-amritsar-text a:hover {
    color: #1269c3;

    text-decoration: underline;
}


/* ==========================================
   IMAGE WRAPPER
========================================== */

.dfc-amritsar-image-wrapper {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


/* ==========================================
   IMAGE
========================================== */

.dfc-amritsar-image {
    display: block;

    width: 100%;

    max-width: 575px;

    height: auto;

    object-fit: contain;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-amritsar-container {
        max-width: 1220px;
    }

    .dfc-amritsar-heading {
        font-size: 56px;
    }

    .dfc-amritsar-content {
        margin-top: 76px;

        gap: 55px;
    }

    .dfc-amritsar-text {
        padding-left: 35px;
    }

    .dfc-amritsar-text p {
        font-size: 18px;

        line-height: 2;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-amritsar-section {
        padding: 32px 0 42px;
    }

    .dfc-amritsar-container {
        max-width: 1050px;
    }

    .dfc-amritsar-heading {
        font-size: 48px;
    }

    .dfc-amritsar-content {
        gap: 40px;

        margin-top: 60px;
    }

    .dfc-amritsar-text {
        padding-left: 15px;
    }

    .dfc-amritsar-text p {
        font-size: 17px;

        line-height: 1.9;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-amritsar-section {
        padding: 40px 0 45px;
    }

    .dfc-amritsar-container {
        max-width: 800px;

        padding: 0 25px;
    }

    .dfc-amritsar-heading {
        font-size: 40px;

        line-height: 1.2;
    }

    .dfc-amritsar-content {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 45px;
    }

    .dfc-amritsar-text {
        padding-left: 0;
    }

    .dfc-amritsar-text p {
        font-size: 17px;

        line-height: 1.8;

        text-align: left;
    }

    .dfc-amritsar-image-wrapper {
        order: 2;
    }

    .dfc-amritsar-image {
        max-width: 600px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-amritsar-section {
        padding: 32px 0 40px;
    }

    .dfc-amritsar-container {
        padding: 0 18px;
    }

    .dfc-amritsar-heading {
        font-size: 32px;

        letter-spacing: -0.5px;
    }

    .dfc-amritsar-content {
        margin-top: 32px;

        gap: 28px;
    }

    .dfc-amritsar-text p {
        font-size: 15px;

        line-height: 1.8;

        text-align: left;

        margin-bottom: 22px;
    }

    .dfc-amritsar-image {
        width: 100%;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-amritsar-container {
        padding: 0 15px;
    }

    .dfc-amritsar-heading {
        font-size: 27px;

        line-height: 1.25;
    }

    .dfc-amritsar-content {
        margin-top: 27px;

        gap: 24px;
    }

    .dfc-amritsar-text p {
        font-size: 14px;

        line-height: 1.75;
    }
}


/* =====================================================
   ACCOMMODATIONS SECTION
   Unique namespace: dfc-accommodation-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-accommodation-section {
    width: 100%;

    background: #ffffff;

    padding: 35px 0 45px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-accommodation-container {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   HEADING
========================================== */

.dfc-accommodation-heading {
    margin: 0 0 12px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
   INTRODUCTION
========================================== */

.dfc-accommodation-intro {
    margin: 0 0 21px;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.95;
}


/* ==========================================
   LINK
========================================== */

.dfc-accommodation-intro a {
    color: #398df3;

    text-decoration: none;

    transition: color 0.2s ease;
}


.dfc-accommodation-intro a:hover {
    color: #126ac8;

    text-decoration: underline;
}


/* ==========================================
   PROVIDE TEXT
========================================== */

.dfc-accommodation-provide {
    margin: 0 0 20px;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;
}


/* ==========================================
   SERVICE LIST
========================================== */

.dfc-accommodation-list {
    margin: 0 0 22px;

    padding-left: 18px;

    color: #626262;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.75;
}


/* ==========================================
   LIST ITEMS
========================================== */

.dfc-accommodation-list li {
    margin: 0;

    padding-left: 2px;
}


/* ==========================================
   CLOSING TEXT
========================================== */

.dfc-accommodation-ending {
    margin: 0;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.7;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-accommodation-container {
        max-width: 1050px;
    }

    .dfc-accommodation-heading {
        font-size: 40px;
    }

    .dfc-accommodation-intro,
    .dfc-accommodation-provide,
    .dfc-accommodation-list,
    .dfc-accommodation-ending {
        font-size: 16px;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-accommodation-container {
        max-width: 1000px;
    }

    .dfc-accommodation-heading {
        font-size: 38px;
    }

    .dfc-accommodation-intro,
    .dfc-accommodation-provide,
    .dfc-accommodation-list,
    .dfc-accommodation-ending {
        font-size: 15.5px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-accommodation-section {
        padding: 40px 0;
    }

    .dfc-accommodation-container {
        max-width: 800px;

        padding: 0 25px;
    }

    .dfc-accommodation-heading {
        font-size: 34px;
    }

    .dfc-accommodation-intro,
    .dfc-accommodation-provide,
    .dfc-accommodation-list,
    .dfc-accommodation-ending {
        font-size: 15px;

        line-height: 1.8;
    }

    .dfc-accommodation-list {
        padding-left: 20px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-accommodation-section {
        padding: 32px 0 38px;
    }

    .dfc-accommodation-container {
        padding: 0 18px;
    }

    .dfc-accommodation-heading {
        font-size: 29px;

        line-height: 1.25;

        margin-bottom: 15px;
    }

    .dfc-accommodation-intro {
        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 20px;
    }

    .dfc-accommodation-provide {
        font-size: 14px;

        margin-bottom: 14px;
    }

    .dfc-accommodation-list {
        padding-left: 20px;

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 20px;
    }

    .dfc-accommodation-list li {
        padding-left: 1px;
    }

    .dfc-accommodation-ending {
        font-size: 14px;

        line-height: 1.75;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-accommodation-container {
        padding: 0 15px;
    }

    .dfc-accommodation-heading {
        font-size: 26px;
    }

    .dfc-accommodation-intro,
    .dfc-accommodation-provide,
    .dfc-accommodation-list,
    .dfc-accommodation-ending {
        font-size: 13.5px;

        line-height: 1.75;
    }

    .dfc-accommodation-list {
        padding-left: 19px;
    }
}

/* =====================================================
   TREATMENTS OFFERED SECTION
   Unique namespace: dfc-treatment-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-treatment-section {
    width: 100%;

    background: #ffffff;

    padding: 32px 0 42px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-treatment-container {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   MAIN HEADING
========================================== */

.dfc-treatment-main-heading {
    margin: 0 0 37px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.25;

    text-align: center;
}


/* ==========================================
   TREATMENT ITEM
========================================== */

.dfc-treatment-item {
    width: 100%;

    margin: 0 0 27px;
}


.dfc-treatment-item:last-child {
    margin-bottom: 0;
}


/* ==========================================
   TREATMENT TITLE
========================================== */

.dfc-treatment-title {
    margin: 0 0 10px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 27px;

    font-weight: 700;

    line-height: 1.3;
}


/* ==========================================
   TREATMENT DESCRIPTION
========================================== */

.dfc-treatment-description {
    margin: 0;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.9;

    text-align: left;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1400px) {

    .dfc-treatment-container {
        max-width: 1050px;
    }

    .dfc-treatment-main-heading {
        font-size: 34px;
    }

    .dfc-treatment-title {
        font-size: 27px;
    }

    .dfc-treatment-description {
        font-size: 16px;

        line-height: 1.9;
    }
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-treatment-container {
        max-width: 1000px;
    }

    .dfc-treatment-main-heading {
        font-size: 32px;

        margin-bottom: 34px;
    }

    .dfc-treatment-title {
        font-size: 25px;
    }

    .dfc-treatment-description {
        font-size: 15.5px;

        line-height: 1.85;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-treatment-section {
        padding: 35px 0 40px;
    }

    .dfc-treatment-container {
        max-width: 800px;

        padding: 0 25px;
    }

    .dfc-treatment-main-heading {
        font-size: 29px;

        line-height: 1.3;

        margin-bottom: 30px;
    }

    .dfc-treatment-item {
        margin-bottom: 25px;
    }

    .dfc-treatment-title {
        font-size: 23px;

        margin-bottom: 9px;
    }

    .dfc-treatment-description {
        font-size: 15px;

        line-height: 1.8;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-treatment-section {
        padding: 30px 0 38px;
    }

    .dfc-treatment-container {
        padding: 0 18px;
    }

    .dfc-treatment-main-heading {
        font-size: 25px;

        line-height: 1.3;

        margin-bottom: 27px;
    }

    .dfc-treatment-item {
        margin-bottom: 24px;
    }

    .dfc-treatment-title {
        font-size: 21px;

        line-height: 1.35;

        margin-bottom: 8px;
    }

    .dfc-treatment-description {
        font-size: 14px;

        line-height: 1.8;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-treatment-container {
        padding: 0 15px;
    }

    .dfc-treatment-main-heading {
        font-size: 23px;
    }

    .dfc-treatment-title {
        font-size: 19px;
    }

    .dfc-treatment-description {
        font-size: 13.5px;

        line-height: 1.75;
    }
}

/* =====================================================
   REMEDIAL & PSYCHOLOGICAL TREATMENT SECTION
   Unique namespace: dfc-remedial-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-remedial-section {
    width: 100%;

    background: #ffffff;

    padding: 32px 0 45px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-remedial-container {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   CONTENT ITEM
========================================== */

.dfc-remedial-item {
    width: 100%;

    margin: 0 0 29px;
}


.dfc-remedial-item:last-child {
    margin-bottom: 0;
}


/* ==========================================
   HEADING
========================================== */

.dfc-remedial-title {
    margin: 0 0 10px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.35;
}


/* ==========================================
   DESCRIPTION
========================================== */

.dfc-remedial-text {
    margin: 0;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.78;

    text-align: left;
}


/* ==========================================
   BULLET LIST
========================================== */

.dfc-remedial-list {
    margin: 10px 0 0;

    padding-left: 20px;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;
}


.dfc-remedial-list li {
    margin-bottom: 3px;

    padding-left: 2px;
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-remedial-container {
        max-width: 1000px;
    }

    .dfc-remedial-title {
        font-size: 31px;
    }

    .dfc-remedial-text,
    .dfc-remedial-list {
        font-size: 15.5px;

        line-height: 1.8;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-remedial-section {
        padding: 35px 0 42px;
    }

    .dfc-remedial-container {
        max-width: 800px;

        padding: 0 25px;
    }

    .dfc-remedial-item {
        margin-bottom: 27px;
    }

    .dfc-remedial-title {
        font-size: 28px;

        line-height: 1.35;
    }

    .dfc-remedial-text,
    .dfc-remedial-list {
        font-size: 15px;

        line-height: 1.8;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-remedial-section {
        padding: 30px 0 38px;
    }

    .dfc-remedial-container {
        padding: 0 18px;
    }

    .dfc-remedial-item {
        margin-bottom: 25px;
    }

    .dfc-remedial-title {
        font-size: 24px;

        line-height: 1.35;

        margin-bottom: 9px;
    }

    .dfc-remedial-text {
        font-size: 14px;

        line-height: 1.8;
    }

    .dfc-remedial-list {
        font-size: 14px;

        line-height: 1.75;

        padding-left: 20px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-remedial-container {
        padding: 0 15px;
    }

    .dfc-remedial-title {
        font-size: 21px;
    }

    .dfc-remedial-text,
    .dfc-remedial-list {
        font-size: 13.5px;

        line-height: 1.75;
    }
}

/* =====================================================
   REUSABLE FAQ COMPONENT
   Can be used on unlimited pages
===================================================== */

.dfc-reusable-faq-section {
    width: 100%;
    background: #ffffff;
    padding: 34px 0 45px;
    overflow: hidden;
}


.dfc-reusable-faq-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==========================================
   HEADING
========================================== */

.dfc-reusable-faq-heading {
    margin: 0 0 28px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
   FAQ LIST
========================================== */

.dfc-reusable-faq-list {
    width: 100%;
}


/* ==========================================
   FAQ ITEM
========================================== */

.dfc-reusable-faq-item {
    width: 100%;

    margin: 0;

    border-bottom: 1px solid #e5e5e5;
}


/* ==========================================
   QUESTION
========================================== */

.dfc-reusable-faq-question {
    width: 100%;

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 18px 17px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;

    list-style: none;
}


/* Remove browser default arrow */

.dfc-reusable-faq-question::-webkit-details-marker {
    display: none;
}

.dfc-reusable-faq-question::marker {
    display: none;
    content: "";
}


/* ==========================================
   QUESTION HOVER
========================================== */

.dfc-reusable-faq-question:hover {
    background: #fafafa;
}


/* ==========================================
   ARROW
========================================== */

.dfc-reusable-faq-arrow {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: #398df3;

    font-size: 17px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


/* ==========================================
   OPEN ARROW
========================================== */

.dfc-reusable-faq-item[open]
.dfc-reusable-faq-arrow {
    transform: rotate(180deg);
}


/* ==========================================
   ANSWER
========================================== */

.dfc-reusable-faq-answer {
    padding:
        0
        17px
        25px;
}


/* ==========================================
   ANSWER TEXT
========================================== */

.dfc-reusable-faq-answer p {
    margin: 0;

    color: #686868;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.8;
}


/* ==========================================
   ANSWER LINKS
========================================== */

.dfc-reusable-faq-answer a {
    color: #398df3;

    text-decoration: none;
}

.dfc-reusable-faq-answer a:hover {
    text-decoration: underline;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-reusable-faq-section {
        padding: 35px 0 40px;
    }

    .dfc-reusable-faq-container {
        max-width: 800px;
        padding: 0 25px;
    }

    .dfc-reusable-faq-heading {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .dfc-reusable-faq-question {
        min-height: 75px;
        padding: 17px 12px;
    }

    .dfc-reusable-faq-answer {
        padding:
            0
            12px
            23px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-reusable-faq-section {
        padding: 30px 0 38px;
    }

    .dfc-reusable-faq-container {
        padding: 0 18px;
    }

    .dfc-reusable-faq-heading {
        font-size: 29px;
        margin-bottom: 22px;
    }

    .dfc-reusable-faq-question {
        min-height: 70px;

        padding:
            16px 8px;

        font-size: 15px;

        gap: 15px;
    }

    .dfc-reusable-faq-arrow {
        font-size: 14px;
    }

    .dfc-reusable-faq-answer {
        padding:
            0
            8px
            22px;
    }

    .dfc-reusable-faq-answer p {
        font-size: 14px;
        line-height: 1.75;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-reusable-faq-container {
        padding: 0 15px;
    }

    .dfc-reusable-faq-heading {
        font-size: 26px;
    }

    .dfc-reusable-faq-question {
        min-height: 68px;

        padding-left: 5px;
        padding-right: 5px;

        font-size: 14px;
    }

    .dfc-reusable-faq-answer {
        padding-left: 5px;
        padding-right: 5px;
    }

    .dfc-reusable-faq-answer p {
        font-size: 13.5px;
    }
}




/* =====================================================
   DRUG FREE COUNTRY GALLERY
   Unique namespace: dfc-gallery-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-gallery-section {
    width: 100%;

    background: #ffffff;

    padding: 45px 0 55px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-gallery-container {
    width: 100%;

    max-width: 1080px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   GALLERY GRID
========================================== */

.dfc-gallery-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 65px 66px;
}


/* ==========================================
   GALLERY ITEM
========================================== */

.dfc-gallery-item {
    width: 100%;

    aspect-ratio: 1.45 / 1;

    overflow: hidden;

    cursor: zoom-in;

    background: #f5f5f5;
}


/* ==========================================
   GALLERY IMAGE
========================================== */

.dfc-gallery-image {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}


/* ==========================================
   HOVER ZOOM
========================================== */

.dfc-gallery-item:hover
.dfc-gallery-image {
    transform: scale(1.05);
}


/* ==========================================
   LIGHTBOX
========================================== */

.dfc-gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.92);

    opacity: 0;

    transition:
        opacity 0.25s ease;
}


/* ==========================================
   LIGHTBOX OPEN
========================================== */

.dfc-gallery-lightbox.dfc-gallery-lightbox-active {
    display: flex;

    opacity: 1;
}


/* ==========================================
   LIGHTBOX CONTENT
========================================== */

.dfc-gallery-lightbox-content {
    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* ==========================================
   ZOOMED IMAGE
========================================== */

.dfc-gallery-lightbox-image {
    display: block;

    max-width: 92vw;

    max-height: 90vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 3px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5);

    transform: scale(0.95);

    transition:
        transform 0.25s ease;
}


.dfc-gallery-lightbox-active
.dfc-gallery-lightbox-image {
    transform: scale(1);
}


/* ==========================================
   CLOSE BUTTON
========================================== */

.dfc-gallery-close {
    position: absolute;

    top: 18px;

    right: 25px;

    z-index: 10;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 38px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.dfc-gallery-close:hover {
    background: rgba(255, 255, 255, 0.3);

    transform: rotate(90deg);
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-gallery-container {
        max-width: 1000px;
    }

    .dfc-gallery-grid {
        gap: 45px 40px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-gallery-section {
        padding: 40px 0 45px;
    }

    .dfc-gallery-container {
        max-width: 800px;

        padding: 0 25px;
    }

    .dfc-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px 30px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-gallery-section {
        padding: 30px 0 40px;
    }

    .dfc-gallery-container {
        padding: 0 18px;
    }

    .dfc-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px 18px;
    }

    .dfc-gallery-item {
        aspect-ratio: 1.4 / 1;
    }

    .dfc-gallery-lightbox {
        padding: 20px;
    }

    .dfc-gallery-lightbox-image {
        max-width: 96vw;

        max-height: 85vh;
    }

    .dfc-gallery-close {
        top: 12px;

        right: 15px;

        width: 44px;

        height: 44px;

        font-size: 34px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-gallery-container {
        padding: 0 14px;
    }

    .dfc-gallery-grid {
        gap: 18px 12px;
    }

    .dfc-gallery-item {
        aspect-ratio: 1.35 / 1;
    }

    .dfc-gallery-lightbox {
        padding: 12px;
    }
}


/* ==========================================
   PREVENT BODY SCROLL WHEN LIGHTBOX IS OPEN
========================================== */

body.dfc-gallery-no-scroll {
    overflow: hidden;
}



/* =====================================================
   BLOG DETAIL SECTION
   Unique namespace: dfc-blog-detail-
===================================================== */


/* ==========================================
   MAIN SECTION
========================================== */

.dfc-blog-detail-section {
    width: 100%;

    background: #ffffff;

    padding: 0 0 70px;

    overflow: hidden;
}


/* ==========================================
   MAIN CONTAINER
========================================== */

.dfc-blog-detail-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 15px;
}


/* ==========================================
   BREADCRUMB
========================================== */

.dfc-blog-detail-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    width: 100%;

    padding: 20px 0 5px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


.dfc-blog-detail-breadcrumb-link {
    color: #398df3;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.dfc-blog-detail-breadcrumb-link:hover {
    color: #126ac8;

    text-decoration: underline;
}


.dfc-blog-detail-breadcrumb-separator {
    color: #999999;

    font-size: 18px;

    line-height: 1;
}


.dfc-blog-detail-breadcrumb-current {
    color: #777777;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* ==========================================
   BLOG TITLE
========================================== */

.dfc-blog-detail-title {
    width: 100%;

    margin: 0;

    padding: 0;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 58px;

    font-weight: 400;

    line-height: 1.18;

    letter-spacing: -1px;
}


/* ==========================================
   META INFORMATION
========================================== */

.dfc-blog-detail-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 16px;

    color: #555555;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.5;
}


.dfc-blog-detail-meta-divider {
    color: #777777;

    padding: 0 2px;
}


.dfc-blog-detail-meta-item {
    white-space: nowrap;
}


/* ==========================================
   FEATURED IMAGE WRAPPER
========================================== */

.dfc-blog-detail-featured {
    width: 100%;

    margin-top: 20px;

    overflow: hidden;
}


/* ==========================================
   FEATURED IMAGE
========================================== */

.dfc-blog-detail-featured-image {
    display: block;

    width: 100%;

    height: auto;

    max-height: 620px;

    object-fit: cover;
}


/* ==========================================
   BLOG CONTENT
========================================== */

.dfc-blog-detail-content {
    width: 100%;

    max-width: 100%;

    margin-top: 30px;
}


/* ==========================================
   CONTENT PARAGRAPHS
========================================== */

.dfc-blog-detail-content p {
    margin: 0 0 22px;

    color: #35516e;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 400;

    line-height: 2;

    text-align: left;
}


/* ==========================================
   CONTENT LINKS
========================================== */

.dfc-blog-detail-content a {
    color: #398df3;

    text-decoration: none;

    transition:
        color 0.2s ease;
}


.dfc-blog-detail-content a:hover {
    color: #126ac8;

    text-decoration: underline;
}


/* ==========================================
   CONTENT HEADINGS
========================================== */

.dfc-blog-detail-content h2 {
    margin: 35px 0 12px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.35;
}


/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199.98px) {

    .dfc-blog-detail-container {
        max-width: 1100px;
    }

    .dfc-blog-detail-title {
        font-size: 52px;
    }

    .dfc-blog-detail-content p {
        font-size: 15px;

        line-height: 1.9;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-blog-detail-section {
        padding-bottom: 55px;
    }

    .dfc-blog-detail-container {
        max-width: 800px;

        padding: 0 20px;
    }

    .dfc-blog-detail-breadcrumb {
        padding-top: 18px;

        font-size: 13px;
    }

    .dfc-blog-detail-title {
        font-size: 42px;

        line-height: 1.2;

        letter-spacing: -0.5px;
    }

    .dfc-blog-detail-meta {
        margin-top: 14px;

        font-size: 12.5px;
    }

    .dfc-blog-detail-featured {
        margin-top: 20px;
    }

    .dfc-blog-detail-content {
        margin-top: 28px;
    }

    .dfc-blog-detail-content p {
        font-size: 15px;

        line-height: 1.9;
    }

    .dfc-blog-detail-content h2 {
        font-size: 27px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-blog-detail-section {
        padding-bottom: 45px;
    }

    .dfc-blog-detail-container {
        padding: 0 12px;
    }

    .dfc-blog-detail-breadcrumb {
        gap: 7px;

        padding-top: 14px;

        font-size: 12px;
    }

    .dfc-blog-detail-breadcrumb-separator {
        font-size: 15px;
    }

    .dfc-blog-detail-breadcrumb-current {
        max-width: 100%;

        white-space: normal;
    }

    .dfc-blog-detail-title {
        margin-top: 10px;

        font-size: 34px;

        line-height: 1.18;

        letter-spacing: -0.3px;
    }

    .dfc-blog-detail-meta {
        margin-top: 13px;

        gap: 6px;

        font-size: 11.5px;
    }

    .dfc-blog-detail-meta-divider {
        padding: 0 1px;
    }

    .dfc-blog-detail-featured {
        margin-top: 18px;
    }

    .dfc-blog-detail-featured-image {
        width: 100%;

        max-height: none;

        object-fit: contain;
    }

    .dfc-blog-detail-content {
        margin-top: 25px;
    }

    .dfc-blog-detail-content p {
        margin-bottom: 20px;

        color: #35516e;

        font-size: 14px;

        line-height: 1.9;
    }

    .dfc-blog-detail-content h2 {
        margin-top: 30px;

        font-size: 24px;

        line-height: 1.35;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-blog-detail-container {
        padding: 0 10px;
    }

    .dfc-blog-detail-breadcrumb {
        font-size: 11.5px;

        padding-top: 12px;
    }

    .dfc-blog-detail-title {
        font-size: 29px;

        line-height: 1.2;
    }

    .dfc-blog-detail-meta {
        font-size: 10.5px;

        gap: 5px;
    }

    .dfc-blog-detail-content {
        margin-top: 22px;
    }

    .dfc-blog-detail-content p {
        font-size: 13.5px;

        line-height: 1.85;
    }

    .dfc-blog-detail-content h2 {
        font-size: 22px;
    }
}



/* =====================================================
   CONTACT PAGE SECTION
   Unique namespace: dfc-contact-page-
===================================================== */


/* ==========================================
   SECTION
========================================== */

.dfc-contact-page-section {
    width: 100%;

    background: #ffffff;

    padding: 55px 0 65px;

    overflow: hidden;
}


/* ==========================================
   CONTAINER
========================================== */

.dfc-contact-page-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
   CONTACT INFORMATION GRID
========================================== */

.dfc-contact-page-info-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 60px;

    margin-bottom: 55px;
}


/* ==========================================
   INFORMATION BOX
========================================== */

.dfc-contact-page-info-box {
    min-height: 245px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    padding: 30px 25px;

    border: 1px solid #e6e6e6;

    background: #ffffff;
}


/* ==========================================
   ICON
========================================== */

.dfc-contact-page-icon {
    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    color: #398df3;

    font-size: 27px;
}


/* ==========================================
   INFO TITLE
========================================== */

.dfc-contact-page-info-title {
    margin: 0 0 18px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.3;
}


/* ==========================================
   INFO TEXT
========================================== */

.dfc-contact-page-info-text {
    margin: 0;

    color: #222222;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.6;
}


/* ==========================================
   FORM
========================================== */

.dfc-contact-page-form {
    width: 100%;
}


/* ==========================================
   FORM ROW
========================================== */

.dfc-contact-page-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 34px;

    margin-bottom: 32px;
}


/* ==========================================
   FIELD
========================================== */

.dfc-contact-page-field {
    width: 100%;

    position: relative;
}


/* ==========================================
   LABEL
========================================== */

.dfc-contact-page-label {
    position: absolute;

    width: 1px;

    height: 1px;

    padding: 0;

    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* ==========================================
   INPUT
========================================== */

.dfc-contact-page-input {
    width: 100%;

    height: 64px;

    display: block;

    padding: 0 17px;

    border: 0;

    border-radius: 32px;

    outline: none;

    background: #f7f7f7;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.dfc-contact-page-input::placeholder {
    color: #111111;

    opacity: 1;
}


.dfc-contact-page-input:focus {
    background: #f3f3f3;

    box-shadow:
        0 0 0 2px rgba(57, 141, 243, 0.25);
}


/* ==========================================
   MESSAGE FIELD
========================================== */

.dfc-contact-page-message-field {
    margin-bottom: 16px;
}


/* ==========================================
   TEXTAREA
========================================== */

.dfc-contact-page-textarea {
    width: 100%;

    min-height: 150px;

    display: block;

    resize: vertical;

    padding: 22px 17px;

    border: 0;

    border-radius: 25px;

    outline: none;

    background: #f7f7f7;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.5;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.dfc-contact-page-textarea::placeholder {
    color: #111111;

    opacity: 1;
}


.dfc-contact-page-textarea:focus {
    background: #f3f3f3;

    box-shadow:
        0 0 0 2px rgba(57, 141, 243, 0.25);
}


/* ==========================================
   SUBMIT WRAPPER
========================================== */

.dfc-contact-page-submit-wrapper {
    width: 100%;

    display: flex;

    justify-content: flex-end;
}


/* ==========================================
   SUBMIT BUTTON
========================================== */

.dfc-contact-page-submit {
    min-width: 101px;

    height: 33px;

    padding: 0 18px;

    border: 0;

    border-radius: 20px;

    outline: none;

    background: #20b8ed;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.dfc-contact-page-submit:hover {
    background: #129fd2;

    transform: translateY(-1px);
}


.dfc-contact-page-submit:active {
    transform: translateY(0);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

    .dfc-contact-page-section {
        padding: 45px 0 55px;
    }

    .dfc-contact-page-container {
        max-width: 800px;
    }

    .dfc-contact-page-info-grid {
        gap: 30px;

        margin-bottom: 40px;
    }

    .dfc-contact-page-info-box {
        min-height: 220px;
    }

    .dfc-contact-page-form-row {
        gap: 25px;

        margin-bottom: 25px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

    .dfc-contact-page-section {
        padding: 35px 0 45px;
    }

    .dfc-contact-page-container {
        padding: 0 18px;
    }

    .dfc-contact-page-info-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }

    .dfc-contact-page-info-box {
        min-height: 190px;

        padding: 25px 18px;
    }

    .dfc-contact-page-info-title {
        font-size: 22px;
    }

    .dfc-contact-page-info-text {
        font-size: 14px;
    }

    .dfc-contact-page-form-row {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-bottom: 18px;
    }

    .dfc-contact-page-input {
        height: 58px;

        font-size: 15px;
    }

    .dfc-contact-page-textarea {
        min-height: 140px;

        font-size: 15px;
    }

    .dfc-contact-page-submit-wrapper {
        justify-content: flex-end;

        margin-top: 5px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .dfc-contact-page-container {
        padding: 0 14px;
    }

    .dfc-contact-page-info-box {
        min-height: 175px;
    }

    .dfc-contact-page-input {
        height: 55px;

        padding: 0 15px;
    }

    .dfc-contact-page-textarea {
        padding: 18px 15px;

        border-radius: 20px;
    }

    .dfc-contact-page-submit {
        min-width: 100px;

        height: 34px;
    }
}

/* ==========================================
   PHONE FIELD - FULL WIDTH
========================================== */

.dfc-contact-page-phone-row {
    grid-template-columns: 1fr;
    width: 100%;
}

.dfc-contact-page-phone-row
.dfc-contact-page-field {
    width: 100%;
}


















/* =========================
   FOOTER
========================= */

.footer-section {
    width: 100%;
    min-height: 541px;
    background: #000;
    color: #fff;
}

.footer-container {
    max-width: 1090px;
    padding-top: 78px;
    padding-bottom: 60px;
}


/* =========================
   COMMON COLUMN
========================= */

.footer-column {
    color: #fff;
}


/* =========================
   LOGO
========================= */

.logo {
    display: inline-flex;
    align-items: center;

    font-size: 21px;
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;
}

.red-text {
    color: #ff2020;
}

.blue-text {
    color: #1680e9;

    margin-left: 4px;

    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}


/* Red line above logo */

.logo-line {
    width: 60px;
    height: 2px;

    background: #ff2020;

    margin-top: -27px;
    margin-bottom: 47px;

    position: relative;
}


/* =========================
   DESCRIPTION
========================= */

.description {
    color: #f5f5f5;

    font-size: 15.5px;
    line-height: 28.5px;

    margin-bottom: 8px;
}


/* =========================
   CONTACT
========================= */

.contact {
    color: #f5f5f5;

    font-size: 15.5px;
    line-height: 28px;

    margin: 0;
}

.contact strong {
    font-weight: 700;
}


/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    display: flex;
    gap: 8px;

    margin-top: 13px;
}

.social-icons a {
    width: 30px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 3px;

    text-decoration: none;

    font-size: 17px;

    transition: 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.facebook {
    background: #3f5f9d;
}

.instagram {
    background: #ee2451;
}

.pinterest {
    background: #d71920;
}


/* =========================
   HEADINGS
========================= */

.footer-column h3 {
    margin: 0 0 30px;

    color: #fff;

    font-size: 19px;
    line-height: 1.2;

    font-weight: 700;
}


/* =========================
   TREATMENT LINKS
========================= */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #f5f5f5;

    font-size: 14.5px;

    line-height: 1.35;

    text-decoration: none;

    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #1680e9;
}


/* =========================
   QUICK QUERY FORM
========================= */

#queryForm input,
#queryForm textarea {
    display: block;

    width: 235px;

    border: none;
    outline: none;

    background: #fff;

    color: #333;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    border-radius: 6px;

    margin-bottom: 10px;
}

#queryForm input {
    height: 44px;

    padding: 0 15px;
}

#queryForm textarea {
    height: 140px;

    padding: 12px 15px;

    resize: vertical;
}

#queryForm input::placeholder,
#queryForm textarea::placeholder {
    color: #777;
}


/* =========================
   SUBMIT BUTTON
========================= */

#queryForm button {
    width: 102px;
    height: 36px;

    margin-top: 7px;
    margin-left: 133px;

    border: none;
    border-radius: 6px;

    background: #8700e8;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.2s ease;
}

#queryForm button:hover {
    background: #a51cff;

    transform: translateY(-1px);
}


/* =========================
   LOCATION
========================= */

.location-section h4 {
    margin: 0 0 30px;

    color: #fff;

    font-size: 20px;

    line-height: 1;

    font-weight: 700;
}

.location-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.location-links li {
    margin-bottom: 11px;
}

.location-links a {
    color: #f5f5f5;

    font-size: 14.5px;

    text-decoration: none;

    line-height: 1.35;

    transition: 0.2s ease;
}

.location-links a:hover {
    color: #1680e9;
}


/* =========================
   HIMACHAL
========================= */

.himachal {
    margin-top: 64px;
}

.himachal h4 {
    margin-bottom: 20px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1199px) {

    .footer-container {
        max-width: 960px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-column {
        margin-bottom: 40px;
    }

    #queryForm input,
    #queryForm textarea {
        width: 100%;
        max-width: 300px;
    }

    #queryForm button {
        margin-left: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .footer-section {
        min-height: auto;
    }

    .footer-container {
        padding: 50px 25px 30px;
    }

    .footer-column {
        margin-bottom: 45px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-line {
        margin-bottom: 35px;
    }

    .footer-column h3 {
        margin-bottom: 25px;
    }

    #queryForm input,
    #queryForm textarea {
        width: 100%;
        max-width: none;
    }

    #queryForm button {
        margin-left: 0;
    }

    .himachal {
        margin-top: 25px;
    }
}