﻿/* Accessibility Audit Page Styles */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #595F64 !important;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #595F64 !important;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #595F64 !important;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #595F64 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #595F64 !important;
}

::placeholder { /* Most modern browsers support this now. */
    color: #595F64 !important;
} 
.dropdown-button:focus, .consent-checkbox:focus, :focus-visible{
    box-shadow: 0 0 0 2px #000, 0 0 0 4px #fff !important;
}
.dropdown-button:focus-visible, .submit-button:focus-visible, .contact-button:focus-visible, .file-upload-label:focus-visible {
    outline: none !important;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#consultation-selected-text, #content-dropdown-button {
    color: #595F64;
}

    /*Hedaer styles*/
    .contact-button {
        display: flex;
        align-items: center;
        justify-content: center;
        /* background-color: #fff;*/
        border: 1px solid #fff;
        border-radius: 50px;
        padding: 10px 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        font-family: sans-serif;
        cursor: pointer;
        width: fit-content;
        text-decoration: none;
    }
    .contact-button .cbutton-icon svg {
        transition: transform 0.3s ease;
    }
/* On hover – rotate arrow to horizontal */
    .contact-button:hover .cbutton-icon svg,
    .contact-button:focus .cbutton-icon svg {
        transform: rotate(45deg); /* rotate ↗ to → */
    }
.cbutton-text {
    color: #fff;
    margin-right: 10px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 17px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.cbutton-icon {
    background-color: #fff;
    color: #003A70;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed font-size and line-height as they are for text, not SVG */
}

    /* Style for the SVG itself to ensure it fits the circle */
.cbutton-icon svg {
    width: 16px; /* Adjust SVG size to fit within the 28px circle */
    height: 16px;
}
.nav-link {
    color: white;
}
.nav-link:hover {
    color: white;
    text-decoration: underline;
}
.navbar-nav {
    gap: 25px; /* adjust space as needed */
}
.accessibility-page {
    font-family: "Manrope", sans-serif;
    color: #ffffff;
}

.bodybg {
    background: linear-gradient(122.73deg, #01274A 4.41%, #021527 28.61%, #020202 75.37%);
    font-family: 'Manrope', sans-serif;
}
   /* .bodybg::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        background-image: url('/Content/Images/Union.svg');
        background-repeat: no-repeat;
        background-position: right top;
        z-index: -1;
        pointer-events: none;
        object-fit: cover;
        max-width: 100%;
    }*/
.publish-bg-ele {
    z-index: -1;
    pointer-events: none;
    position: absolute;
    inset: 0% 0% auto auto;
    object-fit: cover;
    max-width: 100%;
    display: inline-block;
}
/* Hero Section */
.hero-section {
   
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

/* Hero Content */
.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-family: "Manrope", sans-serif;
    font-weight: 550;
    font-style: SemiBold;
    font-size: 66px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    color: #ffffff;
    margin-bottom: 60px;
}

.event-logo {
    margin: 30px 0;
}

.event-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    font-family: "Manrope", sans-serif;
    font-weight: 660;
    font-style: Bold;
    font-size: 44px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
    color: #ffffff;
}

.hero-description {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 40px;
    color: #FFFFFF;
}

    .hero-description strong {
        color: #ffffff;
        font-weight: 600;
    }

.event-details {
    margin-top: 40px;
}

.event-detail {
    margin-bottom: 10px;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #ffffff;
}

    .event-detail strong {
        font-weight: 600;
    }


.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
    
}
.dropdown-button.filled {
    background-color: #ffffff;
}
.dropdown-button.filled span {
    color: #000 !important;
}
.dropdown-button {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    background-color: #fff; /*#CCCECF*/
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-radius: 4px;
}

    .dropdown-button:hover {
        border-color: #999;
    }

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    transition: transform 0.3s;
}

    .dropdown-arrow.open {
        transform: rotate(180deg);
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

    .dropdown-content.show {
        display: block;
    }
#consultation-dropdown-button:focus, .contact-button:focus {
    box-shadow: 0 0 0 2px #000, 0 0 0 4px #fff !important;
}

.radio-option {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

    .radio-option:last-child {
        border-bottom: none;
    }

    .radio-option:hover {
        background-color: #f9f9f9;
    }

    .radio-option input[type="radio"] {
        margin-right: 10px;
        cursor: pointer;
    }

    .radio-option label {
        cursor: pointer;
        flex-grow: 1;
        font-family: Manrope;
        font-weight: 400;
        font-style: Regular;
        font-size: 18px;
        leading-trim: NONE;
        line-height: 140%;
        letter-spacing: 0%;
        color: #303030;
    }
.checkbox-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.checkbox-option:last-child {
    border-bottom: none;
}

.checkbox-option:hover {
    background-color: #f9f9f9;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-option label {
    cursor: pointer;
    flex-grow: 1;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #303030;
}
/* Form Container */
.form-container {
    background: linear-gradient(126.17deg, #003A70 -14.66%, #01192F 16.22%, #020E1A 44.78%, #020202 75.4%);
    color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    /* box-shadow: 0 20px 40px #F3F6FA;*/
    backdrop-filter: blur(10px);
    border: 8px solid #F3F6FA;
}

.accessibility-form {
    color: #ffffff;
}

/* Form Styles */
.form-row {
    display: flex;
    margin: 0 -10px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px;
    }

.form-label {
    font-family: "Manrope", sans-serif;
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
}

.form-control {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;

    transition: all 0.3s ease;
    box-sizing: border-box;
}
    /* When empty (placeholder visible) */
    /*.form-control:placeholder-shown {
        background-color: #ffffff;*/ /*#CCCECF*/
    /*}

  
    .form-control:not(:placeholder-shown) {
        background-color: #ffffff;
    }*/
    .form-control:focus {
        outline: none;
        border-color: #2d4f73;
        background-color: #ffffff;
        box-shadow: 0 0 0 2px #000, 0 0 0 4px #fff !important;
    }

.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* File Upload */
.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.file-upload-container:focus-within {
    box-shadow: 0 0 0 2px #000, 0 0 0 4px #fff !important;
    border-radius: 6px;
}
#fileUpload:disabled + .file-upload-label, .form-control:disabled {
    background-color: #ccc; /* grey */
    color: #666; /* dimmed text */
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none; /* prevent clicking label */
}
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    background-color: #fff; /*#CCCECF*/
    cursor: pointer;
    transition: all 0.3s ease;
}
    .file-upload-label.filled {
        background-color: #ffffff;
    }
    

    .file-upload-label:hover {
        border-color: #2d4f73;
       /* background-color: #e3f2fd;*/
    }

.file-upload-text {
    color: #595F64;
    font-size: 14px;
}

.upload-icon {
    font-size: 18px;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/*.consent-checkbox {
    width: auto;
    margin: 0;
    margin-top: 4px;
}*/
.form-check-input {
    width: 2em;
    height: 1.3em;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid white;
}
    .consent-label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    cursor: pointer;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #0000;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    cursor: pointer;
    width: fit-content;
}
    .submit-button .button-icon svg {
        transition: transform 0.3s ease;
    }
    /* On hover – rotate arrow to horizontal */
    .submit-button:hover .button-icon svg,
    .submit-button:focus .button-icon svg {
        transform: rotate(45deg); /* rotate ↗ to → */
    }
.button-text {
    color:  #003A70;
    margin-right: 10px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 17px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.button-icon {
    background-color: #003A70;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed font-size and line-height as they are for text, not SVG */
}

    /* Style for the SVG itself to ensure it fits the circle */
    .button-icon svg {
        width: 16px; /* Adjust SVG size to fit within the 28px circle */
        height: 16px;
    }

/* Validation Messages */
.text-danger {
    color: #EB9F9E !important;
    font-size: 16px;
    margin-top: 5px;
    display: block;
}

/* FAQ Section */
/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333;
}

/* FAQ Title (based on the design) */
.faq-title {
    margin-bottom: 50px;
    color: #000000;
    text-align: left;
    font-weight: 660;
    font-style: Bold;
    font-size: 44px;
    line-height: 110.00000000000001%;
    letter-spacing: -3%;
}



.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

/* Question Container (h3) */
.faq-question {
    margin: 0;
}

/* Question Toggle Button (this is the clickable area) */
.faq-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Manrope', sans-serif; /* Using 'Manrope' as specified in the image */
    color: #000000; /* Black text color */
}

    /* Question Toggle on hover */
  /*  .faq-toggle:hover {
        color: #2d4f73;
    }*/

/* Numbering for the questions */
.faq-number,
.faq-list > li::marker {
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    margin-right: 15px;
    min-width: 25px;
}

/* Question Text */
.faq-text {
    flex: 1;
    font-family: Manrope;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
}

/* Plus/Minus Icon */
.faq-icon {
    font-size: 24px;
    font-weight: 300;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

/* Rotates the icon when the FAQ is open */
.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

/* Answer section */
.faq-answer {
    padding: 0 0 20px 0px;
    color: #000; /* Or a color that matches the body text */
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
}

    .faq-answer p {
        margin: 0;
    }







    /*Thank you*/
.h1text {
    font-family: Manrope;
    font-weight: 550;
    font-style: SemiBold;
    font-size: 66px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: -2%;
    color: #fff;
}
.ptext {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}
.thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Adjust as needed for proper vertical alignment */
    text-align: center;
    padding: 20px;
}

.thank-you-content {
    padding: 40px;
}
.return-home-button {
    text-decoration: none;
    color: #003A70;
}
.return-home-button:hover {
    text-decoration: none;
    color: #003A70;
}
.iti__country.iti__highlight {
    /*background-color: #757575 !important;*/
    border: 1px solid black;
}
.image-21 {
    width: 86%;
    position: absolute;
    inset: auto 0% 0% auto;
    object-fit: cover;
    max-width: 100%;
    display: inline-block;
    z-index: -1;
}
.file-list {
    margin-top: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fafafa;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 6px;
    font-size: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

    .file-item span {
        flex-grow: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #000;
    }



.file-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #C9312C; /* Bootstrap danger red */
    transition: transform 0.2s ease;
}

    .file-remove:hover {
        transform: scale(1.1);
        color: #b52b27;
    }


    .file-remove:focus {
        border: 1px solid black;
    }


/* Base Footer Styles */


.footer-logo {
    max-width: 150px;
    height: 82px;
    width: 82px;
}


.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-list a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-list a:hover {
           text-decoration: underline;
        }

.section.footer-section {
    background-color: #000;
    padding-top: 3.75rem;
    padding-bottom: 1.2rem;
}

.h2-footer {
    color: white;
    font-variation-settings: "wght" 400;
    letter-spacing: .2em;
    font-size: .875rem;
    font-weight: 400;
    line-height: 150%;
}

.footer-head.sub-block {
    color: #f3f6fa;
    letter-spacing: 0;
    text-transform: none;
    font-size: .9375rem;
    font-weight: 400;
    text-decoration: none;
}

.main-wp {
    z-index: 2;
    max-width: var(--container-width--main-wp);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.footer-links-wp {
    z-index: 1;
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: auto auto auto auto auto;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    display: grid;
    position: relative;
}

.footer-logo-wp {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer-ele {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    display: flex;
}

    .footer-ele._2-ele {
        grid-column-gap: 3.75rem;
        grid-row-gap: 3.75rem;
    }

.comp-wp {
    max-width: var(--container-width--main-wp);
    grid-column-gap: .9375rem;
    grid-row-gap: .9375rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: static;
    inset: auto 0% 27%;
}

.footer-dash-line {
    background-color: #ffffff1a;
    width: 100%;
    height: 1px;
    margin-top: 4.0625rem;
    margin-left: auto;
    margin-right: auto;
}

.copyright-text {
    color: var(--colour-global--white);
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5625rem;
    font-size: 1rem;
    display: flex;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.social-share-wp {
    grid-column-gap: .9375rem;
    grid-row-gap: .9375rem;
    display: flex;
}


/* Fullscreen overlay */
#loader-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.85); /* Dark semi-transparent */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loader Spinner */
.loader {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid #fff; /* Accent Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px #000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.2s ease;
}

    .skip-link:focus {
        top: 10px; /* reveals the link when focused */
    }

/***custom tooltip starts***/
/* START TOOLTIP STYLES */
/*[tooltip] {
    position: relative;*/ /* opinion 1 */
/*}*/
    /* Applies to all tooltips */
    /*[tooltip]::before, [tooltip]::after {
        text-transform: none;*/ /* opinion 2 */
        /*font-size: 14px;*/ /* opinion 3 */
        /*-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;*/
        /*-webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
        position: absolute;
        display: none;
        opacity: 0;
        font-style: normal;
    }

    [tooltip]::before {
        content: "";
        border: 5px solid transparent;*/ /* opinion 4 */
        /*z-index: 1001;*/ /* absurdity 1 */
    /*}

    [tooltip]::after {
        content: attr(tooltip);*/ /* magic! */
        /* most of the rest of this is opinion */
        /*font-family: Helvetica, sans-serif;
        text-align: left;*/
        /* 
      Let the content set the size of the tooltips 
      but this will also keep them from being obnoxious
      */
        /*min-width: 240px;
        max-width: 21em;
        padding: 1ch 1.5ch;
        border-radius: 0.3ch;
        box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
        background: #111;
        color: #fff;
        z-index: 999999;*/ /* absurdity 2 */
        /*line-height: 1.45em;*/
        /*user-select: text !important;*/
    /*}*/

    /* Make the tooltips respond to hover */
    /*[tooltip]:hover::before, [tooltip]:hover::after {
        display: block;
    }

    [tooltip]:focus::after, [tooltip]:focus::before {
        display: block;
    }*/

/* don't show empty tooltips */
/*[tooltip=""]::before, [tooltip=""]::after {
    display: none !important;
}*/
/* FLOW: UP */
/*[tooltip]:not([flow])::before, [tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #111;
}

[tooltip]:not([flow])::after, [tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before, [tooltip]:not([flow])::after, [tooltip][flow^="up"]::before, [tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -0.5em);
}*/

/* FLOW: DOWN */
/*[tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #333;
}

[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before, [tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, 0.5em);
}*/
/* FLOW: LEFT */
/*[tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-0.5em, -50%);
}

[tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-0.5em, -50%);
}*/
/* FLOW: RIGHT */
/*[tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(0.5em, -50%);
}

[tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(0.5em, -50%);
}*/
/* KEYFRAMES */
/*@-webkit-keyframes tooltips-vert {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-vert {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@-webkit-keyframes tooltips-horz {
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}*/
/* FX All The Things */
/*[tooltip]:not([flow]):hover::before, [tooltip]:not([flow]):hover::after, [tooltip][flow^="up"]:hover::before, [tooltip][flow^="up"]:hover::after, [tooltip][flow^="down"]:hover::before, [tooltip][flow^="down"]:hover::after {
    -webkit-animation: tooltips-vert 300ms ease-out forwards;
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before, [tooltip][flow^="left"]:hover::after, [tooltip][flow^="right"]:hover::before, [tooltip][flow^="right"]:hover::after {
    -webkit-animation: tooltips-horz 300ms ease-out forwards;
    animation: tooltips-horz 300ms ease-out forwards;
}*/
/*To show tooltip when Focused*/
/*[tooltip]:not([flow]):focus::before, [tooltip]:not([flow]):focus::after, [tooltip][flow^="up"]:focus::before, [tooltip][flow^="up"]:focus::after, [tooltip][flow^="down"]:focus::before, [tooltip][flow^="down"]:focus::after {
    -webkit-animation: tooltips-vert 300ms ease-out forwards;
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:focus::before, [tooltip][flow^="left"]:focus::after, [tooltip][flow^="right"]:focus::before, [tooltip][flow^="right"]:focus::after {
    -webkit-animation: tooltips-horz 300ms ease-out forwards;
    animation: tooltips-horz 300ms ease-out forwards;
}*/
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    display: none;
    position: absolute;
    background: #111;
    color: #fff;
    padding: 10px;
    border-radius: 0.3ch;
    min-width: 240px;
    max-width: 21em;
    z-index: 999999;
    line-height: 1.45em;
    white-space: normal;
    font-size: 14px;
    /* Below placement */
    top: 100%; /* position below the trigger */
    left: 50%; /* horizontally center */
    transform: translateX(-50%); /* adjust centering */
   /* margin-top: 6px;*/ /* small gap below */
}


/* Show tooltip when wrapper is hovered or focused */
.tooltip-wrapper:hover .tooltip-text,
.tooltip-wrapper:focus-within .tooltip-text {
    display: block;
}


.info {
    width: 14px;
    vertical-align: baseline;
    background: url(../Content/Images/circle-info-solid.svg) no-repeat;
    background-size: 14px auto;
    display: inline-block;
    height: 14px;
    margin-left: 5px;
    opacity: 1;
}
/* Hide tooltip when .hide-tooltip is applied */
.tooltip-text.hide-tooltip {
    display: none !important;
}
/*[tooltip].hide-tooltip::before,
[tooltip].hide-tooltip::after {
    display: none !important;
}*/
/* Responsive Design */
@media screen and (max-width:991px) {
    .footer-ele {
        flex: none;
        width: 30%
    }

        .footer-ele._2-ele {
            margin-top: 1rem
        }
    .footer-links-wp {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        flex-flow: wrap;
        grid-template-columns: auto auto auto;
        justify-content: flex-end;
        align-items: flex-start;
        display: flex
    }

    .footer-logo-wp {
        width: 30%
    }
}

    @media (max-width: 768px) {
        .col-md-6, .col-lg-5, .col-lg-7 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .hero-content {
            padding-right: 0;
            margin-bottom: 40px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.8rem;
        }

        .form-container {
            padding: 30px 20px;
        }

        .form-row {
            flex-direction: column;
        }

        .form-group.col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0;
        }
        .faq-text, faq-number, .faq-list > li::marker {
            font-size: 22px;
        }
        .faq-answer {
            padding: 0 0 20px 25px;
            font-size: 16px;
        }
        .footer-wp {
            grid-column-gap: 2.25rem;
            grid-row-gap: 2.25rem;
            flex-flow: column;
            grid-template-columns: 1fr 1fr
        }

        .footer-ele {
            width: 100%
        }

            .footer-ele._2-ele {
                grid-column-gap: 2rem;
                grid-row-gap: 2rem
            }

        .footer-head,
        .footer-subhead {
            font-size: 1rem
        }

        .copyright-text {
            grid-column-gap: 1rem;
            grid-row-gap: 1rem;
            text-align: center;
            flex-flow: column
        }
        .footer-links-wp {
            grid-column-gap: 2rem;
            grid-row-gap: 2rem;
            grid-template-rows: auto;
            grid-template-columns: 1fr;
            grid-auto-columns: 1fr;
            width: 100%;
            display: grid
        }

        .footer-logo-wp {
            width: 100%
        }
        .footer-sublinks {
            width: 60%
        }
        .grecaptcha-badge {
            visibility: hidden;
        }

        .captch-text {
            display: inline-block !important;
        }
    }

    @media (max-width: 480px) {
        .comp-logo {
            width: 100%;
            height: 100%;
        }
        .hippa {
            height: 92px;
        }
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
        }

        .form-container {
            margin: 20px 10px;
            padding: 20px 15px;
        }

        .container {
            padding: 0 15px;
        }
        .subtext.footer {
            margin-top: 1.25rem;
            font-size: 14px
        }
        .footer-links-wp {
            flex-flow: wrap
        }

        .footer-logo-wp {
            width: 100%
        }
        .footer-sublinks {
            width: 100%
        }
        .faq-text, faq-number, .faq-list > li::marker {
            font-size: 20px;
        }

        .faq-answer {
            font-size: 14px;
        }
        .tooltip-text {
            min-width: 100px;
        }
        .grecaptcha-badge {
            visibility: hidden;
        }
        .captch-text {
            display: inline-block !important;
        }
    }
