body {
    font-family: 'Poppins', sans-serif;
}

.custom-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    /* font-weight: 700; */
    letter-spacing: 0;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .custom-heading {
        font-size: 50px;
        /* font-size: 56px; */
        line-height: 1.2;
    }
}

.custom-subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #ffffff;
}

@media (min-width: 768px) {
    .custom-subheading {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .custom-subheading {
        font-size: 35px;
    }
}

.custom-subtext {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .custom-subtext {
        font-size: 20px;
        line-height: 1.6;
    }
}

.custom-subtext--muted {
    color: #d1d5db;
}

.text-nowrap {
    white-space: nowrap;
}

.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px;
    letter-spacing: 0;
    color: #ffffff;
    /* white-space: nowrap; */
}

.service-card-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #ffffff;
}

.custom-subheading--sm {
    font-size: 24px;
    line-height: 32px;
}

.custom-subtext--sm {
    font-size: 16px;
    line-height: 24px;
}

.tag-button {
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #0c4560;
    border: 1px solid #60a5fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tag-button-pill {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 400;
    gap: 8px;
    background-color: #0c4560;
    border-radius: 9999px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.tag-button-pill-max {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    gap: 12px;
    background-color: #ffffff;
    color: #0c4560;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.tag-button-pill-transparent {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    background-color: transparent;
    border-radius: 9999px;
    border: 1px solid #60a5fa;
    transition: all 0.2s ease;
}

.footer-heading {
    color: #60a5fa;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-text,
.footer-link {
    color: #ffffff;
    font-size: 14px;
}

.footer-icon {
    color: #ffffff;
}

.nav-dropdown-link {
    padding: 8px 16px;
    color: #374151;
    font-size: 14px;
}

.mobile-nav-link {
    display: block;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 14px;
}

.icon-container>i {
    font-size: 30px;
}

.schedule-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0c4560;
    color: #ffffff;
}

.page-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

@media (max-width: 1024px) {
    .page-preloader {
        display: none !important;
    }
}

.page-preloader.page-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-preloader__logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transform-origin: center center;
    animation: preloader-spin 1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes preloader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 639px) {
    .child-main-content-wrapper {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 767px) {
    .custom-heading {
        font-size: 28px !important;
    }

    .custom-subheading {
        font-size: 22px !important;
    }

    .custom-subtext {
        font-size: 16px !important;
    }

    .text-nowrap {
        white-space: normal;
    }

    .service-card-title {
        white-space: normal;
    }

    .tag-button,
    .tag-button-pill,
    .tag-button-pill-transparent {
        font-size: 13px;
        padding: 10px 18px;
    }

    .tag-button-pill-max {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-heading {
        font-size: 36px !important;
    }

    .custom-subheading {
        font-size: 25px !important;
    }
}