﻿/* Fonts */
:root {
    --default-font: "Raleway", sans-serif;
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

a, a:visited {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--primary-color), transparent 25%);
        text-decoration: none;
    }

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    font-family: 'Poppins';
}

.btn {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    padding: 10px 30px;
    border-radius: 4px;
    /*display: flex;*/
    display: inline-block;
}

.btn-secondary {
    padding: 10px 30px;
    border-radius: 4px;
    display: inline-block;
}

    .btn-secondary i {
        font-size: 16px;
        padding-left: 5px;
    }

.btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--light-default-color);
    transition: all 0.25s ease;
}

    .btn-primary:hover {
        background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
        border: 2px solid color-mix(in srgb, var(--primary-color), transparent 20%);
        color: var(--light-default-color);
    }

    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary:first-child:active {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--light-default-color);
    }

    .btn-primary:visited {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--light-default-color);
    }

.btn-borderless, .btn-borderless:visited, .btn-borderless:focus {
    color: var(--light-default-color);
    background-color: transparent;
}

    .btn-borderless:hover {
        transition: 0.5s;
        color: var(--primary-color);
    }

    .btn-borderless i {
        color: var(--primary-color);
        font-size: 32px;
        transition: 0.3s;
        line-height: 0;
        margin-right: 8px;
    }

    .btn-borderless:hover i {
        color: color-mix(in srgb, var(--primary-color), transparent 20%);
    }

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--light-default-color);
        text-decoration: none;
        outline: none;
    }

:not(.btn-check) + .btn:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-default-color);
}

.btn-secondary:active,
.btn-secondary:first-child:active {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: inset 0 0 0 1px var(--primary-color);
}
/*
.btn-secondary:visited {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--dark-color);
}*/

.btn-danger {
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: var(--light-color);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: var(--light-color);
}

.btn-warning, .btn-warning:hover, .btn-warning:focus-visible, .btn-warning:visited {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: var(--light-color);
}

.text-primary {
    color: var(--primary-color);
}

.text-danger {
    color: var(--danger-color);
}

.text-success {
    color: var(--success-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

h1 {
    font-size: 4.375rem;
    font-weight: 700;
}

h2 {
    font-size: 48px;
    font-weight: 700;
}

@media(max-width: 768px) {
    h2 {
        font-size: 32px;
        font-weight: 700;
    }
}
/*p{
    font-size: 24px;
}
@media(max-width: 768px){
    p {
        font-size: 18px;
    }
}*/

@media (min-width: 575px) {
    .w-md-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-100 {
    width: 100px;
}

.m-wt-100 {
    min-width: 100px;
}

.m-ht-100 {
    min-height: 100px;
}

.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);
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--light-default-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
        color: var(--light-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(--default-color);
    background-color: var(--light-color);
    padding: 60px 0;
    overflow: clip;
}

@media(max-width:768px) {
    section,
    .section {
        padding: 48px 0;
    }
}

.section-bg {
    background-color: transparent;
    padding: 160px 0;
    position: relative;
}

    .section-bg:before {
        content: "";
        background-color: var(--light-color);
        position: absolute;
        bottom: 60px;
        top: 60px;
        left: 0;
        right: 0;
    }

    .section-bg .container {
        position: relative;
    }

.bg-default {
    background-color: var(--light-color) !important;
}

.bg-light {
    background-color: var(--light-gray-blue) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        padding-bottom: 24px;
        position: relative;
    }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

@media(max-width: 992px) {
    .section-title {
        margin-bottom: 24px;
    }
}

/*--------------------------------------------------------------
# Form Group
--------------------------------------------------------------*/

.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%);
    }

.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: var(--bs-border-width) solid var(--bs-border-color) !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;
}

.custom-dropdown {
    display: flex;
    width: 100%;
    padding: 12px;
    justify-content: space-between;
    align-items: start;
    align-self: stretch;
    border-radius: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
    padding-right: 2rem;
    background: url('/Portals/_default/Skins/GNZ/img/svg/icon-dropdown.svg') no-repeat right center;
    background-size: 44px 24px;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    display: grid;
    padding: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 10px !important;
    background: #FFF !important;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15) !important;
}

.overflow-y-hidden {
    overflow-y: hidden !important;
}

.select2-container--default .select2-results > .select2-results__options {
    overflow-y: auto;
    display: grid;
    padding: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.select2-results__options li {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.select2-search--dropdown .select2-search__field {
    display: none;
}

.select2-dropdown {
    display: grid !important;
    padding: 4px;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0 !important;
    border-radius: 10px !important;
    background: #FFF;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.select2-container {
    width: 100% !important;
}

.select2-search--dropdown .select2-search__field {
    display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--grey-color) !important;
    color: var(--dark-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url('/Portals/_default/Skins/GNZ/img/svg/icon-dropdown.svg') no-repeat right center;
    background-size: 44px 24px;
    width: -webkit-fill-available !important;
    top: unset !important;
    display: flex !important;
    align-items: center !important;
}


.select2-container .select2-selection--single {
    display: flex !important;
    height: 40px !important;
    padding: 12px !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 10px !important;
    background: #FFF;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.select2-container .select2-selection--multiple {
    border-radius: 10px !important;
    background: #FFF;
    box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.15);
}

.select2-container--default .select2-selection--multiple {
    max-height: 50px !important;
    overflow-y: auto !important;
}

.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;
}
