﻿/* Fonts */
:root {
    --default-font: "Bricolage Grotesque", sans-serif !important;
    --heading-font: "Bricolage Grotesque", sans-serif;
    --nav-font: "Bricolage Grotesque", sans-serif;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:visited {
    color: var(--accent-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 8%;
    text-underline-offset: 16%;
    transition: 0.3s;
    text-decoration: unset;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

.open-sans {
    font-family: var(--default-font) !important;
}

.raleway {
    font-family: var(--default-font);
}

p, .text-p {
    font-family: var(--default-font);
    color: var(--default-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    /*margin-bottom: 1rem !important;*/
}

    p.inline-overflow-body {
        overflow: hidden;
        text-overflow: ellipsis;
        font-family: var(--default-font);
        font-size: 30px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    p.inline-body {
        font-size: 20px;
        font-weight: 300;
        line-height: 140%;
    }

    p.box-title {
        font-family: var(--default-font);
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    p.box-description {
        font-family: var(--default-font);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    p.title {
        font-family: var(--default-font);
        font-size: 15px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    p.description {
        font-family: var(--default-font);
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        line-height: 19px;
    }

span {
    font-family: var(--default-font);
    color: var(--default-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

strong {
    color: var(--default-color);
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: var(--default-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 47px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--default-color);
    font-family: var(--default-font);
}

h1, .text-1 {
    font-size: 64px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%;
}

    h1 p, h1 span, h1 p span {
        font-size: 64px;
        line-height: 56px;
        font-weight: 300;
        line-height: 110%;
    }

h2, .text-2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}

    h2 p, h2 span, h2 p span {
        font-size: 36px;
        font-style: normal;
        font-weight: 300;
        line-height: 120%;
    }


span[style*="font-family"] {
    color: inherit !important;
}

span[style*="color"] {
    font-family: inherit !important;
}

h3, .text-3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
}

    h3 p, h3 span, h3 p span {
        font-size: 40px;
        font-style: normal;
        font-weight: 300;
        line-height: 130%;
    }

h4, .text-4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

    h4.title {
        overflow: hidden;
        color: var(--default-color);
        text-overflow: ellipsis;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

h5, .text-5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.72px;
}

    h5.box-title {
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 30px;
    }

h6, .text-6 {
    color: var( --default-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}


h2 strong {
    font-family: var(--default-font);
    color: var(--default-color);
    font-weight: 700;
    font-size: 32px;
}

h3 strong {
    font-size: 24px;
    color: var(--default-color);
    font-weight: 700 !important;
    font-family: var(--default-font);
}

p strong {
    font-family: var(--default-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: var(--default-color);
}

h2 span strong, h3 span strong, p span strong {
    color: inherit;
}

ul, ol {
    /* margin-top: 1rem;*/
}

    ul li, ol li {
        font-family: var(--default-font);
    }

    ul strong {
        font-family: var(--default-font) !important;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
        color: var(--heading-color);
    }

p > strong + br {
    line-height: 0;
}

@media (min-width: 575px) {
    .w-md-50 {
        width: 50% !important;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }

        h1 p, h1 span, h1 p span {
            font-size: 40px;
        }

    h2 {
        font-size: 28px;
    }

        h2 p, h2 span, h2 p span {
            font-size: 28px;
        }

    h3 {
        font-size: 20px;
    }

        h3 p, h3 span, h3 p span {
            font-size: 20px;
        }
}

@media (min-width: 768px) {
    .w-lg-50 {
        width: 50% !important;
    }
}

.ct-min-ht-100 {
    min-height: 100vh;
}

.ct-p-32 {
    padding: 32px;
}

.ct-py-5 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.ct-px-4 {
    padding-left: 32px;
    padding-right: 32px;
}

.ct-mt-16 {
    margin-top: 16px;
}

.ct-mt-32 {
    margin-top: 32px;
}

.ct-mt-24 {
    margin-top: 24px;
}

.ct-mt-48 {
    margin-top: 48px;
}

.ct-mt-64 {
    margin-top: 64px;
}

.ct-mb-16 {
    margin-bottom: 16px !important;
}

.ct-mb-12 {
    margin-bottom: 12px;
}

.ct-mb-23 {
    margin-bottom: 23px;
}

.ct-mb-24 {
    margin-bottom: 24px;
}

.ct-mb-32 {
    margin-bottom: 32px;
}

.ct-mb-40 {
    margin-bottom: 40px;
}

.ct-mb-48 {
    margin-bottom: 48px;
}

.ct-mb-64 {
    margin-bottom: 64px;
}

.ct-ms-42 {
    margin-left: 42px;
}

.gap-16 {
    gap: 16px;
}

.gap-48 {
    gap: 48px;
}

.wt-34 {
    width: 34px;
}

.wt-40 {
    width: 40px;
}

.wt-100 {
    width: 100px;
}

.m-wt-150 {
    min-width: 150px;
}

.wt-450 {
    width: 450px;
}

.wt-300 {
    width: 300px;
}

.wt-338 {
    width: 338px;
}

.wt-49 {
    width: 49%;
}

.m-wt-300 {
    min-width: 300px;
}

.m-wt-1500 {
    min-width: 1500px;
}

.ht-46 {
    height: 46px;
}

.ht-34 {
    height: 34px;
}

.ht-40 {
    height: 40px;
}

.ht-200 {
    height: 200px;
}

.ht-250 {
    height: 250px !important;
}

.mht-550 {
    max-height: 550px !important;
}

.lh-24 {
    line-height: 24px;
}

.lh-30 {
    line-height: 30px;
}

.list-type-disc {
    list-style-type: disc;
}

.d-none {
    display: none;
}

.d-block {
    display: block !important;
}

.ws-nowrap {
    white-space: nowrap;
}

.border-dashed {
    border-style: dashed !important;
}

.bg-gray-200 {
    background-color: var(--gray50);
}

.box-shadow {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn {
    font-family: var(--default-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1px;
    line-height: 1.5;
    border-radius: 100px;
    vertical-align: middle;
    box-shadow: unset;
    padding: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

    .btn i {
        vertical-align: middle;
    }

.btn-secondary {
    display: inline-block;
    padding: 10px 30px;
    white-space: nowrap;
    /*margin: 10px;*/
    color: var(--heading-color);
}

    .btn-secondary, .btn-secondary:focus-visible, :not(.btn-check) + .btn-secondary:active, .btn-secondary:focus, .btn-secondary:first-child:active, .btn-secondary:disabled, .btn-secondary:visited {
        color: var(--default-color);
        background-color: transparent;
        border: 2px solid var(--default-color);
    }

        .btn-secondary:hover {
            color: var(--background-color);
            background: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

.btn-primary {
    display: inline-block;
    padding: 10px 30px;
}

    .btn-primary, .btn-primary:focus-visible, :not(.btn-check) + .btn-primary:active, .btn-primary:focus, .btn-primary:first-child:active, .btn-primary:disabled, .btn-primary:visited {
        color: var(--default-color);
        background: var(--accent-color);
        border: 0;
    }

        .btn-primary:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
            color: var(--default-color);
            border: 0;
        }

.btn-primary-light, .btn-primary-light:focus-visible, :not(.btn-check) + .btn-primary-light:active, .btn-primary-light:focus, .btn-primary-light:first-child:active, .btn-primary-light:disabled, .btn-primary-light:visited {
    color: var(--default-color);
    background-color: var(--light-color);
    padding: 10px 30px;
}

    .btn-primary-light:hover {
        color: var(--light-color);
        background-color: var(--accent-color);
    }

/*.badge {
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
}
*/

.list-type-disc {
    list-style-type: disc;
}

.d-none {
    display: none;
}

.d-block {
    display: block !important;
}

@keyframes blink {
    0% {
        opacity: 1; /* Fully visible */
    }

    50% {
        opacity: 0; /* Fully hidden */
    }

    100% {
        opacity: 1; /* Fully visible again */
    }
}

.blinking-text {
    animation: blink 1.5s infinite;
}

/*.section {
    display: flex;
    padding: 64px 32px;
    flex-direction: column;
    align-items: center;
}*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #000;
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--heading-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 80px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 58px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .section-title .text-p {
        display: inline-block;
        color: var(--default-color);
        position: relative;
        padding-bottom: 5px;
    }

        .section-title .text-p::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 40px;
            border-bottom: 2px solid var(--accent-color);
        }

    /*  .section-title .text-p::after {
            content: "";
            width: 120px;
            height: 1px;
            display: inline-block;
            background: var(--accent-color);
            margin: 4px 10px;
        }*/

    .section-title .text-3 {
        color: var(--default-color);
        margin: 0;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
    }

.img-fluid {
    object-fit: cover;
}

/*--------------------------------------------------------------
# Form Controls
--------------------------------------------------------------*/
.form-control {
    border-radius: 4px;
    border: 0.5px solid var(--heading-color);
    background: var(--light-color);
    height: 44px;
}

    .form-control.control-input {
        height: 50px;
        padding: 12px;
        border-radius: 4px;
        border: 1px solid var(--default-color);
        background: var(--light-color);
    }

    .form-control:focus {
        border: 1px solid var(--default-color);
        box-shadow: 0px 0px 4px 0px rgba(0, 107, 191, 0.44);
    }

.form-control-sm {
    height: 40px;
}

.input-group {
    position: relative;
    padding: 0 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    border: 0.5px solid var(--default-color);
    background: var(--light-color);
}

    .input-group .form-control.fm-left {
        border-left: 0;
        border: none;
        outline: none;
        font-size: 14px;
        background: transparent;
    }

    .input-group .form-control.fm-right {
        border-right: 0;
    }

    .input-group .input-group-text {
        border: 0.5px solid var(--default-color);
        background: var(--light-color);
        border-right: 0;
    }

    .input-group .form-control:focus {
        outline: 0;
        box-shadow: none !important;


        @media (max-width: 1199px) {
            .btn {
                font-size: 14px;
            }

            .ht-46 {
                height: 40px;
            }

            .section-div {
                padding: 32px;
            }
        }

        @media (max-width: 767px) {
            section .container {
                padding: 0;
            }
        }

        @media (max-width: 560px) {
            .section-div {
                padding: 16px;
                padding-bottom: 18px;
            }
        }
    }

.form-label {
    color: var(--default-color);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.form-control.invalid, .form-select.invalid {
    border: 1px solid var(--error-color) !important;
}

.form-control.bordered.invalid, .form-select.bordered.invalid {
    border: 1px solid var(--error-color) !important;
}

.required:after {
    content: " *";
    color: red;
}

.has-error {
    color: var(--error-color);
}

.form-group input {
    width: 100% !important;
    padding: 10px !important;
    outline: none !important;
    border-radius: 4px !important;
    border: 1px solid var(--default-color) !important;
    color: var(--default-color) !important;
}

    .form-group input:focus {
        color: var(--default-color) !important;
        border: 1px solid var(--accent-color) !important;
    }

    .form-group input::placeholder {
        color: var(--default-color) !important;
    }


/*.form-check {
    display: flex;
    align-items: center;
    padding-left: 0;
    gap: 8px;
}*/

.form-check label {
    color: var(--default-color);
    font-family: var(--default-font) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1.5px solid var(--default-color);
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

    .form-check input[type="checkbox"]:checked {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .form-check input[type="checkbox"]:checked::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 5px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .form-check input[type="checkbox"]:checked + label {
            color: var(--default-color);
        }

.form-group.password-wrapper {
    position: relative;
}

    .form-group.password-wrapper i {
        width: 24px;
        height: 24px;
    }

    .form-group.password-wrapper .toggle-password {
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 58%;
        transform: translateY(-50%);
    }


.form-select {
    height: 50px;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--default-color);
    background-color: var(--light-color);
    /*    --bs-form-select-bg-img: url("/Portals/_default/Skins/XPI360/img/svg/dropdown-icon.svg");
*/ appearance: none;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

    .form-select:focus {
        outline: none;
        box-shadow: none;
        border-color: transparent;
        border-radius: 4px;
        border: 1px solid var(--accent-color);
    }

.select-control {
    height: 40px;
    padding: 0px 16px;
    border-radius: 4px;
    color: var(--default-color);
    border: 1px solid var(--default-color);
    background-color: var( --light-color);
    --bs-form-select-bg-img: url("/Portals/_default/Skins/XPI360/img/unfold-_2_.svg");
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.form-select:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
}


.is-invalid {
    border-color: red;
}

.invalid-feedback {
    color: red;
    font-size: 0.875em;
}

/*--------------------------------------------------------------
# Form Control
--------------------------------------------------------------*/

.form-control {
    display: block;
    width: 100% !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none !important;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border-radius: var(--bs-border-radius) !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.mark, mark {
    padding: .1875em;
    color: var(--bs-highlight-color);
    background-color: transparent;
}

.dropdown-toggle::after {
    margin-top: 6px;
    float: right;
    /* border-top: .5em solid;
    border-right: .5em solid transparent;
    border-left: .5em solid transparent;*/
    width: .8em;
    height: .8em;
    content: "";
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: contain;
    border: none;
}