@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://use.typekit.net/dql5bhn.css');

/*
    font-family: "broadacre-light-0", sans-serif;
    font-family: "DM Sans", sans-serif;
*/


/*** 

====================================================================
    Root Code Variables
====================================================================

 ***/

:root {

    /* ============================================
       Court5 Brand Colors
       Primary:   #DA2514  accent, buttons, highlights
       Secondary: #FF800F  gradients, hover warmth
       Tertiary:  #0C2242  navy (dark text, headings)
    ============================================ */

    /* Primary Brand Red  #DA2514 */
    --main-color: rgb(218, 37, 20);

    /* Secondary Brand Orange  #FF800F */
    --secondary-color: rgb(255, 128, 15);

    /* Tertiary Brand Navy  #0C2242 */
    --tertiary-color: rgb(12, 34, 66);

    /* #ffffff */
    --white-color: rgb(255, 255, 255);

    /* Body background  warm off-white */
    --color-one: rgb(252, 251, 249);

    /* Panel / card / sidebar / dropdown bg  warm cream */
    --color-two: rgb(244, 241, 236);

    /* Muted / secondary text */
    --color-three: rgb(107, 114, 128);

    /* Light warm border */
    --color-four: rgb(225, 218, 210);

    /* Near-black for overlays */
    --color-five: rgb(14, 13, 12);
    --color-six: rgb(26, 27, 28);
    --color-seven: rgb(21, 22, 22);
    --color-eight: rgb(18, 17, 17);

    /* White opacity scale (for use on dark/red areas) */
    --white-color-opacity: rgba(255, 255, 255, 0.90);
    --white-color-opacity-two: rgba(255, 255, 255, 0.70);
    --white-color-opacity-three: rgba(255, 255, 255, 0.50);
    --white-color-opacity-four: rgba(255, 255, 255, 0.20);
    --white-color-opacity-five: rgba(255, 255, 255, 0.08);

    /* Black opacity scale */
    --black-color: rgb(0, 0, 0);
    --black-color-opacity: rgba(0, 0, 0, 0.80);
    --black-color-opacity-two: rgba(0, 0, 0, 0.60);
    --black-color-opacity-three: rgba(0, 0, 0, 0.40);
    --black-color-opacity-four: rgba(0, 0, 0, 0.15);
    --black-color-opacity-five: rgba(0, 0, 0, 0.06);

    /* Navy (tertiary) opacity scale  for borders/dividers on light bg */
    --navy-color-opacity: rgba(12, 34, 66, 0.80);
    --navy-color-opacity-two: rgba(12, 34, 66, 0.50);
    --navy-color-opacity-three: rgba(12, 34, 66, 0.25);
    --navy-color-opacity-four: rgba(12, 34, 66, 0.10);
    --navy-color-opacity-five: rgba(12, 34, 66, 0.05);

    /* Primary red opacity scale  for tinted overlays */
    --main-color-opacity: rgba(218, 37, 20, 0.80);
    --main-color-opacity-two: rgba(218, 37, 20, 0.50);
    --main-color-opacity-three: rgba(218, 37, 20, 0.15);
    --main-color-opacity-four: rgba(218, 37, 20, 0.07);

    /* Text  near-black for body readability on white */
    --text-color: rgb(28, 28, 28);

    /* Headings  Primary Brand Red #DA2514 */
    --heading-color: rgb(218, 37, 20);

    /* Fonts */
    --font-family-DMSans: "DM Sans", sans-serif;
    --font-family-Broadacre: "broadacre-light-0", sans-serif;

}

/*** 

====================================================================
    Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}

/*** 

====================================================================
    Global Settings
====================================================================

 ***/

body {
    font-family: var(--font-family-DMSans);
    font-size: 16px;
    color: var(--text-color);
    background: var(--color-one);
    line-height: 1.85em;
    font-weight: 400;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

a {
    position: relative;
    text-decoration: none;
    cursor: pointer;
    color: var(--main-color);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

section {
    background-color: var(--body-bg-color);
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}


/* heading */

h1,
h2,
h3,
h4 {
    position: relative;
    margin: 0px 0px;
    background: none;
    line-height: 1.20em;
    color: var(--heading-color);
    font-family: var(--font-family-Broadacre);
    font-weight: 200;
    letter-spacing: normal;
}

h5,
h6 {
    position: relative;
    margin: 0px 0px;
    background: none;
    line-height: 1.20em;
    color: var(--heading-color);
    font-family: var(--font-family-DMSans);
    font-weight: 400;
    text-transform: uppercase;
}


h1 {
    font-size: 80px;
    letter-spacing: -1px;
}

h2 {
    font-size: 60px;
    line-height: 1.30em;
    padding-bottom: 20px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
    letter-spacing: 1.5px;
}



/* other */

.theme_color {
    color: var(--main-color);
}

a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none;
}


input,
select,
button {
    font-family: var(--font-family-DMSans);
}

textarea {
    overflow: hidden;
    resize: none;
}

button {
    outline: none !important;
    cursor: pointer;
}

p {
    line-height: 1.6em;
}

.text {
    line-height: 1.6em;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.auto-container {
    position: static;
    max-width: 1326px;
    padding: 0px 20px;
    margin: 0 auto;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

figure {
    margin-bottom: 0px;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.theme-btn i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

.centered {
    text-align: center !important;
}

/* Btn Style One */

.btn-style-one {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 35px;
    font-size: 12px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    /* border: 2px solid var(--main-color); */
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.btn-style-one:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: var(--text-color);
}

.btn-style-one:hover:before {
    top: 0%;
}

.btn-style-one .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
}

.btn-style-one .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--white-color);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-one:hover:before {
    top: -40%;
}

.btn-style-one[disabled],
.btn-style-one.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-style-one[disabled]:before,
.btn-style-one.disabled:before {
    display: none;
}

/* Btn Style Two */

.btn-style-two {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    color: var(--main-color);
    letter-spacing: 3px;
    font-weight: 700;
    padding: 8px 35px;
    font-size: 12px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease 0s;
    margin-left: 15px;
}

.btn-style-two:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: var(--main-color);
}

.btn-style-two:hover:before {
    top: 0%;
}

.btn-style-two .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
}

.btn-style-two .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--main-color);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--color-two);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two {
    color: var(--white-color);
}

.btn-style-two:hover:before {
    top: -40%;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.dropdown-toggle::after {
    display: none;
}

.fa {
    line-height: inherit;
}


.section-kt {
    padding: 100px 0;
}

/*** 

====================================================================
    Scroll To Top style
====================================================================

***/
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    color: var(--white-color);
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    border: none;
    z-index: 100;
    cursor: pointer;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    box-shadow: 0px 8px 24px rgba(218, 37, 20, 0.35);
    border-radius: 50%;
    display: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--main-color));
    color: var(--white-color);
    box-shadow: 0px 12px 32px rgba(218, 37, 20, 0.50);
    transform: translateY(-3px);
}


/* Default Form Style */

.default-form {
    position: relative;
}

.default-form .row {
    margin: 0 -15px;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 30px;
}

.default-form .field-inner {
    position: relative;
    display: block;
}

.default-form .field-inner .alt-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 400;
    z-index: 1;
    pointer-events: none;
}

.default-form .field-inner .arrow-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    font-size: 12px;
    color: var(--text-color);
    font-weight: 400;
    z-index: 1;
    pointer-events: none;
}

.default-form .form-group .field-label {
    position: relative;
    display: block;
    color: var(--text-color);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.default-form .form-group .e-label {
    position: relative;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    display: block;
    height: 56px;
    width: 100%;
    font-size: 16px;
    color: var(--text-color);
    line-height: 34px;
    font-weight: 400;
    padding: 10px 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color-opacity-four);
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.default-form .form-group input[type="text"].l-icon,
.default-form .form-group input[type="email"].l-icon,
.default-form .form-group input[type="password"].l-icon,
.default-form .form-group input[type="tel"].l-icon,
.default-form .form-group input[type="url"].l-icon,
.default-form .form-group input[type="file"].l-icon,
.default-form .form-group input[type="number"].l-icon,
.default-form .form-group textarea.l-icon,
.default-form .form-group select.l-icon {
    padding-left: 40px;
}

.default-form .form-group textarea {
    height: 130px;
    resize: none;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    display: inline-block;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group input[type="file"]:focus,
.default-form .form-group input[type="number"]:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus {
    border-color: var(--main-color);
}

.default-form .form-group select {
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-image: none;
    background-position: right center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.default-form .form-group select option {
    padding-left: 20px;
    text-indent: 20px;
    cursor: pointer;
}

.default-form .form-group .datepicker {
    cursor: pointer;
}

.default-form ::-webkit-input-placeholder {
    color: var(--text-color);
}

.default-form ::-moz-input-placeholder {
    color: var(--text-color);
}

.default-form ::-ms-input-placeholder {
    color: var(--text-color);
}

.default-form label.error {
    color: var(--main-color);
    font-size: 14px;
    text-transform: capitalize;
    text-align: left;
    display: block;
    font-weight: 400;
    padding-top: 10px;
    line-height: 24px;
    margin-bottom: 0px;
}

/* Custom Font Adjustments for Inputs and Datepicker */
.default-form form input:not([type="submit"]),
.default-form form textarea,
.default-form form select {
    font-family: var(--font-family-Broadacre);
    font-weight: 400;
}

.default-form ::-webkit-input-placeholder {
    font-family: var(--font-family-Broadacre);
}

.default-form ::-moz-input-placeholder {
    font-family: var(--font-family-Broadacre);
}

.default-form ::-ms-input-placeholder {
    font-family: var(--font-family-Broadacre);
}

.ui-widget.ui-widget-content.ui-datepicker {
    font-family: var(--font-family-Broadacre) !important;
}

.ui-datepicker .ui-datepicker-header,
.ui-datepicker .ui-datepicker-title,
.ui-datepicker th,
.ui-datepicker td a,
.ui-datepicker td span {
    font-family: var(--font-family-Broadacre) !important;
}

/* Disabled (Past) Dates Styling */
.ui-datepicker .ui-state-disabled span.ui-state-default {
    background: #f9f9f9 !important;
    border-color: #f1f1f1 !important;
    color: #c9c9c9 !important;
    opacity: 0.8 !important;
    /* Overriding default low opacity for better look */
    cursor: not-allowed;
}

/* Notification Modal Buttons */
#notificationModal .theme-btn {
    font-family: var(--font-family-Broadacre) !important;
    text-align: center !important;
    justify-content: center;
}

#notificationModal .theme-btn .btn-wrap {
    float: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Custom Select Dropdown Styles */
select.s-hidden {
    display: none !important;
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    cursor: pointer;
    box-sizing: border-box;
    display: block;
    height: 56px;
    width: 100%;
    font-size: 16px;
    color: var(--text-color);
    line-height: 34px;
    font-weight: 400;
    padding: 10px 20px;
    background-color: var(--color-one);
    border: 1px solid var(--white-color-opacity-four);
    border-radius: 0px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-family-Broadacre);
}

.custom-select-trigger.l-icon {
    padding-left: 50px;
}

.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    top: 50%;
    right: 20px;
    margin-top: -6px;
    border-bottom: 2px solid var(--text-color);
    border-right: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: all 300ms ease;
}

.custom-select-trigger.active:after {
    transform: rotate(-135deg);
    margin-top: 0px;
}

.custom-select-options {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: var(--color-two);
    border: 1px solid var(--white-color-opacity-four);
    border-top: none;
    z-index: 100;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: 250px;
}

.custom-select-options li {
    padding: 12px 20px;
    font-size: 16px;
    color: var(--text-color);
    font-family: var(--font-family-DMSans);
    cursor: pointer;
    border-bottom: 1px solid var(--white-color-opacity-one);
    transition: all 300ms ease;
}

.custom-select-options li:last-child {
    border-bottom: none;
}

.custom-select-options li:hover,
.custom-select-options li.is-selected {
    background-color: var(--main-color);
    color: var(--white-color);
}

/* Hide the old HTML arrow-icon when custom select is present */
.field-inner .custom-select-container~.arrow-icon,
.field-inner:has(.custom-select-container) .arrow-icon {
    display: none !important;
}