@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
    --primary-font: "Roboto",  sans-serif;
}

:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #2e4049; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2e4049; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2e4049; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --color-white: #ffffff;
    --danger-color: #E74C3C;
    --heading-font-size: 12px;
    --primary-color: #2e4049;
    
    /* Modern UX Enhancement Variables */
    --primary-gradient: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --dark-color: #1f2937;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

:root {
    --nav-color: #212529;  /* The default color of the main navmenu links */
    --nav-hover-color: #2e4049; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2e4049; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #2e4049; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f5f8fc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #2e4049;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #2e4049;
    --surface-color: #2e4049;
    --contrast-color: #ffffff;
}
/* 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);
    height: max-content;
    overflow-x: hidden;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Base styles for all buttons */
.btn {
    font-size: 12px;
    gap: 0.375rem;
    transition: 0.3s;
    border: none;
}

/* Icon inside a button */
.btn i {
    transition: transform 0.3s;
    font-size: 12px;
}

/* Rotate icon slightly on hover */
.btn:hover i {
    transform: rotate(15deg);
}

/* Reset translate effect on active */
.btn:active {
    transform: translateY(0);
}

/* Reset box-shadow for color-based buttons */
.btn-accent,
.btn-outline-accent,
.btn-outline-danger {
    box-shadow: none;
}


/* Accent filled button (primary action) */
.btn-accent {
    color: var(--color-white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin: 0.15rem 0;
}

/* Accent button hover/focus/active states */
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    color: var(--primary-color);
    background-color: var(--color-white);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--primary-color);
}

/* Outline button with accent color */
.btn-outline-accent {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
}

/* Outline accent button on hover/focus/active */
.btn-outline-accent:hover,
.btn-outline-accent:focus,
.btn-outline-accent:active {
    color: var(--color-white);
    background-color: var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--primary-color);
}

.btn-heading {
    color: var(--color-white);
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
}

.btn-heading:hover,
.btn-heading:focus,
.btn-heading:active {
    color: var(--accent-color);
    background-color: var(--color-white);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--accent-color);
}

.btn-outline-heading {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    background-color: transparent;
}

.btn-outline-heading:hover,
.btn-outline-heading:focus,
.btn-outline-heading:active {
    color: var(--color-white);
    background-color: var(--accent-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--accent-color);
}

.btn-outline-remove {
    color:  var(--danger-color);
    border: 1px solid var(--danger-color);
    background-color: transparent;
}

.btn-outline-remove:hover,
.btn-outline-remove:focus,
.btn-outline-remove:active {
    color: var(--color-white);
    background-color:  var(--danger-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid  var(--danger-color);
}
/* Outline button with danger color */
.btn-outline-danger {
    color:  var(--danger-color);
    border: 1px solid var(--danger-color);
    background-color: transparent;
}

/* Outline danger button on hover/focus/active */
.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active {
    color: var(--color-white);
    background-color:  var(--danger-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid  var(--danger-color);
}

/* View button style */
.btn-view {
    background-color: var(--primary-color);
    color: var(--surface-color);
    font-size: var(--heading-font-size);
}

.btn-view:hover,
.btn-view:focus,
.btn-view:active {
    color: var(--color-white);
    background-color: var(--primary-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--primary-color);
}


/* Edit button style */
.btn-edit {
    background-color: var(--accent-color);
    color: var(--surface-color);
    font-size: 12px;
}

.btn-edit:hover,
.btn-edit:focus,
.btn-edit:active {
    color: var(--color-white);
    background-color: var(--accent-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--accent-color);
}


/* Delete button style */
.btn-delete {
    background-color: var(--danger-color);
    color: var(--surface-color);
    font-size: 12px;
}

.btn-delete:hover,
.btn-delete:focus,
.btn-delete:active {
    color: var(--color-white);
    background-color: var(--danger-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--danger-color);
}


.btn-section-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0.15rem 0;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--color-white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-section-explore i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-section-explore:hover {
    color: var(--primary-color);
    background-color: var(--color-white);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border: 1px solid var(--primary-color);
}

.btn-section-explore:hover i {
    transform: translate(3px, -3px);
}


.invalid-feedback {
    display: block;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
}

#register {
    width: 100%;
    overflow: hidden;
    position: relative;

    background: linear-gradient(135deg, var(--background-color), color-mix(in srgb, var(--accent-color), transparent 97%));
}

#register h5 {
    color: var(--primary-color);
    border: 0;
    background-color: var(--contrast-color);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    margin: 15px 0 0 0;
    padding: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    border-radius: 6px;
}

#register .item-position {
    display: inline-grid;
}

#register .logo-position {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .logo {
    width: 250px;
    height: 150px;
    background: rgba(93, 93, 93, 0.4);
    /* #064469 */
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}


#register .btn-register {
    height: 102px;
    margin: 29px 0;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #064469;
    box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    border-radius: 10px;
    width: 200px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    text-align: justify;
    text-transform: capitalize;
    color: #F9F9F9;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#register .btn-register a {
    color: inherit;
    text-decoration: none;
}

#register .btn-register:hover {
    background: rgb(255 255 255 / 0%);
    border: 2px solid #064469;
}

@media (max-width: 1250px) {

}

@media (max-width: 500px) {

    #register .submit {
        width: 100%;
    }
}

@media (max-height: 500px) {

}

#register .bg-register {
    border-radius: 24px;
    background: var(--surface-color);
    padding: 40px;
    box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 92%);
    border: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 90%);
}

.required-label , label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}

.required-label i {
    font-family: var(--primary-font);
    font-size: 14px;
    color: var(--title-color);
    padding-right: 0.25rem;
}

 .upload__box {
    position: relative;
}

 .upload__inputfile {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

 .upload__btn {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    height: 64px;
    background: #2E4049;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    border-radius: 8px;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.upload__btn:hover {
    background-color: unset;
    color: #4045ba;
    transition: all .3s ease;
}

.upload__btn-box {
    margin-bottom: 10px;
}

.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.upload__img-box {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 12px;
}

.upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 45%;
    right: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.upload__img-close:after {
    content: '\2716';
    font-size: 14px;
    color: white;
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
}

.document-bg {
    background-color: #EFEFEF;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    height: 100%;
}

.document-bg a {
    color: var(--primary-color);
    line-height: 30px;
    font-size: 12px;
}

.document-bg a:hover {
    color: var(--title-color);
}

.document-bg:hover {
    background-color: #afb0c14f;
    transition: background-color 0.3s ease;
}

.link-file {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-decoration-line: underline;
    text-transform: capitalize;
}
.user-file {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    text-align: center;
    border: 0;
    border-radius: 6px;
    background-color: var(--primary-color);
}

#register .title h2 {
    color: var(--title-color);
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-transform: capitalize;
}

.form-control {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}

.form-control[type="file"] {
    height: 48px;
    padding: 0;
    box-sizing: border-box;
}

.form-control[type="file"]::file-selector-button {
    height: 48px;
    padding: 0 16px;
    line-height: 48px;
    box-sizing: border-box;
    margin: 0;
}

.form-control:focus {
    height: 42px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}

#register .nav-tabs .nav-link {
    color: var(--primary-color);
    border: 0;
    background-color: var(--contrast-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
}

#register .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--contrast-color);
}

#register #prevBtn, #register #nextBtn, #register #submitBtn {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 10px 20px;
    text-align: center;
    border: 0;
    border-radius: 16px;
    background-color: var(--primary-color);
}

.form-control:-webkit-autofill {
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}

.add-form  .select2-container--default .select2-selection--single ,
#register  .select2-container--default .select2-selection--single {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
}

.add-form .select2-container .select2-selection--single .select2-selection__rendered ,
#register .select2-container .select2-selection--single .select2-selection__rendered  {
    padding-left: 0;
}

.add-form .select2-container--default .select2-selection--single ,
#register .select2-container--default .select2-selection--single
{
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;

    color: #212121;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
}

.add-form .select2-container .select2-selection--single .select2-selection__rendered
, #register .select2-container .select2-selection--single .select2-selection__rendered  {
    padding-left: 0;
}
.add-form .select2-container--default .select2-selection--multiple
,#register .select2-container--default .select2-selection--multiple {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 0.375rem 0.75rem;
    color: #212121;
    border: 1px solid #727272;
    border-radius: 5px;
    background: none;
    min-height: 42px;
}


.add-form .select2-container .select2-selection--multiple .select2-selection__rendered
,#register .select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 0;
}

#register .submit {
    color: var(--contrast-color);
    font-family: var(--primary-font);
    background: var(--primary-color);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    width: 100%;
    height: 64px;

    text-align: center;
    border: 0;
    border-radius: 16px;
}

#register .btn:hover {
    background-color: var(--background-color) !important;
    color: var(--primary-color);
    border: 2px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 0 5px var(--primary-color);
}

#register .title h2 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 44px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--title-color);
}

#register .title span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 23px;
    /* identical to box height, or 176% */

    /* dark/#2E4049 */
    color: var(--primary-color);

}

#register h4 {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12.8px;
    line-height: 19px;

    color: var(--primary-color);
}

/* checkbox */
.form-control-checkbox {
    width: 21.52px;
    height: 22px;
    border: 1px solid var(--primary-color);
    background-color: transparent; /* Set the background-color to transparent */
    border-radius: 0;
    margin-top: 0;
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-control-checkbox-group {
    display: flex;
    align-items: center;
}

.form-check-label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    width: 100%;
    text-decoration-line: none;
    color: #212121;
    margin: 0 26px;
}

.form-check-label a {
    color: #212121;
}

.logo-img {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    padding: 0 0.75rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.logo-img img {
    width: 200px;
}


input.-internal-autofill-selected {
    background-color: transparent !important;
}


#pagination-links .pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--primary-color);
    --bs-pagination-bg: var(--bs-body-bg);
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: var(--primary-color);
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: var(--primary-color);
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--primary-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem var(--primary-color);;
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg:var(--primary-color);
    --bs-pagination-active-border-color: var(--primary-color);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

.progress, .progress-stacked {
    height: 11px;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: var(--bs-secondary-bg);
    --bs-progress-border-radius: var(--bs-border-radius);
    --bs-progress-box-shadow: var(--bs-box-shadow-inset);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: var(--primary-color);
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color:var(--primary-color);
    border-radius: var(--bs-progress-border-radius);
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    margin-bottom: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
    content: attr(data-browse);
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 48px;
    border: 1px solid #727272;
    border-radius: 8px;
    background: none;
    padding: 0.9rem 0.75rem;
    overflow: hidden;
    line-height: 1.5;
    color: #495057;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 48px;
    padding: 0.9rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
}

.add-form .select2-container--default .select2-selection--single .select2-selection__arrow
,#register .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 31px;
    position: absolute;
    top: 6px;
    right: 1px;
    width: 20px;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "{{__('messages.browse')}}";
}

.toast {
    --bs-toast-zindex: 1090;
    --bs-toast-padding-x: 0.75rem;
    --bs-toast-padding-y: 0.5rem;
    --bs-toast-spacing: 1.5rem;
    --bs-toast-max-width: 350px;
    --bs-toast-font-size: 0.875rem;
    --bs-toast-color: ;
    --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
    --bs-toast-border-width: var(--bs-border-width);
    --bs-toast-border-color: var(--bs-border-color-translucent);
    --bs-toast-border-radius: var(--bs-border-radius);
    --bs-toast-box-shadow: var(--bs-box-shadow);
    --bs-toast-header-color: var(--bs-secondary-color);
    --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
    --bs-toast-header-border-color: var(--bs-border-color-translucent);
    width: var(--bs-toast-max-width);
    max-width: 100%;
    font-size: var(--bs-toast-font-size);
    color: var(--bs-toast-color);
    pointer-events: auto;
    background-color: var(--primary-color);
    background-clip: padding-box;
    border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
    box-shadow: var(--bs-toast-box-shadow);
    border-radius: var(--bs-toast-border-radius);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 6px 12px;
        margin-left: 5px ;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        padding: 6px 12px;
        border-radius: 12px;
        background-color:
            color-mix(in srgb, var(--default-color), transparent 95%);
        color:
            color-mix(in srgb, var(--default-color), transparent 20%);
        border: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
        cursor: pointer;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 150px;
        width: auto;
    }

    .navmenu .dropdown ul a {
        padding: 6px 12px;
        font-size: 15px;
        margin: 0;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 6px 12px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }


    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--nav-dropdown-color);
        color: var(--color-white);
        cursor: pointer;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        padding: 6px 12px;
        border-radius: 12px;
        background-color:
            color-mix(in srgb, var(--default-color), transparent 95%);
        color:
            color-mix(in srgb, var(--default-color), transparent 20%);
        border: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
        cursor: pointer;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul a {
        padding: 6px 12px;
        font-size: 15px;
        margin: 0;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu  .dropdown ul li .item:hover,
    .navmenu  .dropdown ul li:hover,
    .navmenu   .dropdown ul .active:hover {
        background-color: var(--nav-dropdown-color);
        color: var(--contrast-color);
        cursor: pointer;
        border-radius:0 ;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

#footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 14px;
    padding-top: 50px;
    color: white;
    z-index: 1;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #2B1F45;
    z-index: -1;
}

#footer .footer-info .logo {
    font-size: 36px;
    margin: 5px 18px;
    font-weight: 500;
    color: #fff;
}

#footer .footer-info .logo img {
    max-height: 150px;
    margin-right: 6px;
}

#footer .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    font-family: var(--primary-font);
}

#footer .footer-info p {
    font-size: 14px;
    font-family: var(--primary-font);
    text-align: justify;
}

#footer .footer-info .content {
    padding: 50px 10px;
}

#footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--btn-text-color);
    margin-right: 10px;
    transition: 0.3s;
}

#footer .social-links a img {
    width: 30px;
    height: 30px;
}

#footer .social-links a:hover {
    color: var(--btn-text-color);
    border-color: var(--btn-text-color);
}

#footer .credits {
    font-size: 13px;
    padding-top: 5px;
    color: #222222;
}

#footer .info-item {
    padding: 10px 0;
}

#footer .info-item i {
    color: var(--btn-text-color);
    transition: all 0.3s ease-in-out;
    margin-right: 5px;
    padding: 0 20px;
}

#footer .info-item a {
    font-family: var(--primary-font);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--btn-text-color);
}

#footer .footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-color);
    border-radius: 18px;
    padding: 40px;
}

#footer .footer-links a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    padding: 4px 13px;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--btn-text-color);
    text-transform: capitalize;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    text-decoration: none;
    border-radius: 16px;
    background-clip: text, border-box;
    -webkit-background-clip: text, border-box;
    background: var(--header-text-color) linear-gradient(90deg, var(--header-text-color), var(--header-text-color)) no-repeat bottom;
    color: var(--primary-color);
}
.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    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: 44px;
    height: 44px;
    border-radius: 50px;
    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;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    text-align: center;
    padding: 20px 0;
}

.page-title .breadcrumbs {
    margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.page-title .title-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
}

.page-title .title-wrapper p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-title .title-wrapper h1 {
        font-size: 2rem;
    }

    .page-title .title-wrapper p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title .title-wrapper h1 {
        font-size: 1.75rem;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: start;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    padding: 120px 0;
}

.banner .banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .banner .banner-content h1 {
        font-size: 2.5rem;
    }
}

.banner .banner-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.banner .banner-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.banner .banner-buttons .btn {
    padding: 6px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.banner .banner-buttons .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.banner .banner-buttons .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.banner .banner-buttons .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.banner .banner-buttons .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.banner .banner-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner .banner-stats .stat-item {
    text-align: center;
}

.banner .banner-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.banner .banner-stats .stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .banner .banner-stats {
        justify-content: center;
        gap: 1.5rem;
    }
}

.banner .banner-visual {
    position: relative;
}

.banner .banner-visual .banner-image {
    position: relative;
    z-index: 2;
}

.banner .banner-visual .banner-image img {
    border-radius: 20px;
}

.banner .banner-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.banner .banner-bg-elements .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.banner .banner-bg-elements .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: rotate 20s linear infinite;
}

.banner .banner-bg-elements .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: rotate 15s linear infinite reverse;
}

.banner .banner-bg-elements .bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveParticles 30s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes moveParticles {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@media (max-width: 992px) {
    .banner .banner-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .banner .banner-buttons {
        justify-content: center;
    }

    .banner .banner-stats .stat-item .stat-number {
        font-size: 1.5rem;
    }
}
#terms-modal .modal-header h4 {
    color: var(--title-color);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
}

.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:hover {
    background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
    color: var(--color-white);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.list-unstyled li {
    margin: 0 15px;
}
.form-check {
    display: flex;
    align-content: center;
    justify-content: center;
}
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.required-label::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}
#register label {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0 0.25rem;
}
