/* =============================================================== */
/* HEADER AND NAVIGATION */
/* =============================================================== */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* --- CSS Custom Properties (Variables) --- */
:root {
    --primary-color: #5ddcf2;           /* Main brand color - light blue */
    --secondary-color: #4AB8D1;         /* Secondary brand color - darker blue */
    --dark-color: #2c3e50;              /* Dark text color */
    --light-color: #f4f7f9;             /* Light background color */
    --white-color: #ffffff;             /* Pure white */
    --font-family: 'Cairo', sans-serif; /* Main font family */
    --success-color: #27ae60;           /* Success/check color */
    --warning-color: #f39c12;           /* Warning color */
    --danger-color: #e74c3c;            /* Error color */
    --gray-color: #666;                 /* Medium gray for subtitles */
    --light-gray: #eee;                 /* Light gray for borders */
}

/* =============================================================== */
/* HEADER AND NAVIGATION */
/* =============================================================== */

#main-header {
    background: var(--white-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo styling */
#navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    z-index: 1001; 
    transition: color 0.3s ease;
}

#navbar .logo:hover {
    color: var(--primary-color);
}

/* Navigation menu */
#navbar ul {
    display: flex;
    align-items: center;
}

#navbar ul li a {
    padding: 0.75rem;
    margin: 0 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

#navbar ul li a:hover, 
#navbar ul li a.active {
    color: var(--primary-color);
}

#navbar ul li:last-child a:hover {
    color: white !important;
}

/* Mobile menu toggle button */
.menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 1.8rem; 
    color: var(--dark-color); 
    cursor: pointer; 
}

.close-btn { 
    display: none; 
}

/* Mobile navigation from responsive styles */
@media(max-width: 768px) {
    .menu-toggle { 
        display: block; 
    }
    
    #navbar ul { 
        position: fixed; 
        top: 0; 
        right: -280px; 
        width: 280px; 
        height: 100vh; 
        background-color: var(--dark-color); 
        flex-direction: column; 
        align-items: flex-start; 
        padding-top: 5rem; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.2); 
        transition: right 0.4s ease-in-out; 
        z-index: 1000; 
        overflow-y: auto; 
        max-height: 100vh; 
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: thin; 
        scrollbar-color: var(--primary-color) #1f2d3d;
    }
    
    #navbar ul.open { 
        right: 0; 
    }
    
    #navbar ul::-webkit-scrollbar { 
        width: 8px; 
    }
    
    #navbar ul::-webkit-scrollbar-track { 
        background: #1f2d3d; 
    }
    
    #navbar ul::-webkit-scrollbar-thumb { 
        background-color: var(--primary-color); 
        border-radius: 10px; 
        border: 2px solid transparent; 
        background-clip: content-box; 
    }
    
    #navbar ul li { 
        width: 100%; 
    }
    
    #navbar ul li a { 
        display: block; 
        padding: 1rem 2rem; 
        color: var(--white-color); 
        margin: 0; 
        width: 100%; 
        border-bottom: 1px solid #444; 
    }
    
    #navbar ul li a:hover { 
        background-color: var(--secondary-color); 
    }
    
    #navbar ul li a.btn { 
        margin: 1.5rem auto; 
        text-align: center; 
        width: 80%; 
        border: 2px solid var(--primary-color); 
        background: transparent; 
    }
    
    #navbar ul li a.btn:hover { 
        background-color: var(--primary-color); 
    }
    
    .close-btn { 
        display: block; 
        position: absolute; 
        top: 1rem; 
        left: 1.5rem; 
        font-size: 2.2rem; 
        color: var(--white-color); 
        background: none; 
        border: none; 
        cursor: pointer; 
    }
}

/* =============================================================== */
/* FOOTER SECTION */
/* =============================================================== */

#main-footer { 
    background: var(--dark-color); 
    color: var(--white-color); 
    text-align: center; 
    padding: 4rem 0 2rem; 
}

#main-footer h2 { 
    color: var(--white-color); 
    margin-bottom: 2rem; 
}

#main-footer h2::after {
    background: var(--primary-color);
}

#main-footer p { 
    margin-bottom: 2rem; 
    font-size: 1.1rem; 
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta {
    margin-bottom: 3rem;
}

.footer-cta .btn {
    margin: 0 0.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-item i {
    color: var(--primary-color);
}

.copyright { 
    margin-top: 3rem; 
    padding-top: 2rem; 
    border-top: 1px solid #444; 
    font-size: 0.9rem; 
    color: #aaa; 
}

/* Contact info mobile layout from responsive styles */
@media(max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/********************************/






.react-international-phone-country-selector {
    position: relative
}

.react-international-phone-country-selector-button {
    align-items: center;
    appearance: button;
    -webkit-appearance: button;
    background-color: #fff;
    background-color: var(--react-international-phone-country-selector-background-color, var(--react-international-phone-background-color, #fff));
    border: 1px solid #dcdcdc;
    border: 1px solid var(--react-international-phone-country-selector-border-color, var(--react-international-phone-border-color, #dcdcdc));
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    height: 36px;
    height: var(--react-international-phone-height, 36px);
    justify-content: center;
    margin: 0;
    padding: 0;
    text-transform: none;
    -webkit-user-select: none;
    user-select: none
}

.react-international-phone-country-selector-button:hover {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-country-selector-background-color-hover, #f5f5f5)
}

.react-international-phone-country-selector-button--hide-dropdown {
    cursor: auto
}

.react-international-phone-country-selector-button--hide-dropdown:hover {
    background-color: initial
}

.react-international-phone-country-selector-button__button-content {
    align-items: center;
    display: flex;
    justify-content: center
}

.react-international-phone-country-selector-button__flag-emoji {
    margin: 0 4px
}

.react-international-phone-country-selector-button__flag-emoji--disabled {
    opacity: .75
}

.react-international-phone-country-selector-button__dropdown-arrow {
    border-left: 4px solid #0000;
    border-left: var(--react-international-phone-country-selector-arrow-size, 4px) solid #0000;
    border-right: 4px solid #0000;
    border-right: var(--react-international-phone-country-selector-arrow-size, 4px) solid #0000;
    border-top: 4px solid #777;
    border-top: var(--react-international-phone-country-selector-arrow-size, 4px) solid var(--react-international-phone-country-selector-arrow-color, #777);
    margin-right: 4px;
    transition: all .1s ease-out
}

.react-international-phone-country-selector-button__dropdown-arrow--active {
    transform: rotateX(180deg)
}

.react-international-phone-country-selector-button__dropdown-arrow--disabled {
    border-top-color: #999;
    border-top-color: var(--react-international-phone-disabled-country-selector-arrow-color, #999)
}

.react-international-phone-country-selector-button--disabled {
    cursor: auto
}

.react-international-phone-country-selector-button--disabled,
.react-international-phone-country-selector-button--disabled:hover {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, #f5f5f5))
}

.react-international-phone-flag-emoji {
    box-sizing: border-box;
    height: 24px;
    height: var(--react-international-phone-flag-height, 24px);
    width: 24px;
    width: var(--react-international-phone-flag-width, 24px)
}

.react-international-phone-country-selector-dropdown {
    background-color: #fff;
    background-color: var(--react-international-phone-dropdown-item-background-color, var(--react-international-phone-background-color, #fff));
    box-shadow: 2px 2px 16px #00000040;
    box-shadow: var(--react-international-phone-dropdown-shadow, 2px 2px 16px #00000040);
    color: #222;
    color: var(--react-international-phone-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
    display: flex;
    flex-direction: column;
    left: 0;
    left: var(--react-international-phone-dropdown-left, 0);
    list-style: none;
    margin: 0;
    max-height: 200px;
    overflow-y: scroll;
    padding: 4px 0;
    position: absolute;
    top: 44px;
    top: var(--react-international-phone-dropdown-top, 44px);
    width: 300px;
    z-index: 1
}

.react-international-phone-country-selector-dropdown__preferred-list-divider {
    background: #dcdcdc;
    background: var(--react-international-phone-dropdown-preferred-list-divider-color, var(--react-international-phone-border-color, #dcdcdc));
    border: none;
    height: 1px;
    margin: 0;
    margin: var(--react-international-phone-dropdown-preferred-list-divider-margin, 0)
}

.react-international-phone-country-selector-dropdown__list-item {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    min-height: 28px;
    min-height: var(--react-international-phone-dropdown-item-height, 28px);
    padding: 2px 8px
}

.react-international-phone-country-selector-dropdown__list-item-flag-emoji {
    margin-right: 8px
}

.react-international-phone-country-selector-dropdown__list-item-country-name {
    font-size: 14px;
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
    margin-right: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: gray;
    color: var(--react-international-phone-dropdown-item-dial-code-color, gray);
    font-size: 14px;
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px)
}

.react-international-phone-country-selector-dropdown__list-item:hover {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, #f5f5f5));
    cursor: pointer
}

.react-international-phone-country-selector-dropdown__list-item--focused,
.react-international-phone-country-selector-dropdown__list-item--selected {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, #f5f5f5);
    color: #222;
    color: var(--react-international-phone-selected-dropdown-item-text-color, var(--react-international-phone-text-color, #222))
}

.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code,
.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: gray;
    color: var(--react-international-phone-selected-dropdown-item-dial-code-color, var(--react-international-phone-dropdown-item-dial-code-color, gray))
}

.react-international-phone-country-selector-dropdown__list-item--focused {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, #f5f5f5))
}

.react-international-phone-dial-code-preview {
    align-items: center;
    background-color: #fff;
    background-color: var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, #fff));
    border: 1px solid #dcdcdc;
    border: 1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, #dcdcdc));
    color: #222;
    color: var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));
    display: flex;
    font-size: 13px;
    font-size: var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px));
    justify-content: center;
    margin-right: -1px;
    padding: 0 8px
}

.react-international-phone-dial-code-preview--disabled {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, #f5f5f5));
    color: #666;
    color: var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666))
}

.react-international-phone-input-container {
    display: flex
}

.react-international-phone-input-container .react-international-phone-country-selector-button {
    border-radius: 4px;
    border-radius: var(--react-international-phone-border-radius, 4px);
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: -1px
}

.react-international-phone-input-container .react-international-phone-input {
    background-color: #fff;
    background-color: var(--react-international-phone-background-color, #fff);
    border: 1px solid #dcdcdc;
    border: 1px solid var(--react-international-phone-border-color, #dcdcdc);
    border-radius: 4px;
    border-radius: var(--react-international-phone-border-radius, 4px);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    box-sizing: border-box;
    color: #222;
    color: var(--react-international-phone-text-color, #222);
    font-family: inherit;
    font-size: 13px;
    font-size: var(--react-international-phone-font-size, 13px);
    height: 36px;
    height: var(--react-international-phone-height, 36px);
    margin: 0;
    overflow: visible;
    padding: 0 8px
}

.react-international-phone-input-container .react-international-phone-input:focus {
    outline: none
}

.react-international-phone-input-container .react-international-phone-input--disabled {
    background-color: #f5f5f5;
    background-color: var(--react-international-phone-disabled-background-color, #f5f5f5);
    color: #666;
    color: var(--react-international-phone-disabled-text-color, #666)
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: #ffffffb3;
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    padding: 4px;
    position: fixed;
    -webkit-transform: translate3d(0, 0, 9999 px);
    -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
    width: 320px;
    width: var(--toastify-toast-width);
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    left: 1em;
    top: 1em
}

.Toastify__toast-container--top-center {
    left: 50%;
    top: 1em;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    right: 1em;
    top: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width:480px) {
    .Toastify__toast-container {
        left: 0;
        margin: 0;
        padding: 0;
        width: 100vw
    }

    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        left: auto;
        right: 0
    }
}

.Toastify__toast {
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 #0000001a, 0 2px 15px 0 #0000000d;
    box-sizing: border-box;
    cursor: pointer;
    direction: ltr;
    display: flex;
    font-family: sans-serif;
    font-family: var(--toastify-font-family);
    justify-content: space-between;
    margin-bottom: 1rem;
    max-height: 800px;
    max-height: var(--toastify-toast-max-height);
    min-height: 64px;
    min-height: var(--toastify-toast-min-height);
    overflow: hidden;
    padding: 8px;
    position: relative;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast-body {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    margin: auto 0;
    padding: 6px
}

.Toastify__toast-body>div:last-child {
    flex: 1 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    display: flex;
    flex-shrink: 0;
    margin-inline-end: 10px;
    width: 20px
}

.Toastify--animate {
    animation-duration: .7s;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    animation-duration: .3s;
    animation-fill-mode: both
}

@media only screen and (max-width:480px) {
    .Toastify__toast {
        border-radius: 0;
        margin-bottom: 0
    }
}

.Toastify__toast-theme--dark {
    background: #121212;
    background: var(--toastify-color-dark);
    color: #fff;
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
    background: #fff;
    background: var(--toastify-color-light);
    color: #757575;
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: #3498db;
    background: var(--toastify-color-info);
    color: #fff;
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: #07bc0c;
    background: var(--toastify-color-success);
    color: #fff;
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: #f1c40f;
    background: var(--toastify-color-warning);
    color: #fff;
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: #e74c3c;
    background: var(--toastify-color-error);
    color: #fff;
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: #bb86fc;
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: #3498db;
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: #07bc0c;
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: #f1c40f;
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: #e74c3c;
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: #ffffffb3;
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    align-self: flex-start;
    background: #0000;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    transition: .3s ease
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    bottom: 0;
    height: 5px;
    left: 0;
    opacity: .7;
    position: absolute;
    transform-origin: left;
    width: 100%;
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    left: auto;
    right: 0;
    transform-origin: right
}

.Toastify__spinner {
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid #e0e0e0;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    border-right-color: #616161;
    border-right-color: var(--toastify-spinner-color);
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

@keyframes Toastify__bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes Toastify__bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        transform: translate3d(5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes Toastify__bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes Toastify__bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        transform: translate3d(0, -10px, 0)
    }

    90% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%, 0, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0, 110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0, -110%, 0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-110%, 0, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, 500px, 0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(0, -500px, 0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.hinge {
    animation-duration: 2s
}

.bounce {
    animation-name: bounce
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes shake {

    0%,
    to {
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px)
    }
}

.shake {
    animation-name: shake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.swing {
    animation-name: swing;
    transform-origin: top center
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateX(0)
    }

    15% {
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        transform: translateX(-5%) rotate(-1deg)
    }

    to {
        transform: translateX(0)
    }
}

.wobble {
    animation-name: wobble
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }

    70% {
        transform: scale(.9)
    }

    to {
        transform: scale(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        transform: translateY(30px)
    }

    80% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(0)
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        transform: translateX(30px)
    }

    80% {
        transform: translateX(-10px)
    }

    to {
        transform: translateX(0)
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        transform: translateX(-30px)
    }

    80% {
        transform: translateX(10px)
    }

    to {
        transform: translateX(0)
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        transform: translateY(-30px)
    }

    80% {
        transform: translateY(10px)
    }

    to {
        transform: translateY(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    0% {
        transform: scale(1)
    }

    25% {
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }

    to {
        opacity: 0;
        transform: scale(.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        transform: translateY(-20px)
    }

    to {
        opacity: 0;
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        transform: translateX(20px)
    }

    to {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        transform: translateX(-20px)
    }

    to {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        transform: translateY(20px)
    }

    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(20px)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(2000px)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(20px)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        animation-timing-function: ease-out;
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
    }

    40% {
        animation-timing-function: ease-out;
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
    }

    50% {
        animation-timing-function: ease-in;
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1)
    }

    80% {
        animation-timing-function: ease-in;
        transform: perspective(400px) translateZ(0) rotateY(1turn) scale(.95)
    }

    to {
        animation-timing-function: ease-in;
        transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1)
    }
}

.animated.flip {
    animation-name: flip;
    -webkit-backface-visibility: visible;
    backface-visibility: visible
}

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        transform: perspective(400px) rotateX(10deg)
    }

    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg)
    }
}

.flipInX {
    animation-name: flipInX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        transform: perspective(400px) rotateY(10deg)
    }

    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg)
    }
}

.flipInY {
    animation-name: flipInY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutX {
    0% {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

.flipOutY {
    animation-name: flipOutY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@keyframes lightSpeedIn {
    0% {
        opacity: 0;
        transform: translateX(100%) skewX(-30deg)
    }

    60% {
        opacity: 1;
        transform: translateX(-20%) skewX(30deg)
    }

    80% {
        opacity: 1;
        transform: translateX(0) skewX(-15deg)
    }

    to {
        opacity: 1;
        transform: translateX(0) skewX(0deg)
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
        transform: translateX(0) skewX(0deg)
    }

    to {
        opacity: 0;
        transform: translateX(100%) skewX(-30deg)
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center center
    }

    to {
        opacity: 1;
        transform: rotate(0);
        transform-origin: center center
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: left bottom
    }

    to {
        opacity: 1;
        transform: rotate(0);
        transform-origin: left bottom
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }

    to {
        opacity: 1;
        transform: rotate(0);
        transform-origin: right bottom
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: left bottom
    }

    to {
        opacity: 1;
        transform: rotate(0);
        transform-origin: left bottom
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }

    to {
        opacity: 1;
        transform: rotate(0);
        transform-origin: right bottom
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: center center
    }

    to {
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center center
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: left bottom
    }

    to {
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: left bottom
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: right bottom
    }

    to {
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: left bottom
    }

    to {
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: left bottom
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
        transform: rotate(0);
        transform-origin: right bottom
    }

    to {
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }

    to {
        transform: translateY(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }

    to {
        transform: translateX(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }

    to {
        transform: translateX(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out;
        transform: rotate(0);
        transform-origin: top left
    }

    20%,
    60% {
        animation-timing-function: ease-in-out;
        transform: rotate(80deg);
        transform-origin: top left
    }

    40% {
        animation-timing-function: ease-in-out;
        transform: rotate(60deg);
        transform-origin: top left
    }

    80% {
        animation-timing-function: ease-in-out;
        opacity: 1;
        transform: rotate(60deg) translateY(0);
        transform-origin: top left
    }

    to {
        opacity: 0;
        transform: translateY(700px)
    }
}

.hinge {
    animation-name: hinge
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg)
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0) rotate(0deg)
    }

    to {
        opacity: 0;
        transform: translateX(100%) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    line-height: inherit;
    position: absolute;
    text-align: center;
    width: 2em
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s linear infinite
}

.fa-pulse {
    animation: fa-spin 1s steps(8) infinite
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scaleX(-1)
}

.fa-flip-vertical {
    transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: ""
}

.fa-accessible-icon:before {
    content: ""
}

.fa-accusoft:before {
    content: ""
}

.fa-acquisitions-incorporated:before {
    content: ""
}

.fa-ad:before {
    content: ""
}

.fa-address-book:before {
    content: ""
}

.fa-address-card:before {
    content: ""
}

.fa-adjust:before {
    content: ""
}

.fa-adn:before {
    content: ""
}

.fa-adversal:before {
    content: ""
}

.fa-affiliatetheme:before {
    content: ""
}

.fa-air-freshener:before {
    content: ""
}

.fa-airbnb:before {
    content: ""
}

.fa-algolia:before {
    content: ""
}

.fa-align-center:before {
    content: ""
}

.fa-align-justify:before {
    content: ""
}

.fa-align-left:before {
    content: ""
}

.fa-align-right:before {
    content: ""
}

.fa-alipay:before {
    content: ""
}

.fa-allergies:before {
    content: ""
}

.fa-amazon:before {
    content: ""
}

.fa-amazon-pay:before {
    content: ""
}

.fa-ambulance:before {
    content: ""
}

.fa-american-sign-language-interpreting:before {
    content: ""
}

.fa-amilia:before {
    content: ""
}

.fa-anchor:before {
    content: ""
}

.fa-android:before {
    content: ""
}

.fa-angellist:before {
    content: ""
}

.fa-angle-double-down:before {
    content: ""
}

.fa-angle-double-left:before {
    content: ""
}

.fa-angle-double-right:before {
    content: ""
}

.fa-angle-double-up:before {
    content: ""
}

.fa-angle-down:before {
    content: ""
}

.fa-angle-left:before {
    content: ""
}

.fa-angle-right:before {
    content: ""
}

.fa-angle-up:before {
    content: ""
}

.fa-angry:before {
    content: ""
}

.fa-angrycreative:before {
    content: ""
}

.fa-angular:before {
    content: ""
}

.fa-ankh:before {
    content: ""
}

.fa-app-store:before {
    content: ""
}

.fa-app-store-ios:before {
    content: ""
}

.fa-apper:before {
    content: ""
}

.fa-apple:before {
    content: ""
}

.fa-apple-alt:before {
    content: ""
}

.fa-apple-pay:before {
    content: ""
}

.fa-archive:before {
    content: ""
}

.fa-archway:before {
    content: ""
}

.fa-arrow-alt-circle-down:before {
    content: ""
}

.fa-arrow-alt-circle-left:before {
    content: ""
}

.fa-arrow-alt-circle-right:before {
    content: ""
}

.fa-arrow-alt-circle-up:before {
    content: ""
}

.fa-arrow-circle-down:before {
    content: ""
}

.fa-arrow-circle-left:before {
    content: ""
}

.fa-arrow-circle-right:before {
    content: ""
}

.fa-arrow-circle-up:before {
    content: ""
}

.fa-arrow-down:before {
    content: ""
}

.fa-arrow-left:before {
    content: ""
}

.fa-arrow-right:before {
    content: ""
}

.fa-arrow-up:before {
    content: ""
}

.fa-arrows-alt:before {
    content: ""
}

.fa-arrows-alt-h:before {
    content: ""
}

.fa-arrows-alt-v:before {
    content: ""
}

.fa-artstation:before {
    content: ""
}

.fa-assistive-listening-systems:before {
    content: ""
}

.fa-asterisk:before {
    content: ""
}

.fa-asymmetrik:before {
    content: ""
}

.fa-at:before {
    content: ""
}

.fa-atlas:before {
    content: ""
}

.fa-atlassian:before {
    content: ""
}

.fa-atom:before {
    content: ""
}

.fa-audible:before {
    content: ""
}

.fa-audio-description:before {
    content: ""
}

.fa-autoprefixer:before {
    content: ""
}

.fa-avianex:before {
    content: ""
}

.fa-aviato:before {
    content: ""
}

.fa-award:before {
    content: ""
}

.fa-aws:before {
    content: ""
}

.fa-baby:before {
    content: ""
}

.fa-baby-carriage:before {
    content: ""
}

.fa-backspace:before {
    content: ""
}

.fa-backward:before {
    content: ""
}

.fa-bacon:before {
    content: ""
}

.fa-bacteria:before {
    content: ""
}

.fa-bacterium:before {
    content: ""
}

.fa-bahai:before {
    content: ""
}

.fa-balance-scale:before {
    content: ""
}

.fa-balance-scale-left:before {
    content: ""
}

.fa-balance-scale-right:before {
    content: ""
}

.fa-ban:before {
    content: ""
}

.fa-band-aid:before {
    content: ""
}

.fa-bandcamp:before {
    content: ""
}

.fa-barcode:before {
    content: ""
}

.fa-bars:before {
    content: ""
}

.fa-baseball-ball:before {
    content: ""
}

.fa-basketball-ball:before {
    content: ""
}

.fa-bath:before {
    content: ""
}

.fa-battery-empty:before {
    content: ""
}

.fa-battery-full:before {
    content: ""
}

.fa-battery-half:before {
    content: ""
}

.fa-battery-quarter:before {
    content: ""
}

.fa-battery-three-quarters:before {
    content: ""
}

.fa-battle-net:before {
    content: ""
}

.fa-bed:before {
    content: ""
}

.fa-beer:before {
    content: ""
}

.fa-behance:before {
    content: ""
}

.fa-behance-square:before {
    content: ""
}

.fa-bell:before {
    content: ""
}

.fa-bell-slash:before {
    content: ""
}

.fa-bezier-curve:before {
    content: ""
}

.fa-bible:before {
    content: ""
}

.fa-bicycle:before {
    content: ""
}

.fa-biking:before {
    content: ""
}

.fa-bimobject:before {
    content: ""
}

.fa-binoculars:before {
    content: ""
}

.fa-biohazard:before {
    content: ""
}

.fa-birthday-cake:before {
    content: ""
}

.fa-bitbucket:before {
    content: ""
}

.fa-bitcoin:before {
    content: ""
}

.fa-bity:before {
    content: ""
}

.fa-black-tie:before {
    content: ""
}

.fa-blackberry:before {
    content: ""
}

.fa-blender:before {
    content: ""
}

.fa-blender-phone:before {
    content: ""
}

.fa-blind:before {
    content: ""
}

.fa-blog:before {
    content: ""
}

.fa-blogger:before {
    content: ""
}

.fa-blogger-b:before {
    content: ""
}

.fa-bluetooth:before {
    content: ""
}

.fa-bluetooth-b:before {
    content: ""
}

.fa-bold:before {
    content: ""
}

.fa-bolt:before {
    content: ""
}

.fa-bomb:before {
    content: ""
}

.fa-bone:before {
    content: ""
}

.fa-bong:before {
    content: ""
}

.fa-book:before {
    content: ""
}

.fa-book-dead:before {
    content: ""
}

.fa-book-medical:before {
    content: ""
}

.fa-book-open:before {
    content: ""
}

.fa-book-reader:before {
    content: ""
}

.fa-bookmark:before {
    content: ""
}

.fa-bootstrap:before {
    content: ""
}

.fa-border-all:before {
    content: ""
}

.fa-border-none:before {
    content: ""
}

.fa-border-style:before {
    content: ""
}

.fa-bowling-ball:before {
    content: ""
}

.fa-box:before {
    content: ""
}

.fa-box-open:before {
    content: ""
}

.fa-box-tissue:before {
    content: ""
}

.fa-boxes:before {
    content: ""
}

.fa-braille:before {
    content: ""
}

.fa-brain:before {
    content: ""
}

.fa-bread-slice:before {
    content: ""
}

.fa-briefcase:before {
    content: ""
}

.fa-briefcase-medical:before {
    content: ""
}

.fa-broadcast-tower:before {
    content: ""
}

.fa-broom:before {
    content: ""
}

.fa-brush:before {
    content: ""
}

.fa-btc:before {
    content: ""
}

.fa-buffer:before {
    content: ""
}

.fa-bug:before {
    content: ""
}

.fa-building:before {
    content: ""
}

.fa-bullhorn:before {
    content: ""
}

.fa-bullseye:before {
    content: ""
}

.fa-burn:before {
    content: ""
}

.fa-buromobelexperte:before {
    content: ""
}

.fa-bus:before {
    content: ""
}

.fa-bus-alt:before {
    content: ""
}

.fa-business-time:before {
    content: ""
}

.fa-buy-n-large:before {
    content: ""
}

.fa-buysellads:before {
    content: ""
}

.fa-calculator:before {
    content: ""
}

.fa-calendar:before {
    content: ""
}

.fa-calendar-alt:before {
    content: ""
}

.fa-calendar-check:before {
    content: ""
}

.fa-calendar-day:before {
    content: ""
}

.fa-calendar-minus:before {
    content: ""
}

.fa-calendar-plus:before {
    content: ""
}

.fa-calendar-times:before {
    content: ""
}

.fa-calendar-week:before {
    content: ""
}

.fa-camera:before {
    content: ""
}

.fa-camera-retro:before {
    content: ""
}

.fa-campground:before {
    content: ""
}

.fa-canadian-maple-leaf:before {
    content: ""
}

.fa-candy-cane:before {
    content: ""
}

.fa-cannabis:before {
    content: ""
}

.fa-capsules:before {
    content: ""
}

.fa-car:before {
    content: ""
}

.fa-car-alt:before {
    content: ""
}

.fa-car-battery:before {
    content: ""
}

.fa-car-crash:before {
    content: ""
}

.fa-car-side:before {
    content: ""
}

.fa-caravan:before {
    content: ""
}

.fa-caret-down:before {
    content: ""
}

.fa-caret-left:before {
    content: ""
}

.fa-caret-right:before {
    content: ""
}

.fa-caret-square-down:before {
    content: ""
}

.fa-caret-square-left:before {
    content: ""
}

.fa-caret-square-right:before {
    content: ""
}

.fa-caret-square-up:before {
    content: ""
}

.fa-caret-up:before {
    content: ""
}

.fa-carrot:before {
    content: ""
}

.fa-cart-arrow-down:before {
    content: ""
}

.fa-cart-plus:before {
    content: ""
}

.fa-cash-register:before {
    content: ""
}

.fa-cat:before {
    content: ""
}

.fa-cc-amazon-pay:before {
    content: ""
}

.fa-cc-amex:before {
    content: ""
}

.fa-cc-apple-pay:before {
    content: ""
}

.fa-cc-diners-club:before {
    content: ""
}

.fa-cc-discover:before {
    content: ""
}

.fa-cc-jcb:before {
    content: ""
}

.fa-cc-mastercard:before {
    content: ""
}

.fa-cc-paypal:before {
    content: ""
}

.fa-cc-stripe:before {
    content: ""
}

.fa-cc-visa:before {
    content: ""
}

.fa-centercode:before {
    content: ""
}

.fa-centos:before {
    content: ""
}

.fa-certificate:before {
    content: ""
}

.fa-chair:before {
    content: ""
}

.fa-chalkboard:before {
    content: ""
}

.fa-chalkboard-teacher:before {
    content: ""
}

.fa-charging-station:before {
    content: ""
}

.fa-chart-area:before {
    content: ""
}

.fa-chart-bar:before {
    content: ""
}

.fa-chart-line:before {
    content: ""
}

.fa-chart-pie:before {
    content: ""
}

.fa-check:before {
    content: ""
}

.fa-check-circle:before {
    content: ""
}

.fa-check-double:before {
    content: ""
}

.fa-check-square:before {
    content: ""
}

.fa-cheese:before {
    content: ""
}

.fa-chess:before {
    content: ""
}

.fa-chess-bishop:before {
    content: ""
}

.fa-chess-board:before {
    content: ""
}

.fa-chess-king:before {
    content: ""
}

.fa-chess-knight:before {
    content: ""
}

.fa-chess-pawn:before {
    content: ""
}

.fa-chess-queen:before {
    content: ""
}

.fa-chess-rook:before {
    content: ""
}

.fa-chevron-circle-down:before {
    content: ""
}

.fa-chevron-circle-left:before {
    content: ""
}

.fa-chevron-circle-right:before {
    content: ""
}

.fa-chevron-circle-up:before {
    content: ""
}

.fa-chevron-down:before {
    content: ""
}

.fa-chevron-left:before {
    content: ""
}

.fa-chevron-right:before {
    content: ""
}

.fa-chevron-up:before {
    content: ""
}

.fa-child:before {
    content: ""
}

.fa-chrome:before {
    content: ""
}

.fa-chromecast:before {
    content: ""
}

.fa-church:before {
    content: ""
}

.fa-circle:before {
    content: ""
}

.fa-circle-notch:before {
    content: ""
}

.fa-city:before {
    content: ""
}

.fa-clinic-medical:before {
    content: ""
}

.fa-clipboard:before {
    content: ""
}

.fa-clipboard-check:before {
    content: ""
}

.fa-clipboard-list:before {
    content: ""
}

.fa-clock:before {
    content: ""
}

.fa-clone:before {
    content: ""
}

.fa-closed-captioning:before {
    content: ""
}

.fa-cloud:before {
    content: ""
}

.fa-cloud-download-alt:before {
    content: ""
}

.fa-cloud-meatball:before {
    content: ""
}

.fa-cloud-moon:before {
    content: ""
}

.fa-cloud-moon-rain:before {
    content: ""
}

.fa-cloud-rain:before {
    content: ""
}

.fa-cloud-showers-heavy:before {
    content: ""
}

.fa-cloud-sun:before {
    content: ""
}

.fa-cloud-sun-rain:before {
    content: ""
}

.fa-cloud-upload-alt:before {
    content: ""
}

.fa-cloudflare:before {
    content: ""
}

.fa-cloudscale:before {
    content: ""
}

.fa-cloudsmith:before {
    content: ""
}

.fa-cloudversify:before {
    content: ""
}

.fa-cocktail:before {
    content: ""
}

.fa-code:before {
    content: ""
}

.fa-code-branch:before {
    content: ""
}

.fa-codepen:before {
    content: ""
}

.fa-codiepie:before {
    content: ""
}

.fa-coffee:before {
    content: ""
}

.fa-cog:before {
    content: ""
}

.fa-cogs:before {
    content: ""
}

.fa-coins:before {
    content: ""
}

.fa-columns:before {
    content: ""
}

.fa-comment:before {
    content: ""
}

.fa-comment-alt:before {
    content: ""
}

.fa-comment-dollar:before {
    content: ""
}

.fa-comment-dots:before {
    content: ""
}

.fa-comment-medical:before {
    content: ""
}

.fa-comment-slash:before {
    content: ""
}

.fa-comments:before {
    content: ""
}

.fa-comments-dollar:before {
    content: ""
}

.fa-compact-disc:before {
    content: ""
}

.fa-compass:before {
    content: ""
}

.fa-compress:before {
    content: ""
}

.fa-compress-alt:before {
    content: ""
}

.fa-compress-arrows-alt:before {
    content: ""
}

.fa-concierge-bell:before {
    content: ""
}

.fa-confluence:before {
    content: ""
}

.fa-connectdevelop:before {
    content: ""
}

.fa-contao:before {
    content: ""
}

.fa-cookie:before {
    content: ""
}

.fa-cookie-bite:before {
    content: ""
}

.fa-copy:before {
    content: ""
}

.fa-copyright:before {
    content: ""
}

.fa-cotton-bureau:before {
    content: ""
}

.fa-couch:before {
    content: ""
}

.fa-cpanel:before {
    content: ""
}

.fa-creative-commons:before {
    content: ""
}

.fa-creative-commons-by:before {
    content: ""
}

.fa-creative-commons-nc:before {
    content: ""
}

.fa-creative-commons-nc-eu:before {
    content: ""
}

.fa-creative-commons-nc-jp:before {
    content: ""
}

.fa-creative-commons-nd:before {
    content: ""
}

.fa-creative-commons-pd:before {
    content: ""
}

.fa-creative-commons-pd-alt:before {
    content: ""
}

.fa-creative-commons-remix:before {
    content: ""
}

.fa-creative-commons-sa:before {
    content: ""
}

.fa-creative-commons-sampling:before {
    content: ""
}

.fa-creative-commons-sampling-plus:before {
    content: ""
}

.fa-creative-commons-share:before {
    content: ""
}

.fa-creative-commons-zero:before {
    content: ""
}

.fa-credit-card:before {
    content: ""
}

.fa-critical-role:before {
    content: ""
}

.fa-crop:before {
    content: ""
}

.fa-crop-alt:before {
    content: ""
}

.fa-cross:before {
    content: ""
}

.fa-crosshairs:before {
    content: ""
}

.fa-crow:before {
    content: ""
}

.fa-crown:before {
    content: ""
}

.fa-crutch:before {
    content: ""
}

.fa-css3:before {
    content: ""
}

.fa-css3-alt:before {
    content: ""
}

.fa-cube:before {
    content: ""
}

.fa-cubes:before {
    content: ""
}

.fa-cut:before {
    content: ""
}

.fa-cuttlefish:before {
    content: ""
}

.fa-d-and-d:before {
    content: ""
}

.fa-d-and-d-beyond:before {
    content: ""
}

.fa-dailymotion:before {
    content: ""
}

.fa-dashcube:before {
    content: ""
}

.fa-database:before {
    content: ""
}

.fa-deaf:before {
    content: ""
}

.fa-deezer:before {
    content: ""
}

.fa-delicious:before {
    content: ""
}

.fa-democrat:before {
    content: ""
}

.fa-deploydog:before {
    content: ""
}

.fa-deskpro:before {
    content: ""
}

.fa-desktop:before {
    content: ""
}

.fa-dev:before {
    content: ""
}

.fa-deviantart:before {
    content: ""
}

.fa-dharmachakra:before {
    content: ""
}

.fa-dhl:before {
    content: ""
}

.fa-diagnoses:before {
    content: ""
}

.fa-diaspora:before {
    content: ""
}

.fa-dice:before {
    content: ""
}

.fa-dice-d20:before {
    content: ""
}

.fa-dice-d6:before {
    content: ""
}

.fa-dice-five:before {
    content: ""
}

.fa-dice-four:before {
    content: ""
}

.fa-dice-one:before {
    content: ""
}

.fa-dice-six:before {
    content: ""
}

.fa-dice-three:before {
    content: ""
}

.fa-dice-two:before {
    content: ""
}

.fa-digg:before {
    content: ""
}

.fa-digital-ocean:before {
    content: ""
}

.fa-digital-tachograph:before {
    content: ""
}

.fa-directions:before {
    content: ""
}

.fa-discord:before {
    content: ""
}

.fa-discourse:before {
    content: ""
}

.fa-disease:before {
    content: ""
}

.fa-divide:before {
    content: ""
}

.fa-dizzy:before {
    content: ""
}

.fa-dna:before {
    content: ""
}

.fa-dochub:before {
    content: ""
}

.fa-docker:before {
    content: ""
}

.fa-dog:before {
    content: ""
}

.fa-dollar-sign:before {
    content: ""
}

.fa-dolly:before {
    content: ""
}

.fa-dolly-flatbed:before {
    content: ""
}

.fa-donate:before {
    content: ""
}

.fa-door-closed:before {
    content: ""
}

.fa-door-open:before {
    content: ""
}

.fa-dot-circle:before {
    content: ""
}

.fa-dove:before {
    content: ""
}

.fa-download:before {
    content: ""
}

.fa-draft2digital:before {
    content: ""
}

.fa-drafting-compass:before {
    content: ""
}

.fa-dragon:before {
    content: ""
}

.fa-draw-polygon:before {
    content: ""
}

.fa-dribbble:before {
    content: ""
}

.fa-dribbble-square:before {
    content: ""
}

.fa-dropbox:before {
    content: ""
}

.fa-drum:before {
    content: ""
}

.fa-drum-steelpan:before {
    content: ""
}

.fa-drumstick-bite:before {
    content: ""
}

.fa-drupal:before {
    content: ""
}

.fa-dumbbell:before {
    content: ""
}

.fa-dumpster:before {
    content: ""
}

.fa-dumpster-fire:before {
    content: ""
}

.fa-dungeon:before {
    content: ""
}

.fa-dyalog:before {
    content: ""
}

.fa-earlybirds:before {
    content: ""
}

.fa-ebay:before {
    content: ""
}

.fa-edge:before {
    content: ""
}

.fa-edge-legacy:before {
    content: ""
}

.fa-edit:before {
    content: ""
}

.fa-egg:before {
    content: ""
}

.fa-eject:before {
    content: ""
}

.fa-elementor:before {
    content: ""
}

.fa-ellipsis-h:before {
    content: ""
}

.fa-ellipsis-v:before {
    content: ""
}

.fa-ello:before {
    content: ""
}

.fa-ember:before {
    content: ""
}

.fa-empire:before {
    content: ""
}

.fa-envelope:before {
    content: ""
}

.fa-envelope-open:before {
    content: ""
}

.fa-envelope-open-text:before {
    content: ""
}

.fa-envelope-square:before {
    content: ""
}

.fa-envira:before {
    content: ""
}

.fa-equals:before {
    content: ""
}

.fa-eraser:before {
    content: ""
}

.fa-erlang:before {
    content: ""
}

.fa-ethereum:before {
    content: ""
}

.fa-ethernet:before {
    content: ""
}

.fa-etsy:before {
    content: ""
}

.fa-euro-sign:before {
    content: ""
}

.fa-evernote:before {
    content: ""
}

.fa-exchange-alt:before {
    content: ""
}

.fa-exclamation:before {
    content: ""
}

.fa-exclamation-circle:before {
    content: ""
}

.fa-exclamation-triangle:before {
    content: ""
}

.fa-expand:before {
    content: ""
}

.fa-expand-alt:before {
    content: ""
}

.fa-expand-arrows-alt:before {
    content: ""
}

.fa-expeditedssl:before {
    content: ""
}

.fa-external-link-alt:before {
    content: ""
}

.fa-external-link-square-alt:before {
    content: ""
}

.fa-eye:before {
    content: ""
}

.fa-eye-dropper:before {
    content: ""
}

.fa-eye-slash:before {
    content: ""
}

.fa-facebook:before {
    content: ""
}

.fa-facebook-f:before {
    content: ""
}

.fa-facebook-messenger:before {
    content: ""
}

.fa-facebook-square:before {
    content: ""
}

.fa-fan:before {
    content: ""
}

.fa-fantasy-flight-games:before {
    content: ""
}

.fa-fast-backward:before {
    content: ""
}

.fa-fast-forward:before {
    content: ""
}

.fa-faucet:before {
    content: ""
}

.fa-fax:before {
    content: ""
}

.fa-feather:before {
    content: ""
}

.fa-feather-alt:before {
    content: ""
}

.fa-fedex:before {
    content: ""
}

.fa-fedora:before {
    content: ""
}

.fa-female:before {
    content: ""
}

.fa-fighter-jet:before {
    content: ""
}

.fa-figma:before {
    content: ""
}

.fa-file:before {
    content: ""
}

.fa-file-alt:before {
    content: ""
}

.fa-file-archive:before {
    content: ""
}

.fa-file-audio:before {
    content: ""
}

.fa-file-code:before {
    content: ""
}

.fa-file-contract:before {
    content: ""
}

.fa-file-csv:before {
    content: ""
}

.fa-file-download:before {
    content: ""
}

.fa-file-excel:before {
    content: ""
}

.fa-file-export:before {
    content: ""
}

.fa-file-image:before {
    content: ""
}

.fa-file-import:before {
    content: ""
}

.fa-file-invoice:before {
    content: ""
}

.fa-file-invoice-dollar:before {
    content: ""
}

.fa-file-medical:before {
    content: ""
}

.fa-file-medical-alt:before {
    content: ""
}

.fa-file-pdf:before {
    content: ""
}

.fa-file-powerpoint:before {
    content: ""
}

.fa-file-prescription:before {
    content: ""
}

.fa-file-signature:before {
    content: ""
}

.fa-file-upload:before {
    content: ""
}

.fa-file-video:before {
    content: ""
}

.fa-file-word:before {
    content: ""
}

.fa-fill:before {
    content: ""
}

.fa-fill-drip:before {
    content: ""
}

.fa-film:before {
    content: ""
}

.fa-filter:before {
    content: ""
}

.fa-fingerprint:before {
    content: ""
}

.fa-fire:before {
    content: ""
}

.fa-fire-alt:before {
    content: ""
}

.fa-fire-extinguisher:before {
    content: ""
}

.fa-firefox:before {
    content: ""
}

.fa-firefox-browser:before {
    content: ""
}

.fa-first-aid:before {
    content: ""
}

.fa-first-order:before {
    content: ""
}

.fa-first-order-alt:before {
    content: ""
}

.fa-firstdraft:before {
    content: ""
}

.fa-fish:before {
    content: ""
}

.fa-fist-raised:before {
    content: ""
}

.fa-flag:before {
    content: ""
}

.fa-flag-checkered:before {
    content: ""
}

.fa-flag-usa:before {
    content: ""
}

.fa-flask:before {
    content: ""
}

.fa-flickr:before {
    content: ""
}

.fa-flipboard:before {
    content: ""
}

.fa-flushed:before {
    content: ""
}

.fa-fly:before {
    content: ""
}

.fa-folder:before {
    content: ""
}

.fa-folder-minus:before {
    content: ""
}

.fa-folder-open:before {
    content: ""
}

.fa-folder-plus:before {
    content: ""
}

.fa-font:before {
    content: ""
}

.fa-font-awesome:before {
    content: ""
}

.fa-font-awesome-alt:before {
    content: ""
}

.fa-font-awesome-flag:before {
    content: ""
}

.fa-font-awesome-logo-full:before {
    content: ""
}

.fa-fonticons:before {
    content: ""
}

.fa-fonticons-fi:before {
    content: ""
}

.fa-football-ball:before {
    content: ""
}

.fa-fort-awesome:before {
    content: ""
}

.fa-fort-awesome-alt:before {
    content: ""
}

.fa-forumbee:before {
    content: ""
}

.fa-forward:before {
    content: ""
}

.fa-foursquare:before {
    content: ""
}

.fa-free-code-camp:before {
    content: ""
}

.fa-freebsd:before {
    content: ""
}

.fa-frog:before {
    content: ""
}

.fa-frown:before {
    content: ""
}

.fa-frown-open:before {
    content: ""
}

.fa-fulcrum:before {
    content: ""
}

.fa-funnel-dollar:before {
    content: ""
}

.fa-futbol:before {
    content: ""
}

.fa-galactic-republic:before {
    content: ""
}

.fa-galactic-senate:before {
    content: ""
}

.fa-gamepad:before {
    content: ""
}

.fa-gas-pump:before {
    content: ""
}

.fa-gavel:before {
    content: ""
}

.fa-gem:before {
    content: ""
}

.fa-genderless:before {
    content: ""
}

.fa-get-pocket:before {
    content: ""
}

.fa-gg:before {
    content: ""
}

.fa-gg-circle:before {
    content: ""
}

.fa-ghost:before {
    content: ""
}

.fa-gift:before {
    content: ""
}

.fa-gifts:before {
    content: ""
}

.fa-git:before {
    content: ""
}

.fa-git-alt:before {
    content: ""
}

.fa-git-square:before {
    content: ""
}

.fa-github:before {
    content: ""
}

.fa-github-alt:before {
    content: ""
}

.fa-github-square:before {
    content: ""
}

.fa-gitkraken:before {
    content: ""
}

.fa-gitlab:before {
    content: ""
}

.fa-gitter:before {
    content: ""
}

.fa-glass-cheers:before {
    content: ""
}

.fa-glass-martini:before {
    content: ""
}

.fa-glass-martini-alt:before {
    content: ""
}

.fa-glass-whiskey:before {
    content: ""
}

.fa-glasses:before {
    content: ""
}

.fa-glide:before {
    content: ""
}

.fa-glide-g:before {
    content: ""
}

.fa-globe:before {
    content: ""
}

.fa-globe-africa:before {
    content: ""
}

.fa-globe-americas:before {
    content: ""
}

.fa-globe-asia:before {
    content: ""
}

.fa-globe-europe:before {
    content: ""
}

.fa-gofore:before {
    content: ""
}

.fa-golf-ball:before {
    content: ""
}

.fa-goodreads:before {
    content: ""
}

.fa-goodreads-g:before {
    content: ""
}

.fa-google:before {
    content: ""
}

.fa-google-drive:before {
    content: ""
}

.fa-google-pay:before {
    content: ""
}

.fa-google-play:before {
    content: ""
}

.fa-google-plus:before {
    content: ""
}

.fa-google-plus-g:before {
    content: ""
}

.fa-google-plus-square:before {
    content: ""
}

.fa-google-wallet:before {
    content: ""
}

.fa-gopuram:before {
    content: ""
}

.fa-graduation-cap:before {
    content: ""
}

.fa-gratipay:before {
    content: ""
}

.fa-grav:before {
    content: ""
}

.fa-greater-than:before {
    content: ""
}

.fa-greater-than-equal:before {
    content: ""
}

.fa-grimace:before {
    content: ""
}

.fa-grin:before {
    content: ""
}

.fa-grin-alt:before {
    content: ""
}

.fa-grin-beam:before {
    content: ""
}

.fa-grin-beam-sweat:before {
    content: ""
}

.fa-grin-hearts:before {
    content: ""
}

.fa-grin-squint:before {
    content: ""
}

.fa-grin-squint-tears:before {
    content: ""
}

.fa-grin-stars:before {
    content: ""
}

.fa-grin-tears:before {
    content: ""
}

.fa-grin-tongue:before {
    content: ""
}

.fa-grin-tongue-squint:before {
    content: ""
}

.fa-grin-tongue-wink:before {
    content: ""
}

.fa-grin-wink:before {
    content: ""
}

.fa-grip-horizontal:before {
    content: ""
}

.fa-grip-lines:before {
    content: ""
}

.fa-grip-lines-vertical:before {
    content: ""
}

.fa-grip-vertical:before {
    content: ""
}

.fa-gripfire:before {
    content: ""
}

.fa-grunt:before {
    content: ""
}

.fa-guilded:before {
    content: ""
}

.fa-guitar:before {
    content: ""
}

.fa-gulp:before {
    content: ""
}

.fa-h-square:before {
    content: ""
}

.fa-hacker-news:before {
    content: ""
}

.fa-hacker-news-square:before {
    content: ""
}

.fa-hackerrank:before {
    content: ""
}

.fa-hamburger:before {
    content: ""
}

.fa-hammer:before {
    content: ""
}

.fa-hamsa:before {
    content: ""
}

.fa-hand-holding:before {
    content: ""
}

.fa-hand-holding-heart:before {
    content: ""
}

.fa-hand-holding-medical:before {
    content: ""
}

.fa-hand-holding-usd:before {
    content: ""
}

.fa-hand-holding-water:before {
    content: ""
}

.fa-hand-lizard:before {
    content: ""
}

.fa-hand-middle-finger:before {
    content: ""
}

.fa-hand-paper:before {
    content: ""
}

.fa-hand-peace:before {
    content: ""
}

.fa-hand-point-down:before {
    content: ""
}

.fa-hand-point-left:before {
    content: ""
}

.fa-hand-point-right:before {
    content: ""
}

.fa-hand-point-up:before {
    content: ""
}

.fa-hand-pointer:before {
    content: ""
}

.fa-hand-rock:before {
    content: ""
}

.fa-hand-scissors:before {
    content: ""
}

.fa-hand-sparkles:before {
    content: ""
}

.fa-hand-spock:before {
    content: ""
}

.fa-hands:before {
    content: ""
}

.fa-hands-helping:before {
    content: ""
}

.fa-hands-wash:before {
    content: ""
}

.fa-handshake:before {
    content: ""
}

.fa-handshake-alt-slash:before {
    content: ""
}

.fa-handshake-slash:before {
    content: ""
}

.fa-hanukiah:before {
    content: ""
}

.fa-hard-hat:before {
    content: ""
}

.fa-hashtag:before {
    content: ""
}

.fa-hat-cowboy:before {
    content: ""
}

.fa-hat-cowboy-side:before {
    content: ""
}

.fa-hat-wizard:before {
    content: ""
}

.fa-hdd:before {
    content: ""
}

.fa-head-side-cough:before {
    content: ""
}

.fa-head-side-cough-slash:before {
    content: ""
}

.fa-head-side-mask:before {
    content: ""
}

.fa-head-side-virus:before {
    content: ""
}

.fa-heading:before {
    content: ""
}

.fa-headphones:before {
    content: ""
}

.fa-headphones-alt:before {
    content: ""
}

.fa-headset:before {
    content: ""
}

.fa-heart:before {
    content: ""
}

.fa-heart-broken:before {
    content: ""
}

.fa-heartbeat:before {
    content: ""
}

.fa-helicopter:before {
    content: ""
}

.fa-highlighter:before {
    content: ""
}

.fa-hiking:before {
    content: ""
}

.fa-hippo:before {
    content: ""
}

.fa-hips:before {
    content: ""
}

.fa-hire-a-helper:before {
    content: ""
}

.fa-history:before {
    content: ""
}

.fa-hive:before {
    content: ""
}

.fa-hockey-puck:before {
    content: ""
}

.fa-holly-berry:before {
    content: ""
}

.fa-home:before {
    content: ""
}

.fa-hooli:before {
    content: ""
}

.fa-hornbill:before {
    content: ""
}

.fa-horse:before {
    content: ""
}

.fa-horse-head:before {
    content: ""
}

.fa-hospital:before {
    content: ""
}

.fa-hospital-alt:before {
    content: ""
}

.fa-hospital-symbol:before {
    content: ""
}

.fa-hospital-user:before {
    content: ""
}

.fa-hot-tub:before {
    content: ""
}

.fa-hotdog:before {
    content: ""
}

.fa-hotel:before {
    content: ""
}

.fa-hotjar:before {
    content: ""
}

.fa-hourglass:before {
    content: ""
}

.fa-hourglass-end:before {
    content: ""
}

.fa-hourglass-half:before {
    content: ""
}

.fa-hourglass-start:before {
    content: ""
}

.fa-house-damage:before {
    content: ""
}

.fa-house-user:before {
    content: ""
}

.fa-houzz:before {
    content: ""
}

.fa-hryvnia:before {
    content: ""
}

.fa-html5:before {
    content: ""
}

.fa-hubspot:before {
    content: ""
}

.fa-i-cursor:before {
    content: ""
}

.fa-ice-cream:before {
    content: ""
}

.fa-icicles:before {
    content: ""
}

.fa-icons:before {
    content: ""
}

.fa-id-badge:before {
    content: ""
}

.fa-id-card:before {
    content: ""
}

.fa-id-card-alt:before {
    content: ""
}

.fa-ideal:before {
    content: ""
}

.fa-igloo:before {
    content: ""
}

.fa-image:before {
    content: ""
}

.fa-images:before {
    content: ""
}

.fa-imdb:before {
    content: ""
}

.fa-inbox:before {
    content: ""
}

.fa-indent:before {
    content: ""
}

.fa-industry:before {
    content: ""
}

.fa-infinity:before {
    content: ""
}

.fa-info:before {
    content: ""
}

.fa-info-circle:before {
    content: ""
}

.fa-innosoft:before {
    content: ""
}

.fa-instagram:before {
    content: ""
}

.fa-instagram-square:before {
    content: ""
}

.fa-instalod:before {
    content: ""
}

.fa-intercom:before {
    content: ""
}

.fa-internet-explorer:before {
    content: ""
}

.fa-invision:before {
    content: ""
}

.fa-ioxhost:before {
    content: ""
}

.fa-italic:before {
    content: ""
}

.fa-itch-io:before {
    content: ""
}

.fa-itunes:before {
    content: ""
}

.fa-itunes-note:before {
    content: ""
}

.fa-java:before {
    content: ""
}

.fa-jedi:before {
    content: ""
}

.fa-jedi-order:before {
    content: ""
}

.fa-jenkins:before {
    content: ""
}

.fa-jira:before {
    content: ""
}

.fa-joget:before {
    content: ""
}

.fa-joint:before {
    content: ""
}

.fa-joomla:before {
    content: ""
}

.fa-journal-whills:before {
    content: ""
}

.fa-js:before {
    content: ""
}

.fa-js-square:before {
    content: ""
}

.fa-jsfiddle:before {
    content: ""
}

.fa-kaaba:before {
    content: ""
}

.fa-kaggle:before {
    content: ""
}

.fa-key:before {
    content: ""
}

.fa-keybase:before {
    content: ""
}

.fa-keyboard:before {
    content: ""
}

.fa-keycdn:before {
    content: ""
}

.fa-khanda:before {
    content: ""
}

.fa-kickstarter:before {
    content: ""
}

.fa-kickstarter-k:before {
    content: ""
}

.fa-kiss:before {
    content: ""
}

.fa-kiss-beam:before {
    content: ""
}

.fa-kiss-wink-heart:before {
    content: ""
}

.fa-kiwi-bird:before {
    content: ""
}

.fa-korvue:before {
    content: ""
}

.fa-landmark:before {
    content: ""
}

.fa-language:before {
    content: ""
}

.fa-laptop:before {
    content: ""
}

.fa-laptop-code:before {
    content: ""
}

.fa-laptop-house:before {
    content: ""
}

.fa-laptop-medical:before {
    content: ""
}

.fa-laravel:before {
    content: ""
}

.fa-lastfm:before {
    content: ""
}

.fa-lastfm-square:before {
    content: ""
}

.fa-laugh:before {
    content: ""
}

.fa-laugh-beam:before {
    content: ""
}

.fa-laugh-squint:before {
    content: ""
}

.fa-laugh-wink:before {
    content: ""
}

.fa-layer-group:before {
    content: ""
}

.fa-leaf:before {
    content: ""
}

.fa-leanpub:before {
    content: ""
}

.fa-lemon:before {
    content: ""
}

.fa-less:before {
    content: ""
}

.fa-less-than:before {
    content: ""
}

.fa-less-than-equal:before {
    content: ""
}

.fa-level-down-alt:before {
    content: ""
}

.fa-level-up-alt:before {
    content: ""
}

.fa-life-ring:before {
    content: ""
}

.fa-lightbulb:before {
    content: ""
}

.fa-line:before {
    content: ""
}

.fa-link:before {
    content: ""
}

.fa-linkedin:before {
    content: ""
}

.fa-linkedin-in:before {
    content: ""
}

.fa-linode:before {
    content: ""
}

.fa-linux:before {
    content: ""
}

.fa-lira-sign:before {
    content: ""
}

.fa-list:before {
    content: ""
}

.fa-list-alt:before {
    content: ""
}

.fa-list-ol:before {
    content: ""
}

.fa-list-ul:before {
    content: ""
}

.fa-location-arrow:before {
    content: ""
}

.fa-lock:before {
    content: ""
}

.fa-lock-open:before {
    content: ""
}

.fa-long-arrow-alt-down:before {
    content: ""
}

.fa-long-arrow-alt-left:before {
    content: ""
}

.fa-long-arrow-alt-right:before {
    content: ""
}

.fa-long-arrow-alt-up:before {
    content: ""
}

.fa-low-vision:before {
    content: ""
}

.fa-luggage-cart:before {
    content: ""
}

.fa-lungs:before {
    content: ""
}

.fa-lungs-virus:before {
    content: ""
}

.fa-lyft:before {
    content: ""
}

.fa-magento:before {
    content: ""
}

.fa-magic:before {
    content: ""
}

.fa-magnet:before {
    content: ""
}

.fa-mail-bulk:before {
    content: ""
}

.fa-mailchimp:before {
    content: ""
}

.fa-male:before {
    content: ""
}

.fa-mandalorian:before {
    content: ""
}

.fa-map:before {
    content: ""
}

.fa-map-marked:before {
    content: ""
}

.fa-map-marked-alt:before {
    content: ""
}

.fa-map-marker:before {
    content: ""
}

.fa-map-marker-alt:before {
    content: ""
}

.fa-map-pin:before {
    content: ""
}

.fa-map-signs:before {
    content: ""
}

.fa-markdown:before {
    content: ""
}

.fa-marker:before {
    content: ""
}

.fa-mars:before {
    content: ""
}

.fa-mars-double:before {
    content: ""
}

.fa-mars-stroke:before {
    content: ""
}

.fa-mars-stroke-h:before {
    content: ""
}

.fa-mars-stroke-v:before {
    content: ""
}

.fa-mask:before {
    content: ""
}

.fa-mastodon:before {
    content: ""
}

.fa-maxcdn:before {
    content: ""
}

.fa-mdb:before {
    content: ""
}

.fa-medal:before {
    content: ""
}

.fa-medapps:before {
    content: ""
}

.fa-medium:before {
    content: ""
}

.fa-medium-m:before {
    content: ""
}

.fa-medkit:before {
    content: ""
}

.fa-medrt:before {
    content: ""
}

.fa-meetup:before {
    content: ""
}

.fa-megaport:before {
    content: ""
}

.fa-meh:before {
    content: ""
}

.fa-meh-blank:before {
    content: ""
}

.fa-meh-rolling-eyes:before {
    content: ""
}

.fa-memory:before {
    content: ""
}

.fa-mendeley:before {
    content: ""
}

.fa-menorah:before {
    content: ""
}

.fa-mercury:before {
    content: ""
}

.fa-meteor:before {
    content: ""
}

.fa-microblog:before {
    content: ""
}

.fa-microchip:before {
    content: ""
}

.fa-microphone:before {
    content: ""
}

.fa-microphone-alt:before {
    content: ""
}

.fa-microphone-alt-slash:before {
    content: ""
}

.fa-microphone-slash:before {
    content: ""
}

.fa-microscope:before {
    content: ""
}

.fa-microsoft:before {
    content: ""
}

.fa-minus:before {
    content: ""
}

.fa-minus-circle:before {
    content: ""
}

.fa-minus-square:before {
    content: ""
}

.fa-mitten:before {
    content: ""
}

.fa-mix:before {
    content: ""
}

.fa-mixcloud:before {
    content: ""
}

.fa-mixer:before {
    content: ""
}

.fa-mizuni:before {
    content: ""
}

.fa-mobile:before {
    content: ""
}

.fa-mobile-alt:before {
    content: ""
}

.fa-modx:before {
    content: ""
}

.fa-monero:before {
    content: ""
}

.fa-money-bill:before {
    content: ""
}

.fa-money-bill-alt:before {
    content: ""
}

.fa-money-bill-wave:before {
    content: ""
}

.fa-money-bill-wave-alt:before {
    content: ""
}

.fa-money-check:before {
    content: ""
}

.fa-money-check-alt:before {
    content: ""
}

.fa-monument:before {
    content: ""
}

.fa-moon:before {
    content: ""
}

.fa-mortar-pestle:before {
    content: ""
}

.fa-mosque:before {
    content: ""
}

.fa-motorcycle:before {
    content: ""
}

.fa-mountain:before {
    content: ""
}

.fa-mouse:before {
    content: ""
}

.fa-mouse-pointer:before {
    content: ""
}

.fa-mug-hot:before {
    content: ""
}

.fa-music:before {
    content: ""
}

.fa-napster:before {
    content: ""
}

.fa-neos:before {
    content: ""
}

.fa-network-wired:before {
    content: ""
}

.fa-neuter:before {
    content: ""
}

.fa-newspaper:before {
    content: ""
}

.fa-nimblr:before {
    content: ""
}

.fa-node:before {
    content: ""
}

.fa-node-js:before {
    content: ""
}

.fa-not-equal:before {
    content: ""
}

.fa-notes-medical:before {
    content: ""
}

.fa-npm:before {
    content: ""
}

.fa-ns8:before {
    content: ""
}

.fa-nutritionix:before {
    content: ""
}

.fa-object-group:before {
    content: ""
}

.fa-object-ungroup:before {
    content: ""
}

.fa-octopus-deploy:before {
    content: ""
}

.fa-odnoklassniki:before {
    content: ""
}

.fa-odnoklassniki-square:before {
    content: ""
}

.fa-oil-can:before {
    content: ""
}

.fa-old-republic:before {
    content: ""
}

.fa-om:before {
    content: ""
}

.fa-opencart:before {
    content: ""
}

.fa-openid:before {
    content: ""
}

.fa-opera:before {
    content: ""
}

.fa-optin-monster:before {
    content: ""
}

.fa-orcid:before {
    content: ""
}

.fa-osi:before {
    content: ""
}

.fa-otter:before {
    content: ""
}

.fa-outdent:before {
    content: ""
}

.fa-page4:before {
    content: ""
}

.fa-pagelines:before {
    content: ""
}

.fa-pager:before {
    content: ""
}

.fa-paint-brush:before {
    content: ""
}

.fa-paint-roller:before {
    content: ""
}

.fa-palette:before {
    content: ""
}

.fa-palfed:before {
    content: ""
}

.fa-pallet:before {
    content: ""
}

.fa-paper-plane:before {
    content: ""
}

.fa-paperclip:before {
    content: ""
}

.fa-parachute-box:before {
    content: ""
}

.fa-paragraph:before {
    content: ""
}

.fa-parking:before {
    content: ""
}

.fa-passport:before {
    content: ""
}

.fa-pastafarianism:before {
    content: ""
}

.fa-paste:before {
    content: ""
}

.fa-patreon:before {
    content: ""
}

.fa-pause:before {
    content: ""
}

.fa-pause-circle:before {
    content: ""
}

.fa-paw:before {
    content: ""
}

.fa-paypal:before {
    content: ""
}

.fa-peace:before {
    content: ""
}

.fa-pen:before {
    content: ""
}

.fa-pen-alt:before {
    content: ""
}

.fa-pen-fancy:before {
    content: ""
}

.fa-pen-nib:before {
    content: ""
}

.fa-pen-square:before {
    content: ""
}

.fa-pencil-alt:before {
    content: ""
}

.fa-pencil-ruler:before {
    content: ""
}

.fa-penny-arcade:before {
    content: ""
}

.fa-people-arrows:before {
    content: ""
}

.fa-people-carry:before {
    content: ""
}

.fa-pepper-hot:before {
    content: ""
}

.fa-perbyte:before {
    content: ""
}

.fa-percent:before {
    content: ""
}

.fa-percentage:before {
    content: ""
}

.fa-periscope:before {
    content: ""
}

.fa-person-booth:before {
    content: ""
}

.fa-phabricator:before {
    content: ""
}

.fa-phoenix-framework:before {
    content: ""
}

.fa-phoenix-squadron:before {
    content: ""
}

.fa-phone:before {
    content: ""
}

.fa-phone-alt:before {
    content: ""
}

.fa-phone-slash:before {
    content: ""
}

.fa-phone-square:before {
    content: ""
}

.fa-phone-square-alt:before {
    content: ""
}

.fa-phone-volume:before {
    content: ""
}

.fa-photo-video:before {
    content: ""
}

.fa-php:before {
    content: ""
}

.fa-pied-piper:before {
    content: ""
}

.fa-pied-piper-alt:before {
    content: ""
}

.fa-pied-piper-hat:before {
    content: ""
}

.fa-pied-piper-pp:before {
    content: ""
}

.fa-pied-piper-square:before {
    content: ""
}

.fa-piggy-bank:before {
    content: ""
}

.fa-pills:before {
    content: ""
}

.fa-pinterest:before {
    content: ""
}

.fa-pinterest-p:before {
    content: ""
}

.fa-pinterest-square:before {
    content: ""
}

.fa-pizza-slice:before {
    content: ""
}

.fa-place-of-worship:before {
    content: ""
}

.fa-plane:before {
    content: ""
}

.fa-plane-arrival:before {
    content: ""
}

.fa-plane-departure:before {
    content: ""
}

.fa-plane-slash:before {
    content: ""
}

.fa-play:before {
    content: ""
}

.fa-play-circle:before {
    content: ""
}

.fa-playstation:before {
    content: ""
}

.fa-plug:before {
    content: ""
}

.fa-plus:before {
    content: ""
}

.fa-plus-circle:before {
    content: ""
}

.fa-plus-square:before {
    content: ""
}

.fa-podcast:before {
    content: ""
}

.fa-poll:before {
    content: ""
}

.fa-poll-h:before {
    content: ""
}

.fa-poo:before {
    content: ""
}

.fa-poo-storm:before {
    content: ""
}

.fa-poop:before {
    content: ""
}

.fa-portrait:before {
    content: ""
}

.fa-pound-sign:before {
    content: ""
}

.fa-power-off:before {
    content: ""
}

.fa-pray:before {
    content: ""
}

.fa-praying-hands:before {
    content: ""
}

.fa-prescription:before {
    content: ""
}

.fa-prescription-bottle:before {
    content: ""
}

.fa-prescription-bottle-alt:before {
    content: ""
}

.fa-print:before {
    content: ""
}

.fa-procedures:before {
    content: ""
}

.fa-product-hunt:before {
    content: ""
}

.fa-project-diagram:before {
    content: ""
}

.fa-pump-medical:before {
    content: ""
}

.fa-pump-soap:before {
    content: ""
}

.fa-pushed:before {
    content: ""
}

.fa-puzzle-piece:before {
    content: ""
}

.fa-python:before {
    content: ""
}

.fa-qq:before {
    content: ""
}

.fa-qrcode:before {
    content: ""
}

.fa-question:before {
    content: ""
}

.fa-question-circle:before {
    content: ""
}

.fa-quidditch:before {
    content: ""
}

.fa-quinscape:before {
    content: ""
}

.fa-quora:before {
    content: ""
}

.fa-quote-left:before {
    content: ""
}

.fa-quote-right:before {
    content: ""
}

.fa-quran:before {
    content: ""
}

.fa-r-project:before {
    content: ""
}

.fa-radiation:before {
    content: ""
}

.fa-radiation-alt:before {
    content: ""
}

.fa-rainbow:before {
    content: ""
}

.fa-random:before {
    content: ""
}

.fa-raspberry-pi:before {
    content: ""
}

.fa-ravelry:before {
    content: ""
}

.fa-react:before {
    content: ""
}

.fa-reacteurope:before {
    content: ""
}

.fa-readme:before {
    content: ""
}

.fa-rebel:before {
    content: ""
}

.fa-receipt:before {
    content: ""
}

.fa-record-vinyl:before {
    content: ""
}

.fa-recycle:before {
    content: ""
}

.fa-red-river:before {
    content: ""
}

.fa-reddit:before {
    content: ""
}

.fa-reddit-alien:before {
    content: ""
}

.fa-reddit-square:before {
    content: ""
}

.fa-redhat:before {
    content: ""
}

.fa-redo:before {
    content: ""
}

.fa-redo-alt:before {
    content: ""
}

.fa-registered:before {
    content: ""
}

.fa-remove-format:before {
    content: ""
}

.fa-renren:before {
    content: ""
}

.fa-reply:before {
    content: ""
}

.fa-reply-all:before {
    content: ""
}

.fa-replyd:before {
    content: ""
}

.fa-republican:before {
    content: ""
}

.fa-researchgate:before {
    content: ""
}

.fa-resolving:before {
    content: ""
}

.fa-restroom:before {
    content: ""
}

.fa-retweet:before {
    content: ""
}

.fa-rev:before {
    content: ""
}

.fa-ribbon:before {
    content: ""
}

.fa-ring:before {
    content: ""
}

.fa-road:before {
    content: ""
}

.fa-robot:before {
    content: ""
}

.fa-rocket:before {
    content: ""
}

.fa-rocketchat:before {
    content: ""
}

.fa-rockrms:before {
    content: ""
}

.fa-route:before {
    content: ""
}

.fa-rss:before {
    content: ""
}

.fa-rss-square:before {
    content: ""
}

.fa-ruble-sign:before {
    content: ""
}

.fa-ruler:before {
    content: ""
}

.fa-ruler-combined:before {
    content: ""
}

.fa-ruler-horizontal:before {
    content: ""
}

.fa-ruler-vertical:before {
    content: ""
}

.fa-running:before {
    content: ""
}

.fa-rupee-sign:before {
    content: ""
}

.fa-rust:before {
    content: ""
}

.fa-sad-cry:before {
    content: ""
}

.fa-sad-tear:before {
    content: ""
}

.fa-safari:before {
    content: ""
}

.fa-salesforce:before {
    content: ""
}

.fa-sass:before {
    content: ""
}

.fa-satellite:before {
    content: ""
}

.fa-satellite-dish:before {
    content: ""
}

.fa-save:before {
    content: ""
}

.fa-schlix:before {
    content: ""
}

.fa-school:before {
    content: ""
}

.fa-screwdriver:before {
    content: ""
}

.fa-scribd:before {
    content: ""
}

.fa-scroll:before {
    content: ""
}

.fa-sd-card:before {
    content: ""
}

.fa-search:before {
    content: ""
}

.fa-search-dollar:before {
    content: ""
}

.fa-search-location:before {
    content: ""
}

.fa-search-minus:before {
    content: ""
}

.fa-search-plus:before {
    content: ""
}

.fa-searchengin:before {
    content: ""
}

.fa-seedling:before {
    content: ""
}

.fa-sellcast:before {
    content: ""
}

.fa-sellsy:before {
    content: ""
}

.fa-server:before {
    content: ""
}

.fa-servicestack:before {
    content: ""
}

.fa-shapes:before {
    content: ""
}

.fa-share:before {
    content: ""
}

.fa-share-alt:before {
    content: ""
}

.fa-share-alt-square:before {
    content: ""
}

.fa-share-square:before {
    content: ""
}

.fa-shekel-sign:before {
    content: ""
}

.fa-shield-alt:before {
    content: ""
}

.fa-shield-virus:before {
    content: ""
}

.fa-ship:before {
    content: ""
}

.fa-shipping-fast:before {
    content: ""
}

.fa-shirtsinbulk:before {
    content: ""
}

.fa-shoe-prints:before {
    content: ""
}

.fa-shopify:before {
    content: ""
}

.fa-shopping-bag:before {
    content: ""
}

.fa-shopping-basket:before {
    content: ""
}

.fa-shopping-cart:before {
    content: ""
}

.fa-shopware:before {
    content: ""
}

.fa-shower:before {
    content: ""
}

.fa-shuttle-van:before {
    content: ""
}

.fa-sign:before {
    content: ""
}

.fa-sign-in-alt:before {
    content: ""
}

.fa-sign-language:before {
    content: ""
}

.fa-sign-out-alt:before {
    content: ""
}

.fa-signal:before {
    content: ""
}

.fa-signature:before {
    content: ""
}

.fa-sim-card:before {
    content: ""
}

.fa-simplybuilt:before {
    content: ""
}

.fa-sink:before {
    content: ""
}

.fa-sistrix:before {
    content: ""
}

.fa-sitemap:before {
    content: ""
}

.fa-sith:before {
    content: ""
}

.fa-skating:before {
    content: ""
}

.fa-sketch:before {
    content: ""
}

.fa-skiing:before {
    content: ""
}

.fa-skiing-nordic:before {
    content: ""
}

.fa-skull:before {
    content: ""
}

.fa-skull-crossbones:before {
    content: ""
}

.fa-skyatlas:before {
    content: ""
}

.fa-skype:before {
    content: ""
}

.fa-slack:before {
    content: ""
}

.fa-slack-hash:before {
    content: ""
}

.fa-slash:before {
    content: ""
}

.fa-sleigh:before {
    content: ""
}

.fa-sliders-h:before {
    content: ""
}

.fa-slideshare:before {
    content: ""
}

.fa-smile:before {
    content: ""
}

.fa-smile-beam:before {
    content: ""
}

.fa-smile-wink:before {
    content: ""
}

.fa-smog:before {
    content: ""
}

.fa-smoking:before {
    content: ""
}

.fa-smoking-ban:before {
    content: ""
}

.fa-sms:before {
    content: ""
}

.fa-snapchat:before {
    content: ""
}

.fa-snapchat-ghost:before {
    content: ""
}

.fa-snapchat-square:before {
    content: ""
}

.fa-snowboarding:before {
    content: ""
}

.fa-snowflake:before {
    content: ""
}

.fa-snowman:before {
    content: ""
}

.fa-snowplow:before {
    content: ""
}

.fa-soap:before {
    content: ""
}

.fa-socks:before {
    content: ""
}

.fa-solar-panel:before {
    content: ""
}

.fa-sort:before {
    content: ""
}

.fa-sort-alpha-down:before {
    content: ""
}

.fa-sort-alpha-down-alt:before {
    content: ""
}

.fa-sort-alpha-up:before {
    content: ""
}

.fa-sort-alpha-up-alt:before {
    content: ""
}

.fa-sort-amount-down:before {
    content: ""
}

.fa-sort-amount-down-alt:before {
    content: ""
}

.fa-sort-amount-up:before {
    content: ""
}

.fa-sort-amount-up-alt:before {
    content: ""
}

.fa-sort-down:before {
    content: ""
}

.fa-sort-numeric-down:before {
    content: ""
}

.fa-sort-numeric-down-alt:before {
    content: ""
}

.fa-sort-numeric-up:before {
    content: ""
}

.fa-sort-numeric-up-alt:before {
    content: ""
}

.fa-sort-up:before {
    content: ""
}

.fa-soundcloud:before {
    content: ""
}

.fa-sourcetree:before {
    content: ""
}

.fa-spa:before {
    content: ""
}

.fa-space-shuttle:before {
    content: ""
}

.fa-speakap:before {
    content: ""
}

.fa-speaker-deck:before {
    content: ""
}

.fa-spell-check:before {
    content: ""
}

.fa-spider:before {
    content: ""
}

.fa-spinner:before {
    content: ""
}

.fa-splotch:before {
    content: ""
}

.fa-spotify:before {
    content: ""
}

.fa-spray-can:before {
    content: ""
}

.fa-square:before {
    content: ""
}

.fa-square-full:before {
    content: ""
}

.fa-square-root-alt:before {
    content: ""
}

.fa-squarespace:before {
    content: ""
}

.fa-stack-exchange:before {
    content: ""
}

.fa-stack-overflow:before {
    content: ""
}

.fa-stackpath:before {
    content: ""
}

.fa-stamp:before {
    content: ""
}

.fa-star:before {
    content: ""
}

.fa-star-and-crescent:before {
    content: ""
}

.fa-star-half:before {
    content: ""
}

.fa-star-half-alt:before {
    content: ""
}

.fa-star-of-david:before {
    content: ""
}

.fa-star-of-life:before {
    content: ""
}

.fa-staylinked:before {
    content: ""
}

.fa-steam:before {
    content: ""
}

.fa-steam-square:before {
    content: ""
}

.fa-steam-symbol:before {
    content: ""
}

.fa-step-backward:before {
    content: ""
}

.fa-step-forward:before {
    content: ""
}

.fa-stethoscope:before {
    content: ""
}

.fa-sticker-mule:before {
    content: ""
}

.fa-sticky-note:before {
    content: ""
}

.fa-stop:before {
    content: ""
}

.fa-stop-circle:before {
    content: ""
}

.fa-stopwatch:before {
    content: ""
}

.fa-stopwatch-20:before {
    content: ""
}

.fa-store:before {
    content: ""
}

.fa-store-alt:before {
    content: ""
}

.fa-store-alt-slash:before {
    content: ""
}

.fa-store-slash:before {
    content: ""
}

.fa-strava:before {
    content: ""
}

.fa-stream:before {
    content: ""
}

.fa-street-view:before {
    content: ""
}

.fa-strikethrough:before {
    content: ""
}

.fa-stripe:before {
    content: ""
}

.fa-stripe-s:before {
    content: ""
}

.fa-stroopwafel:before {
    content: ""
}

.fa-studiovinari:before {
    content: ""
}

.fa-stumbleupon:before {
    content: ""
}

.fa-stumbleupon-circle:before {
    content: ""
}

.fa-subscript:before {
    content: ""
}

.fa-subway:before {
    content: ""
}

.fa-suitcase:before {
    content: ""
}

.fa-suitcase-rolling:before {
    content: ""
}

.fa-sun:before {
    content: ""
}

.fa-superpowers:before {
    content: ""
}

.fa-superscript:before {
    content: ""
}

.fa-supple:before {
    content: ""
}

.fa-surprise:before {
    content: ""
}

.fa-suse:before {
    content: ""
}

.fa-swatchbook:before {
    content: ""
}

.fa-swift:before {
    content: ""
}

.fa-swimmer:before {
    content: ""
}

.fa-swimming-pool:before {
    content: ""
}

.fa-symfony:before {
    content: ""
}

.fa-synagogue:before {
    content: ""
}

.fa-sync:before {
    content: ""
}

.fa-sync-alt:before {
    content: ""
}

.fa-syringe:before {
    content: ""
}

.fa-table:before {
    content: ""
}

.fa-table-tennis:before {
    content: ""
}

.fa-tablet:before {
    content: ""
}

.fa-tablet-alt:before {
    content: ""
}

.fa-tablets:before {
    content: ""
}

.fa-tachometer-alt:before {
    content: ""
}

.fa-tag:before {
    content: ""
}

.fa-tags:before {
    content: ""
}

.fa-tape:before {
    content: ""
}

.fa-tasks:before {
    content: ""
}

.fa-taxi:before {
    content: ""
}

.fa-teamspeak:before {
    content: ""
}

.fa-teeth:before {
    content: ""
}

.fa-teeth-open:before {
    content: ""
}

.fa-telegram:before {
    content: ""
}

.fa-telegram-plane:before {
    content: ""
}

.fa-temperature-high:before {
    content: ""
}

.fa-temperature-low:before {
    content: ""
}

.fa-tencent-weibo:before {
    content: ""
}

.fa-tenge:before {
    content: ""
}

.fa-terminal:before {
    content: ""
}

.fa-text-height:before {
    content: ""
}

.fa-text-width:before {
    content: ""
}

.fa-th:before {
    content: ""
}

.fa-th-large:before {
    content: ""
}

.fa-th-list:before {
    content: ""
}

.fa-the-red-yeti:before {
    content: ""
}

.fa-theater-masks:before {
    content: ""
}

.fa-themeco:before {
    content: ""
}

.fa-themeisle:before {
    content: ""
}

.fa-thermometer:before {
    content: ""
}

.fa-thermometer-empty:before {
    content: ""
}

.fa-thermometer-full:before {
    content: ""
}

.fa-thermometer-half:before {
    content: ""
}

.fa-thermometer-quarter:before {
    content: ""
}

.fa-thermometer-three-quarters:before {
    content: ""
}

.fa-think-peaks:before {
    content: ""
}

.fa-thumbs-down:before {
    content: ""
}

.fa-thumbs-up:before {
    content: ""
}

.fa-thumbtack:before {
    content: ""
}

.fa-ticket-alt:before {
    content: ""
}

.fa-tiktok:before {
    content: ""
}

.fa-times:before {
    content: ""
}

.fa-times-circle:before {
    content: ""
}

.fa-tint:before {
    content: ""
}

.fa-tint-slash:before {
    content: ""
}

.fa-tired:before {
    content: ""
}

.fa-toggle-off:before {
    content: ""
}

.fa-toggle-on:before {
    content: ""
}

.fa-toilet:before {
    content: ""
}

.fa-toilet-paper:before {
    content: ""
}

.fa-toilet-paper-slash:before {
    content: ""
}

.fa-toolbox:before {
    content: ""
}

.fa-tools:before {
    content: ""
}

.fa-tooth:before {
    content: ""
}

.fa-torah:before {
    content: ""
}

.fa-torii-gate:before {
    content: ""
}

.fa-tractor:before {
    content: ""
}

.fa-trade-federation:before {
    content: ""
}

.fa-trademark:before {
    content: ""
}

.fa-traffic-light:before {
    content: ""
}

.fa-trailer:before {
    content: ""
}

.fa-train:before {
    content: ""
}

.fa-tram:before {
    content: ""
}

.fa-transgender:before {
    content: ""
}

.fa-transgender-alt:before {
    content: ""
}

.fa-trash:before {
    content: ""
}

.fa-trash-alt:before {
    content: ""
}

.fa-trash-restore:before {
    content: ""
}

.fa-trash-restore-alt:before {
    content: ""
}

.fa-tree:before {
    content: ""
}

.fa-trello:before {
    content: ""
}

.fa-trophy:before {
    content: ""
}

.fa-truck:before {
    content: ""
}

.fa-truck-loading:before {
    content: ""
}

.fa-truck-monster:before {
    content: ""
}

.fa-truck-moving:before {
    content: ""
}

.fa-truck-pickup:before {
    content: ""
}

.fa-tshirt:before {
    content: ""
}

.fa-tty:before {
    content: ""
}

.fa-tumblr:before {
    content: ""
}

.fa-tumblr-square:before {
    content: ""
}

.fa-tv:before {
    content: ""
}

.fa-twitch:before {
    content: ""
}

.fa-twitter:before {
    content: ""
}

.fa-twitter-square:before {
    content: ""
}

.fa-typo3:before {
    content: ""
}

.fa-uber:before {
    content: ""
}

.fa-ubuntu:before {
    content: ""
}

.fa-uikit:before {
    content: ""
}

.fa-umbraco:before {
    content: ""
}

.fa-umbrella:before {
    content: ""
}

.fa-umbrella-beach:before {
    content: ""
}

.fa-uncharted:before {
    content: ""
}

.fa-underline:before {
    content: ""
}

.fa-undo:before {
    content: ""
}

.fa-undo-alt:before {
    content: ""
}

.fa-uniregistry:before {
    content: ""
}

.fa-unity:before {
    content: ""
}

.fa-universal-access:before {
    content: ""
}

.fa-university:before {
    content: ""
}

.fa-unlink:before {
    content: ""
}

.fa-unlock:before {
    content: ""
}

.fa-unlock-alt:before {
    content: ""
}

.fa-unsplash:before {
    content: ""
}

.fa-untappd:before {
    content: ""
}

.fa-upload:before {
    content: ""
}

.fa-ups:before {
    content: ""
}

.fa-usb:before {
    content: ""
}

.fa-user:before {
    content: ""
}

.fa-user-alt:before {
    content: ""
}

.fa-user-alt-slash:before {
    content: ""
}

.fa-user-astronaut:before {
    content: ""
}

.fa-user-check:before {
    content: ""
}

.fa-user-circle:before {
    content: ""
}

.fa-user-clock:before {
    content: ""
}

.fa-user-cog:before {
    content: ""
}

.fa-user-edit:before {
    content: ""
}

.fa-user-friends:before {
    content: ""
}

.fa-user-graduate:before {
    content: ""
}

.fa-user-injured:before {
    content: ""
}

.fa-user-lock:before {
    content: ""
}

.fa-user-md:before {
    content: ""
}

.fa-user-minus:before {
    content: ""
}

.fa-user-ninja:before {
    content: ""
}

.fa-user-nurse:before {
    content: ""
}

.fa-user-plus:before {
    content: ""
}

.fa-user-secret:before {
    content: ""
}

.fa-user-shield:before {
    content: ""
}

.fa-user-slash:before {
    content: ""
}

.fa-user-tag:before {
    content: ""
}

.fa-user-tie:before {
    content: ""
}

.fa-user-times:before {
    content: ""
}

.fa-users:before {
    content: ""
}

.fa-users-cog:before {
    content: ""
}

.fa-users-slash:before {
    content: ""
}

.fa-usps:before {
    content: ""
}

.fa-ussunnah:before {
    content: ""
}

.fa-utensil-spoon:before {
    content: ""
}

.fa-utensils:before {
    content: ""
}

.fa-vaadin:before {
    content: ""
}

.fa-vector-square:before {
    content: ""
}

.fa-venus:before {
    content: ""
}

.fa-venus-double:before {
    content: ""
}

.fa-venus-mars:before {
    content: ""
}

.fa-vest:before {
    content: ""
}

.fa-vest-patches:before {
    content: ""
}

.fa-viacoin:before {
    content: ""
}

.fa-viadeo:before {
    content: ""
}

.fa-viadeo-square:before {
    content: ""
}

.fa-vial:before {
    content: ""
}

.fa-vials:before {
    content: ""
}

.fa-viber:before {
    content: ""
}

.fa-video:before {
    content: ""
}

.fa-video-slash:before {
    content: ""
}

.fa-vihara:before {
    content: ""
}

.fa-vimeo:before {
    content: ""
}

.fa-vimeo-square:before {
    content: ""
}

.fa-vimeo-v:before {
    content: ""
}

.fa-vine:before {
    content: ""
}

.fa-virus:before {
    content: ""
}

.fa-virus-slash:before {
    content: ""
}

.fa-viruses:before {
    content: ""
}

.fa-vk:before {
    content: ""
}

.fa-vnv:before {
    content: ""
}

.fa-voicemail:before {
    content: ""
}

.fa-volleyball-ball:before {
    content: ""
}

.fa-volume-down:before {
    content: ""
}

.fa-volume-mute:before {
    content: ""
}

.fa-volume-off:before {
    content: ""
}

.fa-volume-up:before {
    content: ""
}

.fa-vote-yea:before {
    content: ""
}

.fa-vr-cardboard:before {
    content: ""
}

.fa-vuejs:before {
    content: ""
}

.fa-walking:before {
    content: ""
}

.fa-wallet:before {
    content: ""
}

.fa-warehouse:before {
    content: ""
}

.fa-watchman-monitoring:before {
    content: ""
}

.fa-water:before {
    content: ""
}

.fa-wave-square:before {
    content: ""
}

.fa-waze:before {
    content: ""
}

.fa-weebly:before {
    content: ""
}

.fa-weibo:before {
    content: ""
}

.fa-weight:before {
    content: ""
}

.fa-weight-hanging:before {
    content: ""
}

.fa-weixin:before {
    content: ""
}

.fa-whatsapp:before {
    content: ""
}

.fa-whatsapp-square:before {
    content: ""
}

.fa-wheelchair:before {
    content: ""
}

.fa-whmcs:before {
    content: ""
}

.fa-wifi:before {
    content: ""
}

.fa-wikipedia-w:before {
    content: ""
}

.fa-wind:before {
    content: ""
}

.fa-window-close:before {
    content: ""
}

.fa-window-maximize:before {
    content: ""
}

.fa-window-minimize:before {
    content: ""
}

.fa-window-restore:before {
    content: ""
}

.fa-windows:before {
    content: ""
}

.fa-wine-bottle:before {
    content: ""
}

.fa-wine-glass:before {
    content: ""
}

.fa-wine-glass-alt:before {
    content: ""
}

.fa-wix:before {
    content: ""
}

.fa-wizards-of-the-coast:before {
    content: ""
}

.fa-wodu:before {
    content: ""
}

.fa-wolf-pack-battalion:before {
    content: ""
}

.fa-won-sign:before {
    content: ""
}

.fa-wordpress:before {
    content: ""
}

.fa-wordpress-simple:before {
    content: ""
}

.fa-wpbeginner:before {
    content: ""
}

.fa-wpexplorer:before {
    content: ""
}

.fa-wpforms:before {
    content: ""
}

.fa-wpressr:before {
    content: ""
}

.fa-wrench:before {
    content: ""
}

.fa-x-ray:before {
    content: ""
}

.fa-xbox:before {
    content: ""
}

.fa-xing:before {
    content: ""
}

.fa-xing-square:before {
    content: ""
}

.fa-y-combinator:before {
    content: ""
}

.fa-yahoo:before {
    content: ""
}

.fa-yammer:before {
    content: ""
}

.fa-yandex:before {
    content: ""
}

.fa-yandex-international:before {
    content: ""
}

.fa-yarn:before {
    content: ""
}

.fa-yelp:before {
    content: ""
}

.fa-yen-sign:before {
    content: ""
}

.fa-yin-yang:before {
    content: ""
}

.fa-yoast:before {
    content: ""
}

.fa-youtube:before {
    content: ""
}

.fa-youtube-square:before {
    content: ""
}

.fa-zhihu:before {
    content: ""
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

@font-face {
    font-display: block;
    font-family: Font Awesome\ 5 Brands;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/fa-brands-400.23f19bb08961f37aaf69.eot);
    src: url(/static/media/fa-brands-400.23f19bb08961f37aaf69.eot?#iefix) format("embedded-opentype"), url(/static/media/fa-brands-400.d878b0a6a1144760244f.woff2) format("woff2"), url(/static/media/fa-brands-400.2285773e6b4b172f07d9.woff) format("woff"), url(/static/media/fa-brands-400.527940b104eb2ea366c8.ttf) format("truetype"), url(/static/media/fa-brands-400.675f6734fc707ee98601.svg#fontawesome) format("svg")
}

.fab {
    font-family: Font Awesome\ 5 Brands
}

@font-face {
    font-display: block;
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/fa-regular-400.77206a6bb316fa0aded5.eot);
    src: url(/static/media/fa-regular-400.77206a6bb316fa0aded5.eot?#iefix) format("embedded-opentype"), url(/static/media/fa-regular-400.7a3337626410ca2f4071.woff2) format("woff2"), url(/static/media/fa-regular-400.bb58e57c48a3e911f15f.woff) format("woff"), url(/static/media/fa-regular-400.491974d108fe4002b2aa.ttf) format("truetype"), url(/static/media/fa-regular-400.0772874aec68f8e76656.svg#fontawesome) format("svg")
}

.fab,
.far {
    font-weight: 400
}

@font-face {
    font-display: block;
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 900;
    src: url(/static/media/fa-solid-900.9bbb245e67a133f6e486.eot);
    src: url(/static/media/fa-solid-900.9bbb245e67a133f6e486.eot?#iefix) format("embedded-opentype"), url(/static/media/fa-solid-900.1551f4f60c37af51121f.woff2) format("woff2"), url(/static/media/fa-solid-900.eeccf4f66002c6f2ba24.woff) format("woff"), url(/static/media/fa-solid-900.be9ee23c0c6390141475.ttf) format("truetype"), url(/static/media/fa-solid-900.45690f4345fd0e303e35.svg#fontawesome) format("svg")
}

.fa,
.far,
.fas {
    font-family: Font Awesome\ 5 Free
}

.fa,
.fas {
    font-weight: 900
}

/*!
* Bootstrap v5.0.0-beta3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: 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";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, #ffffff26, #fff0)
}

*,
:after,
:before {
    box-sizing: border-box
}

@media(prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #fff;
    color: #212529;
    font-family: 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;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

hr {
    background-color: currentColor;
    border: 0;
    color: inherit;
    margin: 1rem 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: 0
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media(min-width:1200px) {

    .h1,
    h1 {
        font-size: 2.5rem
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media(min-width:1200px) {

    .h2,
    h2 {
        font-size: 2rem
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media(min-width:1200px) {

    .h3,
    h3 {
        font-size: 1.75rem
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media(min-width:1200px) {

    .h4,
    h4 {
        font-size: 1.5rem
    }
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-bottom: 1rem;
    margin-top: 0
}

abbr[data-bs-original-title],
abbr[title] {
    cursor: help;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-bottom: 1rem;
    margin-top: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

.small,
small {
    font-size: .875em
}

.mark,
mark {
    background-color: #fcf8e3;
    padding: .2em
}

sub,
sup {
    font-size: .75em;
    line-height: 0;
    position: relative;
    vertical-align: initial
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    direction: ltr;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    font-size: .875em;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto
}

pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal
}

code {
    word-wrap: break-word;
    color: #d63384;
    font-size: .875em
}

a>code {
    color: inherit
}

kbd {
    background-color: #212529;
    border-radius: .2rem;
    color: #fff;
    font-size: .875em;
    padding: .2rem .4rem
}

kbd kbd {
    font-size: 1em;
    font-weight: 700;
    padding: 0
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    border-collapse: collapse;
    caption-side: bottom
}

caption {
    color: #6c757d;
    padding-bottom: .5rem;
    padding-top: .5rem;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

textarea {
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    float: left;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit;
    margin-bottom: .5rem;
    padding: 0;
    width: 100%
}

@media(min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    cursor: pointer;
    display: list-item
}

progress {
    vertical-align: initial
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media(min-width:1200px) {
    .display-1 {
        font-size: 5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media(min-width:1200px) {
    .display-2 {
        font-size: 4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media(min-width:1200px) {
    .display-3 {
        font-size: 4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media(min-width:1200px) {
    .display-4 {
        font-size: 3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media(min-width:1200px) {
    .display-5 {
        font-size: 3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media(min-width:1200px) {
    .display-6 {
        font-size: 2.5rem
    }
}

.list-inline,
.list-unstyled {
    list-style: none;
    padding-left: 0
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    font-size: 1.25rem;
    margin-bottom: 1rem
}

.blockquote>:last-child {
    margin-bottom: 0
}



.img-fluid,
.img-thumbnail {
    height: auto;
    max-width: 100%
}

.img-thumbnail {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    padding: .25rem
}

.figure {
    display: inline-block
}

.figure-img {
    line-height: 1;
    margin-bottom: .5rem
}

.figure-caption {
    color: #6c757d;
    font-size: .875em
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    margin-left: auto;
    margin-right: auto;
    padding-left: .75rem;
    padding-left: var(--bs-gutter-x, .75rem);
    padding-right: .75rem;
    padding-right: var(--bs-gutter-x, .75rem);
    width: 100%
}

@media(min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media(min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media(min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media(min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

@media(min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x)/-2);
    margin-right: calc(var(--bs-gutter-x)/-2);
    margin-top: calc(var(--bs-gutter-y)*-1)
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x)/2);
    padding-right: calc(var(--bs-gutter-x)/2);
    width: 100%
}

.col {
    flex: 1 0
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.3333333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.6666666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.3333333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.6666666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.6666666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.3333333333%
}

.offset-2 {
    margin-left: 16.6666666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.3333333333%
}

.offset-5 {
    margin-left: 41.6666666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.3333333333%
}

.offset-8 {
    margin-left: 66.6666666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.3333333333%
}

.offset-11 {
    margin-left: 91.6666666667%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media(min-width:576px) {
    .col-sm {
        flex: 1 0
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:768px) {
    .col-md {
        flex: 1 0
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.3333333333%
    }

    .offset-md-2 {
        margin-left: 16.6666666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.3333333333%
    }

    .offset-md-5 {
        margin-left: 41.6666666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.3333333333%
    }

    .offset-md-8 {
        margin-left: 66.6666666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.3333333333%
    }

    .offset-md-11 {
        margin-left: 91.6666666667%
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:992px) {
    .col-lg {
        flex: 1 0
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:1200px) {
    .col-xl {
        flex: 1 0
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media(min-width:1400px) {
    .col-xxl {
        flex: 1 0
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.3333333333%
    }

    .offset-xxl-2 {
        margin-left: 16.6666666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.3333333333%
    }

    .offset-xxl-5 {
        margin-left: 41.6666666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.3333333333%
    }

    .offset-xxl-8 {
        margin-left: 66.6666666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.3333333333%
    }

    .offset-xxl-11 {
        margin-left: 91.6666666667%
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.table {
    --bs-table-bg: #0000;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: #0000000d;
    --bs-table-active-color: #212529;
    --bs-table-active-bg: #0000001a;
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, .075);
    border-color: #dee2e6;
    color: #212529;
    margin-bottom: 1rem;
    vertical-align: top;
    width: 100%
}

.table>:not(caption)>*>* {
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    padding: .5rem
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: initial
}

.caption-top {
    caption-side: top
}

.table-sm>:not(caption)>*>* {
    padding: .25rem
}

.table-bordered>:not(caption)>* {
    border-width: 1px 0
}

.table-bordered>:not(caption)>*>* {
    border-width: 0 1px
}

.table-borderless>:not(caption)>*>* {
    border-bottom-width: 0
}

.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    border-color: #bacbe6;
    color: #000
}

.table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    border-color: #cbccce;
    color: #000
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    border-color: #bcd0c7;
    color: #000
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    border-color: #badce3;
    color: #000
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    border-color: #e6dbb9;
    color: #000
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    border-color: #dfc2c4;
    color: #000
}

.table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    border-color: #dfe0e1;
    color: #000
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    border-color: #373b3e;
    color: #fff
}

.table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto
}

@media(max-width:575.98px) {
    .table-responsive-sm {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto
    }
}

@media(max-width:767.98px) {
    .table-responsive-md {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto
    }
}

@media(max-width:991.98px) {
    .table-responsive-lg {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto
    }
}

@media(max-width:1199.98px) {
    .table-responsive-xl {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto
    }
}

@media(max-width:1399.98px) {
    .table-responsive-xxl {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto
    }
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    font-size: inherit;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: calc(.375rem + 1px);
    padding-top: calc(.375rem + 1px)
}

.col-form-label-lg {
    font-size: 1.25rem;
    padding-bottom: calc(.5rem + 1px);
    padding-top: calc(.5rem + 1px)
}

.col-form-label-sm {
    font-size: .875rem;
    padding-bottom: calc(.25rem + 1px);
    padding-top: calc(.25rem + 1px)
}

.form-text {
    color: #6c757d;
    font-size: .875em;
    margin-top: .25rem
}

.form-control {
    -webkit-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #212529;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%
}

@media(prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control:focus {
    background-color: #fff;
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem #0d6efd40;
    color: #212529;
    outline: 0
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    -webkit-margin-end: .75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    color: #212529;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    padding: .375rem .75rem;
    pointer-events: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }

    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    -webkit-margin-end: .75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    color: #212529;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    padding: .375rem .75rem;
    pointer-events: none;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-plaintext {
    background-color: #0000;
    border: solid #0000;
    border-width: 1px 0;
    color: #212529;
    display: block;
    line-height: 1.5;
    margin-bottom: 0;
    padding: .375rem 0;
    width: 100%
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-left: 0;
    padding-right: 0
}

.form-control-sm {
    border-radius: .2rem;
    font-size: .875rem;
    min-height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem
}

.form-control-sm::file-selector-button {
    -webkit-margin-end: .5rem;
    margin: -.25rem -.5rem;
    margin-inline-end: .5rem;
    padding: .25rem .5rem
}

.form-control-sm::-webkit-file-upload-button {
    -webkit-margin-end: .5rem;
    margin: -.25rem -.5rem;
    margin-inline-end: .5rem;
    padding: .25rem .5rem
}

.form-control-lg {
    border-radius: .3rem;
    font-size: 1.25rem;
    min-height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem
}

.form-control-lg::file-selector-button {
    -webkit-margin-end: 1rem;
    margin: -.5rem -1rem;
    margin-inline-end: 1rem;
    padding: .5rem 1rem
}

.form-control-lg::-webkit-file-upload-button {
    -webkit-margin-end: 1rem;
    margin: -.5rem -1rem;
    margin-inline-end: 1rem;
    padding: .5rem 1rem
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px)
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px)
}

.form-control-color {
    height: auto;
    max-width: 3rem;
    padding: .375rem
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control-color::-moz-color-swatch {
    border-radius: .25rem;
    height: 1.5em
}

.form-control-color::-webkit-color-swatch {
    border-radius: .25rem;
    height: 1.5em
}

.form-select {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%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-position: right .75rem center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #212529;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem 2.25rem .375rem .75rem;
    width: 100%
}

.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem #0d6efd40;
    outline: 0
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    background-image: none;
    padding-right: .75rem
}

.form-select:disabled {
    background-color: #e9ecef
}

.form-select:-moz-focusring {
    color: #0000;
    text-shadow: 0 0 0 #212529
}

.form-select-sm {
    font-size: .875rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    padding-top: .25rem
}

.form-select-lg {
    font-size: 1.25rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-top: .5rem
}

.form-check {
    display: block;
    margin-bottom: .125rem;
    min-height: 1.5rem;
    padding-left: 1.5em
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    color-adjust: exact;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #00000040;
    height: 1em;
    margin-top: .25em;
    -webkit-print-color-adjust: exact;
    vertical-align: top;
    width: 1em
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem #0d6efd40;
    outline: 0
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E")
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%23fff'/%3E%3C/svg%3E")
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3E%3C/svg%3E");
    border-color: #0d6efd
}

.form-check-input:disabled {
    filter: none;
    opacity: .5;
    pointer-events: none
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    opacity: .5
}

.form-switch {
    padding-left: 2.5em
}

.form-switch .form-check-input {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='rgba(0, 0, 0, 0.25)'/%3E%3C/svg%3E");
    background-position: 0;
    border-radius: 2em;
    margin-left: -2.5em;
    transition: background-position .15s ease-in-out;
    width: 2em
}

@media(prefers-reduced-motion:reduce) {
    .form-switch .form-check-input {
        transition: none
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%2386b7fe'/%3E%3C/svg%3E")
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
    background-position: 100%
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.btn-check {
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
    position: absolute
}

.btn-check:disabled+.btn,
.btn-check[disabled]+.btn {
    filter: none;
    opacity: .65;
    pointer-events: none
}

.form-range {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0000;
    height: 1.5rem;
    padding: 0;
    width: 100%
}

.form-range:focus {
    outline: 0
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40
}

.form-range::-moz-focus-outer {
    border: 0
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
    background-color: #dee2e6;
    border-color: #0000;
    border-radius: 1rem;
    color: #0000;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-range::-moz-range-thumb {
    appearance: none;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    height: 1rem;
    -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe
}

.form-range::-moz-range-track {
    background-color: #dee2e6;
    border-color: #0000;
    border-radius: 1rem;
    color: #0000;
    cursor: pointer;
    height: .5rem;
    width: 100%
}

.form-range:disabled {
    pointer-events: none
}

.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.form-floating {
    position: relative
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem .75rem
}

.form-floating>label {
    border: 1px solid #0000;
    height: 100%;
    left: 0;
    padding: 1rem .75rem;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .form-floating>label {
        transition: none
    }
}

.form-floating>.form-control::placeholder {
    color: #0000
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-control:-webkit-autofill {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-select {
    padding-bottom: .625rem;
    padding-top: 1.625rem
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%
}

.input-group>.form-control,
.input-group>.form-select {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    width: 1%
}

.input-group>.form-control:focus,
.input-group>.form-select:focus {
    z-index: 3
}

.input-group .btn {
    position: relative;
    z-index: 2
}

.input-group .btn:focus {
    z-index: 3
}

.input-group-text {
    align-items: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #212529;
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    text-align: center;
    white-space: nowrap
}

.input-group-lg>.btn,
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
    border-radius: .3rem;
    font-size: 1.25rem;
    padding: .5rem 1rem
}

.input-group-sm>.btn,
.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text {
    border-radius: .2rem;
    font-size: .875rem;
    padding: .25rem .5rem
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
    padding-right: 3rem
}

.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px
}

.valid-feedback {
    color: #198754;
    display: none;
    font-size: .875em;
    margin-top: .25rem;
    width: 100%
}

.valid-tooltip {
    background-color: #198754e6;
    border-radius: .25rem;
    color: #fff;
    display: none;
    font-size: .875rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,
.was-validated .form-control:valid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #198754;
    padding-right: calc(1.5em + .75rem)
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem #19875440
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.form-select.is-valid,
.was-validated .form-select:valid {
    background-image: url("data:image/svg+xml;charset=utf-8,%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"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
    background-position: right .75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #198754;
    padding-right: 4.125rem
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .25rem #19875440
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border-color: #198754
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
    background-color: #198754
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem #19875440
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #198754
}

.form-check-inline .form-check-input~.valid-feedback {
    margin-left: .5em
}

.input-group .form-control.is-valid,
.input-group .form-select.is-valid,
.was-validated .input-group .form-control:valid,
.was-validated .input-group .form-select:valid {
    z-index: 3
}

.invalid-feedback {
    color: #dc3545;
    display: none;
    font-size: .875em;
    margin-top: .25rem;
    width: 100%
}

.invalid-tooltip {
    background-color: #dc3545e6;
    border-radius: .25rem;
    color: #fff;
    display: none;
    font-size: .875rem;
    margin-top: .1rem;
    max-width: 100%;
    padding: .25rem .5rem;
    position: absolute;
    top: 100%;
    z-index: 5
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-position: right calc(.375em + .1875rem) center;
    background-repeat: no-repeat;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem)
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem #dc354540
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
    padding-right: calc(1.5em + .75rem)
}

.form-select.is-invalid,
.was-validated .form-select:invalid {
    background-image: url("data:image/svg+xml;charset=utf-8,%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"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-position: right .75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
    border-color: #dc3545;
    padding-right: 4.125rem
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .25rem #dc354540
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
    border-color: #dc3545
}

.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
    background-color: #dc3545
}

.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem #dc354540
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-inline .form-check-input~.invalid-feedback {
    margin-left: .5em
}

.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
    z-index: 3
}

.btn {
    background-color: #0000;
    border: 1px solid #0000;
    border-radius: .25rem;
    color: #212529;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem;
    text-align: center;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle
}

@media(prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: 0 0 0 .25rem #0d6efd40;
    outline: 0
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    opacity: .65;
    pointer-events: none
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff
}

.btn-check:focus+.btn-primary,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: #fff
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    box-shadow: 0 0 0 .25rem #3184fd80
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    background-color: #0a58ca;
    border-color: #0a53be;
    color: #fff
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #3184fd80
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus,
.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
    color: #fff
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    box-shadow: 0 0 0 .25rem #828a9180
}

.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
    background-color: #565e64;
    border-color: #51585e;
    color: #fff
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #828a9180
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
    color: #fff
}

.btn-check:focus+.btn-success,
.btn-success:focus,
.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
    color: #fff
}

.btn-check:focus+.btn-success,
.btn-success:focus {
    box-shadow: 0 0 0 .25rem #3c996e80
}

.btn-check:active+.btn-success,
.btn-check:checked+.btn-success,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle {
    background-color: #146c43;
    border-color: #13653f;
    color: #fff
}

.btn-check:active+.btn-success:focus,
.btn-check:checked+.btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #3c996e80
}

.btn-success.disabled,
.btn-success:disabled {
    background-color: #198754;
    border-color: #198754;
    color: #fff
}

.btn-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000
}

.btn-check:focus+.btn-info,
.btn-info:focus,
.btn-info:hover {
    background-color: #31d2f2;
    border-color: #25cff2;
    color: #000
}

.btn-check:focus+.btn-info,
.btn-info:focus {
    box-shadow: 0 0 0 .25rem #0baccc80
}

.btn-check:active+.btn-info,
.btn-check:checked+.btn-info,
.btn-info.active,
.btn-info:active,
.show>.btn-info.dropdown-toggle {
    background-color: #3dd5f3;
    border-color: #25cff2;
    color: #000
}

.btn-check:active+.btn-info:focus,
.btn-check:checked+.btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #0baccc80
}

.btn-info.disabled,
.btn-info:disabled {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000
}

.btn-check:focus+.btn-warning,
.btn-warning:focus,
.btn-warning:hover {
    background-color: #ffca2c;
    border-color: #ffc720;
    color: #000
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
    box-shadow: 0 0 0 .25rem #d9a40680
}

.btn-check:active+.btn-warning,
.btn-check:checked+.btn-warning,
.btn-warning.active,
.btn-warning:active,
.show>.btn-warning.dropdown-toggle {
    background-color: #ffcd39;
    border-color: #ffc720;
    color: #000
}

.btn-check:active+.btn-warning:focus,
.btn-check:checked+.btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #d9a40680
}

.btn-warning.disabled,
.btn-warning:disabled {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-check:focus+.btn-danger,
.btn-danger:focus,
.btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
    color: #fff
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
    box-shadow: 0 0 0 .25rem #e1536180
}

.btn-check:active+.btn-danger,
.btn-check:checked+.btn-danger,
.btn-danger.active,
.btn-danger:active,
.show>.btn-danger.dropdown-toggle {
    background-color: #b02a37;
    border-color: #a52834;
    color: #fff
}

.btn-check:active+.btn-danger:focus,
.btn-check:checked+.btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #e1536180
}

.btn-danger.disabled,
.btn-danger:disabled {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-light {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000
}

.btn-check:focus+.btn-light,
.btn-light:focus,
.btn-light:hover {
    background-color: #f9fafb;
    border-color: #f9fafb;
    color: #000
}

.btn-check:focus+.btn-light,
.btn-light:focus {
    box-shadow: 0 0 0 .25rem #d3d4d580
}

.btn-check:active+.btn-light,
.btn-check:checked+.btn-light,
.btn-light.active,
.btn-light:active,
.show>.btn-light.dropdown-toggle {
    background-color: #f9fafb;
    border-color: #f9fafb;
    color: #000
}

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #d3d4d580
}

.btn-light.disabled,
.btn-light:disabled {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000
}

.btn-dark {
    background-color: #212529;
    border-color: #212529;
    color: #fff
}

.btn-check:focus+.btn-dark,
.btn-dark:focus,
.btn-dark:hover {
    background-color: #1c1f23;
    border-color: #1a1e21;
    color: #fff
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    box-shadow: 0 0 0 .25rem #42464980
}

.btn-check:active+.btn-dark,
.btn-check:checked+.btn-dark,
.btn-dark.active,
.btn-dark:active,
.show>.btn-dark.dropdown-toggle {
    background-color: #1a1e21;
    border-color: #191c1f;
    color: #fff
}

.btn-check:active+.btn-dark:focus,
.btn-check:checked+.btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem #42464980
}

.btn-dark.disabled,
.btn-dark:disabled {
    background-color: #212529;
    border-color: #212529;
    color: #fff
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem #0d6efd80
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem #0d6efd80
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    background-color: #0000;
    color: #0d6efd
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .25rem #6c757d80
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff
}

.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
    box-shadow: 0 0 0 .25rem #6c757d80
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    background-color: #0000;
    color: #6c757d
}

.btn-outline-success {
    border-color: #198754;
    color: #198754
}

.btn-outline-success:hover {
    background-color: #198754;
    border-color: #198754;
    color: #fff
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
    box-shadow: 0 0 0 .25rem #19875480
}

.btn-check:active+.btn-outline-success,
.btn-check:checked+.btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
    background-color: #198754;
    border-color: #198754;
    color: #fff
}

.btn-check:active+.btn-outline-success:focus,
.btn-check:checked+.btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
    box-shadow: 0 0 0 .25rem #19875480
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    background-color: #0000;
    color: #198754
}

.btn-outline-info {
    border-color: #0dcaf0;
    color: #0dcaf0
}

.btn-outline-info:hover {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
    box-shadow: 0 0 0 .25rem #0dcaf080
}

.btn-check:active+.btn-outline-info,
.btn-check:checked+.btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000
}

.btn-check:active+.btn-outline-info:focus,
.btn-check:checked+.btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
    box-shadow: 0 0 0 .25rem #0dcaf080
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    background-color: #0000;
    color: #0dcaf0
}

.btn-outline-warning {
    border-color: #ffc107;
    color: #ffc107
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000
}

.btn-check:focus+.btn-outline-warning,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 .25rem #ffc10780
}

.btn-check:active+.btn-outline-warning,
.btn-check:checked+.btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000
}

.btn-check:active+.btn-outline-warning:focus,
.btn-check:checked+.btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
    box-shadow: 0 0 0 .25rem #ffc10780
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    background-color: #0000;
    color: #ffc107
}

.btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-check:focus+.btn-outline-danger,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 .25rem #dc354580
}

.btn-check:active+.btn-outline-danger,
.btn-check:checked+.btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff
}

.btn-check:active+.btn-outline-danger:focus,
.btn-check:checked+.btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
    box-shadow: 0 0 0 .25rem #dc354580
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    background-color: #0000;
    color: #dc3545
}

.btn-outline-light {
    border-color: #f8f9fa;
    color: #f8f9fa
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000
}

.btn-check:focus+.btn-outline-light,
.btn-outline-light:focus {
    box-shadow: 0 0 0 .25rem #f8f9fa80
}

.btn-check:active+.btn-outline-light,
.btn-check:checked+.btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #000
}

.btn-check:active+.btn-outline-light:focus,
.btn-check:checked+.btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
    box-shadow: 0 0 0 .25rem #f8f9fa80
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    background-color: #0000;
    color: #f8f9fa
}

.btn-outline-dark {
    border-color: #212529;
    color: #212529
}

.btn-outline-dark:hover {
    background-color: #212529;
    border-color: #212529;
    color: #fff
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 .25rem #21252980
}

.btn-check:active+.btn-outline-dark,
.btn-check:checked+.btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
    background-color: #212529;
    border-color: #212529;
    color: #fff
}

.btn-check:active+.btn-outline-dark:focus,
.btn-check:checked+.btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
    box-shadow: 0 0 0 .25rem #21252980
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    background-color: #0000;
    color: #212529
}

.btn-link {
    color: #0d6efd;
    font-weight: 400;
    text-decoration: underline
}

.btn-link:hover {
    color: #0a58ca
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d
}

.btn-group-lg>.btn,
.btn-lg {
    border-radius: .3rem;
    font-size: 1.25rem;
    padding: .5rem 1rem
}

.btn-group-sm>.btn,
.btn-sm {
    border-radius: .2rem;
    font-size: .875rem;
    padding: .25rem .5rem
}

.fade {
    transition: opacity .15s linear
}

@media(prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media(prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    border-bottom: 0;
    border-left: .3em solid #0000;
    border-right: .3em solid #0000;
    border-top: .3em solid;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #00000026;
    border-radius: .25rem;
    color: #212529;
    display: none;
    font-size: 1rem;
    list-style: none;
    margin: 0;
    min-width: 10rem;
    padding: .5rem 0;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1000
}

.dropdown-menu[data-bs-popper] {
    left: 0;
    margin-top: .125rem
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    left: 0;
    right: auto
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    left: auto;
    right: 0
}

@media(min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media(min-width:1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    bottom: 100%;
    margin-bottom: .125rem;
    margin-top: 0;
    top: auto
}

.dropup .dropdown-toggle:after {
    border-bottom: .3em solid;
    border-left: .3em solid #0000;
    border-right: .3em solid #0000;
    border-top: 0;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-menu {
    left: 100%;
    right: auto;
    top: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    margin-left: .125rem;
    margin-top: 0
}

.dropend .dropdown-toggle:after {
    border-bottom: .3em solid #0000;
    border-left: .3em solid;
    border-right: 0;
    border-top: .3em solid #0000;
    content: "";
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em
}

.dropend .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-toggle:after {
    vertical-align: 0
}

.dropstart .dropdown-menu {
    left: auto;
    right: 100%;
    top: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    margin-right: .125rem;
    margin-top: 0
}

.dropstart .dropdown-toggle:after {
    content: "";
    display: inline-block;
    display: none;
    margin-left: .255em;
    vertical-align: .255em
}

.dropstart .dropdown-toggle:before {
    border-bottom: .3em solid #0000;
    border-right: .3em solid;
    border-top: .3em solid #0000;
    content: "";
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em
}

.dropstart .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropstart .dropdown-toggle:before {
    vertical-align: 0
}

.dropdown-divider {
    border-top: 1px solid #00000026;
    height: 0;
    margin: .5rem 0;
    overflow: hidden
}

.dropdown-item {
    background-color: #0000;
    border: 0;
    clear: both;
    color: #212529;
    display: block;
    font-weight: 400;
    padding: .25rem 1rem;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    width: 100%
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #e9ecef;
    color: #1e2125
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    background-color: #0000;
    color: #adb5bd;
    pointer-events: none
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    color: #6c757d;
    display: block;
    font-size: .875rem;
    margin-bottom: 0;
    padding: .5rem 1rem;
    white-space: nowrap
}

.dropdown-item-text {
    color: #212529;
    display: block;
    padding: .25rem 1rem
}

.dropdown-menu-dark {
    background-color: #343a40;
    border-color: #00000026;
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    background-color: #ffffff26;
    color: #fff
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    background-color: #0d6efd;
    color: #fff
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd
}

.dropdown-menu-dark .dropdown-divider {
    border-color: #00000026
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd
}

.btn-group,
.btn-group-vertical {
    display: inline-flex;
    position: relative;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    flex: 1 1 auto;
    position: relative
}

.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:nth-child(n+3),
.btn-group>:not(.btn-check)+.btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.dropdown-toggle-split {
    padding-left: .5625rem;
    padding-right: .5625rem
}

.dropdown-toggle-split:after,
.dropend .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
    margin-left: 0
}

.dropstart .dropdown-toggle-split:before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-left: .375rem;
    padding-right: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-left: .75rem;
    padding-right: .75rem
}

.btn-group-vertical {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn~.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link.disabled {
    color: #6c757d;
    cursor: default;
    pointer-events: none
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    background: 0 0;
    border: 1px solid #0000;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    margin-bottom: -1px
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate
}

.nav-tabs .nav-link.disabled {
    background-color: #0000;
    border-color: #0000;
    color: #6c757d
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    color: #495057
}

.nav-tabs .dropdown-menu {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -1px
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #0d6efd
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: .5rem;
    padding-top: .5rem;
    position: relative
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    align-items: center;
    display: flex;
    flex-wrap: inherit;
    justify-content: space-between
}

.navbar-brand {
    font-size: 1.25rem;
    margin-right: 1rem;
    padding-bottom: .3125rem;
    padding-top: .3125rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0
}

.navbar-nav .dropdown-menu {
    position: static
}

.navbar-text {
    padding-bottom: .5rem;
    padding-top: .5rem
}

.navbar-collapse {
    align-items: center;
    flex-basis: 100%;
    flex-grow: 1
}

.navbar-toggler {
    background-color: #0000;
    border: 1px solid #0000;
    border-radius: .25rem;
    font-size: 1.25rem;
    line-height: 1;
    padding: .25rem .75rem;
    transition: box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .25rem;
    outline: 0;
    text-decoration: none
}

.navbar-toggler-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    height: 1.5em;
    vertical-align: middle;
    width: 1.5em
}

.navbar-nav-scroll {
    max-height: 75vh;
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto
}

@media(min-width:576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media(min-width:768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media(min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media(min-width:1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

@media(min-width:1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xxl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xxl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

.navbar-expand .navbar-nav {
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-left: .5rem;
    padding-right: .5rem
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: #000000e6
}

.navbar-light .navbar-nav .nav-link {
    color: #0000008c
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #000000b3
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: #0000004d
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: #000000e6
}

.navbar-light .navbar-toggler {
    border-color: #0000001a;
    color: #0000008c
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-light .navbar-text {
    color: #0000008c
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: #000000e6
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff8c
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffffffbf
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: #ffffff40
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    border-color: #ffffff1a;
    color: #ffffff8c
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-dark .navbar-text {
    color: #ffffff8c
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff
}

.card {
    word-wrap: break-word;
    background-clip: initial;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative
}

.card>hr {
    margin-left: 0;
    margin-right: 0
}

.card>.list-group {
    border-bottom: inherit;
    border-top: inherit
}

.card>.list-group:first-child {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    border-top-width: 0
}

.card>.list-group:last-child {
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-width: 0
}

.card>.card-header+.list-group,
 {
    border-top: 0
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem
}

.card-subtitle,
.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1rem
}

.card-header {
    background-color: #00000008;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: 0;
    padding: .5rem 1rem
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}



.card-header-tabs {
    border-bottom: 0;
    margin-bottom: -.5rem
}

.card-header-pills,
.card-header-tabs {
    margin-left: -.5rem;
    margin-right: -.5rem
}

.card-img-overlay {
    border-radius: calc(.25rem - 1px);
    bottom: 0;
    left: 0;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 0
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom {
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px)
}

.card-group>.card {
    margin-bottom: .75rem
}

@media(min-width:576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap
    }

    .card-group>.card {
        flex: 1 0;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        border-left: 0;
        margin-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-header,
    .card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) ,
    .card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-header,
    .card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) ,
    .card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }
}

.accordion-button {
    align-items: center;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    color: #212529;
    display: flex;
    font-size: 1rem;
    overflow-anchor: none;
    padding: 1rem 1.25rem;
    position: relative;
    text-align: left;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
    width: 100%
}

@media(prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    color: #0c63e4
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(180deg)
}

.accordion-button:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    content: "";
    flex-shrink: 0;
    height: 1.25rem;
    margin-left: auto;
    transition: transform .2s ease-in-out;
    width: 1.25rem
}

@media(prefers-reduced-motion:reduce) {
    .accordion-button:after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem #0d6efd40;
    outline: 0;
    z-index: 3
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: -1px
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.accordion-item:last-of-type {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    margin-bottom: 0
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px)
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-left: 0;
    border-radius: 0;
    border-right: 0
}

.accordion-flush .accordion-item:first-child {
    border-top: 0
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 1rem;
    padding: 0
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item:before {
    float: left;
    padding-right: .5rem
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    list-style: none;
    padding-left: 0
}

.page-link {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #0d6efd;
    display: block;
    position: relative;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .page-link {
        transition: none
    }
}

.page-link:hover {
    border-color: #dee2e6;
    z-index: 2
}

.page-link:focus,
.page-link:hover {
    background-color: #e9ecef;
    color: #0a58ca
}

.page-link:focus {
    box-shadow: 0 0 0 .25rem #0d6efd40;
    outline: 0;
    z-index: 3
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    z-index: 3
}

.page-item.disabled .page-link {
    background-color: #fff;
    border-color: #dee2e6;
    color: #6c757d;
    pointer-events: none
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-bottom-left-radius: .25rem;
    border-top-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-bottom-right-radius: .25rem;
    border-top-right-radius: .25rem
}

.pagination-lg .page-link {
    font-size: 1.25rem;
    padding: .75rem 1.5rem
}

.pagination-lg .page-item:first-child .page-link {
    border-bottom-left-radius: .3rem;
    border-top-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-bottom-right-radius: .3rem;
    border-top-right-radius: .3rem
}

.pagination-sm .page-link {
    font-size: .875rem;
    padding: .25rem .5rem
}

.pagination-sm .page-item:first-child .page-link {
    border-bottom-left-radius: .2rem;
    border-top-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-bottom-right-radius: .2rem;
    border-top-right-radius: .2rem
}

.badge {
    border-radius: .25rem;
    color: #fff;
    display: inline-block;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    padding: .35em .65em;
    text-align: center;
    vertical-align: initial;
    white-space: nowrap
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.alert {
    border: 1px solid #0000;
    border-radius: .25rem;
    margin-bottom: 1rem;
    padding: 1rem;
    position: relative
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 3rem
}

.alert-dismissible .btn-close {
    padding: 1.25rem 1rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
}

.alert-primary {
    background-color: #cfe2ff;
    border-color: #b6d4fe;
    color: #084298
}

.alert-primary .alert-link {
    color: #06357a
}

.alert-secondary {
    background-color: #e2e3e5;
    border-color: #d3d6d8;
    color: #41464b
}

.alert-secondary .alert-link {
    color: #34383c
}

.alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132
}

.alert-success .alert-link {
    color: #0c4128
}

.alert-info {
    background-color: #cff4fc;
    border-color: #b6effb;
    color: #055160
}

.alert-info .alert-link {
    color: #04414d
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffecb5;
    color: #664d03
}

.alert-warning .alert-link {
    color: #523e02
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029
}

.alert-danger .alert-link {
    color: #6a1a21
}

.alert-light {
    background-color: #fefefe;
    border-color: #fdfdfe;
    color: #636464
}

.alert-light .alert-link {
    color: #4f5050
}

.alert-dark {
    background-color: #d3d3d4;
    border-color: #bcbebf;
    color: #141619
}

.alert-dark .alert-link {
    color: #101214
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    background-color: #e9ecef;
    border-radius: .25rem;
    font-size: .75rem;
    height: 1rem
}

.progress,
.progress-bar {
    display: flex;
    overflow: hidden
}

.progress-bar {
    background-color: #0d6efd;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: width .6s ease;
    white-space: nowrap
}

@media(prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, #ffffff26 25%, #0000 0, #0000 50%, #ffffff26 0, #ffffff26 75%, #0000 0, #0000);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite
}

@media(prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.list-group {
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-left: 0
}

.list-group-numbered {
    counter-reset: section;
    list-style-type: none
}

.list-group-numbered>li:before {
    content: counters(section, ".") ". ";
    counter-increment: section
}

.list-group-item-action {
    color: #495057;
    text-align: inherit;
    width: 100%
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
    z-index: 1
}

.list-group-item-action:active {
    background-color: #e9ecef;
    color: #212529
}

.list-group-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    color: #212529;
    display: block;
    padding: .5rem 1rem;
    position: relative;
    text-decoration: none
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit
}

.list-group-item.disabled,
.list-group-item:disabled {
    background-color: #fff;
    color: #6c757d;
    pointer-events: none
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    z-index: 2
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    border-top-width: 1px;
    margin-top: -1px
}

.list-group-horizontal {
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: .25rem
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-left-width: 0;
    border-top-width: 1px
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    border-left-width: 1px;
    margin-left: -1px
}

@media(min-width:576px) {
    .list-group-horizontal-sm {
        flex-direction: row
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: .25rem
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: 1px
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        border-left-width: 1px;
        margin-left: -1px
    }
}

@media(min-width:768px) {
    .list-group-horizontal-md {
        flex-direction: row
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: .25rem
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: 1px
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        border-left-width: 1px;
        margin-left: -1px
    }
}

@media(min-width:992px) {
    .list-group-horizontal-lg {
        flex-direction: row
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: .25rem
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: 1px
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        border-left-width: 1px;
        margin-left: -1px
    }
}

@media(min-width:1200px) {
    .list-group-horizontal-xl {
        flex-direction: row
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: .25rem
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: 1px
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        border-left-width: 1px;
        margin-left: -1px
    }
}

@media(min-width:1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row
    }

    .list-group-horizontal-xxl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xxl>.list-group-item:last-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: .25rem
    }

    .list-group-horizontal-xxl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item {
        border-left-width: 0;
        border-top-width: 1px
    }

    .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
        border-left-width: 1px;
        margin-left: -1px
    }
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    background-color: #cfe2ff;
    color: #084298
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    background-color: #bacbe6;
    color: #084298
}

.list-group-item-primary.list-group-item-action.active {
    background-color: #084298;
    border-color: #084298;
    color: #fff
}

.list-group-item-secondary {
    background-color: #e2e3e5;
    color: #41464b
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    background-color: #cbccce;
    color: #41464b
}

.list-group-item-secondary.list-group-item-action.active {
    background-color: #41464b;
    border-color: #41464b;
    color: #fff
}

.list-group-item-success {
    background-color: #d1e7dd;
    color: #0f5132
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    background-color: #bcd0c7;
    color: #0f5132
}

.list-group-item-success.list-group-item-action.active {
    background-color: #0f5132;
    border-color: #0f5132;
    color: #fff
}

.list-group-item-info {
    background-color: #cff4fc;
    color: #055160
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    background-color: #badce3;
    color: #055160
}

.list-group-item-info.list-group-item-action.active {
    background-color: #055160;
    border-color: #055160;
    color: #fff
}

.list-group-item-warning {
    background-color: #fff3cd;
    color: #664d03
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    background-color: #e6dbb9;
    color: #664d03
}

.list-group-item-warning.list-group-item-action.active {
    background-color: #664d03;
    border-color: #664d03;
    color: #fff
}

.list-group-item-danger {
    background-color: #f8d7da;
    color: #842029
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    background-color: #dfc2c4;
    color: #842029
}

.list-group-item-danger.list-group-item-action.active {
    background-color: #842029;
    border-color: #842029;
    color: #fff
}

.list-group-item-light {
    background-color: #fefefe;
    color: #636464
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    background-color: #e5e5e5;
    color: #636464
}

.list-group-item-light.list-group-item-action.active {
    background-color: #636464;
    border-color: #636464;
    color: #fff
}

.list-group-item-dark {
    background-color: #d3d3d4;
    color: #141619
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    background-color: #bebebf;
    color: #141619
}

.list-group-item-dark.list-group-item-action.active {
    background-color: #141619;
    border-color: #141619;
    color: #fff
}

.btn-close {
    background: #0000 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    box-sizing: initial;
    color: #000;
    height: 1em;
    opacity: .5;
    padding: .25em;
    width: 1em
}

.btn-close:hover {
    color: #000;
    opacity: .75;
    text-decoration: none
}

.btn-close:focus {
    box-shadow: 0 0 0 .25rem #0d6efd40;
    opacity: 1;
    outline: 0
}

.btn-close.disabled,
.btn-close:disabled {
    opacity: .25;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.toast {
    background-clip: padding-box;
    background-color: #ffffffd9;
    border: 1px solid #0000001a;
    border-radius: .25rem;
    box-shadow: 0 .5rem 1rem #00000026;
    font-size: .875rem;
    max-width: 100%;
    pointer-events: auto;
    width: 350px
}

.toast:not(.showing):not(.show) {
    opacity: 0
}

.toast.hide {
    display: none
}

.toast-container {
    max-width: 100%;
    pointer-events: none;
    width: -webkit-max-content;
    width: max-content
}

.toast-container>:not(:last-child) {
    margin-bottom: .75rem
}

.toast-header {
    align-items: center;
    background-clip: padding-box;
    background-color: #ffffffd9;
    border-bottom: 1px solid #0000000d;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    color: #6c757d;
    display: flex;
    padding: .5rem .75rem
}

.toast-header .btn-close {
    margin-left: .75rem;
    margin-right: -.375rem
}

.toast-body {
    word-wrap: break-word;
    padding: .75rem
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1060
}

.modal-dialog {
    margin: .5rem;
    pointer-events: none;
    position: relative;
    width: auto
}

.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform .3s ease-out
}

@media(prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    align-items: center;
    display: flex;
    min-height: calc(100% - 1rem)
}

.modal-content {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #0003;
    border-radius: .3rem;
    display: flex;
    flex-direction: column;
    outline: 0;
    pointer-events: auto;
    position: relative;
    width: 100%
}

.modal-backdrop {
    background-color: #000;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1050
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    padding: 1rem
}

.modal-header .btn-close {
    margin: -.5rem -.5rem -.5rem auto;
    padding: .5rem
}

.modal-title {
    line-height: 1.5;
    margin-bottom: 0
}

.modal-body {
    flex: 1 1 auto;
    padding: 1rem;
    position: relative
}




.modal-scrollbar-measure {
    height: 50px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px
}

@media(min-width:576px) {
    .modal-dialog {
        margin: 1.75rem auto;
        max-width: 500px
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media(min-width:992px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px
    }
}

@media(min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    height: 100%;
    margin: 0;
    max-width: none;
    width: 100vw
}

.modal-fullscreen .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%
}

.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

.modal-fullscreen {
    border-radius: 0
}

@media(max-width:575.98px) {
    .modal-fullscreen-sm-down {
        height: 100%;
        margin: 0;
        max-width: none;
        width: 100vw
    }

    .modal-fullscreen-sm-down .modal-content {
        border: 0;
        border-radius: 0;
        height: 100%
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-sm-down  {
        border-radius: 0
    }
}

@media(max-width:767.98px) {
    .modal-fullscreen-md-down {
        height: 100%;
        margin: 0;
        max-width: none;
        width: 100vw
    }

    .modal-fullscreen-md-down .modal-content {
        border: 0;
        border-radius: 0;
        height: 100%
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-md-down  {
        border-radius: 0
    }
}

@media(max-width:991.98px) {
    .modal-fullscreen-lg-down {
        height: 100%;
        margin: 0;
        max-width: none;
        width: 100vw
    }

    .modal-fullscreen-lg-down .modal-content {
        border: 0;
        border-radius: 0;
        height: 100%
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-lg-down {
        border-radius: 0
    }
}

@media(max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        height: 100%;
        margin: 0;
        max-width: none;
        width: 100vw
    }

    .modal-fullscreen-xl-down .modal-content {
        border: 0;
        border-radius: 0;
        height: 100%
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xl-down  {
        border-radius: 0
    }
}

@media(max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        height: 100%;
        margin: 0;
        max-width: none;
        width: 100vw
    }

    .modal-fullscreen-xxl-down .modal-content {
        border: 0;
        border-radius: 0;
        height: 100%
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xxl-down {
        border-radius: 0
    }
}

.tooltip {
    word-wrap: break-word;
    display: block;
    font-family: 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;
    font-family: var(--bs-font-sans-serif);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    z-index: 1080
}

.tooltip.show {
    opacity: .9
}

.tooltip .tooltip-arrow {
    display: block;
    height: .4rem;
    position: absolute;
    width: .8rem
}

.tooltip .tooltip-arrow:before {
    border-color: #0000;
    border-style: solid;
    content: "";
    position: absolute
}

.bs-tooltip-auto[data-popper-placement^=top],
.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow {
    bottom: 0
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before,
.bs-tooltip-top .tooltip-arrow:before {
    border-top-color: #000;
    border-width: .4rem .4rem 0;
    top: -1px
}

.bs-tooltip-auto[data-popper-placement^=right],
.bs-tooltip-end {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
    height: .8rem;
    left: 0;
    width: .4rem
}

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before,
.bs-tooltip-end .tooltip-arrow:before {
    border-right-color: #000;
    border-width: .4rem .4rem .4rem 0;
    right: -1px
}

.bs-tooltip-auto[data-popper-placement^=bottom],
.bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow {
    top: 0
}

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before,
.bs-tooltip-bottom .tooltip-arrow:before {
    border-bottom-color: #000;
    border-width: 0 .4rem .4rem;
    bottom: -1px
}

.bs-tooltip-auto[data-popper-placement^=left],
.bs-tooltip-start {
    padding: 0 .4rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow {
    height: .8rem;
    right: 0;
    width: .4rem
}

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before,
.bs-tooltip-start .tooltip-arrow:before {
    border-left-color: #000;
    border-width: .4rem 0 .4rem .4rem;
    left: -1px
}

.tooltip-inner {
    background-color: #000;
    border-radius: .25rem;
    color: #fff;
    max-width: 200px;
    padding: .25rem .5rem;
    text-align: center
}

.popover {
    word-wrap: break-word;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #0003;
    border-radius: .3rem;
    display: block;
    font-family: 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;
    font-family: var(--bs-font-sans-serif);
    font-size: .875rem;
    font-style: normal;
    font-weight: 400;
    left: 0;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.5;
    max-width: 276px;
    position: absolute;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    top: 0;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    z-index: 1070
}

.popover .popover-arrow {
    display: block;
    height: .5rem;
    position: absolute;
    width: 1rem
}

.popover .popover-arrow:after,
.popover .popover-arrow:before {
    border-color: #0000;
    border-style: solid;
    content: "";
    display: block;
    position: absolute
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,
.bs-popover-top>.popover-arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:before,
.bs-popover-top>.popover-arrow:before {
    border-top-color: #00000040;
    border-width: .5rem .5rem 0;
    bottom: 0
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow:after,
.bs-popover-top>.popover-arrow:after {
    border-top-color: #fff;
    border-width: .5rem .5rem 0;
    bottom: 1px
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,
.bs-popover-end>.popover-arrow {
    height: 1rem;
    left: calc(-.5rem - 1px);
    width: .5rem
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:before,
.bs-popover-end>.popover-arrow:before {
    border-right-color: #00000040;
    border-width: .5rem .5rem .5rem 0;
    left: 0
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow:after,
.bs-popover-end>.popover-arrow:after {
    border-right-color: #fff;
    border-width: .5rem .5rem .5rem 0;
    left: 1px
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,
.bs-popover-bottom>.popover-arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:before,
.bs-popover-bottom>.popover-arrow:before {
    border-bottom-color: #00000040;
    border-width: 0 .5rem .5rem;
    top: 0
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow:after,
.bs-popover-bottom>.popover-arrow:after {
    border-bottom-color: #fff;
    border-width: 0 .5rem .5rem;
    top: 1px
}

.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before,
.bs-popover-bottom .popover-header:before {
    border-bottom: 1px solid #f0f0f0;
    content: "";
    display: block;
    left: 50%;
    margin-left: -.5rem;
    position: absolute;
    top: 0;
    width: 1rem
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,
.bs-popover-start>.popover-arrow {
    height: 1rem;
    right: calc(-.5rem - 1px);
    width: .5rem
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:before,
.bs-popover-start>.popover-arrow:before {
    border-left-color: #00000040;
    border-width: .5rem 0 .5rem .5rem;
    right: 0
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow:after,
.bs-popover-start>.popover-arrow:after {
    border-left-color: #fff;
    border-width: .5rem 0 .5rem .5rem;
    right: 1px
}

.popover-header {
    background-color: #f0f0f0;
    border-bottom: 1px solid #d8d8d8;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    font-size: 1rem;
    margin-bottom: 0;
    padding: .5rem 1rem
}

.popover-header:empty {
    display: none
}

.popover-body {
    color: #212529;
    padding: 1rem
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    overflow: hidden;
    position: relative;
    width: 100%
}

.carousel-inner:after {
    clear: both;
    content: "";
    display: block
}

.carousel-item {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
    float: left;
    margin-right: -100%;
    position: relative;
    transition: transform .6s ease-in-out;
    width: 100%
}

@media(prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transform: none;
    transition-property: opacity
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    opacity: 0;
    transition: opacity 0s .6s;
    z-index: 0
}

@media(prefers-reduced-motion:reduce) {

    .carousel-fade .active.carousel-item-end,
    .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,
.carousel-control-prev {
    align-items: center;
    background: 0 0;
    border: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    opacity: .5;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity .15s ease;
    width: 15%;
    z-index: 1
}

@media(prefers-reduced-motion:reduce) {

    .carousel-control-next,
    .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    opacity: .9;
    outline: 0;
    text-decoration: none
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 2rem;
    width: 2rem
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")
}

.carousel-indicators {
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    list-style: none;
    margin-bottom: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    padding: 0;
    position: absolute;
    right: 0;
    z-index: 2
}

.carousel-indicators [data-bs-target] {
    background-clip: padding-box;
    background-color: #fff;
    border: 0;
    border-bottom: 10px solid #0000;
    border-top: 10px solid #0000;
    box-sizing: initial;
    cursor: pointer;
    flex: 0 1 auto;
    height: 3px;
    margin-left: 3px;
    margin-right: 3px;
    opacity: .5;
    padding: 0;
    text-indent: -999px;
    transition: opacity .6s ease;
    width: 30px
}

@media(prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    bottom: 1.25rem;
    color: #fff;
    left: 15%;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    position: absolute;
    right: 15%;
    text-align: center
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@keyframes spinner-border {
    to {
        transform: rotate(1turn)
    }
}

.spinner-border {
    animation: spinner-border .75s linear infinite;
    border: .25em solid;
    border-radius: 50%;
    border-right: .25em solid #0000;
    display: inline-block;
    height: 2rem;
    vertical-align: text-bottom;
    width: 2rem
}

.spinner-border-sm {
    border-width: .2em;
    height: 1rem;
    width: 1rem
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    animation: spinner-grow .75s linear infinite;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    height: 2rem;
    opacity: 0;
    vertical-align: text-bottom;
    width: 2rem
}

.spinner-grow-sm {
    height: 1rem;
    width: 1rem
}

@media(prefers-reduced-motion:reduce) {

    .spinner-border,
    .spinner-grow {
        animation-duration: 1.5s
    }
}

.offcanvas {
    background-clip: padding-box;
    background-color: #fff;
    bottom: 0;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    outline: 0;
    position: fixed;
    transition: transform .3s ease-in-out;
    visibility: hidden;
    z-index: 1040
}

@media(prefers-reduced-motion:reduce) {
    .offcanvas {
        transition: none
    }
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem
}

.offcanvas-header .btn-close {
    margin: -.5rem -.5rem -.5rem auto;
    padding: .5rem
}

.offcanvas-title {
    line-height: 1.5;
    margin-bottom: 0
}

.offcanvas-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem
}

.offcanvas-start {
    border-right: 1px solid #0003;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    width: 400px
}

.offcanvas-end {
    border-left: 1px solid #0003;
    right: 0;
    top: 0;
    transform: translateX(100%);
    width: 400px
}

.offcanvas-bottom {
    border-top: 1px solid #0003;
    height: 30vh;
    left: 0;
    max-height: 100%;
    right: 0;
    transform: translateY(100%)
}

.offcanvas.show {
    transform: none
}

.offcanvas-backdrop:before {
    background-color: #00000080;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1039
}

.clearfix:after {
    clear: both;
    content: "";
    display: block
}

.link-primary {
    color: #0d6efd
}

.link-primary:focus,
.link-primary:hover {
    color: #0a58ca
}

.link-secondary {
    color: #6c757d
}

.link-secondary:focus,
.link-secondary:hover {
    color: #565e64
}

.link-success {
    color: #198754
}

.link-success:focus,
.link-success:hover {
    color: #146c43
}

.link-info {
    color: #0dcaf0
}

.link-info:focus,
.link-info:hover {
    color: #3dd5f3
}

.link-warning {
    color: #ffc107
}

.link-warning:focus,
.link-warning:hover {
    color: #ffcd39
}

.link-danger {
    color: #dc3545
}

.link-danger:focus,
.link-danger:hover {
    color: #b02a37
}

.link-light {
    color: #f8f9fa
}

.link-light:focus,
.link-light:hover {
    color: #f9fafb
}

.link-dark {
    color: #212529
}

.link-dark:focus,
.link-dark:hover {
    color: #1a1e21
}

.ratio {
    position: relative;
    width: 100%
}

.ratio:before {
    content: "";
    display: block;
    padding-top: var(--bs-aspect-ratio)
}

.ratio>* {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.85714%
}

.fixed-top {
    top: 0
}

.fixed-bottom,
.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1030
}

.fixed-bottom {
    bottom: 0
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020
}

@media(min-width:576px) {
    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media(min-width:768px) {
    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media(min-width:992px) {
    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media(min-width:1200px) {
    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media(min-width:1400px) {
    .sticky-xxl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important
}

.stretched-link:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.align-baseline {
    vertical-align: initial !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: left !important
}

.float-end {
    float: right !important
}

.float-none {
    float: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-visible {
    overflow: visible !important
}

.overflow-scroll {
    overflow: scroll !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem #00000026 !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    left: 0 !important
}

.start-50 {
    left: 50% !important
}

.start-100 {
    left: 100% !important
}

.end-0 {
    right: 0 !important
}

.end-50 {
    right: 50% !important
}

.end-100 {
    right: 100% !important
}

.translate-middle {
    transform: translate(-50%, -50%) !important
}

.translate-middle-x {
    transform: translateX(-50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-right: 1px solid #dee2e6 !important
}

.border-end-0 {
    border-right: 0 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-left: 1px solid #dee2e6 !important
}

.border-start-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #0d6efd !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #198754 !important
}

.border-info {
    border-color: #0dcaf0 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #212529 !important
}

.border-white {
    border-color: #fff !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important
}

.mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.my-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.my-1 {
    margin-bottom: .25rem !important;
    margin-top: .25rem !important
}

.my-2 {
    margin-bottom: .5rem !important;
    margin-top: .5rem !important
}

.my-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important
}

.my-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important
}

.my-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important
}

.my-auto {
    margin-bottom: auto !important;
    margin-top: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important
}

.px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important
}

.py-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.py-1 {
    padding-bottom: .25rem !important;
    padding-top: .25rem !important
}

.py-2 {
    padding-bottom: .5rem !important;
    padding-top: .5rem !important
}

.py-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important
}

.py-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important
}

.py-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.font-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
    font-family: var(--bs-font-monospace) !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fst-italic {
    font-style: italic !important
}

.fst-normal {
    font-style: normal !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.text-primary {
    color: #0d6efd !important
}

.text-secondary {
    color: #6c757d !important
}

.text-success {
    color: #198754 !important
}

.text-info {
    color: #0dcaf0 !important
}

.text-warning {
    color: #ffc107 !important
}

.text-danger {
    color: #dc3545 !important
}

.text-light {
    color: #f8f9fa !important
}

.text-dark {
    color: #212529 !important
}

.text-white {
    color: #fff !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: #00000080 !important
}

.text-white-50 {
    color: #ffffff80 !important
}

.text-reset {
    color: inherit !important
}

.bg-primary {
    background-color: #0d6efd !important
}

.bg-secondary {
    background-color: #6c757d !important
}

.bg-success {
    background-color: #198754 !important
}

.bg-info {
    background-color: #0dcaf0 !important
}

.bg-warning {
    background-color: #ffc107 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

.bg-dark {
    background-color: #212529 !important
}

.bg-body,
.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: #0000 !important
}

.bg-gradient {
    background-image: linear-gradient(180deg, #ffffff26, #fff0) !important;
    background-image: var(--bs-gradient) !important
}

.user-select-all {
    -webkit-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    user-select: none !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important
}

.rounded-end,
.rounded-top {
    border-top-right-radius: .25rem !important
}

.rounded-bottom,
.rounded-end {
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom,
.rounded-start {
    border-bottom-left-radius: .25rem !important
}

.rounded-start {
    border-top-left-radius: .25rem !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media(min-width:576px) {
    .float-sm-start {
        float: left !important
    }

    .float-sm-end {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-sm-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-sm-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-sm-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-sm-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-sm-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-sm-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-sm-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-sm-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-sm-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-sm-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-right: 0 !important
    }

    .me-sm-1 {
        margin-right: .25rem !important
    }

    .me-sm-2 {
        margin-right: .5rem !important
    }

    .me-sm-3 {
        margin-right: 1rem !important
    }

    .me-sm-4 {
        margin-right: 1.5rem !important
    }

    .me-sm-5 {
        margin-right: 3rem !important
    }

    .me-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-left: 0 !important
    }

    .ms-sm-1 {
        margin-left: .25rem !important
    }

    .ms-sm-2 {
        margin-left: .5rem !important
    }

    .ms-sm-3 {
        margin-left: 1rem !important
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important
    }

    .ms-sm-5 {
        margin-left: 3rem !important
    }

    .ms-sm-auto {
        margin-left: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-sm-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-sm-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-sm-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-sm-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-sm-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-sm-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-sm-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-sm-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-sm-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-right: 0 !important
    }

    .pe-sm-1 {
        padding-right: .25rem !important
    }

    .pe-sm-2 {
        padding-right: .5rem !important
    }

    .pe-sm-3 {
        padding-right: 1rem !important
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important
    }

    .pe-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-left: 0 !important
    }

    .ps-sm-1 {
        padding-left: .25rem !important
    }

    .ps-sm-2 {
        padding-left: .5rem !important
    }

    .ps-sm-3 {
        padding-left: 1rem !important
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important
    }

    .ps-sm-5 {
        padding-left: 3rem !important
    }

    .text-sm-start {
        text-align: left !important
    }

    .text-sm-end {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media(min-width:768px) {
    .float-md-start {
        float: left !important
    }

    .float-md-end {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-md-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-md-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-md-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-md-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-md-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-md-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-md-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-md-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-md-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-md-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-1 {
        margin-right: .25rem !important
    }

    .me-md-2 {
        margin-right: .5rem !important
    }

    .me-md-3 {
        margin-right: 1rem !important
    }

    .me-md-4 {
        margin-right: 1.5rem !important
    }

    .me-md-5 {
        margin-right: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-1 {
        margin-left: .25rem !important
    }

    .ms-md-2 {
        margin-left: .5rem !important
    }

    .ms-md-3 {
        margin-left: 1rem !important
    }

    .ms-md-4 {
        margin-left: 1.5rem !important
    }

    .ms-md-5 {
        margin-left: 3rem !important
    }

    .ms-md-auto {
        margin-left: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-md-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-md-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-md-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-md-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-md-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-md-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-md-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-md-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-md-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-1 {
        padding-right: .25rem !important
    }

    .pe-md-2 {
        padding-right: .5rem !important
    }

    .pe-md-3 {
        padding-right: 1rem !important
    }

    .pe-md-4 {
        padding-right: 1.5rem !important
    }

    .pe-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-left: 0 !important
    }

    .ps-md-1 {
        padding-left: .25rem !important
    }

    .ps-md-2 {
        padding-left: .5rem !important
    }

    .ps-md-3 {
        padding-left: 1rem !important
    }

    .ps-md-4 {
        padding-left: 1.5rem !important
    }

    .ps-md-5 {
        padding-left: 3rem !important
    }

    .text-md-start {
        text-align: left !important
    }

    .text-md-end {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media(min-width:992px) {
    .float-lg-start {
        float: left !important
    }

    .float-lg-end {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-lg-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-lg-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-lg-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-lg-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-lg-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-lg-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-lg-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-lg-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-lg-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-lg-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .me-lg-1 {
        margin-right: .25rem !important
    }

    .me-lg-2 {
        margin-right: .5rem !important
    }

    .me-lg-3 {
        margin-right: 1rem !important
    }

    .me-lg-4 {
        margin-right: 1.5rem !important
    }

    .me-lg-5 {
        margin-right: 3rem !important
    }

    .me-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-left: 0 !important
    }

    .ms-lg-1 {
        margin-left: .25rem !important
    }

    .ms-lg-2 {
        margin-left: .5rem !important
    }

    .ms-lg-3 {
        margin-left: 1rem !important
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important
    }

    .ms-lg-5 {
        margin-left: 3rem !important
    }

    .ms-lg-auto {
        margin-left: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-lg-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-lg-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-lg-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-lg-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-lg-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-lg-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-lg-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-lg-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-lg-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-1 {
        padding-right: .25rem !important
    }

    .pe-lg-2 {
        padding-right: .5rem !important
    }

    .pe-lg-3 {
        padding-right: 1rem !important
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important
    }

    .pe-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-left: 0 !important
    }

    .ps-lg-1 {
        padding-left: .25rem !important
    }

    .ps-lg-2 {
        padding-left: .5rem !important
    }

    .ps-lg-3 {
        padding-left: 1rem !important
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important
    }

    .ps-lg-5 {
        padding-left: 3rem !important
    }

    .text-lg-start {
        text-align: left !important
    }

    .text-lg-end {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media(min-width:1200px) {
    .float-xl-start {
        float: left !important
    }

    .float-xl-end {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xl-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-xl-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-xl-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-xl-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-xl-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-xl-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-xl-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-right: 0 !important
    }

    .me-xl-1 {
        margin-right: .25rem !important
    }

    .me-xl-2 {
        margin-right: .5rem !important
    }

    .me-xl-3 {
        margin-right: 1rem !important
    }

    .me-xl-4 {
        margin-right: 1.5rem !important
    }

    .me-xl-5 {
        margin-right: 3rem !important
    }

    .me-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-left: 0 !important
    }

    .ms-xl-1 {
        margin-left: .25rem !important
    }

    .ms-xl-2 {
        margin-left: .5rem !important
    }

    .ms-xl-3 {
        margin-left: 1rem !important
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xl-5 {
        margin-left: 3rem !important
    }

    .ms-xl-auto {
        margin-left: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xl-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-xl-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-xl-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-xl-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-xl-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-xl-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-right: 0 !important
    }

    .pe-xl-1 {
        padding-right: .25rem !important
    }

    .pe-xl-2 {
        padding-right: .5rem !important
    }

    .pe-xl-3 {
        padding-right: 1rem !important
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-left: 0 !important
    }

    .ps-xl-1 {
        padding-left: .25rem !important
    }

    .ps-xl-2 {
        padding-left: .5rem !important
    }

    .ps-xl-3 {
        padding-left: 1rem !important
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xl-5 {
        padding-left: 3rem !important
    }

    .text-xl-start {
        text-align: left !important
    }

    .text-xl-end {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

@media(min-width:1400px) {
    .float-xxl-start {
        float: left !important
    }

    .float-xxl-end {
        float: right !important
    }

    .float-xxl-none {
        float: none !important
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: .25rem !important
    }

    .gap-xxl-2 {
        gap: .5rem !important
    }

    .gap-xxl-3 {
        gap: 1rem !important
    }

    .gap-xxl-4 {
        gap: 1.5rem !important
    }

    .gap-xxl-5 {
        gap: 3rem !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xxl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xxl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xxl-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important
    }

    .my-xxl-1 {
        margin-bottom: .25rem !important;
        margin-top: .25rem !important
    }

    .my-xxl-2 {
        margin-bottom: .5rem !important;
        margin-top: .5rem !important
    }

    .my-xxl-3 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important
    }

    .my-xxl-4 {
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important
    }

    .my-xxl-5 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important
    }

    .my-xxl-auto {
        margin-bottom: auto !important;
        margin-top: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-right: 0 !important
    }

    .me-xxl-1 {
        margin-right: .25rem !important
    }

    .me-xxl-2 {
        margin-right: .5rem !important
    }

    .me-xxl-3 {
        margin-right: 1rem !important
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important
    }

    .me-xxl-5 {
        margin-right: 3rem !important
    }

    .me-xxl-auto {
        margin-right: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-left: 0 !important
    }

    .ms-xxl-1 {
        margin-left: .25rem !important
    }

    .ms-xxl-2 {
        margin-left: .5rem !important
    }

    .ms-xxl-3 {
        margin-left: 1rem !important
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-left: 3rem !important
    }

    .ms-xxl-auto {
        margin-left: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xxl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xxl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xxl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xxl-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }

    .py-xxl-1 {
        padding-bottom: .25rem !important;
        padding-top: .25rem !important
    }

    .py-xxl-2 {
        padding-bottom: .5rem !important;
        padding-top: .5rem !important
    }

    .py-xxl-3 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important
    }

    .py-xxl-4 {
        padding-bottom: 1.5rem !important;
        padding-top: 1.5rem !important
    }

    .py-xxl-5 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-right: 0 !important
    }

    .pe-xxl-1 {
        padding-right: .25rem !important
    }

    .pe-xxl-2 {
        padding-right: .5rem !important
    }

    .pe-xxl-3 {
        padding-right: 1rem !important
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-right: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-left: 0 !important
    }

    .ps-xxl-1 {
        padding-left: .25rem !important
    }

    .ps-xxl-2 {
        padding-left: .5rem !important
    }

    .ps-xxl-3 {
        padding-left: 1rem !important
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-left: 3rem !important
    }

    .text-xxl-start {
        text-align: left !important
    }

    .text-xxl-end {
        text-align: right !important
    }

    .text-xxl-center {
        text-align: center !important
    }
}

@media(min-width:1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

@font-face {
    font-family: boxicons;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/boxicons.c324d2b5569fb2c20e5d.eot);
    src: url(/static/media/boxicons.c324d2b5569fb2c20e5d.eot) format("embedded-opentype"), url(/static/media/boxicons.af4cc70871df09d7cbb2.woff2) format("woff2"), url(/static/media/boxicons.6ee3db6f8674524d7716.woff) format("woff"), url(/static/media/boxicons.426af27b46d4c8a018df.ttf) format("truetype"), url(/static/media/boxicons.fff4a3904fd6c2139c5d.svg?#boxicons) format("svg")
}

.bx {
    font-feature-settings: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: boxicons !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-rendering: auto;
    text-transform: none
}

.bx-ul {
    list-style: none;
    margin-left: 2em;
    padding-left: 0
}

.bx-ul>li {
    position: relative
}

.bx-ul .bx {
    font-size: inherit;
    left: -2em;
    line-height: inherit;
    position: absolute;
    text-align: center;
    width: 2em
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(359deg)
    }
}

@keyframes burst {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    90% {
        opacity: 0;
        transform: scale(1.5)
    }
}

@keyframes flashing {
    0% {
        opacity: 1
    }

    45% {
        opacity: 0
    }

    90% {
        opacity: 1
    }
}

@keyframes fade-left {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    75% {
        opacity: 0;
        transform: translateX(-20px)
    }
}

@keyframes fade-right {
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    75% {
        opacity: 0;
        transform: translateX(20px)
    }
}

@keyframes fade-up {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    75% {
        opacity: 0;
        transform: translateY(-20px)
    }
}

@keyframes fade-down {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    75% {
        opacity: 0;
        transform: translateY(20px)
    }
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,
    20% {
        transform: scale3d(.95, .95, .95) rotate(-10deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scaleX(1) rotate(10deg)
    }

    40%,
    60%,
    80% {
        transform: rotate(-10deg)
    }

    to {
        transform: scaleX(1)
    }
}

.bx-spin,
.bx-spin-hover:hover {
    animation: spin 2s linear infinite
}

.bx-tada,
.bx-tada-hover:hover {
    animation: tada 1.5s ease infinite
}

.bx-flashing,
.bx-flashing-hover:hover {
    animation: flashing 1.5s linear infinite
}

.bx-burst,
.bx-burst-hover:hover {
    animation: burst 1.5s linear infinite
}

.bx-fade-up,
.bx-fade-up-hover:hover {
    animation: fade-up 1.5s linear infinite
}

.bx-fade-down,
.bx-fade-down-hover:hover {
    animation: fade-down 1.5s linear infinite
}

.bx-fade-left,
.bx-fade-left-hover:hover {
    animation: fade-left 1.5s linear infinite
}

.bx-fade-right,
.bx-fade-right-hover:hover {
    animation: fade-right 1.5s linear infinite
}

.bx-xs {
    font-size: 1rem !important
}

.bx-sm {
    font-size: 1.55rem !important
}

.bx-md {
    font-size: 2.25rem !important
}

.bx-lg {
    font-size: 3rem !important
}

.bx-fw {
    font-size: 1.2857142857em;
    height: .8em;
    line-height: .8em;
    margin-top: -.2em !important;
    vertical-align: middle;
    width: 1.2857142857em
}

.bx-pull-left {
    float: left;
    margin-right: .3em !important
}

.bx-pull-right {
    float: right;
    margin-left: .3em !important
}

.bx-rotate-90 {
    transform: rotate(90deg)
}

.bx-rotate-180 {
    transform: rotate(180deg)
}

.bx-rotate-270 {
    transform: rotate(270deg)
}

.bx-flip-horizontal {
    transform: scaleX(-1)
}

.bx-flip-vertical {
    transform: scaleY(-1)
}

.bx-border {
    border: .07em solid #0000001a;
    border-radius: .25em;
    padding: .25em
}

.bx-border-circle {
    border: .07em solid #0000001a;
    border-radius: 50%;
    padding: .25em
}

.bxl-500px:before {
    content: ""
}

.bxl-adobe:before {
    content: ""
}

.bxl-airbnb:before {
    content: ""
}

.bxl-algolia:before {
    content: ""
}

.bxl-amazon:before {
    content: ""
}

.bxl-android:before {
    content: ""
}

.bxl-angular:before {
    content: ""
}

.bxl-apple:before {
    content: ""
}

.bxl-audible:before {
    content: ""
}

.bxl-aws:before {
    content: ""
}

.bxl-baidu:before {
    content: ""
}

.bxl-behance:before {
    content: ""
}

.bxl-bing:before {
    content: ""
}

.bxl-bitcoin:before {
    content: ""
}

.bxl-blender:before {
    content: ""
}

.bxl-blogger:before {
    content: ""
}

.bxl-bootstrap:before {
    content: ""
}

.bxl-chrome:before {
    content: ""
}

.bxl-codepen:before {
    content: ""
}

.bxl-c-plus-plus:before {
    content: ""
}

.bxl-creative-commons:before {
    content: ""
}

.bxl-css3:before {
    content: ""
}

.bxl-dailymotion:before {
    content: ""
}

.bxl-deviantart:before {
    content: ""
}

.bxl-dev-to:before {
    content: ""
}

.bxl-digg:before {
    content: ""
}

.bxl-digitalocean:before {
    content: ""
}

.bxl-discord:before {
    content: ""
}

.bxl-discord-alt:before {
    content: ""
}

.bxl-discourse:before {
    content: ""
}

.bxl-django:before {
    content: ""
}

.bxl-docker:before {
    content: ""
}

.bxl-dribbble:before {
    content: ""
}

.bxl-dropbox:before {
    content: ""
}

.bxl-drupal:before {
    content: ""
}

.bxl-ebay:before {
    content: ""
}

.bxl-edge:before {
    content: ""
}

.bxl-etsy:before {
    content: ""
}

.bxl-facebook:before {
    content: ""
}

.bxl-facebook-circle:before {
    content: ""
}

.bxl-facebook-square:before {
    content: ""
}

.bxl-figma:before {
    content: ""
}

.bxl-firebase:before {
    content: ""
}

.bxl-firefox:before {
    content: ""
}

.bxl-flickr:before {
    content: ""
}

.bxl-flickr-square:before {
    content: ""
}

.bxl-flutter:before {
    content: ""
}

.bxl-foursquare:before {
    content: ""
}

.bxl-git:before {
    content: ""
}

.bxl-github:before {
    content: ""
}

.bxl-gitlab:before {
    content: ""
}

.bxl-google:before {
    content: ""
}

.bxl-google-cloud:before {
    content: ""
}

.bxl-google-plus:before {
    content: ""
}

.bxl-google-plus-circle:before {
    content: ""
}

.bxl-html5:before {
    content: ""
}

.bxl-imdb:before {
    content: ""
}

.bxl-instagram:before {
    content: ""
}

.bxl-instagram-alt:before {
    content: ""
}

.bxl-internet-explorer:before {
    content: ""
}

.bxl-invision:before {
    content: ""
}

.bxl-javascript:before {
    content: ""
}

.bxl-joomla:before {
    content: ""
}

.bxl-jquery:before {
    content: ""
}

.bxl-jsfiddle:before {
    content: ""
}

.bxl-kickstarter:before {
    content: ""
}

.bxl-kubernetes:before {
    content: ""
}

.bxl-less:before {
    content: ""
}

.bxl-linkedin:before {
    content: ""
}

.bxl-linkedin-square:before {
    content: ""
}

.bxl-magento:before {
    content: ""
}

.bxl-mailchimp:before {
    content: ""
}

.bxl-markdown:before {
    content: ""
}

.bxl-mastercard:before {
    content: ""
}

.bxl-mastodon:before {
    content: ""
}

.bxl-medium:before {
    content: ""
}

.bxl-medium-old:before {
    content: ""
}

.bxl-medium-square:before {
    content: ""
}

.bxl-messenger:before {
    content: ""
}

.bxl-microsoft:before {
    content: ""
}

.bxl-microsoft-teams:before {
    content: ""
}

.bxl-nodejs:before {
    content: ""
}

.bxl-ok-ru:before {
    content: ""
}

.bxl-opera:before {
    content: ""
}

.bxl-patreon:before {
    content: ""
}

.bxl-paypal:before {
    content: ""
}

.bxl-periscope:before {
    content: ""
}

.bxl-php:before {
    content: ""
}

.bxl-pinterest:before {
    content: ""
}

.bxl-pinterest-alt:before {
    content: ""
}

.bxl-play-store:before {
    content: ""
}

.bxl-pocket:before {
    content: ""
}

.bxl-product-hunt:before {
    content: ""
}

.bxl-python:before {
    content: ""
}

.bxl-quora:before {
    content: ""
}

.bxl-react:before {
    content: ""
}

.bxl-redbubble:before {
    content: ""
}

.bxl-reddit:before {
    content: ""
}

.bxl-redux:before {
    content: ""
}

.bxl-sass:before {
    content: ""
}

.bxl-shopify:before {
    content: ""
}

.bxl-sketch:before {
    content: ""
}

.bxl-skype:before {
    content: ""
}

.bxl-slack:before {
    content: ""
}

.bxl-slack-old:before {
    content: ""
}

.bxl-snapchat:before {
    content: ""
}

.bxl-soundcloud:before {
    content: ""
}

.bxl-spotify:before {
    content: ""
}

.bxl-spring-boot:before {
    content: ""
}

.bxl-squarespace:before {
    content: ""
}

.bxl-stack-overflow:before {
    content: ""
}

.bxl-steam:before {
    content: ""
}

.bxl-stripe:before {
    content: ""
}

.bxl-tailwind-css:before {
    content: ""
}

.bxl-telegram:before {
    content: ""
}

.bxl-tiktok:before {
    content: ""
}

.bxl-trello:before {
    content: ""
}

.bxl-trip-advisor:before {
    content: ""
}

.bxl-tumblr:before {
    content: ""
}

.bxl-tux:before {
    content: ""
}

.bxl-twitch:before {
    content: ""
}

.bxl-twitter:before {
    content: ""
}

.bxl-unity:before {
    content: ""
}

.bxl-unsplash:before {
    content: ""
}

.bxl-vimeo:before {
    content: ""
}

.bxl-visa:before {
    content: ""
}

.bxl-visual-studio:before {
    content: ""
}

.bxl-vk:before {
    content: ""
}

.bxl-vuejs:before {
    content: ""
}

.bxl-whatsapp:before {
    content: ""
}

.bxl-whatsapp-square:before {
    content: ""
}

.bxl-wikipedia:before {
    content: ""
}

.bxl-windows:before {
    content: ""
}

.bxl-wix:before {
    content: ""
}

.bxl-wordpress:before {
    content: ""
}

.bxl-yahoo:before {
    content: ""
}

.bxl-yelp:before {
    content: ""
}

.bxl-youtube:before {
    content: ""
}

.bxl-zoom:before {
    content: ""
}

.bxs-add-to-queue:before {
    content: ""
}

.bxs-adjust:before {
    content: ""
}

.bxs-adjust-alt:before {
    content: ""
}

.bxs-alarm:before {
    content: ""
}

.bxs-alarm-add:before {
    content: ""
}

.bxs-alarm-exclamation:before {
    content: ""
}

.bxs-alarm-off:before {
    content: ""
}

.bxs-alarm-snooze:before {
    content: ""
}

.bxs-album:before {
    content: ""
}

.bxs-ambulance:before {
    content: ""
}

.bxs-analyse:before {
    content: ""
}

.bxs-angry:before {
    content: ""
}

.bxs-arch:before {
    content: ""
}

.bxs-archive:before {
    content: ""
}

.bxs-archive-in:before {
    content: ""
}

.bxs-archive-out:before {
    content: ""
}

.bxs-area:before {
    content: ""
}

.bxs-arrow-from-bottom:before {
    content: ""
}

.bxs-arrow-from-left:before {
    content: ""
}

.bxs-arrow-from-right:before {
    content: ""
}

.bxs-arrow-from-top:before {
    content: ""
}

.bxs-arrow-to-bottom:before {
    content: ""
}

.bxs-arrow-to-left:before {
    content: ""
}

.bxs-arrow-to-right:before {
    content: ""
}

.bxs-arrow-to-top:before {
    content: ""
}

.bxs-award:before {
    content: ""
}

.bxs-baby-carriage:before {
    content: ""
}

.bxs-backpack:before {
    content: ""
}

.bxs-badge:before {
    content: ""
}

.bxs-badge-check:before {
    content: ""
}

.bxs-badge-dollar:before {
    content: ""
}

.bxs-ball:before {
    content: ""
}

.bxs-band-aid:before {
    content: ""
}

.bxs-bank:before {
    content: ""
}

.bxs-bar-chart-alt-2:before {
    content: ""
}

.bxs-bar-chart-square:before {
    content: ""
}

.bxs-barcode:before {
    content: ""
}

.bxs-baseball:before {
    content: ""
}

.bxs-basket:before {
    content: ""
}

.bxs-basketball:before {
    content: ""
}

.bxs-bath:before {
    content: ""
}

.bxs-battery:before {
    content: ""
}

.bxs-battery-charging:before {
    content: ""
}

.bxs-battery-full:before {
    content: ""
}

.bxs-battery-low:before {
    content: ""
}

.bxs-bed:before {
    content: ""
}

.bxs-been-here:before {
    content: ""
}

.bxs-beer:before {
    content: ""
}

.bxs-bell:before {
    content: ""
}

.bxs-bell-minus:before {
    content: ""
}

.bxs-bell-off:before {
    content: ""
}

.bxs-bell-plus:before {
    content: ""
}

.bxs-bell-ring:before {
    content: ""
}

.bxs-bible:before {
    content: ""
}

.bxs-binoculars:before {
    content: ""
}

.bxs-blanket:before {
    content: ""
}

.bxs-bolt:before {
    content: ""
}

.bxs-bolt-circle:before {
    content: ""
}

.bxs-bomb:before {
    content: ""
}

.bxs-bone:before {
    content: ""
}

.bxs-bong:before {
    content: ""
}

.bxs-book:before {
    content: ""
}

.bxs-book-add:before {
    content: ""
}

.bxs-book-alt:before {
    content: ""
}

.bxs-book-bookmark:before {
    content: ""
}

.bxs-book-content:before {
    content: ""
}

.bxs-book-heart:before {
    content: ""
}

.bxs-bookmark:before {
    content: ""
}

.bxs-bookmark-alt:before {
    content: ""
}

.bxs-bookmark-alt-minus:before {
    content: ""
}

.bxs-bookmark-alt-plus:before {
    content: ""
}

.bxs-bookmark-heart:before {
    content: ""
}

.bxs-bookmark-minus:before {
    content: ""
}

.bxs-bookmark-plus:before {
    content: ""
}

.bxs-bookmarks:before {
    content: ""
}

.bxs-bookmark-star:before {
    content: ""
}

.bxs-book-open:before {
    content: ""
}

.bxs-book-reader:before {
    content: ""
}

.bxs-bot:before {
    content: ""
}

.bxs-bowling-ball:before {
    content: ""
}

.bxs-box:before {
    content: ""
}

.bxs-brain:before {
    content: ""
}

.bxs-briefcase:before {
    content: ""
}

.bxs-briefcase-alt:before {
    content: ""
}

.bxs-briefcase-alt-2:before {
    content: ""
}

.bxs-brightness:before {
    content: ""
}

.bxs-brightness-half:before {
    content: ""
}

.bxs-brush:before {
    content: ""
}

.bxs-brush-alt:before {
    content: ""
}

.bxs-bug:before {
    content: ""
}

.bxs-bug-alt:before {
    content: ""
}

.bxs-building:before {
    content: ""
}

.bxs-building-house:before {
    content: ""
}

.bxs-buildings:before {
    content: ""
}

.bxs-bulb:before {
    content: ""
}

.bxs-bullseye:before {
    content: ""
}

.bxs-buoy:before {
    content: ""
}

.bxs-bus:before {
    content: ""
}

.bxs-business:before {
    content: ""
}

.bxs-bus-school:before {
    content: ""
}

.bxs-cabinet:before {
    content: ""
}

.bxs-cake:before {
    content: ""
}

.bxs-calculator:before {
    content: ""
}

.bxs-calendar:before {
    content: ""
}

.bxs-calendar-alt:before {
    content: ""
}

.bxs-calendar-check:before {
    content: ""
}

.bxs-calendar-edit:before {
    content: ""
}

.bxs-calendar-event:before {
    content: ""
}

.bxs-calendar-exclamation:before {
    content: ""
}

.bxs-calendar-heart:before {
    content: ""
}

.bxs-calendar-minus:before {
    content: ""
}

.bxs-calendar-plus:before {
    content: ""
}

.bxs-calendar-star:before {
    content: ""
}

.bxs-calendar-week:before {
    content: ""
}

.bxs-calendar-x:before {
    content: ""
}

.bxs-camera:before {
    content: ""
}

.bxs-camera-home:before {
    content: ""
}

.bxs-camera-movie:before {
    content: ""
}

.bxs-camera-off:before {
    content: ""
}

.bxs-camera-plus:before {
    content: ""
}

.bxs-capsule:before {
    content: ""
}

.bxs-captions:before {
    content: ""
}

.bxs-car:before {
    content: ""
}

.bxs-car-battery:before {
    content: ""
}

.bxs-car-crash:before {
    content: ""
}

.bxs-card:before {
    content: ""
}

.bxs-caret-down-circle:before {
    content: ""
}

.bxs-caret-down-square:before {
    content: ""
}

.bxs-caret-left-circle:before {
    content: ""
}

.bxs-caret-left-square:before {
    content: ""
}

.bxs-caret-right-circle:before {
    content: ""
}

.bxs-caret-right-square:before {
    content: ""
}

.bxs-caret-up-circle:before {
    content: ""
}

.bxs-caret-up-square:before {
    content: ""
}

.bxs-car-garage:before {
    content: ""
}

.bxs-car-mechanic:before {
    content: ""
}

.bxs-carousel:before {
    content: ""
}

.bxs-cart:before {
    content: ""
}

.bxs-cart-add:before {
    content: ""
}

.bxs-cart-alt:before {
    content: ""
}

.bxs-cart-download:before {
    content: ""
}

.bxs-car-wash:before {
    content: ""
}

.bxs-category:before {
    content: ""
}

.bxs-category-alt:before {
    content: ""
}

.bxs-cctv:before {
    content: ""
}

.bxs-certification:before {
    content: ""
}

.bxs-chalkboard:before {
    content: ""
}

.bxs-chart:before {
    content: ""
}

.bxs-chat:before {
    content: ""
}

.bxs-checkbox:before {
    content: ""
}

.bxs-checkbox-checked:before {
    content: ""
}

.bxs-checkbox-minus:before {
    content: ""
}

.bxs-check-circle:before {
    content: ""
}

.bxs-check-shield:before {
    content: ""
}

.bxs-check-square:before {
    content: ""
}

.bxs-chess:before {
    content: ""
}

.bxs-chevron-down:before {
    content: ""
}

.bxs-chevron-down-circle:before {
    content: ""
}

.bxs-chevron-down-square:before {
    content: ""
}

.bxs-chevron-left:before {
    content: ""
}

.bxs-chevron-left-circle:before {
    content: ""
}

.bxs-chevron-left-square:before {
    content: ""
}

.bxs-chevron-right:before {
    content: ""
}

.bxs-chevron-right-circle:before {
    content: ""
}

.bxs-chevron-right-square:before {
    content: ""
}

.bxs-chevrons-down:before {
    content: ""
}

.bxs-chevrons-left:before {
    content: ""
}

.bxs-chevrons-right:before {
    content: ""
}

.bxs-chevrons-up:before {
    content: ""
}

.bxs-chevron-up:before {
    content: ""
}

.bxs-chevron-up-circle:before {
    content: ""
}

.bxs-chevron-up-square:before {
    content: ""
}

.bxs-chip:before {
    content: ""
}

.bxs-church:before {
    content: ""
}

.bxs-circle:before {
    content: ""
}

.bxs-city:before {
    content: ""
}

.bxs-clinic:before {
    content: ""
}

.bxs-cloud:before {
    content: ""
}

.bxs-cloud-download:before {
    content: ""
}

.bxs-cloud-lightning:before {
    content: ""
}

.bxs-cloud-rain:before {
    content: ""
}

.bxs-cloud-upload:before {
    content: ""
}

.bxs-coffee:before {
    content: ""
}

.bxs-coffee-alt:before {
    content: ""
}

.bxs-coffee-togo:before {
    content: ""
}

.bxs-cog:before {
    content: ""
}

.bxs-coin:before {
    content: ""
}

.bxs-coin-stack:before {
    content: ""
}

.bxs-collection:before {
    content: ""
}

.bxs-color-fill:before {
    content: ""
}

.bxs-comment:before {
    content: ""
}

.bxs-comment-add:before {
    content: ""
}

.bxs-comment-check:before {
    content: ""
}

.bxs-comment-detail:before {
    content: ""
}

.bxs-comment-dots:before {
    content: ""
}

.bxs-comment-edit:before {
    content: ""
}

.bxs-comment-error:before {
    content: ""
}

.bxs-comment-minus:before {
    content: ""
}

.bxs-comment-x:before {
    content: ""
}

.bxs-compass:before {
    content: ""
}

.bxs-component:before {
    content: ""
}

.bxs-confused:before {
    content: ""
}

.bxs-contact:before {
    content: ""
}

.bxs-conversation:before {
    content: ""
}

.bxs-cookie:before {
    content: ""
}

.bxs-cool:before {
    content: ""
}

.bxs-copy:before {
    content: ""
}

.bxs-copy-alt:before {
    content: ""
}

.bxs-copyright:before {
    content: ""
}

.bxs-coupon:before {
    content: ""
}

.bxs-credit-card:before {
    content: ""
}

.bxs-credit-card-alt:before {
    content: ""
}

.bxs-credit-card-front:before {
    content: ""
}

.bxs-crop:before {
    content: ""
}

.bxs-crown:before {
    content: ""
}

.bxs-cube:before {
    content: ""
}

.bxs-cube-alt:before {
    content: ""
}

.bxs-cuboid:before {
    content: ""
}

.bxs-customize:before {
    content: ""
}

.bxs-cylinder:before {
    content: ""
}

.bxs-dashboard:before {
    content: ""
}

.bxs-data:before {
    content: ""
}

.bxs-detail:before {
    content: ""
}

.bxs-devices:before {
    content: ""
}

.bxs-diamond:before {
    content: ""
}

.bxs-dice-1:before {
    content: ""
}

.bxs-dice-2:before {
    content: ""
}

.bxs-dice-3:before {
    content: ""
}

.bxs-dice-4:before {
    content: ""
}

.bxs-dice-5:before {
    content: ""
}

.bxs-dice-6:before {
    content: ""
}

.bxs-direction-left:before {
    content: ""
}

.bxs-direction-right:before {
    content: ""
}

.bxs-directions:before {
    content: ""
}

.bxs-disc:before {
    content: ""
}

.bxs-discount:before {
    content: ""
}

.bxs-dish:before {
    content: ""
}

.bxs-dislike:before {
    content: ""
}

.bxs-dizzy:before {
    content: ""
}

.bxs-dock-bottom:before {
    content: ""
}

.bxs-dock-left:before {
    content: ""
}

.bxs-dock-right:before {
    content: ""
}

.bxs-dock-top:before {
    content: ""
}

.bxs-dollar-circle:before {
    content: ""
}

.bxs-donate-blood:before {
    content: ""
}

.bxs-donate-heart:before {
    content: ""
}

.bxs-door-open:before {
    content: ""
}

.bxs-doughnut-chart:before {
    content: ""
}

.bxs-down-arrow:before {
    content: ""
}

.bxs-down-arrow-alt:before {
    content: ""
}

.bxs-down-arrow-circle:before {
    content: ""
}

.bxs-down-arrow-square:before {
    content: ""
}

.bxs-download:before {
    content: ""
}

.bxs-downvote:before {
    content: ""
}

.bxs-drink:before {
    content: ""
}

.bxs-droplet:before {
    content: ""
}

.bxs-droplet-half:before {
    content: ""
}

.bxs-dryer:before {
    content: ""
}

.bxs-duplicate:before {
    content: ""
}

.bxs-edit:before {
    content: ""
}

.bxs-edit-alt:before {
    content: ""
}

.bxs-edit-location:before {
    content: ""
}

.bxs-eject:before {
    content: ""
}

.bxs-envelope:before {
    content: ""
}

.bxs-envelope-open:before {
    content: ""
}

.bxs-eraser:before {
    content: ""
}

.bxs-error:before {
    content: ""
}

.bxs-error-alt:before {
    content: ""
}

.bxs-error-circle:before {
    content: ""
}

.bxs-ev-station:before {
    content: ""
}

.bxs-exit:before {
    content: ""
}

.bxs-extension:before {
    content: ""
}

.bxs-eyedropper:before {
    content: ""
}

.bxs-face:before {
    content: ""
}

.bxs-face-mask:before {
    content: ""
}

.bxs-factory:before {
    content: ""
}

.bxs-fast-forward-circle:before {
    content: ""
}

.bxs-file:before {
    content: ""
}

.bxs-file-archive:before {
    content: ""
}

.bxs-file-blank:before {
    content: ""
}

.bxs-file-css:before {
    content: ""
}

.bxs-file-doc:before {
    content: ""
}

.bxs-file-export:before {
    content: ""
}

.bxs-file-find:before {
    content: ""
}

.bxs-file-gif:before {
    content: ""
}

.bxs-file-html:before {
    content: ""
}

.bxs-file-image:before {
    content: ""
}

.bxs-file-import:before {
    content: ""
}

.bxs-file-jpg:before {
    content: ""
}

.bxs-file-js:before {
    content: ""
}

.bxs-file-json:before {
    content: ""
}

.bxs-file-md:before {
    content: ""
}

.bxs-file-pdf:before {
    content: ""
}

.bxs-file-plus:before {
    content: ""
}

.bxs-file-png:before {
    content: ""
}

.bxs-file-txt:before {
    content: ""
}

.bxs-film:before {
    content: ""
}

.bxs-filter-alt:before {
    content: ""
}

.bxs-first-aid:before {
    content: ""
}

.bxs-flag:before {
    content: ""
}

.bxs-flag-alt:before {
    content: ""
}

.bxs-flag-checkered:before {
    content: ""
}

.bxs-flame:before {
    content: ""
}

.bxs-flask:before {
    content: ""
}

.bxs-florist:before {
    content: ""
}

.bxs-folder:before {
    content: ""
}

.bxs-folder-minus:before {
    content: ""
}

.bxs-folder-open:before {
    content: ""
}

.bxs-folder-plus:before {
    content: ""
}

.bxs-food-menu:before {
    content: ""
}

.bxs-fridge:before {
    content: ""
}

.bxs-game:before {
    content: ""
}

.bxs-gas-pump:before {
    content: ""
}

.bxs-ghost:before {
    content: ""
}

.bxs-gift:before {
    content: ""
}

.bxs-graduation:before {
    content: ""
}

.bxs-grid:before {
    content: ""
}

.bxs-grid-alt:before {
    content: ""
}

.bxs-group:before {
    content: ""
}

.bxs-guitar-amp:before {
    content: ""
}

.bxs-hand:before {
    content: ""
}

.bxs-hand-down:before {
    content: ""
}

.bxs-hand-left:before {
    content: ""
}

.bxs-hand-right:before {
    content: ""
}

.bxs-hand-up:before {
    content: ""
}

.bxs-happy:before {
    content: ""
}

.bxs-happy-alt:before {
    content: ""
}

.bxs-happy-beaming:before {
    content: ""
}

.bxs-happy-heart-eyes:before {
    content: ""
}

.bxs-hdd:before {
    content: ""
}

.bxs-heart:before {
    content: ""
}

.bxs-heart-circle:before {
    content: ""
}

.bxs-heart-square:before {
    content: ""
}

.bxs-help-circle:before {
    content: ""
}

.bxs-hide:before {
    content: ""
}

.bxs-home:before {
    content: ""
}

.bxs-home-circle:before {
    content: ""
}

.bxs-home-heart:before {
    content: ""
}

.bxs-home-smile:before {
    content: ""
}

.bxs-hot:before {
    content: ""
}

.bxs-hotel:before {
    content: ""
}

.bxs-hourglass:before {
    content: ""
}

.bxs-hourglass-bottom:before {
    content: ""
}

.bxs-hourglass-top:before {
    content: ""
}

.bxs-id-card:before {
    content: ""
}

.bxs-image:before {
    content: ""
}

.bxs-image-add:before {
    content: ""
}

.bxs-image-alt:before {
    content: ""
}

.bxs-inbox:before {
    content: ""
}

.bxs-info-circle:before {
    content: ""
}

.bxs-info-square:before {
    content: ""
}

.bxs-institution:before {
    content: ""
}

.bxs-joystick:before {
    content: ""
}

.bxs-joystick-alt:before {
    content: ""
}

.bxs-joystick-button:before {
    content: ""
}

.bxs-key:before {
    content: ""
}

.bxs-keyboard:before {
    content: ""
}

.bxs-label:before {
    content: ""
}

.bxs-landmark:before {
    content: ""
}

.bxs-landscape:before {
    content: ""
}

.bxs-laugh:before {
    content: ""
}

.bxs-layer:before {
    content: ""
}

.bxs-layer-minus:before {
    content: ""
}

.bxs-layer-plus:before {
    content: ""
}

.bxs-layout:before {
    content: ""
}

.bxs-left-arrow:before {
    content: ""
}

.bxs-left-arrow-alt:before {
    content: ""
}

.bxs-left-arrow-circle:before {
    content: ""
}

.bxs-left-arrow-square:before {
    content: ""
}

.bxs-left-down-arrow-circle:before {
    content: ""
}

.bxs-left-top-arrow-circle:before {
    content: ""
}

.bxs-like:before {
    content: ""
}

.bxs-location-plus:before {
    content: ""
}

.bxs-lock:before {
    content: ""
}

.bxs-lock-alt:before {
    content: ""
}

.bxs-lock-open:before {
    content: ""
}

.bxs-lock-open-alt:before {
    content: ""
}

.bxs-log-in:before {
    content: ""
}

.bxs-log-in-circle:before {
    content: ""
}

.bxs-log-out:before {
    content: ""
}

.bxs-log-out-circle:before {
    content: ""
}

.bxs-low-vision:before {
    content: ""
}

.bxs-magic-wand:before {
    content: ""
}

.bxs-magnet:before {
    content: ""
}

.bxs-map:before {
    content: ""
}

.bxs-map-alt:before {
    content: ""
}

.bxs-map-pin:before {
    content: ""
}

.bxs-mask:before {
    content: ""
}

.bxs-medal:before {
    content: ""
}

.bxs-megaphone:before {
    content: ""
}

.bxs-meh:before {
    content: ""
}

.bxs-meh-alt:before {
    content: ""
}

.bxs-meh-blank:before {
    content: ""
}

.bxs-memory-card:before {
    content: ""
}

.bxs-message:before {
    content: ""
}

.bxs-message-add:before {
    content: ""
}

.bxs-message-alt:before {
    content: ""
}

.bxs-message-alt-add:before {
    content: ""
}

.bxs-message-alt-check:before {
    content: ""
}

.bxs-message-alt-detail:before {
    content: ""
}

.bxs-message-alt-dots:before {
    content: ""
}

.bxs-message-alt-edit:before {
    content: ""
}

.bxs-message-alt-error:before {
    content: ""
}

.bxs-message-alt-minus:before {
    content: ""
}

.bxs-message-alt-x:before {
    content: ""
}

.bxs-message-check:before {
    content: ""
}

.bxs-message-detail:before {
    content: ""
}

.bxs-message-dots:before {
    content: ""
}

.bxs-message-edit:before {
    content: ""
}

.bxs-message-error:before {
    content: ""
}

.bxs-message-minus:before {
    content: ""
}

.bxs-message-rounded:before {
    content: ""
}

.bxs-message-rounded-add:before {
    content: ""
}

.bxs-message-rounded-check:before {
    content: ""
}

.bxs-message-rounded-detail:before {
    content: ""
}

.bxs-message-rounded-dots:before {
    content: ""
}

.bxs-message-rounded-edit:before {
    content: ""
}

.bxs-message-rounded-error:before {
    content: ""
}

.bxs-message-rounded-minus:before {
    content: ""
}

.bxs-message-rounded-x:before {
    content: ""
}

.bxs-message-square:before {
    content: ""
}

.bxs-message-square-add:before {
    content: ""
}

.bxs-message-square-check:before {
    content: ""
}

.bxs-message-square-detail:before {
    content: ""
}

.bxs-message-square-dots:before {
    content: ""
}

.bxs-message-square-edit:before {
    content: ""
}

.bxs-message-square-error:before {
    content: ""
}

.bxs-message-square-minus:before {
    content: ""
}

.bxs-message-square-x:before {
    content: ""
}

.bxs-message-x:before {
    content: ""
}

.bxs-meteor:before {
    content: ""
}

.bxs-microchip:before {
    content: ""
}

.bxs-microphone:before {
    content: ""
}

.bxs-microphone-alt:before {
    content: ""
}

.bxs-microphone-off:before {
    content: ""
}

.bxs-minus-circle:before {
    content: ""
}

.bxs-minus-square:before {
    content: ""
}

.bxs-mobile:before {
    content: ""
}

.bxs-mobile-vibration:before {
    content: ""
}

.bxs-moon:before {
    content: ""
}

.bxs-mouse:before {
    content: ""
}

.bxs-mouse-alt:before {
    content: ""
}

.bxs-movie:before {
    content: ""
}

.bxs-movie-play:before {
    content: ""
}

.bxs-music:before {
    content: ""
}

.bxs-navigation:before {
    content: ""
}

.bxs-network-chart:before {
    content: ""
}

.bxs-news:before {
    content: ""
}

.bxs-no-entry:before {
    content: ""
}

.bxs-note:before {
    content: ""
}

.bxs-notepad:before {
    content: ""
}

.bxs-notification:before {
    content: ""
}

.bxs-notification-off:before {
    content: ""
}

.bxs-offer:before {
    content: ""
}

.bxs-package:before {
    content: ""
}

.bxs-paint:before {
    content: ""
}

.bxs-paint-roll:before {
    content: ""
}

.bxs-palette:before {
    content: ""
}

.bxs-paper-plane:before {
    content: ""
}

.bxs-parking:before {
    content: ""
}

.bxs-paste:before {
    content: ""
}

.bxs-pen:before {
    content: ""
}

.bxs-pencil:before {
    content: ""
}

.bxs-phone:before {
    content: ""
}

.bxs-phone-call:before {
    content: ""
}

.bxs-phone-incoming:before {
    content: ""
}

.bxs-phone-off:before {
    content: ""
}

.bxs-phone-outgoing:before {
    content: ""
}

.bxs-photo-album:before {
    content: ""
}

.bxs-piano:before {
    content: ""
}

.bxs-pie-chart:before {
    content: ""
}

.bxs-pie-chart-alt:before {
    content: ""
}

.bxs-pie-chart-alt-2:before {
    content: ""
}

.bxs-pin:before {
    content: ""
}

.bxs-pizza:before {
    content: ""
}

.bxs-plane:before {
    content: ""
}

.bxs-plane-alt:before {
    content: ""
}

.bxs-plane-land:before {
    content: ""
}

.bxs-planet:before {
    content: ""
}

.bxs-plane-take-off:before {
    content: ""
}

.bxs-playlist:before {
    content: ""
}

.bxs-plug:before {
    content: ""
}

.bxs-plus-circle:before {
    content: ""
}

.bxs-plus-square:before {
    content: ""
}

.bxs-pointer:before {
    content: ""
}

.bxs-polygon:before {
    content: ""
}

.bxs-printer:before {
    content: ""
}

.bxs-purchase-tag:before {
    content: ""
}

.bxs-purchase-tag-alt:before {
    content: ""
}

.bxs-pyramid:before {
    content: ""
}

.bxs-quote-alt-left:before {
    content: ""
}

.bxs-quote-alt-right:before {
    content: ""
}

.bxs-quote-left:before {
    content: ""
}

.bxs-quote-right:before {
    content: ""
}

.bxs-quote-single-left:before {
    content: ""
}

.bxs-quote-single-right:before {
    content: ""
}

.bxs-radiation:before {
    content: ""
}

.bxs-radio:before {
    content: ""
}

.bxs-receipt:before {
    content: ""
}

.bxs-rectangle:before {
    content: ""
}

.bxs-registered:before {
    content: ""
}

.bxs-rename:before {
    content: ""
}

.bxs-report:before {
    content: ""
}

.bxs-rewind-circle:before {
    content: ""
}

.bxs-right-arrow:before {
    content: ""
}

.bxs-right-arrow-alt:before {
    content: ""
}

.bxs-right-arrow-circle:before {
    content: ""
}

.bxs-right-arrow-square:before {
    content: ""
}

.bxs-right-down-arrow-circle:before {
    content: ""
}

.bxs-right-top-arrow-circle:before {
    content: ""
}

.bxs-rocket:before {
    content: ""
}

.bxs-ruler:before {
    content: ""
}

.bxs-sad:before {
    content: ""
}

.bxs-save:before {
    content: ""
}

.bxs-school:before {
    content: ""
}

.bxs-search:before {
    content: ""
}

.bxs-search-alt-2:before {
    content: ""
}

.bxs-select-multiple:before {
    content: ""
}

.bxs-send:before {
    content: ""
}

.bxs-server:before {
    content: ""
}

.bxs-shapes:before {
    content: ""
}

.bxs-share:before {
    content: ""
}

.bxs-share-alt:before {
    content: ""
}

.bxs-shield:before {
    content: ""
}

.bxs-shield-alt-2:before {
    content: ""
}

.bxs-shield-x:before {
    content: ""
}

.bxs-ship:before {
    content: ""
}

.bxs-shocked:before {
    content: ""
}

.bxs-shopping-bag:before {
    content: ""
}

.bxs-shopping-bag-alt:before {
    content: ""
}

.bxs-shopping-bags:before {
    content: ""
}

.bxs-show:before {
    content: ""
}

.bxs-skip-next-circle:before {
    content: ""
}

.bxs-skip-previous-circle:before {
    content: ""
}

.bxs-skull:before {
    content: ""
}

.bxs-sleepy:before {
    content: ""
}

.bxs-slideshow:before {
    content: ""
}

.bxs-smile:before {
    content: ""
}

.bxs-sort-alt:before {
    content: ""
}

.bxs-spa:before {
    content: ""
}

.bxs-speaker:before {
    content: ""
}

.bxs-spray-can:before {
    content: ""
}

.bxs-spreadsheet:before {
    content: ""
}

.bxs-square:before {
    content: ""
}

.bxs-square-rounded:before {
    content: ""
}

.bxs-star:before {
    content: ""
}

.bxs-star-half:before {
    content: ""
}

.bxs-sticker:before {
    content: ""
}

.bxs-stopwatch:before {
    content: ""
}

.bxs-store:before {
    content: ""
}

.bxs-store-alt:before {
    content: ""
}

.bxs-sun:before {
    content: ""
}

.bxs-tachometer:before {
    content: ""
}

.bxs-tag:before {
    content: ""
}

.bxs-tag-alt:before {
    content: ""
}

.bxs-tag-x:before {
    content: ""
}

.bxs-taxi:before {
    content: ""
}

.bxs-tennis-ball:before {
    content: ""
}

.bxs-terminal:before {
    content: ""
}

.bxs-thermometer:before {
    content: ""
}

.bxs-time:before {
    content: ""
}

.bxs-time-five:before {
    content: ""
}

.bxs-timer:before {
    content: ""
}

.bxs-tired:before {
    content: ""
}

.bxs-toggle-left:before {
    content: ""
}

.bxs-toggle-right:before {
    content: ""
}

.bxs-tone:before {
    content: ""
}

.bxs-torch:before {
    content: ""
}

.bxs-to-top:before {
    content: ""
}

.bxs-traffic:before {
    content: ""
}

.bxs-traffic-barrier:before {
    content: ""
}

.bxs-traffic-cone:before {
    content: ""
}

.bxs-train:before {
    content: ""
}

.bxs-trash:before {
    content: ""
}

.bxs-trash-alt:before {
    content: ""
}

.bxs-tree:before {
    content: ""
}

.bxs-trophy:before {
    content: ""
}

.bxs-truck:before {
    content: ""
}

.bxs-t-shirt:before {
    content: ""
}

.bxs-tv:before {
    content: ""
}

.bxs-up-arrow:before {
    content: ""
}

.bxs-up-arrow-alt:before {
    content: ""
}

.bxs-up-arrow-circle:before {
    content: ""
}

.bxs-up-arrow-square:before {
    content: ""
}

.bxs-upside-down:before {
    content: ""
}

.bxs-upvote:before {
    content: ""
}

.bxs-user:before {
    content: ""
}

.bxs-user-account:before {
    content: ""
}

.bxs-user-badge:before {
    content: ""
}

.bxs-user-check:before {
    content: ""
}

.bxs-user-circle:before {
    content: ""
}

.bxs-user-detail:before {
    content: ""
}

.bxs-user-minus:before {
    content: ""
}

.bxs-user-pin:before {
    content: ""
}

.bxs-user-plus:before {
    content: ""
}

.bxs-user-rectangle:before {
    content: ""
}

.bxs-user-voice:before {
    content: ""
}

.bxs-user-x:before {
    content: ""
}

.bxs-vector:before {
    content: ""
}

.bxs-vial:before {
    content: ""
}

.bxs-video:before {
    content: ""
}

.bxs-video-off:before {
    content: ""
}

.bxs-video-plus:before {
    content: ""
}

.bxs-video-recording:before {
    content: ""
}

.bxs-videos:before {
    content: ""
}

.bxs-virus:before {
    content: ""
}

.bxs-virus-block:before {
    content: ""
}

.bxs-volume:before {
    content: ""
}

.bxs-volume-full:before {
    content: ""
}

.bxs-volume-low:before {
    content: ""
}

.bxs-volume-mute:before {
    content: ""
}

.bxs-wallet:before {
    content: ""
}

.bxs-wallet-alt:before {
    content: ""
}

.bxs-washer:before {
    content: ""
}

.bxs-watch:before {
    content: ""
}

.bxs-watch-alt:before {
    content: ""
}

.bxs-webcam:before {
    content: ""
}

.bxs-widget:before {
    content: ""
}

.bxs-window-alt:before {
    content: ""
}

.bxs-wine:before {
    content: ""
}

.bxs-wink-smile:before {
    content: ""
}

.bxs-wink-tongue:before {
    content: ""
}

.bxs-wrench:before {
    content: ""
}

.bxs-x-circle:before {
    content: ""
}

.bxs-x-square:before {
    content: ""
}

.bxs-yin-yang:before {
    content: ""
}

.bxs-zap:before {
    content: ""
}

.bxs-zoom-in:before {
    content: ""
}

.bxs-zoom-out:before {
    content: ""
}

.bx-abacus:before {
    content: ""
}

.bx-accessibility:before {
    content: ""
}

.bx-add-to-queue:before {
    content: ""
}

.bx-adjust:before {
    content: ""
}

.bx-alarm:before {
    content: ""
}

.bx-alarm-add:before {
    content: ""
}

.bx-alarm-exclamation:before {
    content: ""
}

.bx-alarm-off:before {
    content: ""
}

.bx-alarm-snooze:before {
    content: ""
}

.bx-album:before {
    content: ""
}

.bx-align-justify:before {
    content: ""
}

.bx-align-left:before {
    content: ""
}

.bx-align-middle:before {
    content: ""
}

.bx-align-right:before {
    content: ""
}

.bx-analyse:before {
    content: ""
}

.bx-anchor:before {
    content: ""
}

.bx-angry:before {
    content: ""
}

.bx-aperture:before {
    content: ""
}

.bx-arch:before {
    content: ""
}

.bx-archive:before {
    content: ""
}

.bx-archive-in:before {
    content: ""
}

.bx-archive-out:before {
    content: ""
}

.bx-area:before {
    content: ""
}

.bx-arrow-back:before {
    content: ""
}

.bx-arrow-from-bottom:before {
    content: ""
}

.bx-arrow-from-left:before {
    content: ""
}

.bx-arrow-from-right:before {
    content: ""
}

.bx-arrow-from-top:before {
    content: ""
}

.bx-arrow-to-bottom:before {
    content: ""
}

.bx-arrow-to-left:before {
    content: ""
}

.bx-arrow-to-right:before {
    content: ""
}

.bx-arrow-to-top:before {
    content: ""
}

.bx-at:before {
    content: ""
}

.bx-atom:before {
    content: ""
}

.bx-award:before {
    content: ""
}

.bx-badge:before {
    content: ""
}

.bx-badge-check:before {
    content: ""
}

.bx-ball:before {
    content: ""
}

.bx-band-aid:before {
    content: ""
}

.bx-bar-chart:before {
    content: ""
}

.bx-bar-chart-alt:before {
    content: ""
}

.bx-bar-chart-alt-2:before {
    content: ""
}

.bx-bar-chart-square:before {
    content: ""
}

.bx-barcode:before {
    content: ""
}

.bx-barcode-reader:before {
    content: ""
}

.bx-baseball:before {
    content: ""
}

.bx-basket:before {
    content: ""
}

.bx-basketball:before {
    content: ""
}

.bx-bath:before {
    content: ""
}

.bx-battery:before {
    content: ""
}

.bx-bed:before {
    content: ""
}

.bx-been-here:before {
    content: ""
}

.bx-beer:before {
    content: ""
}

.bx-bell:before {
    content: ""
}

.bx-bell-minus:before {
    content: ""
}

.bx-bell-off:before {
    content: ""
}

.bx-bell-plus:before {
    content: ""
}

.bx-bible:before {
    content: ""
}

.bx-bitcoin:before {
    content: ""
}

.bx-blanket:before {
    content: ""
}

.bx-block:before {
    content: ""
}

.bx-bluetooth:before {
    content: ""
}

.bx-body:before {
    content: ""
}

.bx-bold:before {
    content: ""
}

.bx-bolt-circle:before {
    content: ""
}

.bx-bomb:before {
    content: ""
}

.bx-bone:before {
    content: ""
}

.bx-bong:before {
    content: ""
}

.bx-book:before {
    content: ""
}

.bx-book-add:before {
    content: ""
}

.bx-book-alt:before {
    content: ""
}

.bx-book-bookmark:before {
    content: ""
}

.bx-book-content:before {
    content: ""
}

.bx-book-heart:before {
    content: ""
}

.bx-bookmark:before {
    content: ""
}

.bx-bookmark-alt:before {
    content: ""
}

.bx-bookmark-alt-minus:before {
    content: ""
}

.bx-bookmark-alt-plus:before {
    content: ""
}

.bx-bookmark-heart:before {
    content: ""
}

.bx-bookmark-minus:before {
    content: ""
}

.bx-bookmark-plus:before {
    content: ""
}

.bx-bookmarks:before {
    content: ""
}

.bx-book-open:before {
    content: ""
}

.bx-book-reader:before {
    content: ""
}

.bx-border-all:before {
    content: ""
}

.bx-border-bottom:before {
    content: ""
}

.bx-border-inner:before {
    content: ""
}

.bx-border-left:before {
    content: ""
}

.bx-border-none:before {
    content: ""
}

.bx-border-outer:before {
    content: ""
}

.bx-border-radius:before {
    content: ""
}

.bx-border-right:before {
    content: ""
}

.bx-border-top:before {
    content: ""
}

.bx-bot:before {
    content: ""
}

.bx-bowling-ball:before {
    content: ""
}

.bx-box:before {
    content: ""
}

.bx-bracket:before {
    content: ""
}

.bx-braille:before {
    content: ""
}

.bx-brain:before {
    content: ""
}

.bx-briefcase:before {
    content: ""
}

.bx-briefcase-alt:before {
    content: ""
}

.bx-briefcase-alt-2:before {
    content: ""
}

.bx-brightness:before {
    content: ""
}

.bx-brightness-half:before {
    content: ""
}

.bx-broadcast:before {
    content: ""
}

.bx-brush:before {
    content: ""
}

.bx-brush-alt:before {
    content: ""
}

.bx-bug:before {
    content: ""
}

.bx-bug-alt:before {
    content: ""
}

.bx-building:before {
    content: ""
}

.bx-building-house:before {
    content: ""
}

.bx-buildings:before {
    content: ""
}

.bx-bulb:before {
    content: ""
}

.bx-bullseye:before {
    content: ""
}

.bx-buoy:before {
    content: ""
}

.bx-bus:before {
    content: ""
}

.bx-bus-school:before {
    content: ""
}

.bx-cabinet:before {
    content: ""
}

.bx-cake:before {
    content: ""
}

.bx-calculator:before {
    content: ""
}

.bx-calendar:before {
    content: ""
}

.bx-calendar-alt:before {
    content: ""
}

.bx-calendar-check:before {
    content: ""
}

.bx-calendar-edit:before {
    content: ""
}

.bx-calendar-event:before {
    content: ""
}

.bx-calendar-exclamation:before {
    content: ""
}

.bx-calendar-heart:before {
    content: ""
}

.bx-calendar-minus:before {
    content: ""
}

.bx-calendar-plus:before {
    content: ""
}

.bx-calendar-star:before {
    content: ""
}

.bx-calendar-week:before {
    content: ""
}

.bx-calendar-x:before {
    content: ""
}

.bx-camera:before {
    content: ""
}

.bx-camera-home:before {
    content: ""
}

.bx-camera-movie:before {
    content: ""
}

.bx-camera-off:before {
    content: ""
}

.bx-capsule:before {
    content: ""
}

.bx-captions:before {
    content: ""
}

.bx-car:before {
    content: ""
}

.bx-card:before {
    content: ""
}

.bx-caret-down:before {
    content: ""
}

.bx-caret-down-circle:before {
    content: ""
}

.bx-caret-down-square:before {
    content: ""
}

.bx-caret-left:before {
    content: ""
}

.bx-caret-left-circle:before {
    content: ""
}

.bx-caret-left-square:before {
    content: ""
}

.bx-caret-right:before {
    content: ""
}

.bx-caret-right-circle:before {
    content: ""
}

.bx-caret-right-square:before {
    content: ""
}

.bx-caret-up:before {
    content: ""
}

.bx-caret-up-circle:before {
    content: ""
}

.bx-caret-up-square:before {
    content: ""
}

.bx-carousel:before {
    content: ""
}

.bx-cart:before {
    content: ""
}

.bx-cart-alt:before {
    content: ""
}

.bx-cast:before {
    content: ""
}

.bx-category:before {
    content: ""
}

.bx-category-alt:before {
    content: ""
}

.bx-cctv:before {
    content: ""
}

.bx-certification:before {
    content: ""
}

.bx-chair:before {
    content: ""
}

.bx-chalkboard:before {
    content: ""
}

.bx-chart:before {
    content: ""
}

.bx-chat:before {
    content: ""
}

.bx-check:before {
    content: ""
}

.bx-checkbox:before {
    content: ""
}

.bx-checkbox-checked:before {
    content: ""
}

.bx-checkbox-minus:before {
    content: ""
}

.bx-checkbox-square:before {
    content: ""
}

.bx-check-circle:before {
    content: ""
}

.bx-check-double:before {
    content: ""
}

.bx-check-shield:before {
    content: ""
}

.bx-check-square:before {
    content: ""
}

.bx-chevron-down:before {
    content: ""
}

.bx-chevron-down-circle:before {
    content: ""
}

.bx-chevron-down-square:before {
    content: ""
}

.bx-chevron-left:before {
    content: ""
}

.bx-chevron-left-circle:before {
    content: ""
}

.bx-chevron-left-square:before {
    content: ""
}

.bx-chevron-right:before {
    content: ""
}

.bx-chevron-right-circle:before {
    content: ""
}

.bx-chevron-right-square:before {
    content: ""
}

.bx-chevrons-down:before {
    content: ""
}

.bx-chevrons-left:before {
    content: ""
}

.bx-chevrons-right:before {
    content: ""
}

.bx-chevrons-up:before {
    content: ""
}

.bx-chevron-up:before {
    content: ""
}

.bx-chevron-up-circle:before {
    content: ""
}

.bx-chevron-up-square:before {
    content: ""
}

.bx-chip:before {
    content: ""
}

.bx-church:before {
    content: ""
}

.bx-circle:before {
    content: ""
}

.bx-clinic:before {
    content: ""
}

.bx-clipboard:before {
    content: ""
}

.bx-closet:before {
    content: ""
}

.bx-cloud:before {
    content: ""
}

.bx-cloud-download:before {
    content: ""
}

.bx-cloud-drizzle:before {
    content: ""
}

.bx-cloud-lightning:before {
    content: ""
}

.bx-cloud-light-rain:before {
    content: ""
}

.bx-cloud-rain:before {
    content: ""
}

.bx-cloud-snow:before {
    content: ""
}

.bx-cloud-upload:before {
    content: ""
}

.bx-code:before {
    content: ""
}

.bx-code-alt:before {
    content: ""
}

.bx-code-block:before {
    content: ""
}

.bx-code-curly:before {
    content: ""
}

.bx-coffee:before {
    content: ""
}

.bx-coffee-togo:before {
    content: ""
}

.bx-cog:before {
    content: ""
}

.bx-coin:before {
    content: ""
}

.bx-coin-stack:before {
    content: ""
}

.bx-collapse:before {
    content: ""
}

.bx-collection:before {
    content: ""
}

.bx-color-fill:before {
    content: ""
}

.bx-columns:before {
    content: ""
}

.bx-command:before {
    content: ""
}

.bx-comment:before {
    content: ""
}

.bx-comment-add:before {
    content: ""
}

.bx-comment-check:before {
    content: ""
}

.bx-comment-detail:before {
    content: ""
}

.bx-comment-dots:before {
    content: ""
}

.bx-comment-edit:before {
    content: ""
}

.bx-comment-error:before {
    content: ""
}

.bx-comment-minus:before {
    content: ""
}

.bx-comment-x:before {
    content: ""
}

.bx-compass:before {
    content: ""
}

.bx-confused:before {
    content: ""
}

.bx-conversation:before {
    content: ""
}

.bx-cookie:before {
    content: ""
}

.bx-cool:before {
    content: ""
}

.bx-copy:before {
    content: ""
}

.bx-copy-alt:before {
    content: ""
}

.bx-copyright:before {
    content: ""
}

.bx-credit-card:before {
    content: ""
}

.bx-credit-card-alt:before {
    content: ""
}

.bx-credit-card-front:before {
    content: ""
}

.bx-crop:before {
    content: ""
}

.bx-crosshair:before {
    content: ""
}

.bx-crown:before {
    content: ""
}

.bx-cube:before {
    content: ""
}

.bx-cube-alt:before {
    content: ""
}

.bx-cuboid:before {
    content: ""
}

.bx-current-location:before {
    content: ""
}

.bx-customize:before {
    content: ""
}

.bx-cut:before {
    content: ""
}

.bx-cycling:before {
    content: ""
}

.bx-cylinder:before {
    content: ""
}

.bx-data:before {
    content: ""
}

.bx-desktop:before {
    content: ""
}

.bx-detail:before {
    content: ""
}

.bx-devices:before {
    content: ""
}

.bx-dialpad:before {
    content: ""
}

.bx-dialpad-alt:before {
    content: ""
}

.bx-diamond:before {
    content: ""
}

.bx-dice-1:before {
    content: ""
}

.bx-dice-2:before {
    content: ""
}

.bx-dice-3:before {
    content: ""
}

.bx-dice-4:before {
    content: ""
}

.bx-dice-5:before {
    content: ""
}

.bx-dice-6:before {
    content: ""
}

.bx-directions:before {
    content: ""
}

.bx-disc:before {
    content: ""
}

.bx-dish:before {
    content: ""
}

.bx-dislike:before {
    content: ""
}

.bx-dizzy:before {
    content: ""
}

.bx-dna:before {
    content: ""
}

.bx-dock-bottom:before {
    content: ""
}

.bx-dock-left:before {
    content: ""
}

.bx-dock-right:before {
    content: ""
}

.bx-dock-top:before {
    content: ""
}

.bx-dollar:before {
    content: ""
}

.bx-dollar-circle:before {
    content: ""
}

.bx-donate-blood:before {
    content: ""
}

.bx-donate-heart:before {
    content: ""
}

.bx-door-open:before {
    content: ""
}

.bx-dots-horizontal:before {
    content: ""
}

.bx-dots-horizontal-rounded:before {
    content: ""
}

.bx-dots-vertical:before {
    content: ""
}

.bx-dots-vertical-rounded:before {
    content: ""
}

.bx-doughnut-chart:before {
    content: ""
}

.bx-down-arrow:before {
    content: ""
}

.bx-down-arrow-alt:before {
    content: ""
}

.bx-down-arrow-circle:before {
    content: ""
}

.bx-download:before {
    content: ""
}

.bx-downvote:before {
    content: ""
}

.bx-drink:before {
    content: ""
}

.bx-droplet:before {
    content: ""
}

.bx-dumbbell:before {
    content: ""
}

.bx-duplicate:before {
    content: ""
}

.bx-edit:before {
    content: ""
}

.bx-edit-alt:before {
    content: ""
}

.bx-envelope:before {
    content: ""
}

.bx-envelope-open:before {
    content: ""
}

.bx-equalizer:before {
    content: ""
}

.bx-eraser:before {
    content: ""
}

.bx-error:before {
    content: ""
}

.bx-error-alt:before {
    content: ""
}

.bx-error-circle:before {
    content: ""
}

.bx-euro:before {
    content: ""
}

.bx-exclude:before {
    content: ""
}

.bx-exit:before {
    content: ""
}

.bx-exit-fullscreen:before {
    content: ""
}

.bx-expand:before {
    content: ""
}

.bx-expand-alt:before {
    content: ""
}

.bx-export:before {
    content: ""
}

.bx-extension:before {
    content: ""
}

.bx-face:before {
    content: ""
}

.bx-fast-forward:before {
    content: ""
}

.bx-fast-forward-circle:before {
    content: ""
}

.bx-female:before {
    content: ""
}

.bx-female-sign:before {
    content: ""
}

.bx-file:before {
    content: ""
}

.bx-file-blank:before {
    content: ""
}

.bx-file-find:before {
    content: ""
}

.bx-film:before {
    content: ""
}

.bx-filter:before {
    content: ""
}

.bx-filter-alt:before {
    content: ""
}

.bx-fingerprint:before {
    content: ""
}

.bx-first-aid:before {
    content: ""
}

.bx-first-page:before {
    content: ""
}

.bx-flag:before {
    content: ""
}

.bx-folder:before {
    content: ""
}

.bx-folder-minus:before {
    content: ""
}

.bx-folder-open:before {
    content: ""
}

.bx-folder-plus:before {
    content: ""
}

.bx-font:before {
    content: ""
}

.bx-font-color:before {
    content: ""
}

.bx-font-family:before {
    content: ""
}

.bx-font-size:before {
    content: ""
}

.bx-food-menu:before {
    content: ""
}

.bx-food-tag:before {
    content: ""
}

.bx-football:before {
    content: ""
}

.bx-fridge:before {
    content: ""
}

.bx-fullscreen:before {
    content: ""
}

.bx-game:before {
    content: ""
}

.bx-gas-pump:before {
    content: ""
}

.bx-ghost:before {
    content: ""
}

.bx-gift:before {
    content: ""
}

.bx-git-branch:before {
    content: ""
}

.bx-git-commit:before {
    content: ""
}

.bx-git-compare:before {
    content: ""
}

.bx-git-merge:before {
    content: ""
}

.bx-git-pull-request:before {
    content: ""
}

.bx-git-repo-forked:before {
    content: ""
}

.bx-glasses:before {
    content: ""
}

.bx-glasses-alt:before {
    content: ""
}

.bx-globe:before {
    content: ""
}

.bx-globe-alt:before {
    content: ""
}

.bx-grid:before {
    content: ""
}

.bx-grid-alt:before {
    content: ""
}

.bx-grid-horizontal:before {
    content: ""
}

.bx-grid-small:before {
    content: ""
}

.bx-grid-vertical:before {
    content: ""
}

.bx-group:before {
    content: ""
}

.bx-handicap:before {
    content: ""
}

.bx-happy:before {
    content: ""
}

.bx-happy-alt:before {
    content: ""
}

.bx-happy-beaming:before {
    content: ""
}

.bx-happy-heart-eyes:before {
    content: ""
}

.bx-hash:before {
    content: ""
}

.bx-hdd:before {
    content: ""
}

.bx-heading:before {
    content: ""
}

.bx-headphone:before {
    content: ""
}

.bx-health:before {
    content: ""
}

.bx-heart:before {
    content: ""
}

.bx-heart-circle:before {
    content: ""
}

.bx-heart-square:before {
    content: ""
}

.bx-help-circle:before {
    content: ""
}

.bx-hide:before {
    content: ""
}

.bx-highlight:before {
    content: ""
}

.bx-history:before {
    content: ""
}

.bx-hive:before {
    content: ""
}

.bx-home:before {
    content: ""
}

.bx-home-alt:before {
    content: ""
}

.bx-home-circle:before {
    content: ""
}

.bx-home-heart:before {
    content: ""
}

.bx-home-smile:before {
    content: ""
}

.bx-horizontal-center:before {
    content: ""
}

.bx-hotel:before {
    content: ""
}

.bx-hourglass:before {
    content: ""
}

.bx-id-card:before {
    content: ""
}

.bx-image:before {
    content: ""
}

.bx-image-add:before {
    content: ""
}

.bx-image-alt:before {
    content: ""
}

.bx-images:before {
    content: ""
}

.bx-import:before {
    content: ""
}

.bx-infinite:before {
    content: ""
}

.bx-info-circle:before {
    content: ""
}

.bx-info-square:before {
    content: ""
}

.bx-intersect:before {
    content: ""
}

.bx-italic:before {
    content: ""
}

.bx-joystick:before {
    content: ""
}

.bx-joystick-alt:before {
    content: ""
}

.bx-joystick-button:before {
    content: ""
}

.bx-key:before {
    content: ""
}

.bx-label:before {
    content: ""
}

.bx-landscape:before {
    content: ""
}

.bx-laptop:before {
    content: ""
}

.bx-last-page:before {
    content: ""
}

.bx-laugh:before {
    content: ""
}

.bx-layer:before {
    content: ""
}

.bx-layer-minus:before {
    content: ""
}

.bx-layer-plus:before {
    content: ""
}

.bx-layout:before {
    content: ""
}

.bx-left-arrow:before {
    content: ""
}

.bx-left-arrow-alt:before {
    content: ""
}

.bx-left-arrow-circle:before {
    content: ""
}

.bx-left-down-arrow-circle:before {
    content: ""
}

.bx-left-indent:before {
    content: ""
}

.bx-left-top-arrow-circle:before {
    content: ""
}

.bx-library:before {
    content: ""
}

.bx-like:before {
    content: ""
}

.bx-line-chart:before {
    content: ""
}

.bx-line-chart-down:before {
    content: ""
}

.bx-link:before {
    content: ""
}

.bx-link-alt:before {
    content: ""
}

.bx-link-external:before {
    content: ""
}

.bx-lira:before {
    content: ""
}

.bx-list-check:before {
    content: ""
}

.bx-list-minus:before {
    content: ""
}

.bx-list-ol:before {
    content: ""
}

.bx-list-plus:before {
    content: ""
}

.bx-list-ul:before {
    content: ""
}

.bx-loader:before {
    content: ""
}

.bx-loader-alt:before {
    content: ""
}

.bx-loader-circle:before {
    content: ""
}

.bx-location-plus:before {
    content: ""
}

.bx-lock:before {
    content: ""
}

.bx-lock-alt:before {
    content: ""
}

.bx-lock-open:before {
    content: ""
}

.bx-lock-open-alt:before {
    content: ""
}

.bx-log-in:before {
    content: ""
}

.bx-log-in-circle:before {
    content: ""
}

.bx-log-out:before {
    content: ""
}

.bx-log-out-circle:before {
    content: ""
}

.bx-low-vision:before {
    content: ""
}

.bx-magnet:before {
    content: ""
}

.bx-mail-send:before {
    content: ""
}

.bx-male:before {
    content: ""
}

.bx-male-sign:before {
    content: ""
}

.bx-map:before {
    content: ""
}

.bx-map-alt:before {
    content: ""
}

.bx-map-pin:before {
    content: ""
}

.bx-mask:before {
    content: ""
}

.bx-medal:before {
    content: ""
}

.bx-meh:before {
    content: ""
}

.bx-meh-alt:before {
    content: ""
}

.bx-meh-blank:before {
    content: ""
}

.bx-memory-card:before {
    content: ""
}

.bx-menu:before {
    content: ""
}

.bx-menu-alt-left:before {
    content: ""
}

.bx-menu-alt-right:before {
    content: ""
}

.bx-merge:before {
    content: ""
}

.bx-message:before {
    content: ""
}

.bx-message-add:before {
    content: ""
}

.bx-message-alt:before {
    content: ""
}

.bx-message-alt-add:before {
    content: ""
}

.bx-message-alt-check:before {
    content: ""
}

.bx-message-alt-detail:before {
    content: ""
}

.bx-message-alt-dots:before {
    content: ""
}

.bx-message-alt-edit:before {
    content: ""
}

.bx-message-alt-error:before {
    content: ""
}

.bx-message-alt-minus:before {
    content: ""
}

.bx-message-alt-x:before {
    content: ""
}

.bx-message-check:before {
    content: ""
}

.bx-message-detail:before {
    content: ""
}

.bx-message-dots:before {
    content: ""
}

.bx-message-edit:before {
    content: ""
}

.bx-message-error:before {
    content: ""
}

.bx-message-minus:before {
    content: ""
}

.bx-message-rounded:before {
    content: ""
}

.bx-message-rounded-add:before {
    content: ""
}

.bx-message-rounded-check:before {
    content: ""
}

.bx-message-rounded-detail:before {
    content: ""
}

.bx-message-rounded-dots:before {
    content: ""
}

.bx-message-rounded-edit:before {
    content: ""
}

.bx-message-rounded-error:before {
    content: ""
}

.bx-message-rounded-minus:before {
    content: ""
}

.bx-message-rounded-x:before {
    content: ""
}

.bx-message-square:before {
    content: ""
}

.bx-message-square-add:before {
    content: ""
}

.bx-message-square-check:before {
    content: ""
}

.bx-message-square-detail:before {
    content: ""
}

.bx-message-square-dots:before {
    content: ""
}

.bx-message-square-edit:before {
    content: ""
}

.bx-message-square-error:before {
    content: ""
}

.bx-message-square-minus:before {
    content: ""
}

.bx-message-square-x:before {
    content: ""
}

.bx-message-x:before {
    content: ""
}

.bx-meteor:before {
    content: ""
}

.bx-microchip:before {
    content: ""
}

.bx-microphone:before {
    content: ""
}

.bx-microphone-off:before {
    content: ""
}

.bx-minus:before {
    content: ""
}

.bx-minus-back:before {
    content: ""
}

.bx-minus-circle:before {
    content: ""
}

.bx-minus-front:before {
    content: ""
}

.bx-mobile:before {
    content: ""
}

.bx-mobile-alt:before {
    content: ""
}

.bx-mobile-landscape:before {
    content: ""
}

.bx-mobile-vibration:before {
    content: ""
}

.bx-money:before {
    content: ""
}

.bx-moon:before {
    content: ""
}

.bx-mouse:before {
    content: ""
}

.bx-mouse-alt:before {
    content: ""
}

.bx-move:before {
    content: ""
}

.bx-move-horizontal:before {
    content: ""
}

.bx-move-vertical:before {
    content: ""
}

.bx-movie:before {
    content: ""
}

.bx-movie-play:before {
    content: ""
}

.bx-music:before {
    content: ""
}

.bx-navigation:before {
    content: ""
}

.bx-network-chart:before {
    content: ""
}

.bx-news:before {
    content: ""
}

.bx-no-entry:before {
    content: ""
}

.bx-note:before {
    content: ""
}

.bx-notepad:before {
    content: ""
}

.bx-notification:before {
    content: ""
}

.bx-notification-off:before {
    content: ""
}

.bx-outline:before {
    content: ""
}

.bx-package:before {
    content: ""
}

.bx-paint:before {
    content: ""
}

.bx-paint-roll:before {
    content: ""
}

.bx-palette:before {
    content: ""
}

.bx-paperclip:before {
    content: ""
}

.bx-paper-plane:before {
    content: ""
}

.bx-paragraph:before {
    content: ""
}

.bx-paste:before {
    content: ""
}

.bx-pause:before {
    content: ""
}

.bx-pause-circle:before {
    content: ""
}

.bx-pen:before {
    content: ""
}

.bx-pencil:before {
    content: ""
}

.bx-phone:before {
    content: ""
}

.bx-phone-call:before {
    content: ""
}

.bx-phone-incoming:before {
    content: ""
}

.bx-phone-off:before {
    content: ""
}

.bx-phone-outgoing:before {
    content: ""
}

.bx-photo-album:before {
    content: ""
}

.bx-pie-chart:before {
    content: ""
}

.bx-pie-chart-alt:before {
    content: ""
}

.bx-pie-chart-alt-2:before {
    content: ""
}

.bx-pin:before {
    content: ""
}

.bx-planet:before {
    content: ""
}

.bx-play:before {
    content: ""
}

.bx-play-circle:before {
    content: ""
}

.bx-plug:before {
    content: ""
}

.bx-plus:before {
    content: ""
}

.bx-plus-circle:before {
    content: ""
}

.bx-plus-medical:before {
    content: ""
}

.bx-podcast:before {
    content: ""
}

.bx-pointer:before {
    content: ""
}

.bx-poll:before {
    content: ""
}

.bx-polygon:before {
    content: ""
}

.bx-pound:before {
    content: ""
}

.bx-power-off:before {
    content: ""
}

.bx-printer:before {
    content: ""
}

.bx-pulse:before {
    content: ""
}

.bx-purchase-tag:before {
    content: ""
}

.bx-purchase-tag-alt:before {
    content: ""
}

.bx-pyramid:before {
    content: ""
}

.bx-qr:before {
    content: ""
}

.bx-qr-scan:before {
    content: ""
}

.bx-question-mark:before {
    content: ""
}

.bx-radar:before {
    content: ""
}

.bx-radio:before {
    content: ""
}

.bx-radio-circle:before {
    content: ""
}

.bx-radio-circle-marked:before {
    content: ""
}

.bx-receipt:before {
    content: ""
}

.bx-rectangle:before {
    content: ""
}

.bx-recycle:before {
    content: ""
}

.bx-redo:before {
    content: ""
}

.bx-refresh:before {
    content: ""
}

.bx-registered:before {
    content: ""
}

.bx-rename:before {
    content: ""
}

.bx-repeat:before {
    content: ""
}

.bx-reply:before {
    content: ""
}

.bx-reply-all:before {
    content: ""
}

.bx-repost:before {
    content: ""
}

.bx-reset:before {
    content: ""
}

.bx-restaurant:before {
    content: ""
}

.bx-revision:before {
    content: ""
}

.bx-rewind:before {
    content: ""
}

.bx-rewind-circle:before {
    content: ""
}

.bx-right-arrow:before {
    content: ""
}

.bx-right-arrow-alt:before {
    content: ""
}

.bx-right-arrow-circle:before {
    content: ""
}

.bx-right-down-arrow-circle:before {
    content: ""
}

.bx-right-indent:before {
    content: ""
}

.bx-right-top-arrow-circle:before {
    content: ""
}

.bx-rocket:before {
    content: ""
}

.bx-rotate-left:before {
    content: ""
}

.bx-rotate-right:before {
    content: ""
}

.bx-rss:before {
    content: ""
}

.bx-ruble:before {
    content: ""
}

.bx-ruler:before {
    content: ""
}

.bx-run:before {
    content: ""
}

.bx-rupee:before {
    content: ""
}

.bx-sad:before {
    content: ""
}

.bx-save:before {
    content: ""
}

.bx-scan:before {
    content: ""
}

.bx-screenshot:before {
    content: ""
}

.bx-search:before {
    content: ""
}

.bx-search-alt:before {
    content: ""
}

.bx-search-alt-2:before {
    content: ""
}

.bx-selection:before {
    content: ""
}

.bx-select-multiple:before {
    content: ""
}

.bx-send:before {
    content: ""
}

.bx-server:before {
    content: ""
}

.bx-shape-circle:before {
    content: ""
}

.bx-shape-polygon:before {
    content: ""
}

.bx-shape-square:before {
    content: ""
}

.bx-shape-triangle:before {
    content: ""
}

.bx-share:before {
    content: ""
}

.bx-share-alt:before {
    content: ""
}

.bx-shekel:before {
    content: ""
}

.bx-shield:before {
    content: ""
}

.bx-shield-alt:before {
    content: ""
}

.bx-shield-alt-2:before {
    content: ""
}

.bx-shield-quarter:before {
    content: ""
}

.bx-shield-x:before {
    content: ""
}

.bx-shocked:before {
    content: ""
}

.bx-shopping-bag:before {
    content: ""
}

.bx-show:before {
    content: ""
}

.bx-show-alt:before {
    content: ""
}

.bx-shuffle:before {
    content: ""
}

.bx-sidebar:before {
    content: ""
}

.bx-sitemap:before {
    content: ""
}

.bx-skip-next:before {
    content: ""
}

.bx-skip-next-circle:before {
    content: ""
}

.bx-skip-previous:before {
    content: ""
}

.bx-skip-previous-circle:before {
    content: ""
}

.bx-sleepy:before {
    content: ""
}

.bx-slider:before {
    content: ""
}

.bx-slider-alt:before {
    content: ""
}

.bx-slideshow:before {
    content: ""
}

.bx-smile:before {
    content: ""
}

.bx-sort:before {
    content: ""
}

.bx-sort-alt-2:before {
    content: ""
}

.bx-sort-a-z:before {
    content: ""
}

.bx-sort-down:before {
    content: ""
}

.bx-sort-up:before {
    content: ""
}

.bx-sort-z-a:before {
    content: ""
}

.bx-spa:before {
    content: ""
}

.bx-space-bar:before {
    content: ""
}

.bx-speaker:before {
    content: ""
}

.bx-spray-can:before {
    content: ""
}

.bx-spreadsheet:before {
    content: ""
}

.bx-square:before {
    content: ""
}

.bx-square-rounded:before {
    content: ""
}

.bx-star:before {
    content: ""
}

.bx-station:before {
    content: ""
}

.bx-stats:before {
    content: ""
}

.bx-sticker:before {
    content: ""
}

.bx-stop:before {
    content: ""
}

.bx-stop-circle:before {
    content: ""
}

.bx-stopwatch:before {
    content: ""
}

.bx-store:before {
    content: ""
}

.bx-store-alt:before {
    content: ""
}

.bx-street-view:before {
    content: ""
}

.bx-strikethrough:before {
    content: ""
}

.bx-subdirectory-left:before {
    content: ""
}

.bx-subdirectory-right:before {
    content: ""
}

.bx-sun:before {
    content: ""
}

.bx-support:before {
    content: ""
}

.bx-swim:before {
    content: ""
}

.bx-sync:before {
    content: ""
}

.bx-tab:before {
    content: ""
}

.bx-table:before {
    content: ""
}

.bx-tachometer:before {
    content: ""
}

.bx-tag:before {
    content: ""
}

.bx-tag-alt:before {
    content: ""
}

.bx-target-lock:before {
    content: ""
}

.bx-task:before {
    content: ""
}

.bx-task-x:before {
    content: ""
}

.bx-taxi:before {
    content: ""
}

.bx-tennis-ball:before {
    content: ""
}

.bx-terminal:before {
    content: ""
}

.bx-test-tube:before {
    content: ""
}

.bx-text:before {
    content: ""
}

.bx-time:before {
    content: ""
}

.bx-time-five:before {
    content: ""
}

.bx-timer:before {
    content: ""
}

.bx-tired:before {
    content: ""
}

.bx-toggle-left:before {
    content: ""
}

.bx-toggle-right:before {
    content: ""
}

.bx-tone:before {
    content: ""
}

.bx-traffic-cone:before {
    content: ""
}

.bx-train:before {
    content: ""
}

.bx-transfer:before {
    content: ""
}

.bx-transfer-alt:before {
    content: ""
}

.bx-trash:before {
    content: ""
}

.bx-trash-alt:before {
    content: ""
}

.bx-trending-down:before {
    content: ""
}

.bx-trending-up:before {
    content: ""
}

.bx-trim:before {
    content: ""
}

.bx-trip:before {
    content: ""
}

.bx-trophy:before {
    content: ""
}

.bx-tv:before {
    content: ""
}

.bx-underline:before {
    content: ""
}

.bx-undo:before {
    content: ""
}

.bx-unite:before {
    content: ""
}

.bx-unlink:before {
    content: ""
}

.bx-up-arrow:before {
    content: ""
}

.bx-up-arrow-alt:before {
    content: ""
}

.bx-up-arrow-circle:before {
    content: ""
}

.bx-upload:before {
    content: ""
}

.bx-upside-down:before {
    content: ""
}

.bx-upvote:before {
    content: ""
}

.bx-usb:before {
    content: ""
}

.bx-user:before {
    content: ""
}

.bx-user-check:before {
    content: ""
}

.bx-user-circle:before {
    content: ""
}

.bx-user-minus:before {
    content: ""
}

.bx-user-pin:before {
    content: ""
}

.bx-user-plus:before {
    content: ""
}

.bx-user-voice:before {
    content: ""
}

.bx-user-x:before {
    content: ""
}

.bx-vector:before {
    content: ""
}

.bx-vertical-center:before {
    content: ""
}

.bx-vial:before {
    content: ""
}

.bx-video:before {
    content: ""
}

.bx-video-off:before {
    content: ""
}

.bx-video-plus:before {
    content: ""
}

.bx-video-recording:before {
    content: ""
}

.bx-voicemail:before {
    content: ""
}

.bx-volume:before {
    content: ""
}

.bx-volume-full:before {
    content: ""
}

.bx-volume-low:before {
    content: ""
}

.bx-volume-mute:before {
    content: ""
}

.bx-walk:before {
    content: ""
}

.bx-wallet:before {
    content: ""
}

.bx-wallet-alt:before {
    content: ""
}

.bx-water:before {
    content: ""
}

.bx-webcam:before {
    content: ""
}

.bx-wifi:before {
    content: ""
}

.bx-wifi-0:before {
    content: ""
}

.bx-wifi-1:before {
    content: ""
}

.bx-wifi-2:before {
    content: ""
}

.bx-wifi-off:before {
    content: ""
}

.bx-wind:before {
    content: ""
}

.bx-window:before {
    content: ""
}

.bx-window-alt:before {
    content: ""
}

.bx-window-close:before {
    content: ""
}

.bx-window-open:before {
    content: ""
}

.bx-windows:before {
    content: ""
}

.bx-wine:before {
    content: ""
}

.bx-wink-smile:before {
    content: ""
}

.bx-wink-tongue:before {
    content: ""
}

.bx-won:before {
    content: ""
}

.bx-world:before {
    content: ""
}

.bx-wrench:before {
    content: ""
}

.bx-x:before {
    content: ""
}

.bx-x-circle:before {
    content: ""
}

.bx-yen:before {
    content: ""
}

.bx-zoom-in:before {
    content: ""
}

.bx-zoom-out:before {
    content: ""
}

@font-face {
    font-family: bootstrap-icons;
    src: url(/static/media/bootstrap-icons.94eeade15e6b7fbed95b.woff) format("woff2"), url(/static/media/bootstrap-icons.dfd0ea122577eb61795f.woff2) format("woff")
}

.bi:before,
[class*=" bi-"]:before,
[class^=bi-]:before {
    font-feature-settings: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400 !important;
    line-height: 1;
    text-transform: none;
    vertical-align: -.125em
}

.bi-123:before {
    content: ""
}

.bi-alarm-fill:before {
    content: ""
}

.bi-alarm:before {
    content: ""
}

.bi-align-bottom:before {
    content: ""
}

.bi-align-center:before {
    content: ""
}

.bi-align-end:before {
    content: ""
}

.bi-align-middle:before {
    content: ""
}

.bi-align-start:before {
    content: ""
}

.bi-align-top:before {
    content: ""
}

.bi-alt:before {
    content: ""
}

.bi-app-indicator:before {
    content: ""
}

.bi-app:before {
    content: ""
}

.bi-archive-fill:before {
    content: ""
}

.bi-archive:before {
    content: ""
}

.bi-arrow-90deg-down:before {
    content: ""
}

.bi-arrow-90deg-left:before {
    content: ""
}

.bi-arrow-90deg-right:before {
    content: ""
}

.bi-arrow-90deg-up:before {
    content: ""
}

.bi-arrow-bar-down:before {
    content: ""
}

.bi-arrow-bar-left:before {
    content: ""
}

.bi-arrow-bar-right:before {
    content: ""
}

.bi-arrow-bar-up:before {
    content: ""
}

.bi-arrow-clockwise:before {
    content: ""
}

.bi-arrow-counterclockwise:before {
    content: ""
}

.bi-arrow-down-circle-fill:before {
    content: ""
}

.bi-arrow-down-circle:before {
    content: ""
}

.bi-arrow-down-left-circle-fill:before {
    content: ""
}

.bi-arrow-down-left-circle:before {
    content: ""
}

.bi-arrow-down-left-square-fill:before {
    content: ""
}

.bi-arrow-down-left-square:before {
    content: ""
}

.bi-arrow-down-left:before {
    content: ""
}

.bi-arrow-down-right-circle-fill:before {
    content: ""
}

.bi-arrow-down-right-circle:before {
    content: ""
}

.bi-arrow-down-right-square-fill:before {
    content: ""
}

.bi-arrow-down-right-square:before {
    content: ""
}

.bi-arrow-down-right:before {
    content: ""
}

.bi-arrow-down-short:before {
    content: ""
}

.bi-arrow-down-square-fill:before {
    content: ""
}

.bi-arrow-down-square:before {
    content: ""
}

.bi-arrow-down-up:before {
    content: ""
}

.bi-arrow-down:before {
    content: ""
}

.bi-arrow-left-circle-fill:before {
    content: ""
}

.bi-arrow-left-circle:before {
    content: ""
}

.bi-arrow-left-right:before {
    content: ""
}

.bi-arrow-left-short:before {
    content: ""
}

.bi-arrow-left-square-fill:before {
    content: ""
}

.bi-arrow-left-square:before {
    content: ""
}

.bi-arrow-left:before {
    content: ""
}

.bi-arrow-repeat:before {
    content: ""
}

.bi-arrow-return-left:before {
    content: ""
}

.bi-arrow-return-right:before {
    content: ""
}

.bi-arrow-right-circle-fill:before {
    content: ""
}

.bi-arrow-right-circle:before {
    content: ""
}

.bi-arrow-right-short:before {
    content: ""
}

.bi-arrow-right-square-fill:before {
    content: ""
}

.bi-arrow-right-square:before {
    content: ""
}

.bi-arrow-right:before {
    content: ""
}

.bi-arrow-up-circle-fill:before {
    content: ""
}

.bi-arrow-up-circle:before {
    content: ""
}

.bi-arrow-up-left-circle-fill:before {
    content: ""
}

.bi-arrow-up-left-circle:before {
    content: ""
}

.bi-arrow-up-left-square-fill:before {
    content: ""
}

.bi-arrow-up-left-square:before {
    content: ""
}

.bi-arrow-up-left:before {
    content: ""
}

.bi-arrow-up-right-circle-fill:before {
    content: ""
}

.bi-arrow-up-right-circle:before {
    content: ""
}

.bi-arrow-up-right-square-fill:before {
    content: ""
}

.bi-arrow-up-right-square:before {
    content: ""
}

.bi-arrow-up-right:before {
    content: ""
}

.bi-arrow-up-short:before {
    content: ""
}

.bi-arrow-up-square-fill:before {
    content: ""
}

.bi-arrow-up-square:before {
    content: ""
}

.bi-arrow-up:before {
    content: ""
}

.bi-arrows-angle-contract:before {
    content: ""
}

.bi-arrows-angle-expand:before {
    content: ""
}

.bi-arrows-collapse:before {
    content: ""
}

.bi-arrows-expand:before {
    content: ""
}

.bi-arrows-fullscreen:before {
    content: ""
}

.bi-arrows-move:before {
    content: ""
}

.bi-aspect-ratio-fill:before {
    content: ""
}

.bi-aspect-ratio:before {
    content: ""
}

.bi-asterisk:before {
    content: ""
}

.bi-at:before {
    content: ""
}

.bi-award-fill:before {
    content: ""
}

.bi-award:before {
    content: ""
}

.bi-back:before {
    content: ""
}

.bi-backspace-fill:before {
    content: ""
}

.bi-backspace-reverse-fill:before {
    content: ""
}

.bi-backspace-reverse:before {
    content: ""
}

.bi-backspace:before {
    content: ""
}

.bi-badge-3d-fill:before {
    content: ""
}

.bi-badge-3d:before {
    content: ""
}

.bi-badge-4k-fill:before {
    content: ""
}

.bi-badge-4k:before {
    content: ""
}

.bi-badge-8k-fill:before {
    content: ""
}

.bi-badge-8k:before {
    content: ""
}

.bi-badge-ad-fill:before {
    content: ""
}

.bi-badge-ad:before {
    content: ""
}

.bi-badge-ar-fill:before {
    content: ""
}

.bi-badge-ar:before {
    content: ""
}

.bi-badge-cc-fill:before {
    content: ""
}

.bi-badge-cc:before {
    content: ""
}

.bi-badge-hd-fill:before {
    content: ""
}

.bi-badge-hd:before {
    content: ""
}

.bi-badge-tm-fill:before {
    content: ""
}

.bi-badge-tm:before {
    content: ""
}

.bi-badge-vo-fill:before {
    content: ""
}

.bi-badge-vo:before {
    content: ""
}

.bi-badge-vr-fill:before {
    content: ""
}

.bi-badge-vr:before {
    content: ""
}

.bi-badge-wc-fill:before {
    content: ""
}

.bi-badge-wc:before {
    content: ""
}

.bi-bag-check-fill:before {
    content: ""
}

.bi-bag-check:before {
    content: ""
}

.bi-bag-dash-fill:before {
    content: ""
}

.bi-bag-dash:before {
    content: ""
}

.bi-bag-fill:before {
    content: ""
}

.bi-bag-plus-fill:before {
    content: ""
}

.bi-bag-plus:before {
    content: ""
}

.bi-bag-x-fill:before {
    content: ""
}

.bi-bag-x:before {
    content: ""
}

.bi-bag:before {
    content: ""
}

.bi-bar-chart-fill:before {
    content: ""
}

.bi-bar-chart-line-fill:before {
    content: ""
}

.bi-bar-chart-line:before {
    content: ""
}

.bi-bar-chart-steps:before {
    content: ""
}

.bi-bar-chart:before {
    content: ""
}

.bi-basket-fill:before {
    content: ""
}

.bi-basket:before {
    content: ""
}

.bi-basket2-fill:before {
    content: ""
}

.bi-basket2:before {
    content: ""
}

.bi-basket3-fill:before {
    content: ""
}

.bi-basket3:before {
    content: ""
}

.bi-battery-charging:before {
    content: ""
}

.bi-battery-full:before {
    content: ""
}

.bi-battery-half:before {
    content: ""
}

.bi-battery:before {
    content: ""
}

.bi-bell-fill:before {
    content: ""
}

.bi-bell:before {
    content: ""
}

.bi-bezier:before {
    content: ""
}

.bi-bezier2:before {
    content: ""
}

.bi-bicycle:before {
    content: ""
}

.bi-binoculars-fill:before {
    content: ""
}

.bi-binoculars:before {
    content: ""
}

.bi-blockquote-left:before {
    content: ""
}

.bi-blockquote-right:before {
    content: ""
}

.bi-book-fill:before {
    content: ""
}

.bi-book-half:before {
    content: ""
}

.bi-book:before {
    content: ""
}

.bi-bookmark-check-fill:before {
    content: ""
}

.bi-bookmark-check:before {
    content: ""
}

.bi-bookmark-dash-fill:before {
    content: ""
}

.bi-bookmark-dash:before {
    content: ""
}

.bi-bookmark-fill:before {
    content: ""
}

.bi-bookmark-heart-fill:before {
    content: ""
}

.bi-bookmark-heart:before {
    content: ""
}

.bi-bookmark-plus-fill:before {
    content: ""
}

.bi-bookmark-plus:before {
    content: ""
}

.bi-bookmark-star-fill:before {
    content: ""
}

.bi-bookmark-star:before {
    content: ""
}

.bi-bookmark-x-fill:before {
    content: ""
}

.bi-bookmark-x:before {
    content: ""
}

.bi-bookmark:before {
    content: ""
}

.bi-bookmarks-fill:before {
    content: ""
}

.bi-bookmarks:before {
    content: ""
}

.bi-bookshelf:before {
    content: ""
}

.bi-bootstrap-fill:before {
    content: ""
}

.bi-bootstrap-reboot:before {
    content: ""
}

.bi-bootstrap:before {
    content: ""
}

.bi-border-all:before {
    content: ""
}

.bi-border-bottom:before {
    content: ""
}

.bi-border-center:before {
    content: ""
}

.bi-border-inner:before {
    content: ""
}

.bi-border-left:before {
    content: ""
}

.bi-border-middle:before {
    content: ""
}

.bi-border-outer:before {
    content: ""
}

.bi-border-right:before {
    content: ""
}

.bi-border-style:before {
    content: ""
}

.bi-border-top:before {
    content: ""
}

.bi-border-width:before {
    content: ""
}

.bi-border:before {
    content: ""
}

.bi-bounding-box-circles:before {
    content: ""
}

.bi-bounding-box:before {
    content: ""
}

.bi-box-arrow-down-left:before {
    content: ""
}

.bi-box-arrow-down-right:before {
    content: ""
}

.bi-box-arrow-down:before {
    content: ""
}

.bi-box-arrow-in-down-left:before {
    content: ""
}

.bi-box-arrow-in-down-right:before {
    content: ""
}

.bi-box-arrow-in-down:before {
    content: ""
}

.bi-box-arrow-in-left:before {
    content: ""
}

.bi-box-arrow-in-right:before {
    content: ""
}

.bi-box-arrow-in-up-left:before {
    content: ""
}

.bi-box-arrow-in-up-right:before {
    content: ""
}

.bi-box-arrow-in-up:before {
    content: ""
}

.bi-box-arrow-left:before {
    content: ""
}

.bi-box-arrow-right:before {
    content: ""
}

.bi-box-arrow-up-left:before {
    content: ""
}

.bi-box-arrow-up-right:before {
    content: ""
}

.bi-box-arrow-up:before {
    content: ""
}

.bi-box-seam:before {
    content: ""
}

.bi-box:before {
    content: ""
}

.bi-braces:before {
    content: ""
}

.bi-bricks:before {
    content: ""
}

.bi-briefcase-fill:before {
    content: ""
}

.bi-briefcase:before {
    content: ""
}

.bi-brightness-alt-high-fill:before {
    content: ""
}

.bi-brightness-alt-high:before {
    content: ""
}

.bi-brightness-alt-low-fill:before {
    content: ""
}

.bi-brightness-alt-low:before {
    content: ""
}

.bi-brightness-high-fill:before {
    content: ""
}

.bi-brightness-high:before {
    content: ""
}

.bi-brightness-low-fill:before {
    content: ""
}

.bi-brightness-low:before {
    content: ""
}

.bi-broadcast-pin:before {
    content: ""
}

.bi-broadcast:before {
    content: ""
}

.bi-brush-fill:before {
    content: ""
}

.bi-brush:before {
    content: ""
}

.bi-bucket-fill:before {
    content: ""
}

.bi-bucket:before {
    content: ""
}

.bi-bug-fill:before {
    content: ""
}

.bi-bug:before {
    content: ""
}

.bi-building:before {
    content: ""
}

.bi-bullseye:before {
    content: ""
}

.bi-calculator-fill:before {
    content: ""
}

.bi-calculator:before {
    content: ""
}

.bi-calendar-check-fill:before {
    content: ""
}

.bi-calendar-check:before {
    content: ""
}

.bi-calendar-date-fill:before {
    content: ""
}

.bi-calendar-date:before {
    content: ""
}

.bi-calendar-day-fill:before {
    content: ""
}

.bi-calendar-day:before {
    content: ""
}

.bi-calendar-event-fill:before {
    content: ""
}

.bi-calendar-event:before {
    content: ""
}

.bi-calendar-fill:before {
    content: ""
}

.bi-calendar-minus-fill:before {
    content: ""
}

.bi-calendar-minus:before {
    content: ""
}

.bi-calendar-month-fill:before {
    content: ""
}

.bi-calendar-month:before {
    content: ""
}

.bi-calendar-plus-fill:before {
    content: ""
}

.bi-calendar-plus:before {
    content: ""
}

.bi-calendar-range-fill:before {
    content: ""
}

.bi-calendar-range:before {
    content: ""
}

.bi-calendar-week-fill:before {
    content: ""
}

.bi-calendar-week:before {
    content: ""
}

.bi-calendar-x-fill:before {
    content: ""
}

.bi-calendar-x:before {
    content: ""
}

.bi-calendar:before {
    content: ""
}

.bi-calendar2-check-fill:before {
    content: ""
}

.bi-calendar2-check:before {
    content: ""
}

.bi-calendar2-date-fill:before {
    content: ""
}

.bi-calendar2-date:before {
    content: ""
}

.bi-calendar2-day-fill:before {
    content: ""
}

.bi-calendar2-day:before {
    content: ""
}

.bi-calendar2-event-fill:before {
    content: ""
}

.bi-calendar2-event:before {
    content: ""
}

.bi-calendar2-fill:before {
    content: ""
}

.bi-calendar2-minus-fill:before {
    content: ""
}

.bi-calendar2-minus:before {
    content: ""
}

.bi-calendar2-month-fill:before {
    content: ""
}

.bi-calendar2-month:before {
    content: ""
}

.bi-calendar2-plus-fill:before {
    content: ""
}

.bi-calendar2-plus:before {
    content: ""
}

.bi-calendar2-range-fill:before {
    content: ""
}

.bi-calendar2-range:before {
    content: ""
}

.bi-calendar2-week-fill:before {
    content: ""
}

.bi-calendar2-week:before {
    content: ""
}

.bi-calendar2-x-fill:before {
    content: ""
}

.bi-calendar2-x:before {
    content: ""
}

.bi-calendar2:before {
    content: ""
}

.bi-calendar3-event-fill:before {
    content: ""
}

.bi-calendar3-event:before {
    content: ""
}

.bi-calendar3-fill:before {
    content: ""
}

.bi-calendar3-range-fill:before {
    content: ""
}

.bi-calendar3-range:before {
    content: ""
}

.bi-calendar3-week-fill:before {
    content: ""
}

.bi-calendar3-week:before {
    content: ""
}

.bi-calendar3:before {
    content: ""
}

.bi-calendar4-event:before {
    content: ""
}

.bi-calendar4-range:before {
    content: ""
}

.bi-calendar4-week:before {
    content: ""
}

.bi-calendar4:before {
    content: ""
}

.bi-camera-fill:before {
    content: ""
}

.bi-camera-reels-fill:before {
    content: ""
}

.bi-camera-reels:before {
    content: ""
}

.bi-camera-video-fill:before {
    content: ""
}

.bi-camera-video-off-fill:before {
    content: ""
}

.bi-camera-video-off:before {
    content: ""
}

.bi-camera-video:before {
    content: ""
}

.bi-camera:before {
    content: ""
}

.bi-camera2:before {
    content: ""
}

.bi-capslock-fill:before {
    content: ""
}

.bi-capslock:before {
    content: ""
}

.bi-card-checklist:before {
    content: ""
}

.bi-card-heading:before {
    content: ""
}

.bi-card-image:before {
    content: ""
}

.bi-card-list:before {
    content: ""
}

.bi-card-text:before {
    content: ""
}

.bi-caret-down-fill:before {
    content: ""
}

.bi-caret-down-square-fill:before {
    content: ""
}

.bi-caret-down-square:before {
    content: ""
}

.bi-caret-down:before {
    content: ""
}

.bi-caret-left-fill:before {
    content: ""
}

.bi-caret-left-square-fill:before {
    content: ""
}

.bi-caret-left-square:before {
    content: ""
}

.bi-caret-left:before {
    content: ""
}

.bi-caret-right-fill:before {
    content: ""
}

.bi-caret-right-square-fill:before {
    content: ""
}

.bi-caret-right-square:before {
    content: ""
}

.bi-caret-right:before {
    content: ""
}

.bi-caret-up-fill:before {
    content: ""
}

.bi-caret-up-square-fill:before {
    content: ""
}

.bi-caret-up-square:before {
    content: ""
}

.bi-caret-up:before {
    content: ""
}

.bi-cart-check-fill:before {
    content: ""
}

.bi-cart-check:before {
    content: ""
}

.bi-cart-dash-fill:before {
    content: ""
}

.bi-cart-dash:before {
    content: ""
}

.bi-cart-fill:before {
    content: ""
}

.bi-cart-plus-fill:before {
    content: ""
}

.bi-cart-plus:before {
    content: ""
}

.bi-cart-x-fill:before {
    content: ""
}

.bi-cart-x:before {
    content: ""
}

.bi-cart:before {
    content: ""
}

.bi-cart2:before {
    content: ""
}

.bi-cart3:before {
    content: ""
}

.bi-cart4:before {
    content: ""
}

.bi-cash-stack:before {
    content: ""
}

.bi-cash:before {
    content: ""
}

.bi-cast:before {
    content: ""
}

.bi-chat-dots-fill:before {
    content: ""
}

.bi-chat-dots:before {
    content: ""
}

.bi-chat-fill:before {
    content: ""
}

.bi-chat-left-dots-fill:before {
    content: ""
}

.bi-chat-left-dots:before {
    content: ""
}

.bi-chat-left-fill:before {
    content: ""
}

.bi-chat-left-quote-fill:before {
    content: ""
}

.bi-chat-left-quote:before {
    content: ""
}

.bi-chat-left-text-fill:before {
    content: ""
}

.bi-chat-left-text:before {
    content: ""
}

.bi-chat-left:before {
    content: ""
}

.bi-chat-quote-fill:before {
    content: ""
}

.bi-chat-quote:before {
    content: ""
}

.bi-chat-right-dots-fill:before {
    content: ""
}

.bi-chat-right-dots:before {
    content: ""
}

.bi-chat-right-fill:before {
    content: ""
}

.bi-chat-right-quote-fill:before {
    content: ""
}

.bi-chat-right-quote:before {
    content: ""
}

.bi-chat-right-text-fill:before {
    content: ""
}

.bi-chat-right-text:before {
    content: ""
}

.bi-chat-right:before {
    content: ""
}

.bi-chat-square-dots-fill:before {
    content: ""
}

.bi-chat-square-dots:before {
    content: ""
}

.bi-chat-square-fill:before {
    content: ""
}

.bi-chat-square-quote-fill:before {
    content: ""
}

.bi-chat-square-quote:before {
    content: ""
}

.bi-chat-square-text-fill:before {
    content: ""
}

.bi-chat-square-text:before {
    content: ""
}

.bi-chat-square:before {
    content: ""
}

.bi-chat-text-fill:before {
    content: ""
}

.bi-chat-text:before {
    content: ""
}

.bi-chat:before {
    content: ""
}

.bi-check-all:before {
    content: ""
}

.bi-check-circle-fill:before {
    content: ""
}

.bi-check-circle:before {
    content: ""
}

.bi-check-square-fill:before {
    content: ""
}

.bi-check-square:before {
    content: ""
}

.bi-check:before {
    content: ""
}

.bi-check2-all:before {
    content: ""
}

.bi-check2-circle:before {
    content: ""
}

.bi-check2-square:before {
    content: ""
}

.bi-check2:before {
    content: ""
}

.bi-chevron-bar-contract:before {
    content: ""
}

.bi-chevron-bar-down:before {
    content: ""
}

.bi-chevron-bar-expand:before {
    content: ""
}

.bi-chevron-bar-left:before {
    content: ""
}

.bi-chevron-bar-right:before {
    content: ""
}

.bi-chevron-bar-up:before {
    content: ""
}

.bi-chevron-compact-down:before {
    content: ""
}

.bi-chevron-compact-left:before {
    content: ""
}

.bi-chevron-compact-right:before {
    content: ""
}

.bi-chevron-compact-up:before {
    content: ""
}

.bi-chevron-contract:before {
    content: ""
}

.bi-chevron-double-down:before {
    content: ""
}

.bi-chevron-double-left:before {
    content: ""
}

.bi-chevron-double-right:before {
    content: ""
}

.bi-chevron-double-up:before {
    content: ""
}

.bi-chevron-down:before {
    content: ""
}

.bi-chevron-expand:before {
    content: ""
}

.bi-chevron-left:before {
    content: ""
}

.bi-chevron-right:before {
    content: ""
}

.bi-chevron-up:before {
    content: ""
}

.bi-circle-fill:before {
    content: ""
}

.bi-circle-half:before {
    content: ""
}

.bi-circle-square:before {
    content: ""
}

.bi-circle:before {
    content: ""
}

.bi-clipboard-check:before {
    content: ""
}

.bi-clipboard-data:before {
    content: ""
}

.bi-clipboard-minus:before {
    content: ""
}

.bi-clipboard-plus:before {
    content: ""
}

.bi-clipboard-x:before {
    content: ""
}

.bi-clipboard:before {
    content: ""
}

.bi-clock-fill:before {
    content: ""
}

.bi-clock-history:before {
    content: ""
}

.bi-clock:before {
    content: ""
}

.bi-cloud-arrow-down-fill:before {
    content: ""
}

.bi-cloud-arrow-down:before {
    content: ""
}

.bi-cloud-arrow-up-fill:before {
    content: ""
}

.bi-cloud-arrow-up:before {
    content: ""
}

.bi-cloud-check-fill:before {
    content: ""
}

.bi-cloud-check:before {
    content: ""
}

.bi-cloud-download-fill:before {
    content: ""
}

.bi-cloud-download:before {
    content: ""
}

.bi-cloud-drizzle-fill:before {
    content: ""
}

.bi-cloud-drizzle:before {
    content: ""
}

.bi-cloud-fill:before {
    content: ""
}

.bi-cloud-fog-fill:before {
    content: ""
}

.bi-cloud-fog:before {
    content: ""
}

.bi-cloud-fog2-fill:before {
    content: ""
}

.bi-cloud-fog2:before {
    content: ""
}

.bi-cloud-hail-fill:before {
    content: ""
}

.bi-cloud-hail:before {
    content: ""
}

.bi-cloud-haze-1:before {
    content: ""
}

.bi-cloud-haze-fill:before {
    content: ""
}

.bi-cloud-haze:before {
    content: ""
}

.bi-cloud-haze2-fill:before {
    content: ""
}

.bi-cloud-lightning-fill:before {
    content: ""
}

.bi-cloud-lightning-rain-fill:before {
    content: ""
}

.bi-cloud-lightning-rain:before {
    content: ""
}

.bi-cloud-lightning:before {
    content: ""
}

.bi-cloud-minus-fill:before {
    content: ""
}

.bi-cloud-minus:before {
    content: ""
}

.bi-cloud-moon-fill:before {
    content: ""
}

.bi-cloud-moon:before {
    content: ""
}

.bi-cloud-plus-fill:before {
    content: ""
}

.bi-cloud-plus:before {
    content: ""
}

.bi-cloud-rain-fill:before {
    content: ""
}

.bi-cloud-rain-heavy-fill:before {
    content: ""
}

.bi-cloud-rain-heavy:before {
    content: ""
}

.bi-cloud-rain:before {
    content: ""
}

.bi-cloud-slash-fill:before {
    content: ""
}

.bi-cloud-slash:before {
    content: ""
}

.bi-cloud-sleet-fill:before {
    content: ""
}

.bi-cloud-sleet:before {
    content: ""
}

.bi-cloud-snow-fill:before {
    content: ""
}

.bi-cloud-snow:before {
    content: ""
}

.bi-cloud-sun-fill:before {
    content: ""
}

.bi-cloud-sun:before {
    content: ""
}

.bi-cloud-upload-fill:before {
    content: ""
}

.bi-cloud-upload:before {
    content: ""
}

.bi-cloud:before {
    content: ""
}

.bi-clouds-fill:before {
    content: ""
}

.bi-clouds:before {
    content: ""
}

.bi-cloudy-fill:before {
    content: ""
}

.bi-cloudy:before {
    content: ""
}

.bi-code-slash:before {
    content: ""
}

.bi-code-square:before {
    content: ""
}

.bi-code:before {
    content: ""
}

.bi-collection-fill:before {
    content: ""
}

.bi-collection-play-fill:before {
    content: ""
}

.bi-collection-play:before {
    content: ""
}

.bi-collection:before {
    content: ""
}

.bi-columns-gap:before {
    content: ""
}

.bi-columns:before {
    content: ""
}

.bi-command:before {
    content: ""
}

.bi-compass-fill:before {
    content: ""
}

.bi-compass:before {
    content: ""
}

.bi-cone-striped:before {
    content: ""
}

.bi-cone:before {
    content: ""
}

.bi-controller:before {
    content: ""
}

.bi-cpu-fill:before {
    content: ""
}

.bi-cpu:before {
    content: ""
}

.bi-credit-card-2-back-fill:before {
    content: ""
}

.bi-credit-card-2-back:before {
    content: ""
}

.bi-credit-card-2-front-fill:before {
    content: ""
}

.bi-credit-card-2-front:before {
    content: ""
}

.bi-credit-card-fill:before {
    content: ""
}

.bi-credit-card:before {
    content: ""
}

.bi-crop:before {
    content: ""
}

.bi-cup-fill:before {
    content: ""
}

.bi-cup-straw:before {
    content: ""
}

.bi-cup:before {
    content: ""
}

.bi-cursor-fill:before {
    content: ""
}

.bi-cursor-text:before {
    content: ""
}

.bi-cursor:before {
    content: ""
}

.bi-dash-circle-dotted:before {
    content: ""
}

.bi-dash-circle-fill:before {
    content: ""
}

.bi-dash-circle:before {
    content: ""
}

.bi-dash-square-dotted:before {
    content: ""
}

.bi-dash-square-fill:before {
    content: ""
}

.bi-dash-square:before {
    content: ""
}

.bi-dash:before {
    content: ""
}

.bi-diagram-2-fill:before {
    content: ""
}

.bi-diagram-2:before {
    content: ""
}

.bi-diagram-3-fill:before {
    content: ""
}

.bi-diagram-3:before {
    content: ""
}

.bi-diamond-fill:before {
    content: ""
}

.bi-diamond-half:before {
    content: ""
}

.bi-diamond:before {
    content: ""
}

.bi-dice-1-fill:before {
    content: ""
}

.bi-dice-1:before {
    content: ""
}

.bi-dice-2-fill:before {
    content: ""
}

.bi-dice-2:before {
    content: ""
}

.bi-dice-3-fill:before {
    content: ""
}

.bi-dice-3:before {
    content: ""
}

.bi-dice-4-fill:before {
    content: ""
}

.bi-dice-4:before {
    content: ""
}

.bi-dice-5-fill:before {
    content: ""
}

.bi-dice-5:before {
    content: ""
}

.bi-dice-6-fill:before {
    content: ""
}

.bi-dice-6:before {
    content: ""
}

.bi-disc-fill:before {
    content: ""
}

.bi-disc:before {
    content: ""
}

.bi-discord:before {
    content: ""
}

.bi-display-fill:before {
    content: ""
}

.bi-display:before {
    content: ""
}

.bi-distribute-horizontal:before {
    content: ""
}

.bi-distribute-vertical:before {
    content: ""
}

.bi-door-closed-fill:before {
    content: ""
}

.bi-door-closed:before {
    content: ""
}

.bi-door-open-fill:before {
    content: ""
}

.bi-door-open:before {
    content: ""
}

.bi-dot:before {
    content: ""
}

.bi-download:before {
    content: ""
}

.bi-droplet-fill:before {
    content: ""
}

.bi-droplet-half:before {
    content: ""
}

.bi-droplet:before {
    content: ""
}

.bi-earbuds:before {
    content: ""
}

.bi-easel-fill:before {
    content: ""
}

.bi-easel:before {
    content: ""
}

.bi-egg-fill:before {
    content: ""
}

.bi-egg-fried:before {
    content: ""
}

.bi-egg:before {
    content: ""
}

.bi-eject-fill:before {
    content: ""
}

.bi-eject:before {
    content: ""
}

.bi-emoji-angry-fill:before {
    content: ""
}

.bi-emoji-angry:before {
    content: ""
}

.bi-emoji-dizzy-fill:before {
    content: ""
}

.bi-emoji-dizzy:before {
    content: ""
}

.bi-emoji-expressionless-fill:before {
    content: ""
}

.bi-emoji-expressionless:before {
    content: ""
}

.bi-emoji-frown-fill:before {
    content: ""
}

.bi-emoji-frown:before {
    content: ""
}

.bi-emoji-heart-eyes-fill:before {
    content: ""
}

.bi-emoji-heart-eyes:before {
    content: ""
}

.bi-emoji-laughing-fill:before {
    content: ""
}

.bi-emoji-laughing:before {
    content: ""
}

.bi-emoji-neutral-fill:before {
    content: ""
}

.bi-emoji-neutral:before {
    content: ""
}

.bi-emoji-smile-fill:before {
    content: ""
}

.bi-emoji-smile-upside-down-fill:before {
    content: ""
}

.bi-emoji-smile-upside-down:before {
    content: ""
}

.bi-emoji-smile:before {
    content: ""
}

.bi-emoji-sunglasses-fill:before {
    content: ""
}

.bi-emoji-sunglasses:before {
    content: ""
}

.bi-emoji-wink-fill:before {
    content: ""
}

.bi-emoji-wink:before {
    content: ""
}

.bi-envelope-fill:before {
    content: ""
}

.bi-envelope-open-fill:before {
    content: ""
}

.bi-envelope-open:before {
    content: ""
}

.bi-envelope:before {
    content: ""
}

.bi-eraser-fill:before {
    content: ""
}

.bi-eraser:before {
    content: ""
}

.bi-exclamation-circle-fill:before {
    content: ""
}

.bi-exclamation-circle:before {
    content: ""
}

.bi-exclamation-diamond-fill:before {
    content: ""
}

.bi-exclamation-diamond:before {
    content: ""
}

.bi-exclamation-octagon-fill:before {
    content: ""
}

.bi-exclamation-octagon:before {
    content: ""
}

.bi-exclamation-square-fill:before {
    content: ""
}

.bi-exclamation-square:before {
    content: ""
}

.bi-exclamation-triangle-fill:before {
    content: ""
}

.bi-exclamation-triangle:before {
    content: ""
}

.bi-exclamation:before {
    content: ""
}

.bi-exclude:before {
    content: ""
}

.bi-eye-fill:before {
    content: ""
}

.bi-eye-slash-fill:before {
    content: ""
}

.bi-eye-slash:before {
    content: ""
}

.bi-eye:before {
    content: ""
}

.bi-eyedropper:before {
    content: ""
}

.bi-eyeglasses:before {
    content: ""
}

.bi-facebook:before {
    content: ""
}

.bi-file-arrow-down-fill:before {
    content: ""
}

.bi-file-arrow-down:before {
    content: ""
}

.bi-file-arrow-up-fill:before {
    content: ""
}

.bi-file-arrow-up:before {
    content: ""
}

.bi-file-bar-graph-fill:before {
    content: ""
}

.bi-file-bar-graph:before {
    content: ""
}

.bi-file-binary-fill:before {
    content: ""
}

.bi-file-binary:before {
    content: ""
}

.bi-file-break-fill:before {
    content: ""
}

.bi-file-break:before {
    content: ""
}

.bi-file-check-fill:before {
    content: ""
}

.bi-file-check:before {
    content: ""
}

.bi-file-code-fill:before {
    content: ""
}

.bi-file-code:before {
    content: ""
}

.bi-file-diff-fill:before {
    content: ""
}

.bi-file-diff:before {
    content: ""
}

.bi-file-earmark-arrow-down-fill:before {
    content: ""
}

.bi-file-earmark-arrow-down:before {
    content: ""
}

.bi-file-earmark-arrow-up-fill:before {
    content: ""
}

.bi-file-earmark-arrow-up:before {
    content: ""
}

.bi-file-earmark-bar-graph-fill:before {
    content: ""
}

.bi-file-earmark-bar-graph:before {
    content: ""
}

.bi-file-earmark-binary-fill:before {
    content: ""
}

.bi-file-earmark-binary:before {
    content: ""
}

.bi-file-earmark-break-fill:before {
    content: ""
}

.bi-file-earmark-break:before {
    content: ""
}

.bi-file-earmark-check-fill:before {
    content: ""
}

.bi-file-earmark-check:before {
    content: ""
}

.bi-file-earmark-code-fill:before {
    content: ""
}

.bi-file-earmark-code:before {
    content: ""
}

.bi-file-earmark-diff-fill:before {
    content: ""
}

.bi-file-earmark-diff:before {
    content: ""
}

.bi-file-earmark-easel-fill:before {
    content: ""
}

.bi-file-earmark-easel:before {
    content: ""
}

.bi-file-earmark-excel-fill:before {
    content: ""
}

.bi-file-earmark-excel:before {
    content: ""
}

.bi-file-earmark-fill:before {
    content: ""
}

.bi-file-earmark-font-fill:before {
    content: ""
}

.bi-file-earmark-font:before {
    content: ""
}

.bi-file-earmark-image-fill:before {
    content: ""
}

.bi-file-earmark-image:before {
    content: ""
}

.bi-file-earmark-lock-fill:before {
    content: ""
}

.bi-file-earmark-lock:before {
    content: ""
}

.bi-file-earmark-lock2-fill:before {
    content: ""
}

.bi-file-earmark-lock2:before {
    content: ""
}

.bi-file-earmark-medical-fill:before {
    content: ""
}

.bi-file-earmark-medical:before {
    content: ""
}

.bi-file-earmark-minus-fill:before {
    content: ""
}

.bi-file-earmark-minus:before {
    content: ""
}

.bi-file-earmark-music-fill:before {
    content: ""
}

.bi-file-earmark-music:before {
    content: ""
}

.bi-file-earmark-person-fill:before {
    content: ""
}

.bi-file-earmark-person:before {
    content: ""
}

.bi-file-earmark-play-fill:before {
    content: ""
}

.bi-file-earmark-play:before {
    content: ""
}

.bi-file-earmark-plus-fill:before {
    content: ""
}

.bi-file-earmark-plus:before {
    content: ""
}

.bi-file-earmark-post-fill:before {
    content: ""
}

.bi-file-earmark-post:before {
    content: ""
}

.bi-file-earmark-ppt-fill:before {
    content: ""
}

.bi-file-earmark-ppt:before {
    content: ""
}

.bi-file-earmark-richtext-fill:before {
    content: ""
}

.bi-file-earmark-richtext:before {
    content: ""
}

.bi-file-earmark-ruled-fill:before {
    content: ""
}

.bi-file-earmark-ruled:before {
    content: ""
}

.bi-file-earmark-slides-fill:before {
    content: ""
}

.bi-file-earmark-slides:before {
    content: ""
}

.bi-file-earmark-spreadsheet-fill:before {
    content: ""
}

.bi-file-earmark-spreadsheet:before {
    content: ""
}

.bi-file-earmark-text-fill:before {
    content: ""
}

.bi-file-earmark-text:before {
    content: ""
}

.bi-file-earmark-word-fill:before {
    content: ""
}

.bi-file-earmark-word:before {
    content: ""
}

.bi-file-earmark-x-fill:before {
    content: ""
}

.bi-file-earmark-x:before {
    content: ""
}

.bi-file-earmark-zip-fill:before {
    content: ""
}

.bi-file-earmark-zip:before {
    content: ""
}

.bi-file-earmark:before {
    content: ""
}

.bi-file-easel-fill:before {
    content: ""
}

.bi-file-easel:before {
    content: ""
}

.bi-file-excel-fill:before {
    content: ""
}

.bi-file-excel:before {
    content: ""
}

.bi-file-fill:before {
    content: ""
}

.bi-file-font-fill:before {
    content: ""
}

.bi-file-font:before {
    content: ""
}

.bi-file-image-fill:before {
    content: ""
}

.bi-file-image:before {
    content: ""
}

.bi-file-lock-fill:before {
    content: ""
}

.bi-file-lock:before {
    content: ""
}

.bi-file-lock2-fill:before {
    content: ""
}

.bi-file-lock2:before {
    content: ""
}

.bi-file-medical-fill:before {
    content: ""
}

.bi-file-medical:before {
    content: ""
}

.bi-file-minus-fill:before {
    content: ""
}

.bi-file-minus:before {
    content: ""
}

.bi-file-music-fill:before {
    content: ""
}

.bi-file-music:before {
    content: ""
}

.bi-file-person-fill:before {
    content: ""
}

.bi-file-person:before {
    content: ""
}

.bi-file-play-fill:before {
    content: ""
}

.bi-file-play:before {
    content: ""
}

.bi-file-plus-fill:before {
    content: ""
}

.bi-file-plus:before {
    content: ""
}

.bi-file-post-fill:before {
    content: ""
}

.bi-file-post:before {
    content: ""
}

.bi-file-ppt-fill:before {
    content: ""
}

.bi-file-ppt:before {
    content: ""
}

.bi-file-richtext-fill:before {
    content: ""
}

.bi-file-richtext:before {
    content: ""
}

.bi-file-ruled-fill:before {
    content: ""
}

.bi-file-ruled:before {
    content: ""
}

.bi-file-slides-fill:before {
    content: ""
}

.bi-file-slides:before {
    content: ""
}

.bi-file-spreadsheet-fill:before {
    content: ""
}

.bi-file-spreadsheet:before {
    content: ""
}

.bi-file-text-fill:before {
    content: ""
}

.bi-file-text:before {
    content: ""
}

.bi-file-word-fill:before {
    content: ""
}

.bi-file-word:before {
    content: ""
}

.bi-file-x-fill:before {
    content: ""
}

.bi-file-x:before {
    content: ""
}

.bi-file-zip-fill:before {
    content: ""
}

.bi-file-zip:before {
    content: ""
}

.bi-file:before {
    content: ""
}

.bi-files-alt:before {
    content: ""
}

.bi-files:before {
    content: ""
}

.bi-film:before {
    content: ""
}

.bi-filter-circle-fill:before {
    content: ""
}

.bi-filter-circle:before {
    content: ""
}

.bi-filter-left:before {
    content: ""
}

.bi-filter-right:before {
    content: ""
}

.bi-filter-square-fill:before {
    content: ""
}

.bi-filter-square:before {
    content: ""
}

.bi-filter:before {
    content: ""
}

.bi-flag-fill:before {
    content: ""
}

.bi-flag:before {
    content: ""
}

.bi-flower1:before {
    content: ""
}

.bi-flower2:before {
    content: ""
}

.bi-flower3:before {
    content: ""
}

.bi-folder-check:before {
    content: ""
}

.bi-folder-fill:before {
    content: ""
}

.bi-folder-minus:before {
    content: ""
}

.bi-folder-plus:before {
    content: ""
}

.bi-folder-symlink-fill:before {
    content: ""
}

.bi-folder-symlink:before {
    content: ""
}

.bi-folder-x:before {
    content: ""
}

.bi-folder:before {
    content: ""
}

.bi-folder2-open:before {
    content: ""
}

.bi-folder2:before {
    content: ""
}

.bi-fonts:before {
    content: ""
}

.bi-forward-fill:before {
    content: ""
}

.bi-forward:before {
    content: ""
}

.bi-front:before {
    content: ""
}

.bi-fullscreen-exit:before {
    content: ""
}

.bi-fullscreen:before {
    content: ""
}

.bi-funnel-fill:before {
    content: ""
}

.bi-funnel:before {
    content: ""
}

.bi-gear-fill:before {
    content: ""
}

.bi-gear-wide-connected:before {
    content: ""
}

.bi-gear-wide:before {
    content: ""
}

.bi-gear:before {
    content: ""
}

.bi-gem:before {
    content: ""
}

.bi-geo-alt-fill:before {
    content: ""
}

.bi-geo-alt:before {
    content: ""
}

.bi-geo-fill:before {
    content: ""
}

.bi-geo:before {
    content: ""
}

.bi-gift-fill:before {
    content: ""
}

.bi-gift:before {
    content: ""
}

.bi-github:before {
    content: ""
}

.bi-globe:before {
    content: ""
}

.bi-globe2:before {
    content: ""
}

.bi-google:before {
    content: ""
}

.bi-graph-down:before {
    content: ""
}

.bi-graph-up:before {
    content: ""
}

.bi-grid-1x2-fill:before {
    content: ""
}

.bi-grid-1x2:before {
    content: ""
}

.bi-grid-3x2-gap-fill:before {
    content: ""
}

.bi-grid-3x2-gap:before {
    content: ""
}

.bi-grid-3x2:before {
    content: ""
}

.bi-grid-3x3-gap-fill:before {
    content: ""
}

.bi-grid-3x3-gap:before {
    content: ""
}

.bi-grid-3x3:before {
    content: ""
}

.bi-grid-fill:before {
    content: ""
}

.bi-grid:before {
    content: ""
}

.bi-grip-horizontal:before {
    content: ""
}

.bi-grip-vertical:before {
    content: ""
}

.bi-hammer:before {
    content: ""
}

.bi-hand-index-fill:before {
    content: ""
}

.bi-hand-index-thumb-fill:before {
    content: ""
}

.bi-hand-index-thumb:before {
    content: ""
}

.bi-hand-index:before {
    content: ""
}

.bi-hand-thumbs-down-fill:before {
    content: ""
}

.bi-hand-thumbs-down:before {
    content: ""
}

.bi-hand-thumbs-up-fill:before {
    content: ""
}

.bi-hand-thumbs-up:before {
    content: ""
}

.bi-handbag-fill:before {
    content: ""
}

.bi-handbag:before {
    content: ""
}

.bi-hash:before {
    content: ""
}

.bi-hdd-fill:before {
    content: ""
}

.bi-hdd-network-fill:before {
    content: ""
}

.bi-hdd-network:before {
    content: ""
}

.bi-hdd-rack-fill:before {
    content: ""
}

.bi-hdd-rack:before {
    content: ""
}

.bi-hdd-stack-fill:before {
    content: ""
}

.bi-hdd-stack:before {
    content: ""
}

.bi-hdd:before {
    content: ""
}

.bi-headphones:before {
    content: ""
}

.bi-headset:before {
    content: ""
}

.bi-heart-fill:before {
    content: ""
}

.bi-heart-half:before {
    content: ""
}

.bi-heart:before {
    content: ""
}

.bi-heptagon-fill:before {
    content: ""
}

.bi-heptagon-half:before {
    content: ""
}

.bi-heptagon:before {
    content: ""
}

.bi-hexagon-fill:before {
    content: ""
}

.bi-hexagon-half:before {
    content: ""
}

.bi-hexagon:before {
    content: ""
}

.bi-hourglass-bottom:before {
    content: ""
}

.bi-hourglass-split:before {
    content: ""
}

.bi-hourglass-top:before {
    content: ""
}

.bi-hourglass:before {
    content: ""
}

.bi-house-door-fill:before {
    content: ""
}

.bi-house-door:before {
    content: ""
}

.bi-house-fill:before {
    content: ""
}

.bi-house:before {
    content: ""
}

.bi-hr:before {
    content: ""
}

.bi-hurricane:before {
    content: ""
}

.bi-image-alt:before {
    content: ""
}

.bi-image-fill:before {
    content: ""
}

.bi-image:before {
    content: ""
}

.bi-images:before {
    content: ""
}

.bi-inbox-fill:before {
    content: ""
}

.bi-inbox:before {
    content: ""
}

.bi-inboxes-fill:before {
    content: ""
}

.bi-inboxes:before {
    content: ""
}

.bi-info-circle-fill:before {
    content: ""
}

.bi-info-circle:before {
    content: ""
}

.bi-info-square-fill:before {
    content: ""
}

.bi-info-square:before {
    content: ""
}

.bi-info:before {
    content: ""
}

.bi-input-cursor-text:before {
    content: ""
}

.bi-input-cursor:before {
    content: ""
}

.bi-instagram:before {
    content: ""
}

.bi-intersect:before {
    content: ""
}

.bi-journal-album:before {
    content: ""
}

.bi-journal-arrow-down:before {
    content: ""
}

.bi-journal-arrow-up:before {
    content: ""
}

.bi-journal-bookmark-fill:before {
    content: ""
}

.bi-journal-bookmark:before {
    content: ""
}

.bi-journal-check:before {
    content: ""
}

.bi-journal-code:before {
    content: ""
}

.bi-journal-medical:before {
    content: ""
}

.bi-journal-minus:before {
    content: ""
}

.bi-journal-plus:before {
    content: ""
}

.bi-journal-richtext:before {
    content: ""
}

.bi-journal-text:before {
    content: ""
}

.bi-journal-x:before {
    content: ""
}

.bi-journal:before {
    content: ""
}

.bi-journals:before {
    content: ""
}

.bi-joystick:before {
    content: ""
}

.bi-justify-left:before {
    content: ""
}

.bi-justify-right:before {
    content: ""
}

.bi-justify:before {
    content: ""
}

.bi-kanban-fill:before {
    content: ""
}

.bi-kanban:before {
    content: ""
}

.bi-key-fill:before {
    content: ""
}

.bi-key:before {
    content: ""
}

.bi-keyboard-fill:before {
    content: ""
}

.bi-keyboard:before {
    content: ""
}

.bi-ladder:before {
    content: ""
}

.bi-lamp-fill:before {
    content: ""
}

.bi-lamp:before {
    content: ""
}

.bi-laptop-fill:before {
    content: ""
}

.bi-laptop:before {
    content: ""
}

.bi-layer-backward:before {
    content: ""
}

.bi-layer-forward:before {
    content: ""
}

.bi-layers-fill:before {
    content: ""
}

.bi-layers-half:before {
    content: ""
}

.bi-layers:before {
    content: ""
}

.bi-layout-sidebar-inset-reverse:before {
    content: ""
}

.bi-layout-sidebar-inset:before {
    content: ""
}

.bi-layout-sidebar-reverse:before {
    content: ""
}

.bi-layout-sidebar:before {
    content: ""
}

.bi-layout-split:before {
    content: ""
}

.bi-layout-text-sidebar-reverse:before {
    content: ""
}

.bi-layout-text-sidebar:before {
    content: ""
}

.bi-layout-text-window-reverse:before {
    content: ""
}

.bi-layout-text-window:before {
    content: ""
}

.bi-layout-three-columns:before {
    content: ""
}

.bi-layout-wtf:before {
    content: ""
}

.bi-life-preserver:before {
    content: ""
}

.bi-lightbulb-fill:before {
    content: ""
}

.bi-lightbulb-off-fill:before {
    content: ""
}

.bi-lightbulb-off:before {
    content: ""
}

.bi-lightbulb:before {
    content: ""
}

.bi-lightning-charge-fill:before {
    content: ""
}

.bi-lightning-charge:before {
    content: ""
}

.bi-lightning-fill:before {
    content: ""
}

.bi-lightning:before {
    content: ""
}

.bi-link-45deg:before {
    content: ""
}

.bi-link:before {
    content: ""
}

.bi-linkedin:before {
    content: ""
}

.bi-list-check:before {
    content: ""
}

.bi-list-nested:before {
    content: ""
}

.bi-list-ol:before {
    content: ""
}

.bi-list-stars:before {
    content: ""
}

.bi-list-task:before {
    content: ""
}

.bi-list-ul:before {
    content: ""
}

.bi-list:before {
    content: ""
}

.bi-lock-fill:before {
    content: ""
}

.bi-lock:before {
    content: ""
}

.bi-mailbox:before {
    content: ""
}

.bi-mailbox2:before {
    content: ""
}

.bi-map-fill:before {
    content: ""
}

.bi-map:before {
    content: ""
}

.bi-markdown-fill:before {
    content: ""
}

.bi-markdown:before {
    content: ""
}

.bi-mask:before {
    content: ""
}

.bi-megaphone-fill:before {
    content: ""
}

.bi-megaphone:before {
    content: ""
}

.bi-menu-app-fill:before {
    content: ""
}

.bi-menu-app:before {
    content: ""
}

.bi-menu-button-fill:before {
    content: ""
}

.bi-menu-button-wide-fill:before {
    content: ""
}

.bi-menu-button-wide:before {
    content: ""
}

.bi-menu-button:before {
    content: ""
}

.bi-menu-down:before {
    content: ""
}

.bi-menu-up:before {
    content: ""
}

.bi-mic-fill:before {
    content: ""
}

.bi-mic-mute-fill:before {
    content: ""
}

.bi-mic-mute:before {
    content: ""
}

.bi-mic:before {
    content: ""
}

.bi-minecart-loaded:before {
    content: ""
}

.bi-minecart:before {
    content: ""
}

.bi-moisture:before {
    content: ""
}

.bi-moon-fill:before {
    content: ""
}

.bi-moon-stars-fill:before {
    content: ""
}

.bi-moon-stars:before {
    content: ""
}

.bi-moon:before {
    content: ""
}

.bi-mouse-fill:before {
    content: ""
}

.bi-mouse:before {
    content: ""
}

.bi-mouse2-fill:before {
    content: ""
}

.bi-mouse2:before {
    content: ""
}

.bi-mouse3-fill:before {
    content: ""
}

.bi-mouse3:before {
    content: ""
}

.bi-music-note-beamed:before {
    content: ""
}

.bi-music-note-list:before {
    content: ""
}

.bi-music-note:before {
    content: ""
}

.bi-music-player-fill:before {
    content: ""
}

.bi-music-player:before {
    content: ""
}

.bi-newspaper:before {
    content: ""
}

.bi-node-minus-fill:before {
    content: ""
}

.bi-node-minus:before {
    content: ""
}

.bi-node-plus-fill:before {
    content: ""
}

.bi-node-plus:before {
    content: ""
}

.bi-nut-fill:before {
    content: ""
}

.bi-nut:before {
    content: ""
}

.bi-octagon-fill:before {
    content: ""
}

.bi-octagon-half:before {
    content: ""
}

.bi-octagon:before {
    content: ""
}

.bi-option:before {
    content: ""
}

.bi-outlet:before {
    content: ""
}

.bi-paint-bucket:before {
    content: ""
}

.bi-palette-fill:before {
    content: ""
}

.bi-palette:before {
    content: ""
}

.bi-palette2:before {
    content: ""
}

.bi-paperclip:before {
    content: ""
}

.bi-paragraph:before {
    content: ""
}

.bi-patch-check-fill:before {
    content: ""
}

.bi-patch-check:before {
    content: ""
}

.bi-patch-exclamation-fill:before {
    content: ""
}

.bi-patch-exclamation:before {
    content: ""
}

.bi-patch-minus-fill:before {
    content: ""
}

.bi-patch-minus:before {
    content: ""
}

.bi-patch-plus-fill:before {
    content: ""
}

.bi-patch-plus:before {
    content: ""
}

.bi-patch-question-fill:before {
    content: ""
}

.bi-patch-question:before {
    content: ""
}

.bi-pause-btn-fill:before {
    content: ""
}

.bi-pause-btn:before {
    content: ""
}

.bi-pause-circle-fill:before {
    content: ""
}

.bi-pause-circle:before {
    content: ""
}

.bi-pause-fill:before {
    content: ""
}

.bi-pause:before {
    content: ""
}

.bi-peace-fill:before {
    content: ""
}

.bi-peace:before {
    content: ""
}

.bi-pen-fill:before {
    content: ""
}

.bi-pen:before {
    content: ""
}

.bi-pencil-fill:before {
    content: ""
}

.bi-pencil-square:before {
    content: ""
}

.bi-pencil:before {
    content: ""
}

.bi-pentagon-fill:before {
    content: ""
}

.bi-pentagon-half:before {
    content: ""
}

.bi-pentagon:before {
    content: ""
}

.bi-people-fill:before {
    content: ""
}

.bi-people:before {
    content: ""
}

.bi-percent:before {
    content: ""
}

.bi-person-badge-fill:before {
    content: ""
}

.bi-person-badge:before {
    content: ""
}

.bi-person-bounding-box:before {
    content: ""
}

.bi-person-check-fill:before {
    content: ""
}

.bi-person-check:before {
    content: ""
}

.bi-person-circle:before {
    content: ""
}

.bi-person-dash-fill:before {
    content: ""
}

.bi-person-dash:before {
    content: ""
}

.bi-person-fill:before {
    content: ""
}

.bi-person-lines-fill:before {
    content: ""
}

.bi-person-plus-fill:before {
    content: ""
}

.bi-person-plus:before {
    content: ""
}

.bi-person-square:before {
    content: ""
}

.bi-person-x-fill:before {
    content: ""
}

.bi-person-x:before {
    content: ""
}

.bi-person:before {
    content: ""
}

.bi-phone-fill:before {
    content: ""
}

.bi-phone-landscape-fill:before {
    content: ""
}

.bi-phone-landscape:before {
    content: ""
}

.bi-phone-vibrate-fill:before {
    content: ""
}

.bi-phone-vibrate:before {
    content: ""
}

.bi-phone:before {
    content: ""
}

.bi-pie-chart-fill:before {
    content: ""
}

.bi-pie-chart:before {
    content: ""
}

.bi-pin-angle-fill:before {
    content: ""
}

.bi-pin-angle:before {
    content: ""
}

.bi-pin-fill:before {
    content: ""
}

.bi-pin:before {
    content: ""
}

.bi-pip-fill:before {
    content: ""
}

.bi-pip:before {
    content: ""
}

.bi-play-btn-fill:before {
    content: ""
}

.bi-play-btn:before {
    content: ""
}

.bi-play-circle-fill:before {
    content: ""
}

.bi-play-circle:before {
    content: ""
}

.bi-play-fill:before {
    content: ""
}

.bi-play:before {
    content: ""
}

.bi-plug-fill:before {
    content: ""
}

.bi-plug:before {
    content: ""
}

.bi-plus-circle-dotted:before {
    content: ""
}

.bi-plus-circle-fill:before {
    content: ""
}

.bi-plus-circle:before {
    content: ""
}

.bi-plus-square-dotted:before {
    content: ""
}

.bi-plus-square-fill:before {
    content: ""
}

.bi-plus-square:before {
    content: ""
}

.bi-plus:before {
    content: ""
}

.bi-power:before {
    content: ""
}

.bi-printer-fill:before {
    content: ""
}

.bi-printer:before {
    content: ""
}

.bi-puzzle-fill:before {
    content: ""
}

.bi-puzzle:before {
    content: ""
}

.bi-question-circle-fill:before {
    content: ""
}

.bi-question-circle:before {
    content: ""
}

.bi-question-diamond-fill:before {
    content: ""
}

.bi-question-diamond:before {
    content: ""
}

.bi-question-octagon-fill:before {
    content: ""
}

.bi-question-octagon:before {
    content: ""
}

.bi-question-square-fill:before {
    content: ""
}

.bi-question-square:before {
    content: ""
}

.bi-question:before {
    content: ""
}

.bi-rainbow:before {
    content: ""
}

.bi-receipt-cutoff:before {
    content: ""
}

.bi-receipt:before {
    content: ""
}

.bi-reception-0:before {
    content: ""
}

.bi-reception-1:before {
    content: ""
}

.bi-reception-2:before {
    content: ""
}

.bi-reception-3:before {
    content: ""
}

.bi-reception-4:before {
    content: ""
}

.bi-record-btn-fill:before {
    content: ""
}

.bi-record-btn:before {
    content: ""
}

.bi-record-circle-fill:before {
    content: ""
}

.bi-record-circle:before {
    content: ""
}

.bi-record-fill:before {
    content: ""
}

.bi-record:before {
    content: ""
}

.bi-record2-fill:before {
    content: ""
}

.bi-record2:before {
    content: ""
}

.bi-reply-all-fill:before {
    content: ""
}

.bi-reply-all:before {
    content: ""
}

.bi-reply-fill:before {
    content: ""
}

.bi-reply:before {
    content: ""
}

.bi-rss-fill:before {
    content: ""
}

.bi-rss:before {
    content: ""
}

.bi-rulers:before {
    content: ""
}

.bi-save-fill:before {
    content: ""
}

.bi-save:before {
    content: ""
}

.bi-save2-fill:before {
    content: ""
}

.bi-save2:before {
    content: ""
}

.bi-scissors:before {
    content: ""
}

.bi-screwdriver:before {
    content: ""
}

.bi-search:before {
    content: ""
}

.bi-segmented-nav:before {
    content: ""
}

.bi-server:before {
    content: ""
}

.bi-share-fill:before {
    content: ""
}

.bi-share:before {
    content: ""
}

.bi-shield-check:before {
    content: ""
}

.bi-shield-exclamation:before {
    content: ""
}

.bi-shield-fill-check:before {
    content: ""
}

.bi-shield-fill-exclamation:before {
    content: ""
}

.bi-shield-fill-minus:before {
    content: ""
}

.bi-shield-fill-plus:before {
    content: ""
}

.bi-shield-fill-x:before {
    content: ""
}

.bi-shield-fill:before {
    content: ""
}

.bi-shield-lock-fill:before {
    content: ""
}

.bi-shield-lock:before {
    content: ""
}

.bi-shield-minus:before {
    content: ""
}

.bi-shield-plus:before {
    content: ""
}

.bi-shield-shaded:before {
    content: ""
}

.bi-shield-slash-fill:before {
    content: ""
}

.bi-shield-slash:before {
    content: ""
}

.bi-shield-x:before {
    content: ""
}

.bi-shield:before {
    content: ""
}

.bi-shift-fill:before {
    content: ""
}

.bi-shift:before {
    content: ""
}

.bi-shop-window:before {
    content: ""
}

.bi-shop:before {
    content: ""
}

.bi-shuffle:before {
    content: ""
}

.bi-signpost-2-fill:before {
    content: ""
}

.bi-signpost-2:before {
    content: ""
}

.bi-signpost-fill:before {
    content: ""
}

.bi-signpost-split-fill:before {
    content: ""
}

.bi-signpost-split:before {
    content: ""
}

.bi-signpost:before {
    content: ""
}

.bi-sim-fill:before {
    content: ""
}

.bi-sim:before {
    content: ""
}

.bi-skip-backward-btn-fill:before {
    content: ""
}

.bi-skip-backward-btn:before {
    content: ""
}

.bi-skip-backward-circle-fill:before {
    content: ""
}

.bi-skip-backward-circle:before {
    content: ""
}

.bi-skip-backward-fill:before {
    content: ""
}

.bi-skip-backward:before {
    content: ""
}

.bi-skip-end-btn-fill:before {
    content: ""
}

.bi-skip-end-btn:before {
    content: ""
}

.bi-skip-end-circle-fill:before {
    content: ""
}

.bi-skip-end-circle:before {
    content: ""
}

.bi-skip-end-fill:before {
    content: ""
}

.bi-skip-end:before {
    content: ""
}

.bi-skip-forward-btn-fill:before {
    content: ""
}

.bi-skip-forward-btn:before {
    content: ""
}

.bi-skip-forward-circle-fill:before {
    content: ""
}

.bi-skip-forward-circle:before {
    content: ""
}

.bi-skip-forward-fill:before {
    content: ""
}

.bi-skip-forward:before {
    content: ""
}

.bi-skip-start-btn-fill:before {
    content: ""
}

.bi-skip-start-btn:before {
    content: ""
}

.bi-skip-start-circle-fill:before {
    content: ""
}

.bi-skip-start-circle:before {
    content: ""
}

.bi-skip-start-fill:before {
    content: ""
}

.bi-skip-start:before {
    content: ""
}

.bi-slack:before {
    content: ""
}

.bi-slash-circle-fill:before {
    content: ""
}

.bi-slash-circle:before {
    content: ""
}

.bi-slash-square-fill:before {
    content: ""
}

.bi-slash-square:before {
    content: ""
}

.bi-slash:before {
    content: ""
}

.bi-sliders:before {
    content: ""
}

.bi-smartwatch:before {
    content: ""
}

.bi-snow:before {
    content: ""
}

.bi-snow2:before {
    content: ""
}

.bi-snow3:before {
    content: ""
}

.bi-sort-alpha-down-alt:before {
    content: ""
}

.bi-sort-alpha-down:before {
    content: ""
}

.bi-sort-alpha-up-alt:before {
    content: ""
}

.bi-sort-alpha-up:before {
    content: ""
}

.bi-sort-down-alt:before {
    content: ""
}

.bi-sort-down:before {
    content: ""
}

.bi-sort-numeric-down-alt:before {
    content: ""
}

.bi-sort-numeric-down:before {
    content: ""
}

.bi-sort-numeric-up-alt:before {
    content: ""
}

.bi-sort-numeric-up:before {
    content: ""
}

.bi-sort-up-alt:before {
    content: ""
}

.bi-sort-up:before {
    content: ""
}

.bi-soundwave:before {
    content: ""
}

.bi-speaker-fill:before {
    content: ""
}

.bi-speaker:before {
    content: ""
}

.bi-speedometer:before {
    content: ""
}

.bi-speedometer2:before {
    content: ""
}

.bi-spellcheck:before {
    content: ""
}

.bi-square-fill:before {
    content: ""
}

.bi-square-half:before {
    content: ""
}

.bi-square:before {
    content: ""
}

.bi-stack:before {
    content: ""
}

.bi-star-fill:before {
    content: ""
}

.bi-star-half:before {
    content: ""
}

.bi-star:before {
    content: ""
}

.bi-stars:before {
    content: ""
}

.bi-stickies-fill:before {
    content: ""
}

.bi-stickies:before {
    content: ""
}

.bi-sticky-fill:before {
    content: ""
}

.bi-sticky:before {
    content: ""
}

.bi-stop-btn-fill:before {
    content: ""
}

.bi-stop-btn:before {
    content: ""
}

.bi-stop-circle-fill:before {
    content: ""
}

.bi-stop-circle:before {
    content: ""
}

.bi-stop-fill:before {
    content: ""
}

.bi-stop:before {
    content: ""
}

.bi-stoplights-fill:before {
    content: ""
}

.bi-stoplights:before {
    content: ""
}

.bi-stopwatch-fill:before {
    content: ""
}

.bi-stopwatch:before {
    content: ""
}

.bi-subtract:before {
    content: ""
}

.bi-suit-club-fill:before {
    content: ""
}

.bi-suit-club:before {
    content: ""
}

.bi-suit-diamond-fill:before {
    content: ""
}

.bi-suit-diamond:before {
    content: ""
}

.bi-suit-heart-fill:before {
    content: ""
}

.bi-suit-heart:before {
    content: ""
}

.bi-suit-spade-fill:before {
    content: ""
}

.bi-suit-spade:before {
    content: ""
}

.bi-sun-fill:before {
    content: ""
}

.bi-sun:before {
    content: ""
}

.bi-sunglasses:before {
    content: ""
}

.bi-sunrise-fill:before {
    content: ""
}

.bi-sunrise:before {
    content: ""
}

.bi-sunset-fill:before {
    content: ""
}

.bi-sunset:before {
    content: ""
}

.bi-symmetry-horizontal:before {
    content: ""
}

.bi-symmetry-vertical:before {
    content: ""
}

.bi-table:before {
    content: ""
}

.bi-tablet-fill:before {
    content: ""
}

.bi-tablet-landscape-fill:before {
    content: ""
}

.bi-tablet-landscape:before {
    content: ""
}

.bi-tablet:before {
    content: ""
}

.bi-tag-fill:before {
    content: ""
}

.bi-tag:before {
    content: ""
}

.bi-tags-fill:before {
    content: ""
}

.bi-tags:before {
    content: ""
}

.bi-telegram:before {
    content: ""
}

.bi-telephone-fill:before {
    content: ""
}

.bi-telephone-forward-fill:before {
    content: ""
}

.bi-telephone-forward:before {
    content: ""
}

.bi-telephone-inbound-fill:before {
    content: ""
}

.bi-telephone-inbound:before {
    content: ""
}

.bi-telephone-minus-fill:before {
    content: ""
}

.bi-telephone-minus:before {
    content: ""
}

.bi-telephone-outbound-fill:before {
    content: ""
}

.bi-telephone-outbound:before {
    content: ""
}

.bi-telephone-plus-fill:before {
    content: ""
}

.bi-telephone-plus:before {
    content: ""
}

.bi-telephone-x-fill:before {
    content: ""
}

.bi-telephone-x:before {
    content: ""
}

.bi-telephone:before {
    content: ""
}

.bi-terminal-fill:before {
    content: ""
}

.bi-terminal:before {
    content: ""
}

.bi-text-center:before {
    content: ""
}

.bi-text-indent-left:before {
    content: ""
}

.bi-text-indent-right:before {
    content: ""
}

.bi-text-left:before {
    content: ""
}

.bi-text-paragraph:before {
    content: ""
}

.bi-text-right:before {
    content: ""
}

.bi-textarea-resize:before {
    content: ""
}

.bi-textarea-t:before {
    content: ""
}

.bi-textarea:before {
    content: ""
}

.bi-thermometer-half:before {
    content: ""
}

.bi-thermometer-high:before {
    content: ""
}

.bi-thermometer-low:before {
    content: ""
}

.bi-thermometer-snow:before {
    content: ""
}

.bi-thermometer-sun:before {
    content: ""
}

.bi-thermometer:before {
    content: ""
}

.bi-three-dots-vertical:before {
    content: ""
}

.bi-three-dots:before {
    content: ""
}

.bi-toggle-off:before {
    content: ""
}

.bi-toggle-on:before {
    content: ""
}

.bi-toggle2-off:before {
    content: ""
}

.bi-toggle2-on:before {
    content: ""
}

.bi-toggles:before {
    content: ""
}

.bi-toggles2:before {
    content: ""
}

.bi-tools:before {
    content: ""
}

.bi-tornado:before {
    content: ""
}

.bi-trash-fill:before {
    content: ""
}

.bi-trash:before {
    content: ""
}

.bi-trash2-fill:before {
    content: ""
}

.bi-trash2:before {
    content: ""
}

.bi-tree-fill:before {
    content: ""
}

.bi-tree:before {
    content: ""
}

.bi-triangle-fill:before {
    content: ""
}

.bi-triangle-half:before {
    content: ""
}

.bi-triangle:before {
    content: ""
}

.bi-trophy-fill:before {
    content: ""
}

.bi-trophy:before {
    content: ""
}

.bi-tropical-storm:before {
    content: ""
}

.bi-truck-flatbed:before {
    content: ""
}

.bi-truck:before {
    content: ""
}

.bi-tsunami:before {
    content: ""
}

.bi-tv-fill:before {
    content: ""
}

.bi-tv:before {
    content: ""
}

.bi-twitch:before {
    content: ""
}

.bi-twitter:before {
    content: ""
}

.bi-type-bold:before {
    content: ""
}

.bi-type-h1:before {
    content: ""
}

.bi-type-h2:before {
    content: ""
}

.bi-type-h3:before {
    content: ""
}

.bi-type-italic:before {
    content: ""
}

.bi-type-strikethrough:before {
    content: ""
}

.bi-type-underline:before {
    content: ""
}

.bi-type:before {
    content: ""
}

.bi-ui-checks-grid:before {
    content: ""
}

.bi-ui-checks:before {
    content: ""
}

.bi-ui-radios-grid:before {
    content: ""
}

.bi-ui-radios:before {
    content: ""
}

.bi-umbrella-fill:before {
    content: ""
}

.bi-umbrella:before {
    content: ""
}

.bi-union:before {
    content: ""
}

.bi-unlock-fill:before {
    content: ""
}

.bi-unlock:before {
    content: ""
}

.bi-upc-scan:before {
    content: ""
}

.bi-upc:before {
    content: ""
}

.bi-upload:before {
    content: ""
}

.bi-vector-pen:before {
    content: ""
}

.bi-view-list:before {
    content: ""
}

.bi-view-stacked:before {
    content: ""
}

.bi-vinyl-fill:before {
    content: ""
}

.bi-vinyl:before {
    content: ""
}

.bi-voicemail:before {
    content: ""
}

.bi-volume-down-fill:before {
    content: ""
}

.bi-volume-down:before {
    content: ""
}

.bi-volume-mute-fill:before {
    content: ""
}

.bi-volume-mute:before {
    content: ""
}

.bi-volume-off-fill:before {
    content: ""
}

.bi-volume-off:before {
    content: ""
}

.bi-volume-up-fill:before {
    content: ""
}

.bi-volume-up:before {
    content: ""
}

.bi-vr:before {
    content: ""
}

.bi-wallet-fill:before {
    content: ""
}

.bi-wallet:before {
    content: ""
}

.bi-wallet2:before {
    content: ""
}

.bi-watch:before {
    content: ""
}

.bi-water:before {
    content: ""
}

.bi-whatsapp:before {
    content: ""
}

.bi-wifi-1:before {
    content: ""
}

.bi-wifi-2:before {
    content: ""
}

.bi-wifi-off:before {
    content: ""
}

.bi-wifi:before {
    content: ""
}

.bi-wind:before {
    content: ""
}

.bi-window-dock:before {
    content: ""
}

.bi-window-sidebar:before {
    content: ""
}

.bi-window:before {
    content: ""
}

.bi-wrench:before {
    content: ""
}

.bi-x-circle-fill:before {
    content: ""
}

.bi-x-circle:before {
    content: ""
}

.bi-x-diamond-fill:before {
    content: ""
}

.bi-x-diamond:before {
    content: ""
}

.bi-x-octagon-fill:before {
    content: ""
}

.bi-x-octagon:before {
    content: ""
}

.bi-x-square-fill:before {
    content: ""
}

.bi-x-square:before {
    content: ""
}

.bi-x:before {
    content: ""
}

.bi-youtube:before {
    content: ""
}

.bi-zoom-in:before {
    content: ""
}

.bi-zoom-out:before {
    content: ""
}

.bi-bank:before {
    content: ""
}

.bi-bank2:before {
    content: ""
}

.bi-bell-slash-fill:before {
    content: ""
}

.bi-bell-slash:before {
    content: ""
}

.bi-cash-coin:before {
    content: ""
}

.bi-check-lg:before {
    content: ""
}

.bi-coin:before {
    content: ""
}

.bi-currency-bitcoin:before {
    content: ""
}

.bi-currency-dollar:before {
    content: ""
}

.bi-currency-euro:before {
    content: ""
}

.bi-currency-exchange:before {
    content: ""
}

.bi-currency-pound:before {
    content: ""
}

.bi-currency-yen:before {
    content: ""
}

.bi-dash-lg:before {
    content: ""
}

.bi-exclamation-lg:before {
    content: ""
}

.bi-file-earmark-pdf-fill:before {
    content: ""
}

.bi-file-earmark-pdf:before {
    content: ""
}

.bi-file-pdf-fill:before {
    content: ""
}

.bi-file-pdf:before {
    content: ""
}

.bi-gender-ambiguous:before {
    content: ""
}

.bi-gender-female:before {
    content: ""
}

.bi-gender-male:before {
    content: ""
}

.bi-gender-trans:before {
    content: ""
}

.bi-headset-vr:before {
    content: ""
}

.bi-info-lg:before {
    content: ""
}

.bi-mastodon:before {
    content: ""
}

.bi-messenger:before {
    content: ""
}

.bi-piggy-bank-fill:before {
    content: ""
}

.bi-piggy-bank:before {
    content: ""
}

.bi-pin-map-fill:before {
    content: ""
}

.bi-pin-map:before {
    content: ""
}

.bi-plus-lg:before {
    content: ""
}

.bi-question-lg:before {
    content: ""
}

.bi-recycle:before {
    content: ""
}

.bi-reddit:before {
    content: ""
}

.bi-safe-fill:before {
    content: ""
}

.bi-safe2-fill:before {
    content: ""
}

.bi-safe2:before {
    content: ""
}

.bi-sd-card-fill:before {
    content: ""
}

.bi-sd-card:before {
    content: ""
}

.bi-skype:before {
    content: ""
}

.bi-slash-lg:before {
    content: ""
}

.bi-translate:before {
    content: ""
}

.bi-x-lg:before {
    content: ""
}

.bi-safe:before {
    content: ""
}

.bi-apple:before {
    content: ""
}

.bi-microsoft:before {
    content: ""
}

.bi-windows:before {
    content: ""
}

.bi-behance:before {
    content: ""
}

.bi-dribbble:before {
    content: ""
}

.bi-line:before {
    content: ""
}

.bi-medium:before {
    content: ""
}

.bi-paypal:before {
    content: ""
}

.bi-pinterest:before {
    content: ""
}

.bi-signal:before {
    content: ""
}

.bi-snapchat:before {
    content: ""
}

.bi-spotify:before {
    content: ""
}

.bi-stack-overflow:before {
    content: ""
}

.bi-strava:before {
    content: ""
}

.bi-wordpress:before {
    content: ""
}

.bi-vimeo:before {
    content: ""
}

.bi-activity:before {
    content: ""
}

.bi-easel2-fill:before {
    content: ""
}

.bi-easel2:before {
    content: ""
}

.bi-easel3-fill:before {
    content: ""
}

.bi-easel3:before {
    content: ""
}

.bi-fan:before {
    content: ""
}

.bi-fingerprint:before {
    content: ""
}

.bi-graph-down-arrow:before {
    content: ""
}

.bi-graph-up-arrow:before {
    content: ""
}

.bi-hypnotize:before {
    content: ""
}

.bi-magic:before {
    content: ""
}

.bi-person-rolodex:before {
    content: ""
}

.bi-person-video:before {
    content: ""
}

.bi-person-video2:before {
    content: ""
}

.bi-person-video3:before {
    content: ""
}

.bi-person-workspace:before {
    content: ""
}

.bi-radioactive:before {
    content: ""
}

.bi-webcam-fill:before {
    content: ""
}

.bi-webcam:before {
    content: ""
}

.bi-yin-yang:before {
    content: ""
}

.bi-bandaid-fill:before {
    content: ""
}

.bi-bandaid:before {
    content: ""
}

.bi-bluetooth:before {
    content: ""
}

.bi-body-text:before {
    content: ""
}

.bi-boombox:before {
    content: ""
}

.bi-boxes:before {
    content: ""
}

.bi-dpad-fill:before {
    content: ""
}

.bi-dpad:before {
    content: ""
}

.bi-ear-fill:before {
    content: ""
}

.bi-ear:before {
    content: ""
}

.bi-envelope-check-1:before {
    content: ""
}

.bi-envelope-check-fill:before {
    content: ""
}

.bi-envelope-check:before {
    content: ""
}

.bi-envelope-dash-1:before {
    content: ""
}

.bi-envelope-dash-fill:before {
    content: ""
}

.bi-envelope-dash:before {
    content: ""
}

.bi-envelope-exclamation-1:before {
    content: ""
}

.bi-envelope-exclamation-fill:before {
    content: ""
}

.bi-envelope-exclamation:before {
    content: ""
}

.bi-envelope-plus-fill:before {
    content: ""
}

.bi-envelope-plus:before {
    content: ""
}

.bi-envelope-slash-1:before {
    content: ""
}

.bi-envelope-slash-fill:before {
    content: ""
}

.bi-envelope-slash:before {
    content: ""
}

.bi-envelope-x-1:before {
    content: ""
}

.bi-envelope-x-fill:before {
    content: ""
}

.bi-envelope-x:before {
    content: ""
}

.bi-explicit-fill:before {
    content: ""
}

.bi-explicit:before {
    content: ""
}

.bi-git:before {
    content: ""
}

.bi-infinity:before {
    content: ""
}

.bi-list-columns-reverse:before {
    content: ""
}

.bi-list-columns:before {
    content: ""
}

.bi-meta:before {
    content: ""
}

.bi-mortorboard-fill:before {
    content: ""
}

.bi-mortorboard:before {
    content: ""
}

.bi-nintendo-switch:before {
    content: ""
}

.bi-pc-display-horizontal:before {
    content: ""
}

.bi-pc-display:before {
    content: ""
}

.bi-pc-horizontal:before {
    content: ""
}

.bi-pc:before {
    content: ""
}

.bi-playstation:before {
    content: ""
}

.bi-plus-slash-minus:before {
    content: ""
}

.bi-projector-fill:before {
    content: ""
}

.bi-projector:before {
    content: ""
}

.bi-qr-code-scan:before {
    content: ""
}

.bi-qr-code:before {
    content: ""
}

.bi-quora:before {
    content: ""
}

.bi-quote:before {
    content: ""
}

.bi-robot:before {
    content: ""
}

.bi-send-check-fill:before {
    content: ""
}

.bi-send-check:before {
    content: ""
}

.bi-send-dash-fill:before {
    content: ""
}

.bi-send-dash:before {
    content: ""
}

.bi-send-exclamation-1:before {
    content: ""
}

.bi-send-exclamation-fill:before {
    content: ""
}

.bi-send-exclamation:before {
    content: ""
}

.bi-send-fill:before {
    content: ""
}

.bi-send-plus-fill:before {
    content: ""
}

.bi-send-plus:before {
    content: ""
}

.bi-send-slash-fill:before {
    content: ""
}

.bi-send-slash:before {
    content: ""
}

.bi-send-x-fill:before {
    content: ""
}

.bi-send-x:before {
    content: ""
}

.bi-send:before {
    content: ""
}

.bi-steam:before {
    content: ""
}

.bi-terminal-dash-1:before {
    content: ""
}

.bi-terminal-dash:before {
    content: ""
}

.bi-terminal-plus:before {
    content: ""
}

.bi-terminal-split:before {
    content: ""
}

.bi-ticket-detailed-fill:before {
    content: ""
}

.bi-ticket-detailed:before {
    content: ""
}

.bi-ticket-fill:before {
    content: ""
}

.bi-ticket-perferated-fill:before {
    content: ""
}

.bi-ticket-perferated:before {
    content: ""
}

.bi-ticket:before {
    content: ""
}

.bi-tiktok:before {
    content: ""
}

.bi-window-dash:before {
    content: ""
}

.bi-window-desktop:before {
    content: ""
}

.bi-window-fullscreen:before {
    content: ""
}

.bi-window-plus:before {
    content: ""
}

.bi-window-split:before {
    content: ""
}

.bi-window-stack:before {
    content: ""
}

.bi-window-x:before {
    content: ""
}

.bi-xbox:before {
    content: ""
}

.bi-ethernet:before {
    content: ""
}

.bi-hdmi-fill:before {
    content: ""
}

.bi-hdmi:before {
    content: ""
}

.bi-usb-c-fill:before {
    content: ""
}

.bi-usb-c:before {
    content: ""
}

.bi-usb-fill:before {
    content: ""
}

.bi-usb-plug-fill:before {
    content: ""
}

.bi-usb-plug:before {
    content: ""
}

.bi-usb-symbol:before {
    content: ""
}

.bi-usb:before {
    content: ""
}

.bi-boombox-fill:before {
    content: ""
}

.bi-displayport-1:before {
    content: ""
}

.bi-displayport:before {
    content: ""
}

.bi-gpu-card:before {
    content: ""
}

.bi-memory:before {
    content: ""
}

.bi-modem-fill:before {
    content: ""
}

.bi-modem:before {
    content: ""
}

.bi-motherboard-fill:before {
    content: ""
}

.bi-motherboard:before {
    content: ""
}

.bi-optical-audio-fill:before {
    content: ""
}

.bi-optical-audio:before {
    content: ""
}

.bi-pci-card:before {
    content: ""
}

.bi-router-fill:before {
    content: ""
}

.bi-router:before {
    content: ""
}

.bi-ssd-fill:before {
    content: ""
}

.bi-ssd:before {
    content: ""
}

.bi-thunderbolt-fill:before {
    content: ""
}

.bi-thunderbolt:before {
    content: ""
}

.bi-usb-drive-fill:before {
    content: ""
}

.bi-usb-drive:before {
    content: ""
}

.bi-usb-micro-fill:before {
    content: ""
}

.bi-usb-micro:before {
    content: ""
}

.bi-usb-mini-fill:before {
    content: ""
}

.bi-usb-mini:before {
    content: ""
}

.bi-cloud-haze2:before {
    content: ""
}

.bi-device-hdd-fill:before {
    content: ""
}

.bi-device-hdd:before {
    content: ""
}

.bi-device-ssd-fill:before {
    content: ""
}

.bi-device-ssd:before {
    content: ""
}

.bi-displayport-fill:before {
    content: ""
}

.bi-mortarboard-fill:before {
    content: ""
}

.bi-mortarboard:before {
    content: ""
}

.bi-terminal-x:before {
    content: ""
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    box-sizing: initial;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-pointer-events {
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, #00000080, #0000)
}

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: #007aff;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: flex;
    height: 44px;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: -22px;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: 50%;
    width: 27px;
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: .35;
    pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
    text-transform: none
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: #000;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: .2;
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: 8px;
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: #007aff;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: 1;
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: #00000040;
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    background: #0000001a;
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none
}

.swiper-horizontal>.swiper-scrollbar {
    bottom: 3px;
    height: 5px;
    left: 1%;
    position: absolute;
    width: 98%;
    z-index: 50
}

.swiper-vertical>.swiper-scrollbar {
    height: 98%;
    position: absolute;
    right: 3px;
    top: 1%;
    width: 5px;
    z-index: 50
}

.swiper-scrollbar-drag {
    background: #00000080;
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
    border: 4px solid #007aff;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid #0000;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn)
    }
}

.swiper .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    margin: 0 auto;
    transition-timing-function: ease-out
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-direction: column;
    flex-wrap: wrap
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next+.swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    width: 100%;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    background: #000;
    bottom: 0;
    content: "";
    filter: blur(50px);
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.swiper-flip {
    overflow: visible
}

.swiper-flip .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom
}

.slick-loading .slick-list {
    background: #fff url(data:image/gif;base64,R0lGODlhIAAgAPUAAP///wAAAPr6+sTExOjo6PDw8NDQ0H5+fpqamvb29ubm5vz8/JKSkoaGhuLi4ri4uKCgoOzs7K6urtzc3D4+PlZWVmBgYHx8fKioqO7u7kpKSmxsbAwMDAAAAM7OzsjIyNjY2CwsLF5eXh4eHkxMTLCwsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAIAAgAAAG/0CAcEgkFjgcR3HJJE4SxEGnMygKmkwJxRKdVocFBRRLfFAoj6GUOhQoFAVysULRjNdfQFghLxrODEJ4Qm5ifUUXZwQAgwBvEXIGBkUEZxuMXgAJb1dECWMABAcHDEpDEGcTBQMDBQtvcW0RbwuECKMHELEJF5NFCxm1AAt7cH4NuAOdcsURy0QCD7gYfcWgTQUQB6Zkr66HoeDCSwIF5ucFz3IC7O0CC6zx8YuHhW/3CvLyfPX4+OXozKnDssBdu3G/xIHTpGAgOUPrZimAJCfDPYfDin2TQ+xeBnWbHi37SC4YIYkQhdy7FvLdpwWvjA0JyU/ISyIx4xS6sgfkNS4me2rtVKkgw0JCb8YMZdjwqMQ2nIY8BbcUQNVCP7G4MQq1KRivR7tiDEuEFrggACH5BAAKAAEALAAAAAAgACAAAAb/QIBwSCQmNBpCcckkEgREA4ViKA6azM8BEZ1Wh6LOBls0HA5fgJQ6HHQ6InKRcWhA1d5hqMMpyIkOZw9Ca18Qbwd/RRhnfoUABRwdI3IESkQFZxB4bAdvV0YJQwkDAx9+bWcECQYGCQ5vFEQCEQoKC0ILHqUDBncCGA5LBiHCAAsFtgqoQwS8Aw64f8m2EXdFCxO8INPKomQCBgPMWAvL0n/ff+jYAu7vAuxy8O/myvfX8/f7/Arq+v0W0HMnr9zAeE0KJlQkJIGCfE0E+PtDq9qfDMogDkGmrIBCbNQUZIDosNq1kUsEZJBW0dY/b0ZsLViQIMFMW+RKKgjFzp4fNokPIdki+Y8JNVxA79jKwHAI0G9JGw5tCqDWTiFRhVhtmhVA16cMJTJ1OnVIMo1cy1KVI5NhEAAh+QQACgACACwAAAAAIAAgAAAG/0CAcEgkChqNQnHJJCYWRMfh4CgamkzFwBOdVocNCgNbJAwGhKGUOjRQKA1y8XOGAtZfgIWiSciJBWcTQnhCD28Qf0UgZwJ3XgAJGhQVcgKORmdXhRBvV0QMY0ILCgoRmIRnCQIODgIEbxtEJSMdHZ8AGaUKBXYLIEpFExZpAG62HRRFArsKfn8FIsgjiUwJu8FkJLYcB9lMCwUKqFgGHSJ5cnZ/uEULl/CX63/x8KTNu+RkzPj9zc/0/Cl4V0/APDIE6x0csrBJwybX9DFhBhCLgAilIvzRVUriKHGlev0JtyuDvmsZUZlcIiCDnYu7KsZ0UmrBggRP7n1DqcDJEzciOgHwcwTyZEUmIKEMFVIqgyIjpZ4tjdTxqRCMPYVMBYDV6tavUZ8yczpkKwBxHsVWtaqo5tMgACH5BAAKAAMALAAAAAAgACAAAAb/QIBwSCQuBgNBcck0FgvIQtHRZCYUGSJ0IB2WDo9qUaBQKIXbLsBxOJTExUh5mB4iDo0zXEhWJNBRQgZtA3tPZQsAdQINBwxwAnpCC2VSdQNtVEQSEkOUChGSVwoLCwUFpm0QRAMVFBQTQxllCqh0kkIECF0TG68UG2O0foYJDb8VYVa0alUXrxoQf1WmZnsTFA0EhgCJhrFMC5Hjkd57W0jpDsPDuFUDHfHyHRzstNN78PPxHOLk5dwcpBuoaYk5OAfhXHG3hAy+KgLkgNozqwzDbgWYJQyXsUwGXKNA6fnYMIO3iPeIpBwyqlSCBKUqEQk5E6YRmX2UdAT5kEnHKkQ5hXjkNqTPtKAARl1sIrGoxSFNuSEFMNWoVCxEpiqyRlQY165wEHELAgAh+QQACgAEACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0GxwFwmFJlnlAgaTKpFqEIqFJMBhcEABC5GjkPz0KN2tsvHBH4sJKgdd1NHSXILah9tAmdCC0dUcg5qVEQfiIxHEYtXSACKnWoGXAwHBwRDGUcKBXYFi0IJHmQEEKQHEGGpCnp3AiW1DKFWqZNgGKQNA65FCwV8bQQHJcRtds9MC4rZitVgCQbf4AYEubnKTAYU6eoUGuSpu3fo6+ka2NrbgQAE4eCmS9xVAOW7Yq7IgA4Hpi0R8EZBhDshOnTgcOtfM0cAlTigILFDiAFFNjk8k0GZgAxOBozouIHIOyKbFixIkECmIyIHOEiEWbPJTTQ5FxcVOMCgzUVCWwAcyZJvzy45ADYVZNIwTlIAVfNB7XRVDLxEWLQ4E9JsKq+rTdsMyhcEACH5BAAKAAUALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUYKQ4YKEYSKfVKPaUMZHwMDeQBxh04ABYSFGU4JBpsDBmFHdXMLIKofBEyKCpdgspsOoUsLXaRLCQMgwky+YJ1FC4POg8lVAg7U1Q5drtnHSw4H3t8HDdnZy2Dd4N4Nzc/QeqLW1bnM7rXuV9tEBhQQ5UoCbJDmWKBAQcMDZNhwRVNCYANBChZYEbkVCZOwASEcCDFQ4SEDIq6WTVqQIMECBx06iCACQQPBiSabHDqzRUTKARMhSFCDrc+WNQIcOoRw5+ZIHj8ADqSEQBQAwKKLhIzowEEeGKQ0owIYkPKjHihZoBKi0KFE01b4zg7h4y4IACH5BAAKAAYALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUUJeQCGChGEin1SkGlubEhDcYdOAAWEhRlOC12HYUd1eqeRokOKCphgrY5MpotqhgWfunqPt4PCg71gpgXIyWSqqq9MBQPR0tHMzM5L0NPSC8PCxVUCyeLX38+/AFfXRA4HA+pjmoFqCAcHDQa3rbxzBRD1BwgcMFIlidMrAxYICHHA4N8DIqpsUWJ3wAEBChQaEBnQoB6RRr0uARjQocMAAA0w4nMz4IOaU0lImkSngYKFc3ZWyTwJAALGK4fnNA3ZOaQCBQ22wPgRQlSIAYwSfkHJMrQkTyEbKFzFydQq15ccOAjUEwQAIfkEAAoABwAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVD29K/AFfRRQUDDt1PmoFqHgPtBLetvMwG7QMes0KxkkIFIQNKDhBgKvCh3gQiqmxt6NDBAAEIEAgUOHCgBBEH9Yg06uWAIQUABihQMACgBEUHTRwoUEOBIcqQI880OIDgm5ABDA8IgUkSwAAyij1/jejAARPPIQwONBCnBAJDCEOOCnFA8cOvEh1CEJEqBMIBEDaLcA3LJIEGDe/0BAEAIfkEAAoACAAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVDDti/BQccA8yrYBAjHR0jc53LRQYU6R0UBnO4RxmiG/IjJUIJFuoVKeCBigBN5QCk43BgFgMKFCYUGDAgFEUQRGIRYbCh2xACEDcAcHDgQDcQFGf9s7VkA0QCI0t2W0DRw68h8ChAEELSJE8xijBvVqCgIU9PjwA+UNzG5AHEB9xkDpk4QMGvARQsEDlKxMCALDeLcA0rqEEDlWCCAAAh+QQACgAJACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0FRylQmFJlnlFhQJKrTrRCqoALIBXAxchySzZm2Wusdi8nfOfeYfAuPEWoCZkILR2l+V2VFCXkAhgoRhIp9UpBpbmxIQ3GHTgAFhIUZTgtdh2FHdXqnkaJDigqYYK2OTKaLaoYFn7p6j0wOA8PEAw6/Z4PKUhwdzs8dEL9kqqrN0M7SetTVCsLFw8d6C8vKvUQEv+dVCRAaBnNQtkwPFRQUFXOduUoTG/cUNkyYg+tIBlEMAFYYMAaBuCekxmhaJeSeBgiOHhw4QECAAwcCLhGJRUQCg3RDCmyUVmBYmlOiGqmBsPGlyz9YkAlxsJEhqCubABS9AsPgQAMqLQfM0oTMwEZ4QpLOwvMLxAEEXIBG5aczqtaut4YNXRIEACH5BAAKAAoALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RahAQRQtHaX5XZUUJeQAGHR0jA0SKfVKGCmlubEhCBSGRHSQOQwVmQwsZTgtdh0UQHKIHm2quChGophuiJHO3jkwOFB2UaoYFTnMGegDKRQQG0tMGBM1nAtnaABoU3t8UD81kR+UK3eDe4nrk5grR1NLWegva9s9czfhVAgMNpWqgBGNigMGBAwzmxBGjhACEgwcgzAPTqlwGXQ8gMgAhZIGHWm5WjelUZ8jBBgPMTBgwIMGCRgsygVSkgMiHByD7DWDmx5WuMkZqDLCU4gfAq2sACrAEWFSRLjUfWDopCqDTNQIsJ1LF0yzDAA90UHV5eo0qUjB8mgUBACH5BAAKAAsALAAAAAAgACAAAAb/QIBwSCwqFIuickk0FIiCo6A4ZSoZnRBUSiwoEtYipNOBDKOKKgD9DBNHHU4brc4c3cUBeSOk949geEQUZA5rXABHEW4PD0UOZBSHaQAJiEMJgQATFBQVBkQHZKACUwtHbX0RR0mVFp0UFwRCBSQDSgsZrQteqEUPGrAQmmG9ChFqRAkMsBd4xsRLBBsUoG6nBa14E4IA2kUFDuLjDql4peilAA0H7e4H1udH8/Ps7+3xbmj0qOTj5mEWpEP3DUq3glYWOBgAcEmUaNI+DBjwAY+dS0USGJg4wABEXMYyJNvE8UOGISKVCNClah4xjg60WUKyINOCUwrMzVRARMGENWQ4n/jpNTKTm15J/CTK2e0MoD+UKmHEs4onVDVVmyqdpAbNR4cKTjqNSots07EjzzJh1S0IADsAAAAAAAAAAAA=) 50% no-repeat
}

@font-face {
    font-family: slick;
    font-style: normal;
    font-weight: 400;
    src: url(/static/media/slick.a4e97f5a2a64f0ab1323.eot);
    src: url(/static/media/slick.a4e97f5a2a64f0ab1323.eot?#iefix) format("embedded-opentype"), url(/static/media/slick.295183786cd8a1389865.woff) format("woff"), url(/static/media/slick.c94f7671dcc99dce43e2.ttf) format("truetype"), url(/static/media/slick.7ba97953187dc2907930.svg#slick) format("svg")
}

.slick-next,
.slick-prev {
    border: none;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    background: #0000;
    color: #0000;
    outline: none
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    left: auto;
    right: -25px
}

.slick-prev:before {
    content: "←"
}

[dir=rtl] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    left: -25px;
    right: auto
}

.slick-next:before {
    content: "→"
}

[dir=rtl] .slick-next:before {
    content: "←"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    bottom: -25px;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    position: relative
}

.slick-dots li,
.slick-dots li button {
    cursor: pointer;
    height: 20px;
    width: 20px
}

.slick-dots li button {
    background: #0000;
    border: 0;
    color: #0000;
    display: block;
    font-size: 0;
    line-height: 0;
    outline: none;
    padding: 5px
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
    content: "•";
    font-family: slick;
    font-size: 6px;
    height: 20px;
    left: 0;
    line-height: 20px;
    opacity: .25;
    position: absolute;
    text-align: center;
    top: 0;
    width: 20px
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75
}

.slick-slider {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    -khtml-user-select: none
}

.slick-list,
.slick-slider {
    display: block;
    position: relative
}

.slick-list {
    margin: 0;
    overflow: hidden;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translateZ(0)
}

.slick-track {
    display: block;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    border: 1px solid #0000;
    display: block;
    height: auto
}

.slick-arrow.slick-hidden {
    display: none
}

.nice-select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto
}

.nice-select:hover {
    border-color: #dbdbdb
}

.nice-select.open,
.nice-select:active,
.nice-select:focus {
    border-color: #999
}

.nice-select:after {
    right: 12px
}

.nice-select.open:after {
    transform: rotate(-135deg)
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0)
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #ccc
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px #4444441c;
    box-sizing: border-box;
    left: 0;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: scale(.75) translateY(-21px);
    transform-origin: 50% 0;
    transition: all .2s cubic-bezier(.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 9
}

.nice-select .list:hover .option:not(:hover) {
    background-color: #0000 !important
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all .2s
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background-color: #f6f6f6
}

.nice-select .option.selected {
    font-weight: 700
}

.nice-select .option.disabled {
    background-color: #0000;
    color: #999;
    cursor: default
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

.mfp-bg {
    background: #0b0b0b;
    opacity: .8;
    overflow: hidden;
    z-index: 1042
}

.mfp-bg,
.mfp-wrap {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%
}

.mfp-wrap {
    -webkit-backface-visibility: hidden;
    outline: none !important;
    z-index: 1043
}

.mfp-container {
    box-sizing: border-box;
    height: 100%;
    left: 0;
    padding: 0 8px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    display: inline-block;
    margin: 0 auto;
    position: relative;
    text-align: left;
    vertical-align: middle;
    z-index: 1045
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
    cursor: auto;
    width: 100%
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
    -webkit-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    left: 8px;
    margin-top: -.8em;
    position: absolute;
    right: 8px;
    text-align: center;
    top: 50%;
    width: auto;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
    display: none
}

button.mfp-arrow,
button.mfp-close {
    -webkit-appearance: none;
    background: #0000;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    display: block;
    outline: none;
    overflow: visible;
    padding: 0;
    touch-action: manipulation;
    z-index: 1046
}

button::-moz-focus-inner {
    border: 0;
    padding: 0
}

.mfp-close {
    color: #fff;
    font-family: Arial, Baskerville, monospace;
    font-size: 28px;
    font-style: normal;
    height: 44px;
    line-height: 44px;
    opacity: .65;
    padding: 0 0 18px 10px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: 0;
    width: 44px
}

.mfp-close:focus,
.mfp-close:hover {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    color: #fff;
    padding-right: 6px;
    right: -6px;
    text-align: right;
    width: 100%
}

.mfp-counter {
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    position: absolute;
    right: 0;
    top: 0;
    white-space: nowrap
}

.mfp-arrow {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height: 110px;
    margin: -55px 0 0;
    opacity: .65;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 90px
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:focus,
.mfp-arrow:hover {
    opacity: 1
}

.mfp-arrow:after,
.mfp-arrow:before {
    border: inset #0000;
    content: "";
    display: block;
    height: 0;
    left: 0;
    margin-left: 35px;
    margin-top: 35px;
    position: absolute;
    top: 0;
    width: 0
}

.mfp-arrow:after {
    border-bottom-width: 13px;
    border-top-width: 13px;
    top: 8px
}

.mfp-arrow:before {
    border-bottom-width: 21px;
    border-top-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before {
    border-right: 27px solid #3f3f3f;
    margin-left: 25px
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-bottom: 40px;
    padding-top: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    max-width: 900px;
    width: 100%
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
    width: 100%
}

.mfp-iframe-scaler iframe {
    background: #000;
    box-shadow: 0 0 8px #0009;
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

img.mfp-img {
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    padding: 40px 0;
    width: auto
}

.mfp-figure,
img.mfp-img {
    line-height: 0
}

.mfp-figure:after {
    background: #444;
    bottom: 40px;
    box-shadow: 0 0 8px #0009;
    content: "";
    display: block;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 40px;
    width: auto;
    z-index: -1
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    cursor: auto;
    left: 0;
    margin-top: -36px;
    position: absolute;
    top: 100%;
    width: 100%
}

.mfp-title {
    word-wrap: break-word;
    color: #f3f3f3;
    line-height: 18px;
    padding-right: 36px;
    text-align: left
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-height:300px),
screen and (max-width:800px)and (orientation:landscape) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        bottom: 0;
        top: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: #0009;
        bottom: 0;
        box-sizing: border-box;
        margin: 0;
        padding: 3px 5px;
        position: fixed;
        top: auto
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        background: #0009;
        height: 35px;
        line-height: 35px;
        padding: 0;
        position: fixed;
        right: 0;
        text-align: center;
        top: 0;
        width: 35px
    }
}

@media (max-width:900px) {
    .mfp-arrow {
        transform: scale(.75)
    }

    .mfp-arrow-left {
        transform-origin: 0
    }

    .mfp-arrow-right {
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.odometer.odometer-auto-theme,
.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default,
.odometer.odometer-theme-default .odometer-digit {
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
    bottom: 0;
    display: block;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
    display: block
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
    -webkit-backface-visibility: hidden;
    display: block
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0)
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
    position: absolute
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
    transition: transform 2s
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    transform: translateY(-100%)
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    transform: translateY(0);
    transition: transform 2s
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
    text-align: center
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Cairo, sans-serif
}

body {
    direction: rtl !important;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

a {
    color: inherit;
    text-decoration: none
}

a:focus {
    outline: 0 solid
}

a:hover {
    color: inherit;
    text-decoration: none
}

.text-aurora {
    color: #5ddcf2
}

button:focus,
input:focus,
textarea:focus {
    outline: none
}

ul {
    list-style: none
}

i.bx {
    vertical-align: middle
}

.pt-120 {
    padding-top: 120px
}

@media(min-width:992px)and (max-width:1199px) {
    .pt-120 {
        padding-top: 90px
    }
}

@media(max-width:991px) {
    .pt-120 {
        padding-top: 80px
    }
}

.pb-120 {
    padding-bottom: 120px
}

@media(min-width:992px)and (max-width:1199px) {
    .pb-120 {
        padding-bottom: 90px
    }
}

@media(max-width:991px) {
    .pb-120 {
        padding-bottom: 80px
    }
}

@media(max-width:767px) {
    .pb-120 {
        padding-bottom: 60px
    }
}

.pt-80 {
    padding-top: 80px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-60 {
    padding-bottom: 60px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-30 {
    margin-bottom: 30px
}

.swiper-fix {
    margin: -12px;
    padding: 12px
}

.para {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px
}

.eg-card {
    word-wrap: break-word;
    background-clip: initial;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative
}

.eg-btn {
    border-radius: 5px;
    display: inline-block;
    font-family: Cairo, sans-serif;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .4s ease
}

.btn--primary {
    background: #1f2230;
    color: #fff;
    position: relative;
    white-space: nowrap;
    z-index: 1
}

.btn--primary:after,
.btn--primary:before {
    background: #5ddcf2;
    border-radius: 5px;
    content: "";
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    transition: all .52s;
    width: 100%;
    z-index: -1
}

.btn--primary:hover {
    color: #fff
}

.btn--primary:hover:before {
    transform: rotateX(90deg)
}

.btn--primary:hover:after {
    transform: rotateY(90deg)
}

.btn--primary2 {
    background: #1f2230;
    border-radius: 100px;
    color: #fff;
    position: relative;
    white-space: nowrap;
    z-index: 1
}

.btn--primary2:after,
.btn--primary2:before {
    background: #5ddcf2;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    transition: all .52s;
    width: 100%;
    z-index: -1
}

.btn--primary2:hover {
    color: #fff
}

.btn--primary2:hover:before {
    transform: rotateX(90deg)
}

.btn--primary2:hover:after {
    transform: rotateY(90deg)
}

.btn--primary3 {
    background: #1f2230;
    border-radius: 100px;
    color: #fff;
    position: relative;
    white-space: nowrap;
    z-index: 1
}

.btn--primary3:after,
.btn--primary3:before {
    background: #5ddcf2;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    transition: all .52s;
    width: 100%;
    z-index: -1
}

.btn--primary3:hover {
    color: #fff
}

.btn--primary3:hover:before {
    transform: rotateX(90deg)
}

.btn--primary3:hover:after {
    transform: rotateY(90deg)
}

.btn--primary3-outline {
    border: 1px solid #5ddcf2;
    color: #5ddcf2;
    transition: all .52s ease;
    white-space: nowrap
}

.btn--primary3-outline:hover {
    background: #5ddcf2;
    color: #fff
}

.btn--lg {
    font-size: 16px;
    font-weight: 600;
    padding: 17px 32px;
    text-transform: uppercase
}

@media(max-width:767px) {
    .btn--lg {
        padding: 12px 27px
    }
}

.btn--md {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 45px
}

@media(max-width:767px) {
    .btn--md {
        padding: 10px 40px
    }
}

.btn--sm {
    padding: 5px 12px
}

.btn--sm,
.header-btn {
    font-size: 16px;
    font-weight: 600
}

.header-btn {
    background-color: #5ddcf2;
    color: #fff;
    font-family: Cairo, sans-serif;
    padding: 9px 20px
}

.action-btn {
    border: none;
    height: 26px;
    line-height: 0px;
    min-width: 26px;
    outline: none
}

.action-btn.green,
.action-btn.red {
    background: #5ddcf2
}

.section-title1 {
    margin-bottom: 60px;
    text-align: center
}

.section-title1 h2 {
    color: #1f2230;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: -5px
}

.section-title1 p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 400
}

.section-title2 {
    text-align: center
}

.section-title2 h2 {
    color: #1f2230;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: -5px
}

.section-title2 p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 400
}

.fixed-icons {
    align-items: center;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: fixed;
    right: 30px;
    z-index: 3
}

.fixed-icons a {
    background: #5ddcf2;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 1.5rem;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .4s ease-in;
    width: 50px
}

.fixed-icons a.whatsapp {
    background: #25d366
}

.section-title4 {
    margin-bottom: 60px;
    text-align: center
}

.section-title4 h2 {
    color: #1f2230;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: -5px;
    position: relative
}

@media(max-width:767px) {
    .section-title4 h2 {
        font-size: 2.1rem
    }
}

.section-title4 h2:before {
    content: url(/static/media/sec-arro1.c3d7e9e35299b8498417.svg);
    left: -55px;
    position: absolute;
    top: -5px
}

@media(max-width:767px) {
    .section-title4 h2:before {
        left: -45px
    }
}

.section-title4 h2:after {
    content: url(/static/media/sec-arro2.c53a0d66e7942c4b6665.svg);
    position: absolute;
    right: -55px;
    top: -5px
}

@media(max-width:767px) {
    .section-title4 h2:after {
        right: -45px
    }
}

.section-title4 p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 400
}

.hover-style {
    background: #fff;
    position: relative;
    z-index: 1
}

.hover-style:after,
.hover-style:before {
    background: #5ddcf2;
    border-radius: 5px;
    content: "";
    height: 100%;
    left: 0;
    margin: auto;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .52s;
    width: 100%;
    z-index: -1
}

.hover-style:hover:before {
    opacity: .2;
    transform: rotateX(90deg)
}

.hover-style:hover:after {
    opacity: .2;
    transform: rotateY(90deg)
}

.hover-border1 {
    background: #fff;
    position: relative;
    z-index: 1
}

.hover-border1:before {
    background: #5ddcf2;
    bottom: 0;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    transition: all .52s;
    width: 0;
    z-index: -1
}

.hover-border1:hover:before {
    width: 100%
}

.hover-border2 {
    background: #fff;
    position: relative;
    z-index: 1
}

.hover-border2:before {
    background: #5ddcf2;
    bottom: 0;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    transition: all .52s;
    width: 0;
    z-index: -1
}

.hover-border2:hover:before {
    width: 100%
}

.hover-border3 {
    background: #fff;
    position: relative;
    z-index: 1
}

.hover-border3:before {
    background: #5ddcf2;
    bottom: 0;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    transition: all .52s;
    width: 0;
    z-index: -1
}

.hover-border3:hover:before {
    width: 100%
}

.preloader {
    align-items: center;
    background: #5ddcf2;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999
}

@keyframes loader {

    0%,
    10%,
    to {
        height: 80px;
        width: 80px
    }

    65% {
        height: 150px;
        width: 150px
    }
}

@keyframes loaderBlock {

    0%,
    30% {
        transform: rotate(0)
    }

    55% {
        background-color: #1f2230
    }

    to {
        transform: rotate(90deg)
    }
}

@keyframes loaderBlockInverse {

    0%,
    20% {
        transform: rotate(0)
    }

    55% {
        background-color: #1f2230
    }

    to {
        transform: rotate(-90deg)
    }
}

.preloader.style-2,
.preloader.style-3 {
    background: #5ddcf2
}

.preloader .loader {
    animation: loader 1.2s ease-in-out infinite;
    height: 80px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg) translateZ(0);
    width: 80px
}

.preloader .loader span {
    animation: loaderBlock 1.2s ease-in-out infinite both;
    background-color: #fff;
    display: block;
    height: 40px;
    position: absolute;
    width: 40px
}

.preloader .loader span:first-child {
    left: 0;
    top: 0
}

.preloader .loader span:nth-child(2) {
    animation: loaderBlockInverse 1.2s ease-in-out infinite both;
    right: 0;
    top: 0
}

.preloader .loader span:nth-child(3) {
    animation: loaderBlockInverse 1.2s ease-in-out infinite both;
    bottom: 0;
    left: 0
}

.preloader .loader span:nth-child(4) {
    bottom: 0;
    right: 0
}

.mobile-search {
    align-items: center;
    background: #000000d9;
    border-radius: 4px;
    box-shadow: 0 0 10px #00000017;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding: 35px 100px;
    position: fixed;
    top: 0;
    transform: scale(0);
    transition: .65s ease;
    visibility: hidden;
    width: 100%;
    z-index: 9999
}

@media(max-width:767px) {
    .mobile-search {
        padding: 20px
    }
}

.mobile-search label {
    color: #fff;
    font-family: Cairo, sans-serif;
    margin-bottom: 20px
}

.mobile-search.slide {
    opacity: 1;
    transform: scale(1);
    visibility: visible
}

.mobile-search input {
    background: #0000;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    border-radius: initial;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 5px;
    padding-left: 0;
    transition: .3s ease-in-out;
    width: 100%
}

.mobile-search input:focus {
    border-bottom: 1px solid #fff
}

.mobile-search input::placeholder {
    color: dimgray;
    font-family: Cairo, sans-serif
}

.mobile-search .search-cross-btn {
    background: #5ddcf299;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    height: 40px;
    line-height: 41px;
    text-align: center;
    transition: .5s ease;
    width: 40px
}

.mobile-search .search-cross-btn:hover {
    background: #5ddcf2;
    color: #fff
}

.mobile-search .search-cross-btn.style-2 {
    background-color: #0000;
    border: 1px solid #5ddcf2
}

.mobile-search .search-cross-btn.style-2:hover {
    background: #5ddcf2;
    color: #fff
}

.mobile-search .search-cross-btn.style-3 {
    background-color: #0000;
    border: 1px solid #5ddcf2
}

.mobile-search .search-cross-btn.style-3:hover {
    background: #5ddcf2;
    color: #fff
}

.mobile-search .search-cross-btn i {
    cursor: pointer;
    font-size: 25px
}

.topbar {
    align-items: center;
    background: #f5f5f5;
    direction: rtl;
    display: flex;
    justify-content: space-between;
    padding: 10px 60px;
    position: relative;
    z-index: 999
}

@media(min-width:1200px)and (max-width:1399px) {
    .topbar {
        padding: 10px 30px
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .topbar {
        padding: 10px 30px
    }
}

@media(max-width:991px) {
    .topbar {
        display: none;
        visibility: hidden
    }
}

.topbar-left h6 {
    color: dimgray;
    font-size: 14px;
    font-weight: 600;
    line-height: 10px;
    margin-bottom: 0;
    margin-left: 15px
}

.topbar-left .topbar-social-list {
    align-content: center;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0
}

.topbar-left .topbar-social-list li a {
    color: #5ddcf2
}

.topbar-left .topbar-social-list li .bx {
    background: #0000;
    border-radius: 50%;
    height: 24px;
    line-height: 24px;
    text-align: center;
    transition: all .42s ease-in-out;
    width: 24px
}

.topbar-left .topbar-social-list li .bx:hover {
    background: #5ddcf2;
    color: #fff
}

.email-area h6 {
    color: dimgray;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0
}

.topbar-right-list {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0
}

.topbar-right-list li {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 1
}

.topbar-right-list li,
.topbar-right-list li a,
.topbar-right-list li span {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all .35s ease
}

.topbar-right-list li:hover {
    color: #5ddcf2
}

.topbar-right-list li:hover a,
.topbar-right-list li:hover span {
    color: inherit;
    font-family: Cairo, sans-serif
}

.topbar-right-list li:hover .topbar-sublist {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

.topbar-right-list li>img {
    height: 20px;
    margin-left: 15px;
    margin-top: 2px;
    width: 20px
}

.topbar-right-list li .topbar-sublist {
    background: #f5f5f5;
    border: 1px solid #ffffff1a;
    height: auto;
    left: -10px;
    list-style: none;
    margin: 0;
    min-width: 100px;
    opacity: 0;
    padding: 0;
    position: absolute;
    text-align: right;
    top: 30px;
    transform: translateY(5px);
    transition: all .6s ease;
    visibility: hidden;
    z-index: 9
}

.topbar-right-list li .topbar-sublist li {
    padding: 8px 12px
}

.topbar-right-list li .topbar-sublist li img {
    margin-left: 15px;
    width: 20px
}

.nice-select {
    text-align: right !important
}

.nice-select:after {
    left: 12px !important
}

.nice-select .option {
    text-align: right
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 95%;
    top: 50%;
    transform: rotate(45deg);
    transform-origin: 66% 66%;
    transition: all .15s ease-in-out;
    width: 5px
}

.mobile-menu-form {
    margin-top: 50px
}

.mobile-menu-form input {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    outline: none;
    padding: 10px 15px;
    width: 100%
}

.mobile-menu-form input::placeholder {
    font-size: 12px
}

.mobile-menu-form button {
    border: none;
    outline: none;
    padding: 10px
}

.mobile-menu-form.style-2 input {
    border-radius: 30px
}

.hotline-info {
    text-align: center
}

.hotline-info h6 {
    font-size: 20px;
    font-weight: 700
}

header.style-1 {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 60px;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 99
}

@media(min-width:1200px)and (max-width:1399px) {
    header.style-1 {
        padding: 0 0 0 30px
    }
}

@media(min-width:992px)and (max-width:1199px) {
    header.style-1 {
        padding: 0 0 0 30px
    }
}

@media(max-width:991px) {
    header.style-1 {
        padding: 0 0 0 30px;
        top: 0
    }
}

header.style-1.sticky {
    animation: smooth-header .65s linear;
    background: #fff;
    box-shadow: 5px 3px 40px #0048581a;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 999
}

header.style-1 .nav-right .hotline {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: 40px
}

header.style-1 .nav-right .hotline .hotline-icon {
    margin-left: 8px
}

header.style-1 .nav-right .hotline .hotline-info span {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 12px;
    font-weight: 400
}

header.style-1 .nav-right .hotline .hotline-info h6 {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap
}

header.style-1 .nav-right .search-btn {
    background-color: #5ddcf2;
    border-radius: 5px;
    cursor: pointer;
    height: 42px;
    line-height: 45px;
    margin-left: 15px;
    text-align: center;
    width: 42px
}

header.style-1 .nav-right .search-btn .bi {
    color: #fff;
    font-size: 20px
}

@media(max-width:991px) {
    header.style-1 .nav-right .search-btn {
        display: none;
        visibility: hidden
    }
}

header.style-1 .header-logo {
    background: #5ddcf2;
    height: 100%;
    padding: 25px 60px
}

@media(min-width:1200px)and (max-width:1399px) {
    header.style-1 .header-logo {
        padding: 25px 30px
    }
}

@media(max-width:1199px) {
    header.style-1 .header-logo {
        padding: 21px 30px
    }
}

@media(max-width:991px) {
    header.style-1 .header-logo {
        padding: 15px 30px
    }
}

header.style-1 .header-logo img {
    max-width: 100%;
    min-width: 130px
}

header.style-1 .header-btn {
    background: #5ddcf2;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    transition: .35s ease-in;
    white-space: nowrap
}

header.style-1 .header-btn:hover {
    background: #191a1c
}

header.style-1 .header-btn:hover a {
    color: #fff
}

@media(max-width:1199px) {
    header.style-1 .header-btn {
        display: none;
        visibility: hidden
    }
}

header.style-1 .main-menu .menu-list {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    padding: 0
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list {
        flex-direction: column;
        justify-content: flex-start
    }
}

header.style-1 .main-menu .menu-list>li {
    display: inline-block;
    margin: 0 17px;
    position: relative
}

@media(max-width:1199px) {
    header.style-1 .main-menu .menu-list>li {
        margin: 0 15px
    }
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li {
        margin: 0;
        width: 100%
    }
}

header.style-1 .main-menu .menu-list>li .dropdown-icon {
    color: #1f2230;
    font-size: 25px;
    opacity: 0;
    transition: .4s ease-in;
    visibility: hidden
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li .dropdown-icon {
        opacity: 1;
        visibility: visible
    }
}

header.style-1 .main-menu .menu-list>li a {
    align-items: center;
    color: #1f2230;
    display: flex;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 30px 0;
    transition: .4s;
    white-space: nowrap
}

header.style-1 .main-menu .menu-list>li a.active,
header.style-1 .main-menu .menu-list>li a:hover {
    color: #5ddcf2
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li a {
        border-bottom: 1px solid rgba(31, 34, 48, .098);
        display: block;
        padding: 12px 0;
        position: relative
    }

    header.style-1 .main-menu .menu-list>li a:hover {
        color: inherit
    }
}

header.style-1 .main-menu .menu-list>li .submenu {
    background-color: #fff;
    box-shadow: 5px 3px 40px #0048581a;
    max-width: 230px;
    min-width: 200px;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 84px;
    transform: translateY(25px);
    transition: all .55s ease-in-out;
    visibility: hidden
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li .submenu {
        border: initial;
        box-shadow: none;
        display: none;
        left: 0;
        opacity: 1;
        position: relative;
        top: 0;
        transform: translateY(0);
        transition: none 0s ease 0s;
        transition: initial;
        visibility: inherit;
        width: 100%
    }
}

header.style-1 .main-menu .menu-list>li .submenu>li a {
    border-bottom: 1px solid #1f22301a;
    color: #1f2230;
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li .submenu>li a {
        border-bottom: initial;
        padding: 12px 15px
    }
}

header.style-1 .main-menu .menu-list>li .submenu>li a:before {
    background: #5ddcf2;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: .4s ease-in;
    width: 100%;
    z-index: -1
}

header.style-1 .main-menu .menu-list>li .submenu>li a:hover {
    color: #5ddcf2
}

header.style-1 .main-menu .menu-list>li .submenu>li a:hover:before {
    transform: scale(1)
}

header.style-1 .main-menu .menu-list>li .submenu>li a:last-child {
    border-bottom: initial
}

header.style-1 .main-menu .menu-list>li.menu-item-has-children {
    padding-left: 20px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li.menu-item-has-children {
        padding-right: 0
    }
}

header.style-1 .main-menu .menu-list>li.menu-item-has-children:after {
    content: "";
    font-family: bootstrap-icons;
    font-size: 13px;
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 33px;
    transition: all .42s ease-in-out
}

@media(max-width:991px) {
    header.style-1 .main-menu .menu-list>li.menu-item-has-children:after {
        display: none;
        visibility: hidden
    }
}

header.style-1 .main-menu .menu-list>li.menu-item-has-children .dropdown-icon {
    font-size: 20px;
    left: 0;
    position: absolute;
    top: 12px
}

header.style-1 .main-menu .menu-list>li.menu-item-has-children:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

header.style-1 .main-menu .menu-list>li.menu-item-has-children:hover:after {
    color: #5ddcf2;
    transform: rotate(180deg)
}

@media(max-width:991px) {
    header.style-1 .main-menu {
        background-color: #fff;
        border-right: 1px solid #eee;
        height: 100%;
        overflow-y: auto;
        padding: 40px 20px;
        position: fixed;
        right: -100%;
        top: 0;
        transition: .7s ease-in-out;
        width: 280px;
        z-index: 999
    }

    header.style-1 .main-menu.show-menu {
        right: 0
    }
}

header.style-1 .main-menu .mobile-logo-area {
    margin-bottom: 25px
}

header.style-1 .main-menu .mobile-logo-area .menu-close-btn {
    cursor: pointer
}

header.style-1 .main-menu .mobile-logo-area .menu-close-btn .bi {
    color: #1f2230;
    font-size: 18px
}

header.style-1 .main-menu .mobile-logo-area .menu-close-btn .bi:hover {
    color: #5ddcf2
}

header.style-1 .main-menu .mobile-logo-wrap {
    background: #5ddcf2;
    padding: 10px
}

.mobile-menu-btn .bx {
    color: #1f2230;
    font-size: 28px
}

header.style-2 {
    align-items: center;
    background-color: #0000;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99
}

@media(max-width:991px) {
    header.style-2 {
        padding: 20px 30px
    }
}

header.style-2.sticky {
    animation: smooth-header .65s linear;
    background: #fff;
    box-shadow: 5px 3px 40px #0048581a;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 99
}

header.style-2 .nav-right .hotline {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 50px
}

header.style-2 .nav-right .hotline .hotline-icon {
    margin-right: 8px
}

header.style-2 .nav-right .hotline .hotline-info span {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 12px;
    font-weight: 400
}

header.style-2 .nav-right .hotline .hotline-info h6 {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap
}

header.style-2 .nav-right .search-btn {
    border-radius: 5px;
    cursor: pointer;
    height: 42px;
    line-height: 45px;
    margin-left: 15px;
    text-align: center;
    width: 42px
}

@media(max-width:991px) {
    header.style-2 .nav-right .search-btn {
        display: none;
        visibility: hidden
    }
}

header.style-2 .nav-right .search-btn .bi {
    color: #5ddcf2;
    font-size: 20px
}

header.style-2 .header-logo img {
    min-width: 120px;
    width: 100%
}

header.style-2 .header-btn {
    background: #5ddcf2;
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    transition: .35s ease-in;
    white-space: nowrap
}

@media(min-width:992px)and (max-width:1199px) {
    header.style-2 .header-btn {
        display: none;
        visibility: hidden
    }
}

header.style-2 .header-btn:hover {
    background: #191a1c
}

header.style-2 .header-btn:hover a {
    color: #fff
}

@media(max-width:991px) {
    header.style-2 .header-btn {
        display: none;
        visibility: hidden
    }
}

header.style-2 .main-menu .menu-list {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    padding: 0
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list {
        flex-direction: column;
        justify-content: flex-start
    }
}

header.style-2 .main-menu .menu-list>li {
    display: inline-block;
    margin: 0 17px;
    position: relative
}

@media(max-width:1199px) {
    header.style-2 .main-menu .menu-list>li {
        margin: 0 15px
    }
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list>li {
        margin: 0;
        width: 100%
    }
}

header.style-2 .main-menu .menu-list>li .dropdown-icon {
    color: #1f2230;
    font-size: 25px;
    opacity: 0;
    transition: .4s ease-in;
    visibility: hidden
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list>li .dropdown-icon {
        opacity: 1;
        visibility: visible
    }
}

header.style-2 .main-menu .menu-list>li a {
    align-items: center;
    color: #1f2230;
    display: inline-block;
    display: flex;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 30px 0;
    transition: .4s;
    white-space: nowrap
}

header.style-2 .main-menu .menu-list>li a.active,
header.style-2 .main-menu .menu-list>li a:hover {
    color: #5ddcf2
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list>li a {
        border-bottom: 1px solid rgba(31, 34, 48, .098);
        display: block;
        padding: 12px 0;
        position: relative
    }

    header.style-2 .main-menu .menu-list>li a:hover {
        color: inherit
    }
}

header.style-2 .main-menu .menu-list>li .submenu {
    background-color: #fff;
    box-shadow: 2px 3px 20px #1f22301a;
    max-width: 230px;
    min-width: 200px;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 84px;
    transform: translateY(25px);
    transition: all .55s ease-in-out;
    visibility: hidden
}

@media(max-width:991px)and (max-width:991px) {
    header.style-2 .main-menu .menu-list>li .submenu {
        border: initial;
        box-shadow: none;
        display: none;
        left: 0;
        opacity: 1;
        position: relative;
        top: 0;
        transform: translateY(0);
        transition: none 0s ease 0s;
        transition: initial;
        visibility: inherit;
        width: 100%
    }
}

header.style-2 .main-menu .menu-list>li .submenu>li a {
    border-bottom: 1px solid #1f22301a;
    color: #1f2230;
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list>li .submenu>li a {
        border-bottom: initial;
        padding: 12px 15px
    }
}

header.style-2 .main-menu .menu-list>li .submenu>li a:before {
    background: #5ddcf2;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: .4s ease-in;
    width: 100%;
    z-index: -1
}

header.style-2 .main-menu .menu-list>li .submenu>li a:hover {
    color: #5ddcf2
}

header.style-2 .main-menu .menu-list>li .submenu>li a:hover:before {
    transform: scale(1)
}

header.style-2 .main-menu .menu-list>li .submenu>li a:last-child {
    border-bottom: initial
}

header.style-2 .main-menu .menu-list>li.menu-item-has-children {
    padding-left: 20px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list>li.menu-item-has-children {
        padding-right: 0
    }
}

header.style-2 .main-menu .menu-list>li.menu-item-has-children:after {
    content: "";
    font-family: bootstrap-icons;
    font-size: 13px;
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 33px;
    transition: all .42s ease-in-out
}

@media(max-width:991px) {
    header.style-2 .main-menu .menu-list>li.menu-item-has-children:after {
        display: none;
        visibility: hidden
    }
}

header.style-2 .main-menu .menu-list>li.menu-item-has-children .dropdown-icon {
    font-size: 20px;
    left: 0;
    position: absolute;
    top: 12px
}

header.style-2 .main-menu .menu-list>li.menu-item-has-children:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

header.style-2 .main-menu .menu-list>li.menu-item-has-children:hover:after {
    color: #5ddcf2;
    transform: rotate(180deg)
}

@media(max-width:991px) {
    header.style-2 .main-menu {
        background-color: #fff;
        border-right: 1px solid #eee;
        height: 100%;
        overflow-y: auto;
        padding: 40px 20px;
        position: fixed;
        right: -100%;
        top: 0;
        transition: .7s ease-in-out;
        width: 280px;
        z-index: 999
    }

    header.style-2 .main-menu.show-menu {
        right: 0
    }
}

header.style-2 .main-menu .mobile-logo-area {
    margin-bottom: 25px
}

header.style-2 .main-menu .mobile-logo-area .menu-close-btn {
    cursor: pointer
}

header.style-2 .main-menu .mobile-logo-area .menu-close-btn .bi {
    color: #1f2230;
    font-size: 20px
}

header.style-2 .main-menu .mobile-logo-area .menu-close-btn .bi:hover {
    color: #5ddcf2
}

header.style-2 .join-btn {
    color: #5ddcf2;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    margin-left: 30px;
    transition: .42s ease;
    white-space: nowrap
}

@media(max-width:1399px) {
    header.style-2 .join-btn {
        display: none;
        visibility: hidden
    }
}

header.style-2 .join-btn:hover {
    color: #5ddcf2
}

header.style-3 {
    align-items: center;
    background-color: #0000;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 60px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99
}

@media(max-width:767px) {
    header.style-3 {
        padding: 0 30px
    }
}

header.style-3.sticky {
    animation: smooth-header .65s linear;
    background: #fff;
    box-shadow: 5px 3px 40px #0048581a;
    left: 0;
    position: fixed;
    top: 0;
    transition: .2s ease;
    z-index: 99
}

@keyframes smooth-header {
    0% {
        transform: translateY(-30px)
    }

    to {
        transform: translateY(0)
    }
}

header.style-3 .nav-right .hotline {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: 40px
}

header.style-3 .nav-right .hotline .hotline-icon {
    margin-left: 8px
}

header.style-3 .nav-right .hotline .hotline-info span {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 12px;
    font-weight: 400
}

header.style-3 .nav-right .hotline .hotline-info h6 {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap
}

header.style-3 .nav-right .search-btn {
    background-color: #fff;
    border: 1px solid #5ddcf2;
    border-radius: 50%;
    cursor: pointer;
    height: 42px;
    line-height: 42px;
    margin-left: 15px;
    text-align: center;
    width: 42px
}

header.style-3 .nav-right .search-btn .bi {
    color: #5ddcf2;
    font-size: 18px
}

@media(max-width:991px) {
    header.style-3 .nav-right .search-btn {
        display: none;
        visibility: hidden
    }
}

header.style-3 .header-logo {
    padding: 20px 0
}

header.style-3 .header-logo img {
    max-width: 100%;
    min-width: 120px
}

header.style-3 .header-btn {
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap
}

header.style-3 .header-btn:hover {
    background: #191a1c
}

header.style-3 .header-btn:hover a {
    color: #fff
}

@media(max-width:1199px) {
    header.style-3 .header-btn {
        display: none;
        visibility: hidden
    }
}

header.style-3 .main-menu .menu-list {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    padding: 0
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list {
        flex-direction: column;
        justify-content: flex-start
    }
}

header.style-3 .main-menu .menu-list>li {
    display: inline-block;
    margin: 0 17px;
    position: relative
}

@media(max-width:1199px) {
    header.style-3 .main-menu .menu-list>li {
        margin: 0 15px
    }
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li {
        margin: 0;
        width: 100%
    }
}

header.style-3 .main-menu .menu-list>li .dropdown-icon {
    color: #1f2230;
    font-size: 25px;
    opacity: 0;
    transition: .4s ease-in;
    visibility: hidden
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li .dropdown-icon {
        opacity: 1;
        visibility: visible
    }
}

header.style-3 .main-menu .menu-list>li a {
    align-items: center;
    color: #1f2230;
    display: flex;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 30px 0;
    transition: .4s;
    white-space: nowrap
}

@media(max-width:767px) {
    header.style-3 .main-menu .menu-list>li a.active {
        color: #5ddcf2
    }
}

header.style-3 .main-menu .menu-list>li a:hover {
    color: #5ddcf2
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li a {
        border-bottom: 1px solid rgba(31, 34, 48, .098);
        display: block;
        padding: 12px 0;
        position: relative
    }

    header.style-3 .main-menu .menu-list>li a:hover {
        color: inherit
    }
}

header.style-3 .main-menu .menu-list>li .submenu {
    background-color: #fff;
    box-shadow: 5px 3px 40px #0048581a;
    max-width: 230px;
    min-width: 200px;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 84px;
    transform: translateY(25px);
    transition: all .55s ease-in-out;
    visibility: hidden
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li .submenu {
        border: initial;
        box-shadow: none;
        display: none;
        left: 0;
        opacity: 1;
        position: relative;
        top: 0;
        transform: translateY(0);
        transition: none 0s ease 0s;
        transition: initial;
        visibility: inherit;
        width: 100%
    }
}

header.style-3 .main-menu .menu-list>li .submenu>li a {
    border-bottom: 1px solid #1f22301a;
    color: #1f2230;
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li .submenu>li a {
        border-bottom: initial;
        padding: 12px 15px
    }
}

header.style-3 .main-menu .menu-list>li .submenu>li a:before {
    background: #5ddcf2;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: .4s ease-in;
    width: 100%;
    z-index: -1
}

header.style-3 .main-menu .menu-list>li .submenu>li a:hover {
    color: #5ddcf2
}

header.style-3 .main-menu .menu-list>li .submenu>li a:hover:before {
    transform: scale(1)
}

header.style-3 .main-menu .menu-list>li .submenu>li a:last-child {
    border-bottom: initial
}

header.style-3 .main-menu .menu-list>li.menu-item-has-children {
    padding-left: 20px;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li.menu-item-has-children {
        padding-right: 0
    }
}

header.style-3 .main-menu .menu-list>li.menu-item-has-children:after {
    content: "";
    font-family: bootstrap-icons;
    font-size: 13px;
    font-weight: 600;
    left: 0;
    position: absolute;
    top: 33px;
    transition: all .42s ease-in-out
}

@media(max-width:991px) {
    header.style-3 .main-menu .menu-list>li.menu-item-has-children:after {
        display: none;
        visibility: hidden
    }
}

header.style-3 .main-menu .menu-list>li.menu-item-has-children .dropdown-icon {
    font-size: 20px;
    left: 0;
    position: absolute;
    top: 12px
}

header.style-3 .main-menu .menu-list>li.menu-item-has-children:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

header.style-3 .main-menu .menu-list>li.menu-item-has-children:hover:after {
    color: #5ddcf2;
    transform: rotate(180deg)
}

@media(max-width:991px) {
    header.style-3 .main-menu {
        background-color: #fff;
        border-right: 1px solid #eee;
        height: 100vh;
        overflow-y: auto;
        padding: 40px 20px;
        position: fixed;
        right: -100%;
        top: 0;
        transition: .7s ease-in-out;
        width: 280px;
        z-index: 999
    }

    header.style-3 .main-menu.show-menu {
        right: 0
    }
}

header.style-3 .main-menu .mobile-logo-area {
    margin-bottom: 25px
}

header.style-3 .main-menu .mobile-logo-area .menu-close-btn {
    cursor: pointer
}

header.style-3 .main-menu .mobile-logo-area .menu-close-btn .bi {
    color: #1f2230;
    font-size: 20px
}

header.style-3 .main-menu .mobile-logo-area .menu-close-btn .bi:hover {
    color: #5ddcf2
}

header.style-3 .main-menu .mobile-logo-wrap {
    padding: 10px 0
}

header.style-3 .mobile-menu-form input[type=text] {
    border-radius: 30px;
    color: #5ddcf2
}

.hero-style-one {
    overflow: hidden;
    position: relative
}

.hero-style-one .swiper-slide-active h1,
.hero-style-one .swiper-slide-active h2,
.hero-style-one .swiper-slide-active span {
    animation: fadeInDown 1.7s
}

.hero-style-one .swiper-slide-active .eg-btn,
.hero-style-one .swiper-slide-active p {
    animation: fadeInUp 1.7s
}

.hero-style-one .hero-one-pagination {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    z-index: 9
}

@media(max-width:767px) {
    .hero-style-one .hero-one-pagination {
        display: none;
        visibility: hidden
    }
}

.hero-style-one .hero-one-pagination .swiper-pagination-bullet {
    background: #fff;
    height: 15px;
    width: 15px
}

.hero-style-one .hero-one-pagination .swiper-pagination-bullet-active {
    background: #5ddcf2
}

.hero-style-one .slider-arrows {
    padding: 5px;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2
}

.hero-style-one .slider-bg-1 {
    height: 100%;
    overflow: hidden;
    padding: 160px 0;
    position: relative;
    width: 100%;
    z-index: 1
}

@media(min-width:1200px)and (max-width:1399px) {
    .hero-style-one .slider-bg-1 {
        padding: 160px 0
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .hero-style-one .slider-bg-1 {
        padding: 160px 0
    }
}

@media(max-width:991px) {
    .hero-style-one .slider-bg-1 {
        padding: 120px 0
    }
}

.hero-style-one .slider-bg-1:before {
    animation: large 26s linear infinite alternate;
    background-image: url(/static/media/banner-bg1.0fac56073f2b3e7567c8.png);
    background-size: cover;
    right: 0
}

.hero-style-one .slider-bg-1:after,
.hero-style-one .slider-bg-1:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -9
}

.hero-style-one .slider-bg-1:after {
    background: #0000008c
}

.hero-style-one .slider-bg-2 {
    height: 100%;
    overflow: hidden;
    padding: 160px 0;
    position: relative;
    width: 100%;
    z-index: 1
}

@media(min-width:1200px)and (max-width:1399px) {
    .hero-style-one .slider-bg-2 {
        padding: 160px 0
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .hero-style-one .slider-bg-2 {
        padding: 160px 0
    }
}

@media(max-width:991px) {
    .hero-style-one .slider-bg-2 {
        padding: 120px 0
    }
}

.hero-style-one .slider-bg-2:before {
    animation: large 26s linear infinite alternate;
    background-image: url(/static/media/banner-bg2.17b6f138e8431de0d33a.png);
    background-size: cover;
    right: 0
}

.hero-style-one .slider-bg-2:after,
.hero-style-one .slider-bg-2:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -9
}

.hero-style-one .slider-bg-2:after {
    background: #0000008c
}

@keyframes large {
    0% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1.8)
    }
}

.hero-style-one .banner1-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    text-align: center;
    width: 100%
}

.hero-style-one .banner1-content span {
    color: #eee;
    display: block;
    font-family: Cairo, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 10px
}

.hero-style-one .banner1-content h1,
.hero-style-one .banner1-content h2 {
    color: #fff;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: capitalize
}

@media(min-width:768px)and (max-width:991px) {

    .hero-style-one .banner1-content h1,
    .hero-style-one .banner1-content h2 {
        font-size: 60px
    }
}

@media(max-width:767px) {

    .hero-style-one .banner1-content h1,
    .hero-style-one .banner1-content h2 {
        font-size: 50px
    }
}

.hero-style-one .banner1-content p {
    color: #eee;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 55px;
    margin-left: auto;
    margin-right: auto;
    width: 85%
}

@media(min-width:768px)and (max-width:991px) {
    .hero-style-one .banner1-content p {
        width: 95%
    }
}

@media(max-width:767px) {
    .hero-style-one .banner1-content p {
        width: 98%
    }
}

.hero-style-three {
    background-image: url(/static/media/home3-bannerbg.ac12bf6b8b5ab343f57e.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

@media(max-width:991px) {
    .hero-style-three {
        background-image: none;
        padding-top: 85px
    }
}

.hero-style-three .banner-ellipse {
    left: 0;
    position: absolute;
    top: 30px;
    z-index: -1
}

@media(max-width:991px) {
    .hero-style-three .banner-ellipse {
        display: none;
        visibility: hidden
    }
}

.hero-style-three .join-merchant {
    background: #5ddcf2;
    border-radius: 22px 0 0 22px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 20px 10px 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:1500px) {
    .hero-style-three .join-merchant {
        display: none;
        visibility: hidden
    }
}

.hero-style-three:before {
    background: #5ddcf2;
    border-radius: 0 279px 279px 0;
    bottom: 85px;
    height: auto;
    left: 0;
    max-width: 560px;
    position: absolute;
    top: 85px;
    width: 100%;
    z-index: -1
}

@media(min-width:1200px)and (max-width:1399px) {
    .hero-style-three:before {
        max-width: 450px
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .hero-style-three:before {
        max-width: 380px
    }
}

@media(max-width:991px) {
    .hero-style-three:before {
        display: none;
        visibility: hidden
    }
}

.hero-style-three .home3-banner {
    height: auto;
    left: 60px;
    max-width: 580px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1
}

@media(min-width:1200px)and (max-width:1399px) {
    .hero-style-three .home3-banner {
        max-width: 600px
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .hero-style-three .home3-banner {
        max-width: 500px
    }
}

@media(max-width:991px) {
    .hero-style-three .home3-banner {
        display: none;
        visibility: hidden
    }
}

.hero-style-three .banner3-content {
    padding: 240px 60px 100px 45px;
    width: 100%
}

@media(max-width:991px) {
    .hero-style-three .banner3-content {
        background-image: linear-gradient(#000000b3, #0000008c), url(/static/media/inner-bg.8a8557a021b45ed154ee.png);
        text-align: center
    }
}

@media(min-width:1200px)and (max-width:1399px) {
    .hero-style-three .banner3-content {
        padding: 200px 60px 100px 0
    }
}

@media(min-width:768px)and (max-width:991px) {
    .hero-style-three .banner3-content {
        padding: 80px 60px
    }
}

@media(max-width:767px) {
    .hero-style-three .banner3-content {
        padding: 80px 20px
    }
}

.hero-style-three .banner3-content span {
    color: #5ddcf2;
    display: block;
    font-family: Cairo, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px
}

@media(max-width:991px) {
    .hero-style-three .banner3-content span {
        color: #fff
    }
}

.hero-style-three .banner3-content h1 {
    color: #1f2230;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px
}

@media(max-width:991px) {
    .hero-style-three .banner3-content h1 {
        color: #fff
    }
}

@media(min-width:768px)and (max-width:991px) {
    .hero-style-three .banner3-content h1 {
        font-size: 60px
    }
}

@media(max-width:767px) {
    .hero-style-three .banner3-content h1 {
        font-size: 50px
    }
}

.hero-style-three .banner3-content p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 45px
}

@media(max-width:991px) {
    .hero-style-three .banner3-content p {
        color: #fff;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width:768px)and (max-width:991px) {
    .hero-style-three .banner3-content p {
        width: 80%
    }
}

.category-section .swiper {
    margin: -12px;
    padding: 12px
}

.category-section.taps .category-card1 {
    cursor: pointer;
    min-width: auto;
    width: 100%
}

.category-section.taps .category-card1 h5 {
    font-size: 18px
}

.category-section.taps .category-card1 .cat-icon img {
    height: 40px;
    width: 40px
}

.category-card1 {
    align-items: center;
    background: #fff;
    border: initial;
    border-radius: 40px 0;
    box-shadow: 0 0 10px #0000000f;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 170px;
    min-width: 170px;
    overflow: hidden;
    padding: 20px 5px;
    position: relative;
    text-align: center;
    transition: all .35s ease-in-out;
    z-index: 1
}

.category-card1:before {
    background: #5ddcf2;
    border-radius: 5px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease-in;
    width: 100%;
    z-index: -1
}

.category-card1.active:before,
.category-card1:hover:before {
    transform: scaleX(1);
    transform-origin: right
}

.category-card1.active .cat-icon img,
.category-card1:hover .cat-icon img {
    filter: brightness(0) invert(1)
}

.category-card1.active h5,
.category-card1:hover h5 {
    color: #fff
}

.category-card1 .cat-icon {
    margin-bottom: 15px
}

.category-card1 .cat-icon img {
    height: 60px;
    margin-bottom: 0;
    transition: all .35s ease-in
}

.category-card1 h5 {
    color: #1f2230;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    transition: all .35s ease-in
}

.category-card1.style2:before {
    background: #5ddcf2
}

.category-prev1 {
    left: -40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.category-prev1 i {
    background: #fff;
    border: 1px solid #484848;
    border-radius: 50%;
    color: #484848;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    transition: .5s ease;
    width: 38px
}

.category-prev1.style2:hover i,
.category-prev1:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.category-next1 {
    position: absolute;
    right: -46px;
    top: 50%;
    transform: translateY(-50%)
}

.category-next1 i {
    background: #fff;
    border: 1px solid #484848;
    border-radius: 50%;
    color: #484848;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    transition: .5s ease;
    width: 38px
}

.category-next1.style2:hover i,
.category-next1:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.category-prev2 {
    left: -40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:1199px) {
    .category-prev2 {
        display: none;
        visibility: hidden
    }
}

.category-prev2 i {
    background: #fff;
    border: 1px solid #5ddcf299;
    border-radius: 50%;
    color: #5ddcf299;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    transition: .5s ease;
    width: 38px
}

.category-prev2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.category-next2 {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:1199px) {
    .category-next2 {
        display: none;
        visibility: hidden
    }
}

.category-next2 i {
    background: #fff;
    border: 1px solid #5ddcf299;
    border-radius: 50%;
    color: #5ddcf299;
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    transition: .5s ease;
    width: 38px
}

.category-next2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.category-card2 {
    align-items: center;
    border-radius: 10px;
    display: flex;
    height: 150px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
    overflow: hidden;
    position: relative;
    transition: .4s ease;
    transition: all .35s ease-in-out;
    width: 100%;
    z-index: 1
}

.category-card2:after {
    background-color: #1f223073;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1
}

.category-card2:hover .category-img {
    transform: scale(1.2)
}

.category-card2 .category-img {
    border-radius: 5px;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .5s ease-in-out;
    z-index: -1
}

.category-card2 .content {
    text-align: center
}

.category-card2 .content img {
    height: 60px;
    margin-bottom: 15px
}

.category-card2 .content h5 {
    margin-bottom: 0;
    text-align: center;
    transition: all .5s ease-in-out
}

.category-card2 .content h5 a {
    color: #fff;
    transition: all .5s ease-in-out
}

.live-auction {
    overflow: hidden;
    position: relative
}

.live-auction .section-bg {
    left: 0;
    position: absolute;
    top: 7%
}

@media(max-width:767px) {
    .live-auction .section-bg {
        display: none;
        visibility: hidden
    }
}

.live-auction .section-bg2 {
    position: absolute;
    right: 0;
    top: 7%
}

@media(max-width:767px) {
    .live-auction .section-bg2 {
        display: none;
        visibility: hidden
    }
}

.live-auction .dotted1 {
    animation: move 2.6s linear infinite;
    position: absolute;
    right: -80px;
    top: 58px
}

@media(max-width:991px) {
    .live-auction .dotted1 {
        display: none;
        visibility: hidden
    }
}

.live-auction .dotted2 {
    animation: move 2.6s linear infinite;
    bottom: 40px;
    left: -80px;
    position: absolute
}

@media(max-width:991px) {
    .live-auction .dotted2 {
        display: none;
        visibility: hidden
    }
}

.live-auction .dotted3 {
    animation: move 2.6s linear infinite;
    bottom: -40px;
    left: -80px;
    position: absolute
}

@media(max-width:991px) {
    .live-auction .dotted3 {
        display: none;
        visibility: hidden
    }
}

@keyframes move {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }

    to {
        transform: translateY(0)
    }
}

.auction-card1 {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    width: 100%
}

.auction-card1:hover .auction-img img {
    transform: scale(1.2)
}

.auction-card1 .auction-img {
    overflow: hidden;
    position: relative
}

.auction-card1 .auction-img img {
    border-radius: 5px 5px 0 0;
    transition: all .65s ease;
    width: 100%
}

.auction-card1 .auction-img .auction-timer {
    background: #fff;
    border-radius: 30px;
    bottom: 20px;
    left: 50%;
    min-width: 230px;
    padding: 12px 20px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%)
}

.auction-card1 .auction-img .auction-timer .countdown h4 {
    color: #444;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0
}

@media(min-width:1200px)and (max-width:1399px) {
    .auction-card1 .auction-img .auction-timer .countdown h4 {
        font-size: 22px
    }
}

@media(max-width:1199px) {
    .auction-card1 .auction-img .auction-timer .countdown h4 {
        font-size: 20px
    }
}

.auction-card1 .auction-content {
    padding: 30px 25px
}

.auction-card1 .auction-content h4 {
    color: #1f2230;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: -5px
}

.auction-card1 .auction-content p {
    color: dimgray;
    font-size: 16px;
    font-weight: 500
}

.auction-card1 .auction-content p span {
    color: #1f2230;
    font-size: 20px;
    font-weight: 700
}

.auction-card1 .auction-content .price {
    color: #5ddcf2;
    font-size: 16px;
    font-weight: 700
}

.auction-card1 .auction-card-bttm {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px
}

.auction-card1 .author-area {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    right: 30px;
    top: 30px
}

.auction-card1 .author-area .author-emo {
    align-items: center;
    background: #fff;
    border: 1px solid #0000;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 7px;
    z-index: 1
}

.auction-card1 .author-area .author-emo img {
    height: 22px;
    line-height: 22px;
    width: 22px
}

.auction-card1 .author-area .author-name {
    background: #5ddcf2;
    border-radius: 33px;
    margin-right: -27px;
    padding: 6px 44px 6px 20px;
    transform: scaleX(.1);
    transform-origin: right;
    transition: .6s ease
}

.auction-card1 .author-area .author-name span {
    color: #fff;
    font-size: 14px;
    font-weight: 600
}

.auction-card1 .author-area:hover .author-emo {
    border: 1px solid #5ddcf2
}

.auction-card1 .author-area:hover .author-name {
    transform: scaleX(1)
}

.auction-card1 .share-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.auction-card1 .share-area .share-btn i {
    background-color: #eee;
    border-radius: 50%;
    height: 34px;
    line-height: 34px;
    text-align: center;
    transition: .5s ease;
    width: 34px;
    z-index: 9
}

.auction-card1 .share-area .share-btn i:hover {
    background: #1f2230;
    color: #fff
}

.auction-card1 .share-area .social-icons {
    margin-bottom: 0;
    margin-right: 0;
    padding: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s ease;
    z-index: 1
}

.auction-card1 .share-area:hover .social-icons {
    transform: scaleX(1)
}

.auction-card1 .share-area:hover .social-icons li {
    margin-right: 8px
}

.auction-card1 .share-area:hover .social-icons li i {
    font-size: 1rem;
    transition: all .42s ease
}

.auction-card1 .share-area:hover .social-icons li i:hover {
    color: #5ddcf2
}

.auction-card2 {
    border-radius: 10px;
    box-shadow: 5px 2px 30px #0000000f;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 15px 15px 0;
    width: 100%
}

.auction-card2:hover .auction-img img {
    border-radius: 10px;
    transform: scale(1.2)
}

.auction-card2:hover .auction-img .auction-timer .countdown h5 {
    color: #444
}

.auction-card2 .auction-img {
    overflow: hidden;
    position: relative
}

.auction-card2 .auction-img img {
    border-radius: 10px;
    transition: all .65s ease;
    width: 100%
}

.auction-card2 .auction-img .auction-timer {
    background: #fff;
    border-radius: 15px 15px 0 0;
    bottom: 0;
    left: 50%;
    min-width: 230px;
    padding: 12px 15px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%)
}

.auction-card2 .auction-img .auction-timer .countdown h5 {
    color: #444;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    transition: all .42s ease;
    white-space: nowrap
}

.auction-card2 .auction-content {
    padding: 30px 25px
}

.auction-card2 .auction-content h4 {
    color: #1f2230;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: -7px
}

.auction-card2 .auction-content p {
    color: dimgray;
    font-size: 16px;
    font-weight: 500
}

.auction-card2 .auction-content p span {
    color: #1f2230;
    font-size: 20px;
    font-weight: 700
}

.auction-card2 .auction-content .price {
    color: #5ddcf2;
    font-size: 16px;
    font-weight: 700
}

.auction-card2 .auction-card-bttm {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px
}

.auction-card2 .auction-card-bttm .share-area i {
    color: dimgray;
    cursor: pointer;
    transition: all .4s ease-in-out
}

.auction-card2 .auction-card-bttm .share-area i:hover {
    color: #5ddcf2
}

.auction-card2 .author-price-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 15px
}

.auction-card2 .author-price-area .author img {
    border-radius: 50%;
    height: 35px;
    margin-left: 10px;
    width: 35px
}

.auction-card2 .author-price-area .author span.name {
    color: dimgray;
    font-size: 14px;
    font-weight: 600
}

.auction-card2 .author-price-area p {
    color: #5ddcf2;
    font-family: Cairo, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0
}

.auction-card2 .author-area {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    left: 20px;
    position: absolute;
    top: 20px
}

.auction-card2 .author-area .author-emo {
    align-items: center;
    background: #fff;
    border: 1px solid #0000;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 7px;
    z-index: 1
}

.auction-card2 .author-area .author-emo img {
    height: 22px;
    line-height: 22px;
    width: 22px
}

.auction-card2 .author-area .author-name {
    background: #5ddcf2;
    border-radius: 33px;
    margin-left: -27px;
    padding: 6px 20px 6px 44px;
    transform: scaleX(.1);
    transform-origin: left;
    transition: .6s ease
}

.auction-card2 .author-area .author-name span {
    color: #fff;
    font-size: 14px;
    font-weight: 600
}

.auction-card2 .author-area:hover .author-emo {
    border: 1px solid #5ddcf2
}

.auction-card2 .author-area:hover .author-name {
    transform: scaleX(1)
}

.auction-card2 .share-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0
}

.auction-card2 .share-list .social-icons {
    margin-bottom: 0;
    margin-right: 0;
    padding: 5px;
    transform: scaleX(0);
    transform-origin: right;
    transition: .5s ease;
    z-index: 1
}

.auction-card2 .share-list:hover .social-icons {
    transform: scaleX(1)
}

.auction-card2 .share-list:hover .social-icons li {
    margin-right: 8px
}

.auction-card2 .share-list:hover .social-icons li i {
    font-size: 1rem
}

.auction-card3 {
    border: initial;
    border-radius: 0 30px;
    box-shadow: 2px 2px 20px #00000036;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 20px 20px 25px;
    text-align: center;
    width: 100%
}

.auction-card3:hover .auction-img img {
    transform: scale(1.2)
}

.auction-card3 .auction-timer {
    background: #fff;
    border-radius: 30px;
    padding-bottom: 20px;
    text-align: center
}

.auction-card3 .auction-timer span.timer-title {
    color: dimgray;
    display: block;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px
}

.auction-card3 .auction-timer .countdown h4 {
    color: #5ddcf2;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0
}

@media(min-width:1200px)and (max-width:1399px) {
    .auction-card3 .auction-timer .countdown h4 {
        font-size: 22px
    }
}

@media(max-width:1199px) {
    .auction-card3 .auction-timer .countdown h4 {
        font-size: 20px
    }
}

.auction-card3 .auction-img {
    border-radius: 0 30px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative
}

.auction-card3 .auction-img img {
    display: block;
    margin: auto;
    max-height: 200px;
    transition: all .65s ease
}

.auction-card3 .auction-content h4 {
    color: #1f2230;
    font-size: 23px;
    font-weight: bolder;
    line-height: 1.5;
    margin-top: -7px
}

.auction-card3 .auction-content p {
    color: dimgray;
    font-size: 16px;
    font-weight: 500
}

.auction-card3 .auction-content p span {
    color: #1f2230;
    font-size: 20px;
    font-weight: 700
}

.auction-card3 .auction-content .price {
    color: #5ddcf2;
    font-size: 16px;
    font-weight: 700
}

.auction-card3 .auction-card-bttm {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px
}

.auction-card3 .author-area {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    right: 20px;
    top: 20px
}

.auction-card3 .author-area .author-emo {
    align-items: center;
    background: #fff;
    border: 1px solid #0000;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 7px;
    z-index: 1
}

.auction-card3 .author-area .author-emo img {
    height: 22px;
    line-height: 22px;
    width: 22px
}

.auction-card3 .author-area .author-name {
    background: #5ddcf2;
    border-radius: 33px;
    margin-right: -27px;
    padding: 6px 44px 6px 20px;
    transform: scaleX(.1);
    transform-origin: right;
    transition: .6s ease
}

.auction-card3 .author-area .author-name span {
    color: #fff;
    font-size: 14px;
    font-weight: 600
}

.auction-card3 .author-area:hover .author-emo {
    border: 1px solid #5ddcf2
}

.auction-card3 .author-area:hover .author-name {
    transform: scaleX(1)
}

.auction-card3 .share-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.auction-card3 .share-area .share-btn i {
    background-color: #eee;
    border-radius: 50%;
    height: 34px;
    line-height: 34px;
    text-align: center;
    transition: .5s ease;
    width: 34px;
    z-index: 9
}

.auction-card3 .share-area .share-btn i:hover {
    background: #1f2230;
    color: #fff
}

.auction-card3 .share-area .social-icons {
    margin-bottom: 0;
    margin-left: 0;
    padding: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s ease;
    z-index: 1
}

.auction-card3 .share-area:hover .social-icons {
    transform: scaleX(1)
}

.auction-card3 .share-area:hover .social-icons li {
    margin-right: 8px
}

.auction-card3 .share-area:hover .social-icons li i {
    font-size: 1rem;
    transition: all .42s ease
}

.auction-card3 .share-area:hover .social-icons li i:hover {
    color: #5ddcf2
}

.auction-card3.style-2 {
    box-shadow: 0 0 10px #0000000f
}

.auction-card3.style-2 .auction-timer .countdown h4 {
    color: #444
}

.slider-bottom {
    margin-top: 60px
}

.slider-bottom .coming-next1 .bi {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #ddd;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.slider-bottom .coming-next1:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.slider-bottom .coming-prev1 i {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #ddd;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.slider-bottom .coming-prev1:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.slider-bottom .coming-next2 .bi {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #ddd;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.slider-bottom .coming-next2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.slider-bottom .coming-prev2 i {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #ddd;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.slider-bottom .coming-prev2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.slider-bottom .coming-next3 .bi {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #ddd;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.slider-bottom .coming-next3:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.slider-bottom .coming-prev3 i {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #ddd;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.slider-bottom .coming-prev3:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.slider-bottom .coming-arrow {
    min-width: 105px
}

.slider-bottom .coming-arrow svg {
    fill: #eee
}

.slider-bottom .swiper-pagination {
    position: static;
    width: 60%
}

.slider-bottom .swiper-pagination:before {
    background: #eee;
    content: "";
    height: 2px;
    left: -20px;
    max-width: 330px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

@media(max-width:1399px) {
    .slider-bottom .swiper-pagination:before {
        display: none;
        visibility: hidden
    }
}

.slider-bottom .swiper-pagination:after {
    background: #eee;
    content: "";
    height: 2px;
    max-width: 330px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

@media(max-width:1399px) {
    .slider-bottom .swiper-pagination:after {
        display: none;
        visibility: hidden
    }
}

.slider-bottom .swiper-pagination .swiper-pagination-bullet {
    background: dimgray;
    border-radius: 50px;
    height: 8px;
    transition: all .42s ease;
    width: 10px
}

.slider-bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #5ddcf2;
    width: 15px
}

.slider-bottom .swiper-pagination.style-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #5ddcf2
}

.upcoming-seciton {
    position: relative
}

.upcoming-seciton .section-bg {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1
}

@media(max-width:767px) {
    .upcoming-seciton .section-bg {
        display: none;
        visibility: hidden
    }
}

.upcoming-seciton .section-bg2 {
    left: 0;
    position: absolute;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .upcoming-seciton .section-bg2 {
        display: none;
        visibility: hidden
    }
}

.c-feature-card1 {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden
}

.c-feature-card1:hover .auction-timer2 .countdown-single {
    border: 1.5px solid #5ddcf2
}

.c-feature-card1:hover .auction-img>img {
    transform: scale(1.12)
}

.c-feature-card1 .auction-img {
    height: 350px;
    overflow: hidden;
    position: relative
}

.c-feature-card1 .auction-img img {
    transition: all .55s ease-in-out;
    width: 100%
}

.c-feature-card1 .c-feature-content {
    padding: 30px 25px
}

.c-feature-card1 .c-feature-content h4 {
    color: #1f2230;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4
}

.c-feature-card1 .c-feature-content p {
    color: dimgray;
    font-size: 16px;
    font-weight: 500
}

.c-feature-card1 .c-feature-content p span {
    color: #1f2230;
    font-size: 20px;
    font-weight: 700
}

.c-feature-card1 .c-feature-content .price {
    color: dimgray;
    font-size: 16px;
    font-weight: 700
}

.c-feature-card1 .c-feature-content .auction-card-bttm {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 25px
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area .share-btn i {
    background-color: #eee;
    border-radius: 50%;
    height: 34px;
    line-height: 34px;
    text-align: center;
    transition: .5s ease;
    width: 34px;
    z-index: 9
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area .share-btn i:hover {
    background: #1f2230;
    color: #fff
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area .social-icons {
    margin-left: 10px;
    padding: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s ease;
    z-index: 1
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons {
    transform: scaleX(1)
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li {
    margin-right: 8px
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li i {
    font-size: 1rem;
    transition: all .42s ease
}

.c-feature-card1 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li i:hover {
    color: #5ddcf2
}

.c-feature-card1 .c-feature-content .c-feature-category {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: -5px
}

.c-feature-card1 .auction-timer2 {
    align-items: center;
    background: #1f2230;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    left: 0;
    min-width: 220px;
    padding: 15px;
    position: absolute;
    text-align: center;
    width: 100%
}

.c-feature-card1 .auction-timer2 .countdown-single {
    border: 1.5px solid dimgray;
    border-radius: 10px 0;
    padding: 10px 5px;
    transition: all .5s ease
}

@media(min-width:1200px)and (max-width:1399px) {
    .c-feature-card1 .auction-timer2 .countdown-single {
        padding: 8px 3px
    }
}

@media(max-width:767px) {
    .c-feature-card1 .auction-timer2 .countdown-single {
        padding: 6px 0
    }
}

.c-feature-card1 .auction-timer2 .countdown-single h5 {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0
}

.c-feature-card1 .auction-timer2 .countdown-single span {
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin: 10px;
    min-width: 50px;
    padding: 5px
}

.c-feature-card1 .author-area2 {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    right: 20px;
    top: 20px
}

.c-feature-card1 .author-area2 .author-emo {
    align-items: center;
    border: 1px solid #0000;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1
}

.c-feature-card1 .author-area2 .author-emo img {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px
}

.c-feature-card1 .author-area2 .author-name {
    background: #fff;
    border-radius: 33px;
    margin-right: -28px;
    padding: 6px 44px 6px 20px;
    transform: scaleX(.1);
    transform-origin: right;
    transition: .6s ease
}

.c-feature-card1 .author-area2 .author-name span {
    color: #1f2230;
    font-size: 14px;
    font-weight: 600
}

.c-feature-card1 .author-area2:hover .author-emo {
    border: 1px solid #0000
}

.c-feature-card1 .author-area2:hover .author-name {
    transform: scaleX(1)
}

.c-feature-card2 {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden
}

.c-feature-card2:hover .auction-timer2 .countdown-single {
    border: 1.5px solid #5ddcf2
}

.c-feature-card2:hover .auction-img>img {
    transform: scale(1.12)
}

.c-feature-card2 .auction-img {
    height: 350px;
    overflow: hidden;
    position: relative
}

.c-feature-card2 .auction-img img {
    transition: all .55s ease-in-out;
    width: 100%
}

.c-feature-card2 .c-feature-content {
    padding: 30px 25px
}

.c-feature-card2 .c-feature-content h4 {
    color: #1f2230;
    font-size: 23px;
    font-weight: 700
}

.c-feature-card2 .c-feature-content p {
    color: dimgray;
    font-size: 16px;
    font-weight: 500
}

.c-feature-card2 .c-feature-content p span {
    color: #5ddcf2;
    font-size: 20px;
    font-weight: 700
}

.c-feature-card2 .c-feature-content .price {
    color: dimgray;
    font-size: 16px;
    font-weight: 700
}

.c-feature-card2 .c-feature-content .auction-card-bttm {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 25px
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .share-btn i {
    background-color: #eee;
    border-radius: 50%;
    height: 34px;
    line-height: 34px;
    text-align: center;
    transition: .5s ease;
    width: 34px;
    z-index: 9
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .share-btn i:hover {
    background: #1f2230;
    color: #fff
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .social-icons {
    margin: 0;
    padding: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s ease;
    z-index: 1
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .social-icons li a .bx {
    transition: all .5s ease-out 0s
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area .social-icons li a:hover .bx {
    color: #5ddcf2
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area:hover .social-icons {
    transform: scaleX(1)
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li {
    margin-left: 8px
}

.c-feature-card2 .c-feature-content .auction-card-bttm .share-area:hover .social-icons li i {
    font-size: 1rem
}

.c-feature-card2 .c-feature-content .c-feature-category {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: -5px
}

.c-feature-card2 .auction-timer2 {
    align-items: center;
    background: #1f2230;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    left: 0;
    min-width: 220px;
    padding: 15px;
    position: absolute;
    text-align: center;
    width: 100%
}

.c-feature-card2 .auction-timer2 .countdown-single {
    border: 1.5px solid dimgray;
    border-radius: 10px;
    padding: 10px 5px;
    transition: all .5s ease
}

@media(max-width:991px) {
    .c-feature-card2 .auction-timer2 .countdown-single {
        padding: 8px 0
    }
}

.c-feature-card2 .auction-timer2 .countdown-single h5 {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0
}

.c-feature-card2 .auction-timer2 .countdown-single span {
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin: 10px;
    min-width: 50px;
    padding: 5px
}

.c-feature-card2 .author-area2 {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    right: 20px;
    top: 20px
}

.c-feature-card2 .author-area2 .author-emo {
    align-items: center;
    border: 1px solid #0000;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1
}

.c-feature-card2 .author-area2 .author-emo img {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px
}

.c-feature-card2 .author-area2 .author-name {
    background: #fff;
    border-radius: 33px;
    margin-right: -28px;
    padding: 6px 44px 6px 20px;
    transform: scaleX(.1);
    transform-origin: right;
    transition: .6s ease
}

.c-feature-card2 .author-area2 .author-name span {
    color: #1f2230;
    font-size: 14px;
    font-weight: 600
}

.c-feature-card2 .author-area2:hover .author-emo {
    border: 1px solid #0000
}

.c-feature-card2 .author-area2:hover .author-name {
    transform: scaleX(1)
}

.c-feature-card2 .author-area3 {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
    right: 20px;
    top: 20px
}

.c-feature-card2 .author-area3 .author-emo {
    align-items: center;
    border: 1px solid #0000;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1
}

.c-feature-card2 .author-area3 .author-emo img {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    width: 40px
}

.c-feature-card2 .author-area3 .author-name {
    background: #fff;
    border-radius: 33px;
    margin-right: -28px;
    padding: 6px 44px 6px 20px;
    transform: scaleX(.1);
    transform-origin: right;
    transition: .6s ease
}

.c-feature-card2 .author-area3 .author-name span {
    color: #1f2230;
    font-size: 14px;
    font-weight: 600
}

.c-feature-card2 .author-area3:hover .author-emo {
    border: 1px solid #0000
}

.c-feature-card2 .author-area3:hover .author-name {
    transform: scaleX(1)
}

.testi-next1,
.testi-next2 {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:767px) {

    .testi-next1,
    .testi-next2 {
        display: none;
        right: -30px;
        visibility: hidden
    }
}

@media(max-width:1199px) {

    .testi-next1,
    .testi-next2 {
        right: -40px
    }
}

.testi-next1 .bi,
.testi-next2 .bi {
    background: #fff;
    border: 1px solid #666;
    border-radius: 50%;
    color: #666;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.testi-next1:hover i,
.testi-next2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.testi-next1.style-2 i,
.testi-next2.style-2 i {
    border: 1px solid #eee
}

.testi-next1.style-2:hover i,
.testi-next2.style-2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.testi-next1.style-3 i,
.testi-next2.style-3 i {
    border: 1px solid #eee
}

.testi-next1.style-3:hover i,
.testi-next2.style-3:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.testi-prev1,
.testi-prev2 {
    left: -50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

@media(max-width:767px) {

    .testi-prev1,
    .testi-prev2 {
        display: none;
        left: -30px;
        visibility: hidden
    }
}

@media(max-width:1199px) {

    .testi-prev1,
    .testi-prev2 {
        left: -40px
    }
}

.testi-prev1 i,
.testi-prev2 i {
    background: #fff;
    border: 1px solid #666;
    border-radius: 50%;
    color: #666;
    font-size: 16px;
    line-height: 45px;
    padding: 8px 10px;
    text-align: center;
    transition: .5s ease
}

.testi-prev1:hover i,
.testi-prev2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.testi-prev1.style-2 i,
.testi-prev2.style-2 i {
    border: 1px solid #eee
}

.testi-prev1.style-2:hover i,
.testi-prev2.style-2:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.testi-prev1.style-3 i,
.testi-prev2.style-3 i {
    border: 1px solid #eee
}

.testi-prev1.style-3:hover i,
.testi-prev2.style-3:hover i {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.testimonial-section {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAB4AAAAJQAgMAAAASypHdAAAACVBMVEX3/f3s7e3x9vYn2lSWAAAAA3RSTlNMTEygUL3IAAAgBklEQVR42uzdsY0QQRBE0QYJgwAIgTwIAYM9obMwEVGQBD4mYZLG6dWvFEbT9aumV3tvVH+eJX2/OX18lvTj5vT+GdLLDerzs6PBCb01o3/fop4ZfbtJ7czoQcSamtGTiLUUhUcv8MyMnr3A9+6Z0GRGWprRmxlpZ0YPX+ANjh6+wBNdx89b1qdH1y5Cj8zo2Qw88mY4foH9oPT3xvXhobUckRbKrPkBrc/o+QGNl1nbEdgPSq+X5KD0Mt1RDphwBmybcOdrB6XO135R6nztF6XOl24rXzpf2oRfy0e0Cf+6JJvwv0uwCWe/tgk3nm0TbjzTJtx4tk24dGSbcPZrm3D2a5tw9mubcOdrm3Dnay9mdb72Ytb492X8Ylbbz/Z2dNvPtgm3/YybcAZsVx19H4pXHQ1ou+poQNvvDX3gjVNWF9iuOrrAeNXRBbYpqwuMU1YXGK86LtGUVYmFU1Yllv2gNPqzqx3KCrFwyrpEU1aIhVNWExqnrEs0ZTWhccpqQuOUdYmmrFoOnLKa0Dhl1UPblNVTP05ZhSScsr5coveyLtGUVUjCt9+/XqIpKwvGvzG8RGN0FoyXlaVgnLIqovGysiLaxuiKaJyyYiy8rKzmwDG6mgPH6BjLpqwYCy8rYywco2MsnLLqsfA3/xgLLysv0RgdY+GU1VshfsBBNI7RFZV4WRlE4xh9icboIBqnrCAaf/MPonGMronGMbqUhGP0JRqjW+fAMbqUhGN0KQnH6FISjtGlJByjS0k4RveWhGP0JRqji8E4RheDcYwuBuMYXQzGv0ArBuMYXQzGKasYjH+BdonG6GIwXlb+Z89cUiUFoiAqNZJcheQouft5+xFHSawiudAQfVbZn9e9Bm8VxkRNjFFMjsfnM/jDMfoZ+MMx+vEcH47Rj+f4cIx+PMeHY3RVz3F8X17bvp3n9/2f279n/5/79vfgO+Pf+6+7+kUxuujAQiRXbo3Zg9AAsbM0WD6Utpw6aBNmbzEDJ20iuuGO/o+viikqsvrYTzQBh4PhU2FN+ppdK5NEJ03EmhANE75YbC3WJu7o//yqmK1mul5aKy9mWHNkKs2aXZotsgXBDhxq0DrTmWdk0LR7MPZb+l8FU1VkjUzPNlEHzZdIpqTcOs2gxDoQkPRsjjjFsdrZVxdX3tL/KpiqnsOEL179BZnQ3NSbPeHaUoQIogUGoU7+jtMkxiS39CtidNWBow1yaUZAtmvNUJzEwC/6mYE9TOyHVwJ7gww0iaB1xi39ipRVVWSpJ32/cAI4EweZLzTyutaEK9ZgwAuMEnJmKHJoXOO6pV9x4KoiKwYd7ZGQWr6gCUAY3Jl90BZ0VqwBpvlY9JmQhlv6FTG66sCSYDHCqTUEKdoFDOMryQiUF33aJkI0GVJtN4q4pV+RsqqaynCH8BqRw0jdgXKRbjg6sSAJL49gKhHxgmF6gOKWfsWBi4qszb0xDLT9SuQ8BtjiO3H1ThyRyTExQabDBtqcXL6lXxGjqw48YwTWgGvEJSLMAeQhMCsgfIYhEOwxUyiSDJpG3tMvaKOLmsqNt0xBjN6KhrdMQYzeiob3zFe1VFXR7zpwOcqqaiqfgZ+BS6YcZVVV0e86cDnKqmoqn4GfgWvmq1iqqui3HbgaZT0Df/jAVVX02w5cDaOfgeGjKavqv4a3HbgaZf1izw5uEIaCGIj+JtPkVokgIjTA4XnlaWEOHslHZVK5LI7KpGJVFvs15Aq2KquClwtmv4ZcwVZGV/CbxZXFnkkVXMEqVEazZ1KwYKqyKvjD3spiz6RgwdQIV/DMasHsmZQsWKqsCr5ZW1nsW1jB/wA+k5IFSxl9WCaYi8E9k6IFO5VVwV+WjrB7JlVwBbs4leWeSdGCncqq4IedleWeSRVcwTBMZblnUrZgprIq+GFnZblnUrhgZYQr+GatYPctDBesVFYF/1hZWcdlsnmxdy67VsMwFAUkEDBnwBSJCf+zI9wRE0e0X8FPOJI7YnIq2q9kO4fyfopHEmCd2zZx6gHbt4nr3CPQBzf65RibPhbhjncLRw9wH4vw/wCf/KUB7ni3cPQA95Fl/Q/w+/yFWVbHu4XDB7iLLKvjzaThA9zFItxzgJ8cY9PFItzxZhL/4+3BQQf8D/A7/soAd7yZdOPWMTg9ZFk9B/h/lvXTdL2Z9D/L+gcCvG7UaT0IG2SJdphiIFfLsdNa75r3/ZR22zjiR0t/nnpYhG/0zH3qV6X1ENCPfTtCw22hiedj3WmpYu4rf656Ox1O/qT/8ZE/+0v7RbjnvYYI8HaEevzEdduPTFWreHGdY6j2qrKBU+mwbrxho235c/40feDfxyLcd4CZRlehyRLynuStzp0rhawSs3uQeKhqLGpvWULqhv5dLMI97zUQylWJyfCcMq9Qb6f58GM/H6F6B5WfORjCb/EA/m7/7Tp8kI/8d+cofpB/LcBPziyGx77WBZHXkLHaQ9+NZqo8H1ciKPO6vI2X73Hrb/P3t/77x/7sdLAI97yZVAOclzr/xWnftiX0rVIyNlX60HlbwrD6VvaNplynVo7yWK4z6u/y5/WL/n6sHdSyet5rIPczJ8p5y3n3eC6WbXaq7oSRX2jfsvu6OOEcOlPunI/daQuF93XbMjmW3+afty/6H87x5llW5wG+OZUEwDAZdpELUlnTDJF9nqSI5AJJK2aTSTm8lUtashy8b75M65wurf0FTel7r4HcSgpxFzPMalDNUJikIs6RiyQIDdSVNtNJcDlEV8AdtGdIc380pfNSNCklxDUpGaoOSNmTTtMCzZaMmqZkoXNKAH+oMKa0SzHa6ajN/Q0/xD8X4AeSZ1HAZlPRnIF8EQgSLrJ7FlPqLJpiUMUtQ5ABpDxBBYbW/m3pvBRNblM7pKKYYQgpPcEyVVZM5SJc6pKmFYnjglD74rOJ+1oEIrZYc3+0pPNSNLlvvrv5ZQZMJ4VgkpQuydwtTHnXlBM0gwYLhQVqliGUegFKc3/8EP9cgG+JATxsSUgI/Qy+qQqgOa1T0SwZieOqUCTjAYhiEZths/bg34zeS9HBJeWcLeGyZ8xLwUwDoOIZGQVJsSKxK9skckExhdnlogqBmJTm/mhI95VKUhSAuMTZ4kjKrrHpJmzBkRWGSsq8waMRw7munz34/xD/WIAfO9lyoHGIl0zE1xykrE6L+Buy0hCstMXHW/sb2tF9KZrcucoZrBK6nagHF/+IuOlkywxGa/8Z7ei+Uklu5R9D/Q01Lpm09CcF7ei+UkluiZ8UynfOhicU9GM+Vrqhv0ZP8f38gwG+UTLRcioeXdFytV2RfOUD/ctpausv3jLA/VcqycMi6iGqe5UyOteuWxH3ONSVd7EVlNqut8THG/pfQTP6r1SeaTTJOV3VldMQSH4f8fLpYtjKP5+gGf0Xssi9U64QVkL3Uvth+AQay2nPJ438A3ViaMQIhSzu+YMkVJLgLWczI5/jxo/i5NS1lT9pvhs8QoBvIKWEnGBmV1klSdGSVARSTUGJ3puOFZjywmErau386ZPV0IoRClnEFSoQAaps113WxEugcJpjINCIB4JEY5K4HdLOv/kf7PRfyCKPIYBXxa4ya6pih8YC4hwASnQkDoWF1nBBiUZT/8RGK0YoZJHbQH4jc8rgKSHhRKOtHFbEbaRojCsyLR5CW1t/GFoxRJ2DWZYUKASIQ6D1GhoqrWLqmhRBhnodAYQ+gF7XSP9F/umo7D/mb2jGEHUOFivrQ8OTwELTFPoJ1ASAsgUORKtqawnEQDQhSL/EPx0v3hUNjv2H/FsxRJ2DGJojr258RAdfHPwmQ9Q5yGO0Zvnsn4u1/+rgNxglwLfRmJc3Ps+j9l89+hqD1DmiltWUxPh+kb5DPESdI7KslqSvJyp3ew7xEHWO1lnW82/+/vW7Fg9R52idZXGG/haPeg3xEHWO5lnWxDn6p5/ihD/PIHWO9lkWJ+mfDfHyosEyM0qdo3WWhfR9Ot068AWmly1moWHekm40r2VNN76Tw/Apy8s2s9Awb0k32teyGKLv5P5qeJ/peNHql3Sct6QbzWtZP6bUcRwbkA7S8pd0nLek5lnWL8lW7uEPM85bEkFjng6ZKY7yltQ+ywJejPhvGOUtqYMsC88GnKPHeUv6cXF6FOs1+2aQ3CYQRNEJu7DPEbKQTuEjaKGZwqxYOj4Fl2DhrFSpUirMKWOXJNtClKHN4Pl/pt/eKkPTv39/hi/WaKYtKXrUYSk1mmdLAnBZtuJb9ni2pGd+2Mg4vmWPyETHjzoYNZrIRAO4LLuj2wUME/FdVs2m0UwmGiHqoNNoKhMNEHXYhuwiiJJojCFckV0ElYlGGMKObNBQmWiEqMO2VBrNlESnM4S/TKPpTDRC1LGj0miqoBLiVIetqHSIzEQjDGFH9ZiyeSyA9w22JdJoOo+FMIQbIo0my7EwhnBDFNjQeSyEIVwRhepkORbGEHZE+zyfxwIYwo4nc6WLOTCGcEsjRIwjGGAI39G8F2McwQBDuKHRaMYRDPC+oWK5DMKYA+KdcMXiJQhjDoiDWXuWy+AcwfE12rFchiEl+sEsklFDuQVDDOGWo4VZR3D8IdxyKBHrCI4/hAPduaKza+I4t2CEIdxQxOq8Ch09rWwozATfcSyYtHJHMWt4FTq6RlcM10GaU0IsShXDPvBgmBHeGNgCb+w7VKFRFqWXAqNvSrQxFsKxjj3Bk8rsoaMP4T3BhXArdGSNdvgXQq7QURelsAUu7QrQK7RU2oALvEoL8yu0cFFCLnBhV6A29IiCeuQCnx9VVWggjXbodoI6pgTQaId+JcxvChE02qFvBAeTABKNxi6w6bSBsTTaGewWTsBiyRZI9AKbow0H9WEsEI0+FRg2zkqkgaNp9CnoBW5hkwqRfPTZxMCqUSIWS3BXCAocroUT2ZFkhysJClwg/3MikNeLT9xDvNNZiVjoqBq9MycQLWMC75Hir8KNOYEoRyk18OybQlHgED4rrQl8OnUagztzAS3tSCXEiqrRVzII5rO4P2eAsVlvBQbTo+QaOFJcad4BJdLJpNCr2KzOzsSZN6BEOomTOkNsKPbz5vnwPiIJUkIh5Qo2q5n7S8NVBEakk3NYYW1W+x2gwEtEuk7PYYW0Wft543xoZYAuJ0mBDmezmtlacJtzQOxKaQp0uBZu5xf4VgoBxnBaLxnCH+yo5j8pztwQfwwnGHGEtVnNiyHHKLDp7QkdwAE3JcHvVGZliqOV8s+kTIAWrgR2bWcELDVaIM+cGLQWvhM8KI1ZnVJW4UeTON/sQpxECVqzPqWovgkbrECbUiP4GWe+gqLT/g0YdrQCqa+NjPA9nEdCGbKF64nnJIqhKY/av6Fa+HDRRRCPdaLo7TTeZEK3yGJd6EA81hlvJ7hPe/9d3sLDmP6I4rHObI86fgOcKh6LgaOP4OnY0v0xOVHaz9KMZGIAI/hM6e0ozufUvovirHZklEOM4DPbsS7OrryfT6Qfxp4SjBF8ofBXNa4fs/HOAVrYtVdeDU2hX/He97/+/vY+w96dSPcEDWwKPIVWXtksaOALR0CFVhasSg/DfRpqSVKuKRY3sClUoZERi/ThVgVUoYGRnmaqJzLPfM4es1CIBfrWi6tCI7MRO6whG7VY0AhEup4QgbwOH7MgiDvaiUQso69DmCilAj2k0AbGZisV6CE/tYGx6e0M3Ecqrw2MzaDC4tMum4yPL3IwWWF3mMpLcvo+k5BeVt8hZW7f7/Hh7QfcHyaNmgo0On0n6t8hvdYXncEglZ5X6zP7fo+Qwo/aZz9X5Lv8vg9ho3yyA1x9mB+YnB+QTM8wcrC9GsXOH2R/7Z9R+4xN4Z95Ke6T105UFEVRFEVRFEVRFEVRFEVRFEVRFOU/O3aQmzYQhQF4NCvLp2CZ5D5vkyPkFFZWvYD33YxU+5StoqaGYAUEmIqn7xNCgPkZpH/ssQ0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8F/UefGrkEud5zH2vOk4k35ucWSeCynUucWqN3txBku9x+ah8NjqHN95tRM/tr7FCVbiRzaPcdKbw/TDmuMcr4WHVKc4T+ER1SkUnFidQsGJ1SkUnNkUCs5sCgVn9hIKzuwlFJxZPyo4s9pCwZlNoeDMXkLBmfWjgjOrLRSc2XMoOLN+VHBmtYWCM3sOBWfWjwpOrYWCM+tj44J3ZZX8ffJ1DHtwZs+h4MzqeOOCh3Im+bvkp7jrHrxbVhT5e+T7uEXB9ZKpJX+PfIuwBifWx+XOWS668sfPUobu8+1C/g75Fpf77mDRdcs13O5gW/fvSX77fB83LngZeVi5Rn86+KL89vl2fcG7ldsuw1mnB/Kb5/u4xsrkWdTVefa0f74nv3m+3aDgkwMudoev5LfO93GV5QAyHP/4j+MBv76W3zrfblDwcDilulJL/TLpaql17e/Kb5zv4+qCh6GUbn+U91I+Phr+jjl8PD43vx/cdJHfON+uLbiW+ps9OkaxG4ChKHp4leJVCEPgZ/bj/QhXJv30ZiCQZaYKTP/tzleVilO9GVRB9ABYrIABGARAePy9PtubWYcGQACramBh6BSgGjTh8ff6n9ubSQE0oEAgA4DBOEmUwbw8/la/f25vpkAYsJe0UQII9BAAGsvA42/1v7Z3oyBgvn/DEDDYZ6gGDGasj7/T53N7N68wBBOogoFqhaEGwNowje6px9/of21vx8toGlZlqgHVgDZjHwygCMzj7/R/rhj4ODVoGoYpSGkpUMB+Rg1AMY+/zy/b+1E4Epjd90YDZHSB+X9Bq8ff539eMrCQQKnuQSOmy5iiBQtIBGmRj378fX79vGTg0QPWI2A6rADoUkIZEIBRj7/P/9guCFDIOpoJxYspKr5VleoZpjWox9/mPy8buClmWKLltWSWQgnSgMwCggVR/fi7/LJdEYOYqZP5ILLg6DCSejHdKAWj2cveLI+/zf/crshS2h57uotzSk9YMyhE9qbTJR/MJJBq9fjb/OdFA3eVKMApMKGKqfwmhfSCaBiv6cLj7/I/tktiLdMBzkTpVob5K0PTndbrDmfKgWCqH3+T/3PVwEw00tRoPTGjFZytK51DUxzlZaBaPf4mv2/XhPntmGgfhXbSvNRMtb0nYRRduy+cumP6XLI+/h7/67KBB90yVKprpWJM49TjpWtQCxGUJXX+pR5/k//crkkzEbN7JRmlUjgWc4zScrSQPuUYTtXV4Hj8LX7ZLkrWaGOxckyL7l0z5tRqTcHUSsp8rRztK1na4/+xW++oegNBEIWPK2rPKpoBw6D93P0UEw3Kb94IDLJW6cAGG/wM9Geq/KODk/Rr/KfbAlsAdqXJb6dhnIok9oQagARlp4AkYUCSEvH4l/j32wIzXVmBy1rB8eO9i4gpx4payEwryJV2xtbtziT9+Jf49nbXmBkIgjZXw/KwUsJwtZiNJBBoQMEGeVJLpFKkH/8K/+m+wGgVIDJXSzBgPAkC9R169RwaHW9bCoLVnTkndOLxr/DvNwaejrmailaTpIwa3zfPIpOtk9lXzWynIOlBTFmsx7/Cf3i7bRBYRE+gLZRgxJhLoDQBJqGBdMYoswunOALi8S/wn24MXAhyQQSzYci2KTFW4FAOlMk0RLDvGfPoDFMn0vH4F/j3GwPTYhymYsFCrWoukpU5nFD0XrDlCrNf0HdAMI1gxePv9x/f7htqkiBsIQgpZomVSOlzO5IMa40FilR3phfpGLSGH3+//3xn4OopdoWgOQwj+1pT9iCoaZNMOjoia1QeFjQgp2nb4+/373cG3lXzCENYY6dP1I62WpPKmaTm2dhzi94d3SAEy9GIWn78/f7txqECmAfWllErUFp0Vk9yMXuxwpRaTkWQDi/Sh5bVHn+//3Rr4E3JKUayIswWRB9k5XXNqCkmEWPiPPacLa8GqMB90Ft7/O3+/dbAMAbnRu6OLe2RIWfLjEAJe3bF7jZkNcqDqw81h3SU/fjbfXu7cwjtoFWOlSMuN/e5OyaZgCJbkmTaliPc2waZczqyZj7+X367ft6//Zd7A6Nw07xyjwNQzzzSWY7o9mmOypbLymg1ruFiqqCijZ1+PP6v/vp1x/F3/35v4HVGRHAc1sSBe1yl8OqEL1G4MezIOHAfrWIPNNeKyLoe/xc/rz8s/ubfbh0cnL3yRGPIzIBJHqimetrkETMZfS8rjqPWSmnbK2J3jMf/2V9/2x/9x5sDX8O+aCtOXVvldcBskAvNvmWEY8vGOR0HXakTDdw359aZ8fg/+OsfO//gP90ceDqv7NkUXQuHe+yjU3FGs7p7MrexaXqLThgWyGtORK/H/95f/7H5W/9+c+Bdc48oZ9eZ+9VLjGMq7djMTjM5Lsha6dQgVLVmXGpaq43Hf223TlItOWIoDAcxCmsVgcAgtJ+7n0AjWfOaC4FBPqt0j7uy/Zq8VPrhb/5zBiKJ/FxPeIn+TI/HtcYPyLuS61CPs5NHQ9ectmSvPU+TnjHHOiUy5uJol4wALx/Y+X//mf6lPtN/e/mBOc7sMdfek2zrPs6hTMxKK6aMveZy4ZNEa65pOQcdPWd47Zrn//4vveLl/tJ/uvrAi2zKUTfbs5et3ToQIRYnPNoZ8+wzjI3nmDhLEKgzy9SdR/+XegBoPH0fr9F/7Olx+YEnDxtngNSy/LisdaatZcN05s6gRef43t4qy7dE29Q5fMZA03+jN/zZ0/YVr1N/6L+5/MDO80jF9BzLzq6IMdc5OxbGsFoF4fKtyjyhOc/iM7WFM1X92H+hx2c9Zx+vVr/vv738wLZEeILHkVFLs+bhNVb7RIxNyTTGMHXPFgzRsa12WU3SsePo/Xv8vev38Qb9u/7T5Qceo2ZNcvhRTR7lngWp1cK5sya75d5zTtlrT1pj9ziBOgXhuHuPf3b1Pt7mt/3H1QbZGcM4eO5xiFjT9mzxzLMWdHmv3N4RxdZnTOqSvWJrCA/vm/cvcOU+3qh+3f/q+gMf3e0jKKZAhtohIyGZUwblUmvj3hkwgJoHNHzPs61Z85wz79zjRfKy/Xf4Zf/r6w+8ddfWClsnB1Pp4JPENHfvHuccNoy9YYeKzNaIttYxzsmRp+m+PV7son28wy/7n57wBZMwjeSYo6tn6NzER1BcU0xdag9grl2IdZTWoLGmpuUJL6bb9niFS/bxLj/t43G5IUfhMqbUDnahaX7MprQMOpsWyxmdJ22txl6GcNZRkVt5we7aK14l37+Pd6od/M0TDmzkNU9Aakmvmhs1NQnDUTpkLBRVBpp12tZ2a2hKSB9TWN21f6V3779bLemvn3DgVbVICsSUXVu5OzLJ0KvODhoGaR2VK1cMzUNr73SrCI1DfMseb/DO/Qtkf3rCgQ9yR8LKuhzhGqT7bIg2dcxVTNi9nDljkPLsToFUtDkSdsde8Rbv2r9CxeN6o7SXMrGfAZtIGmDpYO5J4Ynl1c6J3dneEzyaaCVBhrJ33LBXvM3b9xWX+OZxvZFMjKlbGimLWGSBa0WlF4HKNi2Ub4Dcy9yKtcqEvQfC1/16vFm/df8i3z6uNxpW5dh+9BCcWcJ8CtrUtKhjLVJvMKl0sneSHUvq1Xa64nY93uFt+7jKp8f1xkzSdjaFACRHbGQX9VpR1IVuHHBHSqgpHw3Q4YxaaETsu/V4nzfsK67yeIJBxKvASqXdQkTHvFp6OHTmAFHygRzd1pmrdFVIQqodtplv1iveKV67j8t893iC0RA/EkmjqobWEdWhVEQolK5TQKopYlq0ptXRBGq1WFLWzXq8W79uH8Cdn+DHkJnJLck7BLXBXUXAbi7AetQuFEFWH7BaRls7JIEVae236i/xqn0At36CH4O7c9A51CtwwpVJRyxuC0wYsdWpg+FrSoUNmdCaqzClVFC36i/yin0At36CHwMd3rDDlJv4xBwgWSGAAuUklpZR0mls5gDICuiqmlbtd+pxFX/hPoCbP8GPkTWde+JkMZbCe7FLdMC5IsA2C2Bz1VKELCrSI0FlM2vrjXpc6EX7AO7+BD+Gd0+VLlYiKy8CHBuhlcKCLl0+gCJBaLCgWxJZCRSO0316XOoF+wBu/wQ/BnpSq2OUu+iPwNHMyH3KtQLlmBmIbipoRcEicGQVAL9Nj2v9674CuP8T/BgwgbaC5kaDTjIAL61iZASUm3WBUI1i1D4ANGJ2AUJ1mx5Xq3/cx8/u/gQ/BjUQnnspgIRSwaBBxjPcqMXVUbtawa28qVFdMTMBZPRdejxB//0+gP/IgaU6uix1BjqYQcgj6CgGBTiEA+HV0G6IwaCYiR5QVO2b9HiSz+//6v7/WI+he6IamBrAogpIC6DixQlAKeAq7JjeKEktKLqQTJ6Nu/RP85n937n7P9ZjRKIXAklsAQs0GiAOJFCChmMruAIBVNBQFDakO1Ba9+ifqf+4j9+5/z/WY2iAgcJeO4DsKKgaAohCh6oaEKUNBHtMnelANZBI1b5H/2y/7Af+4D/wBD8GZSJq9a5CmjRgrarZqpFAgKrRgFYXAgegDi03LATAd+g/gm8fzzGiFrQZikZX8w6AAApEA9CubGZFAr2Ti6urYTVbf9B9h/4j+PR4juGoAk4wXJDVy4Ey7TIAhQwoGKByUWijka5bvQta0L5Bj4/gaQfWiAKlYgWUAh5wBDTWTlj5RESbIFAIWKMtBGMjFM07vnyPD+HxJAPtAAIEBWBhABAW0UCpBOYJM4rQCnV4BTdFE5XCo+YX7z+G7x5PMqosogBlNAVKmh3aoY1CbbZOVCPhLgAUMZXNGsFwDP3iPT6Ebx9PMigQATTc0AZtnCYUc0ChKES0K04oWBEqitbQQDSKtb54jw/h0+NJBmdrEABdCqABdDiAbgAUakAUUGzRBSigDao2hUb1l+0/yPf7zAMjqgiABhSNLqsCEAowFAiIaDcZ4OUVAHUVoEBmRXzZ/oP8YQGPZ/keMfxKyeLI6HIAAAAASUVORK5CYII=);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 1
}

@media(max-width:767px) {
    .testimonial-section {
        padding-bottom: 60px;
        padding-top: 60px
    }
}

.testimonial-section .swiper {
    margin: -25px -15px;
    padding: 25px 15px
}

.testimonial-section .client-right-vector {
    position: absolute;
    right: 0;
    top: 0
}

@media(max-width:767px) {
    .testimonial-section .client-right-vector {
        display: none;
        visibility: hidden
    }
}

.testimonial-section .client-left-vector {
    bottom: 0;
    left: 0;
    position: absolute
}

@media(max-width:767px) {
    .testimonial-section .client-left-vector {
        display: none;
        visibility: hidden
    }
}

.testimonial-section .client-circle1 {
    animation: fluid 5s linear infinite alternate;
    bottom: 30px;
    position: absolute;
    right: 14%
}

.testimonial-section .client-circle2 {
    left: 8%
}

.testimonial-section .client-circle2,
.testimonial-section .client-circle3 {
    animation: fluid 5s linear infinite alternate;
    animation-delay: 2s;
    bottom: 30px;
    position: absolute
}

.testimonial-section .client-circle3 {
    left: 30%
}

.testimonial-section .client-circle4 {
    animation: fluid 5s linear infinite alternate;
    animation-delay: 2s;
    bottom: 30px;
    left: 8%;
    position: absolute
}

.testimonial-section .client-circle5 {
    animation: fluid 5s linear infinite alternate;
    bottom: 30px;
    position: absolute;
    right: 14%
}

.testimonial-section .swiper {
    margin: -15px;
    padding: 15px
}

@keyframes fluid {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(-25%)
    }

    50% {
        transform: translateY(-50%)
    }

    75% {
        transform: translateY(-75%)
    }

    to {
        transform: translateY(-100%)
    }
}

.testimonial-single {
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 2px 15px #0000000a;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
    position: relative;
    transition: .42s ease;
    transition-delay: .3s
}

.testimonial-single p {
    color: #1f2230;
    font-size: 16px
}

.testimonial-single .quote-icon {
    bottom: 30px;
    left: 20px;
    position: absolute
}

.testimonial-single .testi-img {
    height: 60px;
    margin-bottom: 20px;
    margin-top: -50px;
    width: 60px
}

.testimonial-single .testi-img img {
    border-radius: 50%;
    height: 60px;
    max-width: 100%;
    object-fit: cover;
    width: 60px
}

.testimonial-single .testi-content .testi-designation {
    margin-top: 21px
}

.testimonial-single .testi-content .testi-designation h5 {
    color: #1f2230;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px
}

.testimonial-single .testi-content .testi-designation p {
    color: dimgray;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0
}

.testimonial-single.style2 {
    position: relative
}

.testimonial-single.style2 .testi-designation {
    margin-bottom: 20px
}

.testimonial-single.style2 .testi-content .para {
    margin-bottom: 0
}

.testimonial-single.style2 .quote-icon {
    left: 20px;
    position: absolute;
    top: 30px
}

.testimonial-single.style2 .testi-img {
    height: 60px;
    margin-bottom: 15px;
    margin-top: 0;
    width: 60px
}

.testimonial-single.style2 .testi-img img {
    border-radius: 50%;
    max-width: 100%
}

.testimonial-slider {
    padding-top: 40px !important
}

.recent-news-section {
    overflow: hidden;
    position: relative
}

.recent-news-section .section-bg {
    bottom: 10%;
    position: absolute;
    right: -100px;
    z-index: -1
}

@media(max-width:767px) {
    .recent-news-section .section-bg {
        display: none;
        visibility: hidden
    }
}

.recent-news-section .section-bg2 {
    position: absolute;
    right: 0;
    top: 0
}

@media(max-width:767px) {
    .recent-news-section .section-bg2 {
        display: none;
        visibility: hidden
    }
}

.recent-news-section .dot-circle {
    animation: round 8s linear infinite;
    position: absolute;
    right: 250px;
    top: 240px
}

@media(max-width:767px) {
    .recent-news-section .dot-circle {
        display: none;
        visibility: hidden
    }
}

@keyframes round {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.single-blog-style1 {
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f
}

.single-blog-style1:hover .blog-img img {
    transform: scale(1.12)
}

.single-blog-style1 .blog-img {
    overflow: hidden;
    position: relative
}

.single-blog-style1 .blog-img img {
    border-radius: 5px 5px 0 0;
    max-width: 100%;
    transition: all .7s ease
}

.single-blog-style1 .blog-img .blog-date {
    background: #5ddcf2;
    border-radius: 17px 0 0 17px;
    color: #fff;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 20px;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 1
}

.single-blog-style1 .blog-img .blog-date .bi {
    font-size: 16px;
    margin-left: 10px
}

.single-blog-style1 .blog-content {
    background: #fff;
    padding: 30px 25px
}

.single-blog-style1 .blog-content h5 a {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    transition: all .42s ease-in-out
}

.single-blog-style1 .blog-content h5:hover a {
    color: #5ddcf2
}

.single-blog-style1 .blog-meta {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-top: 25px
}

.single-blog-style1 .blog-meta .author {
    margin-left: 35px
}

.single-blog-style1 .blog-meta .author img {
    border-radius: 50%;
    margin-left: 8px;
    max-width: 26px;
    width: 100%
}

.single-blog-style1 .blog-meta .author .author-name {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap
}

@media(max-width:991px) {
    .single-blog-style1 .blog-meta .author .author-name {
        font-size: 12px
    }
}

.single-blog-style1 .blog-meta .comment img {
    margin-left: 8px
}

.single-blog-style1 .blog-meta .comment .comment {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap
}

.single-blog-style2 {
    position: relative
}

.single-blog-style2:hover .blog-content {
    transform: translateY(-20px)
}

.single-blog-style2 .blog-img img {
    border-radius: 5px 5px 0 0;
    max-width: 100%;
    transition: all .7s ease
}

.single-blog-style2 .blog-img .blog-date {
    background: #5ddcf2;
    border-radius: 17px 0 0 17px;
    color: #fff;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 20px;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 1
}

.single-blog-style2 .blog-img .blog-date .bi {
    font-size: 16px;
    margin-left: 10px
}

.single-blog-style2 .blog-content {
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    padding: 25px;
    position: relative;
    text-align: center;
    transition: all .55s ease-in-out;
    width: 94%;
    z-index: 9
}

@media(max-width:767px) {
    .single-blog-style2 .blog-content {
        padding: 20px
    }
}

.single-blog-style2 .blog-content h5 a {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    transition: all .42s ease-in-out
}

.single-blog-style2 .blog-content h5:hover a {
    color: #5ddcf2
}

.single-blog-style2 .blog-content p {
    margin-bottom: 0
}

.single-blog-style2 .blog-meta {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px
}

@media(max-width:767px) {
    .single-blog-style2 .blog-meta {
        justify-content: space-between
    }
}

.single-blog-style2 .blog-meta .author {
    margin-left: 45px
}

.single-blog-style2 .blog-meta .author img {
    border-radius: 50%;
    margin-left: 8px;
    max-width: 26px;
    width: 100%
}

.single-blog-style2 .blog-meta .author .author-name {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap
}

.single-blog-style2 .blog-meta .comment img {
    margin-left: 8px
}

.single-blog-style2 .blog-meta .comment .comment {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap
}

.single-blog-style3 {
    position: relative
}

.single-blog-style3:hover .blog-content {
    transform: translateY(-20px)
}

.single-blog-style3 .blog-img img {
    border-radius: 5px 5px 0 0;
    height: 300px;
    max-width: 100%;
    transition: all .7s ease;
    width: 100%
}

.single-blog-style3 .blog-img .blog-date {
    background: #5ddcf2;
    border-radius: 17px 0 0 17px;
    color: #fff;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 20px;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 1
}

.single-blog-style3 .blog-img .blog-date .bi {
    font-size: 16px;
    margin-left: 10px
}

.single-blog-style3 .blog-content {
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    padding: 25px 20px;
    position: relative;
    transition: all .55s ease-in-out;
    width: 94%;
    z-index: 9
}

@media(max-width:767px) {
    .single-blog-style3 .blog-content {
        padding: 20px
    }
}

.single-blog-style3 .blog-content h5 a {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    transition: all .42s ease-in-out
}

.single-blog-style3 .blog-content h5:hover a {
    color: #5ddcf2
}

.single-blog-style3 .blog-content p {
    margin-bottom: 0
}

.single-blog-style3 .blog-meta {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
    margin-top: 15px
}

@media(max-width:767px) {
    .single-blog-style3 .blog-meta {
        justify-content: space-between
    }
}

.single-blog-style3 .blog-meta .author {
    margin-left: 35px
}

.single-blog-style3 .blog-meta .author img {
    border-radius: 50%;
    margin-left: 5px;
    max-width: 26px;
    width: 100%
}

.single-blog-style3 .blog-meta .author .author-name {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap
}

.single-blog-style3 .blog-meta .comment img {
    margin-left: 8px
}

.single-blog-style3 .blog-meta .comment .comment {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap
}

.counter-single {
    align-items: center;
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 25px
}

@media(max-width:576px) {
    .counter-single {
        padding: 20px 15px
    }
}

.counter-single .counter-icon {
    margin-left: 15px
}

.counter-single .coundown h3 {
    color: #1f2230;
    font-size: 30px;
    font-weight: 600;
    margin: 0 auto !important;
    padding-right: 15px;
    position: relative
}

.counter-single .coundown h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: -2px
}

.counter-single .coundown p {
    color: dimgray;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0
}

.sponsor-section {
    overflow: hidden;
    padding: 80px 0 100px
}

.sponsor-section.style-1 {
    padding: 120px 0
}

@media(max-width:767px) {
    .sponsor-section.style-1 {
        padding-bottom: 60px;
        padding-top: 60px
    }
}

.sponsor-section.style-2 .slick-dots .slick-active {
    background-color: #5ddcf2
}

.sponsor-section .slick-list {
    margin: -15px
}

.sponsor-section .slick-slide>div {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 10px 5px
}

.sponsor-section .slide-item img {
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    transition: all .5s ease-out 0s
}

.sponsor-section .slide-item:hover img {
    transform: translateY(-5px)
}

.sponsor-section .slick-dots {
    bottom: -60px;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.sponsor-section .slick-dots li {
    background: dimgray;
    border-radius: 50px;
    height: 8px;
    width: 10px
}

.sponsor-section .slick-dots li button:before {
    opacity: 0
}

.sponsor-section .slick-dots .slick-active {
    background-color: #5ddcf2
}

.sponsor-section .slick-dotted.slick-slider {
    margin-bottom: 45px
}

.sponsor-section .slick-wrapper {
    direction: ltr
}





ul.recent-feed-list {
    list-style: none;
    margin: 0;
    padding: 0
}

ul.recent-feed-list .single-feed {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px
}

ul.recent-feed-list .single-feed:last-child {
    margin-bottom: 0
}

ul.recent-feed-list .single-feed .feed-img {
    margin-left: 15px
}

ul.recent-feed-list .single-feed .feed-img img {
    border-radius: 5px;
    height: 64px;
    margin-bottom: 0;
    min-width: 64px
}

ul.recent-feed-list .single-feed .feed-content span {
    color: #fffc;
    display: block;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px
}

ul.recent-feed-list .single-feed .feed-content h6 {
    margin-bottom: 0
}

ul.recent-feed-list .single-feed .feed-content h6 a {
    color: #d2d2d2;
    font-size: 16px;
    font-weight: 600;
    transition: all .42s ease-in
}

ul.recent-feed-list .single-feed .feed-content h6:hover a {
    color: #5ddcf2
}

ul.recent-post {
    list-style: none;
    margin: 0;
    padding: 0
}

ul.recent-post .single-post {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px
}

ul.recent-post .single-post:last-child {
    margin-bottom: 0
}

ul.recent-post .single-post .post-img {
    margin-left: 15px
}

ul.recent-post .single-post .post-img img {
    border-radius: 5px;
    height: 64px;
    margin-bottom: 0;
    min-width: 64px
}

ul.recent-post .single-post .post-content span {
    color: dimgray;
    display: block;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px
}

ul.recent-post .single-post .post-content h6 {
    margin-bottom: 0
}

ul.recent-post .single-post .post-content h6 a {
    color: #1f2230;
    font-size: 16px;
    font-weight: 600;
    transition: all .42s ease-in
}

ul.recent-post .single-post .post-content h6:hover a {
    color: #5ddcf2
}

ul.category-list {
    margin: 0;
    padding: 0
}

ul.category-list li {
    margin-bottom: 15px
}

ul.category-list li:last-child {
    margin-bottom: 0
}

ul.category-list li a {
    align-items: center;
    color: dimgray;
    display: flex;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    justify-content: space-between
}

ul.category-list li a span:first-child {
    padding-right: 20px;
    position: relative
}

ul.category-list li a span:first-child:before {
    background: #5ddcf2;
    border-radius: 50%;
    content: "";
    height: 8px;
    position: absolute;
    right: 0;
    top: 9px;
    transition: all .5s ease-out 0s;
    width: 8px
}

ul.category-list li a span:last-child {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all .5s ease-out 0s;
    width: 30px
}

ul.category-list li a:hover span:first-child:before {
    background: dimgray
}

ul.category-list li a:hover span:last-child {
    background: #fff;
    border: 1px solid #5ddcf2;
    color: #5ddcf2
}

.sidebar-social-list {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0
}

.sidebar-social-list li .bx {
    border: 1px solid #eee;
    border-radius: 5px;
    color: dimgray;
    height: 32px;
    line-height: 32px;
    text-align: center;
    transition: all .5s ease-out 0s;
    width: 32px
}

.sidebar-social-list li .bx:hover {
    border: 1px solid #5ddcf2;
    color: #5ddcf2
}


.blog-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.blog-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .blog-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.blog-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1
}

@media(max-width:767px) {
    .blog-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.pagination-wrap .page-item.active .page-link {
    background-color: #fff !important;
    color: #5ddcf2 !important
}

.pagination-wrap .pagination {
    margin: 0
}

.pagination-wrap .pagination.style-two .page-link {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 2px;
    color: #1f2230;
    display: block;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    position: relative;
    text-decoration: none;
    transition: .42s ease
}

.pagination-wrap .pagination.style-two .page-link:focus {
    background-color: #fff;
    border-color: #5ddcf2;
    color: #5ddcf2
}

.pagination-wrap .pagination.style-two .page-link:hover {
    border-color: #5ddcf2;
    color: #5ddcf2
}

.pagination-wrap .page-item:first-child .page-link,
.pagination-wrap .page-item:last-child .page-link {
    border-radius: 2px
}

.pagination-wrap .page-link {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px 8px 2px 8px;
    color: #1f2230;
    display: block;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: .42s ease
}

.pagination-wrap .page-link:focus {
    box-shadow: none
}

.pagination-wrap .page-item.active .page-link,
.pagination-wrap .page-link:focus,
.pagination-wrap .page-link:hover {
    background-color: #5ddcf2;
    border-color: #5ddcf2;
    color: #fff
}

.pagination-wrap .page-item.active .page-link {
    z-index: 3
}

.inner-banner {
    align-items: center;
    background: #171835;
    display: flex;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    text-align: center;
    z-index: 1
}

.inner-banner:before {
    background-position: 50%;
    bottom: 0;
    content: url(/static/media/inner-bg.8a8557a021b45ed154ee.png);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.inner-banner .breadcrumb {
    justify-content: center
}

.breadcrumb .breadcrumb-item {
    color: #fff;
    font-family: Cairo, sans-serif;
    font-size: 25px;
    font-weight: 500
}

.breadcrumb .breadcrumb-item.active {
    color: #999
}

.inner-banner-title {
    color: #fff;
    font-size: 65px;
    font-weight: 700
}

.breadcrumb-item+.breadcrumb-item:before {
    color: #6c757d;
    content: "/";
    content: var(--bs-breadcrumb-divider, "/");
    float: right;
    padding-left: .5rem
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
    background-color: #5ddcf24d
}

.nice-select.open,
.nice-select:focus {
    border-color: #5ddcf2
}

.nice-select {
    float: none;
    height: 50px;
    line-height: 50px;
    width: 100%
}

.nice-select .list {
    width: 100%
}

.login-section .section-bg-top {
    right: 0
}

.login-section .section-bg-bottom {
    z-index: -1
}

.form-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 5px 7px 35px 18px #8b8b8b1a;
    padding: 40px
}

@media(max-width:576px) {
    .form-wrapper {
        padding: 25px
    }
}

.form-wrapper .form-title {
    margin-bottom: 60px;
    text-align: center
}

.form-wrapper .form-title h3 {
    color: #1f2230;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

.form-wrapper .form-title p {
    color: #1f2230;
    font-size: 20px;
    font-weight: 400
}

.form-wrapper .form-title p a {
    color: #1f2230;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize
}

.form-wrapper .form-title2 {
    margin-bottom: 30px
}

.form-wrapper .form-title2 h3 {
    color: #1f2230;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px
}

.form-wrapper label {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px
}

.form-wrapper input,
.form-wrapper textarea {
    border: 1px solid #eee;
    direction: rtl;
    height: 50px;
    padding: 10px 20px;
    transition: .4s ease;
    width: 100%
}

.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
    font-size: 14px;
    font-weight: 400
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
    border: 1px solid #5ddcf2;
    border-radius: 5px
}

.form-wrapper textarea {
    min-height: 150px
}

.form-wrapper .check-box-text {
    font-size: 16px
}

.form-wrapper .form-inner {
    margin-bottom: 18px;
    position: relative
}

.form-wrapper .form-inner i {
    bottom: 14px;
    cursor: pointer;
    left: 20px;
    position: absolute
}

.form-wrapper .form-agreement {
    margin-bottom: 16px;
    margin-top: 6px
}

.form-wrapper .form-agreement label {
    font-size: 16px;
    font-weight: 400
}

.form-wrapper .form-agreement label a {
    font-size: 16;
    font-weight: 600
}

.form-wrapper .forgotpass {
    margin-top: 25px;
    text-align: center
}

.form-wrapper .forgot-pass {
    color: #1f2230;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: .3s ease
}

.form-wrapper .forgot-pass:after {
    background: #1f2230;
    bottom: 15px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%
}

@media(max-width:576px) {
    .form-wrapper .forgot-pass:after {
        display: none;
        visibility: hidden
    }
}

.form-wrapper .forgot-pass:hover {
    color: #999
}

.form-wrapper .forgot-pass:hover:after {
    background: #999
}

.form-wrapper .account-btn {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    transition: .4s ease;
    width: 100%
}

.form-wrapper .account-btn:hover {
    background: #fff;
    color: #5ddcf2
}

.form-wrapper .alternate-signup-box {
    border: 1px solid #eee;
    border-radius: 3px;
    margin-bottom: 35px;
    margin-top: 30px;
    padding: 20px;
    text-align: center
}

.form-wrapper .alternate-signup-box h6 {
    color: #1f2230;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase
}

.form-wrapper .alternate-signup-box .btn-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center
}

.form-wrapper .alternate-signup-box .btn-group a {
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 15px;
    text-align: center;
    text-transform: uppercase;
    transition: .5s ease
}

.form-wrapper .alternate-signup-box .btn-group a:hover {
    background: #1f2230
}

.form-wrapper .alternate-signup-box .btn-group i {
    font-size: 16px
}

.form-wrapper .alternate-signup-box .google-btn {
    background: #ea4335
}

.form-wrapper .alternate-signup-box .facebook-btn {
    background: #4267b2
}

.form-wrapper .form-poicy-area {
    text-align: center
}

.form-wrapper .form-poicy-area a {
    color: #5ddcf2;
    font-weight: 600;
    text-decoration: underline
}

.form-wrapper .form-group input[type=checkbox] {
    cursor: pointer;
    display: none
}

.form-wrapper input[type=checkbox]+label:before {
    -webkit-appearance: none;
    background-color: #1f2230;
    box-shadow: 0 1px 2px #0000000d, inset 0 -15px 10px -12px #0000000d;
    content: "";
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    padding: 8px;
    position: relative;
    vertical-align: middle
}

.form-wrapper input[type=checkbox]:checked+label:after {
    border: 1px solid #fff;
    border-width: 0 2px 2px 0;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    right: 6px;
    top: 7px;
    transform: rotate(45deg);
    width: 4px
}

.form-wrapper button.form--btn {
    border: none;
    margin-top: 25px;
    outline: none;
    padding-left: 30px;
    padding-right: 30px
}

.login-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.login-section .section-bg-top {
    position: absolute;
    right: -80px;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .login-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.login-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute
}

@media(max-width:767px) {
    .login-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.signup-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.signup-section .section-bg-top {
    position: absolute;
    right: -80px;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .signup-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.signup-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute
}

@media(max-width:767px) {
    .signup-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.how-work-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.how-work-section .section-bg-top {
    position: absolute;
    right: -80px;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .how-work-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.how-work-section .how-work-content span {
    color: #5ddcf2;
    display: block;
    font-family: Cairo, sans-serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px
}

.how-work-section .how-work-content h3 {
    color: #1f2230;
    font-size: 30px;
    font-weight: 700
}

.how-work-section .how-work-content a {
    margin-top: 25px
}

.how-work-section .how-work-img {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 5px 2px 30px #0000000f;
    display: flex;
    flex-wrap: wrap;
    height: 505px;
    justify-content: center;
    max-width: 505px;
    width: 100%
}

@media(min-width:992px)and (max-width:1199px) {
    .how-work-section .how-work-img {
        box-shadow: none
    }
}

@media(max-width:767px) {
    .how-work-section .how-work-img {
        box-shadow: none;
        height: auto;
        max-width: 100%
    }
}

.how-work-section .how-work-img .work-img {
    animation: jumping 4s linear infinite alternate;
    max-width: 100%
}

@keyframes jumping {
    0% {
        transform: translateY(0)
    }

    25% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(0)
    }

    75% {
        transform: translateY(10px)
    }

    to {
        transform: translateY(0)
    }
}

.single-feature {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    position: relative;
    text-align: center;
    transition: all .42s ease
}

.single-feature:hover {
    border: 1px solid #0000;
    box-shadow: 5px 2px 30px #0000000f
}

.single-feature:hover .sn {
    -webkit-text-stroke-color: #1f2230
}

.single-feature:hover .icon svg {
    fill: #5ddcf2
}

.single-feature .sn {
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #1f22301a;
    color: #1f22301a;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: 30px;
    top: 30px;
    transition: all .42s ease
}

.single-feature .icon {
    margin-bottom: 20px
}

.single-feature .icon svg {
    fill: dimgray;
    transition: all .42s ease
}

.single-feature .content h5 a {
    color: #1f2230;
    cursor: inherit;
    font-size: 22px;
    font-weight: 700;
    transition: all .42s ease-in
}

.single-feature .content h5 a:hover {
    color: #5ddcf2
}

.choose-us-section {
    overflow: hidden;
    position: relative
}

.choose-us-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute
}

@media(max-width:767px) {
    .choose-us-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.faq-wrap .accordion-item {
    border: none;
    margin-bottom: 24px
}

.faq-wrap .accordion-item:last-child {
    margin-bottom: 0
}

.faq-wrap .accordion-button {
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    color: #1f2230;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    padding: 25px 25px 25px 60px;
    position: relative;
    text-align: right;
    transition: .4s ease-in
}

@media(max-width:767px) {
    .faq-wrap .accordion-button {
        padding: 25px 25px 25px 60px
    }
}

.faq-wrap .accordion-button:hover:after {
    background: #5ddcf2;
    color: #fff
}

.faq-wrap .accordion-button:focus {
    background: #fff;
    border-color: initial;
    box-shadow: 5px 2px 30px #0000000f;
    outline: 0;
    z-index: auto
}

.faq-wrap .accordion-button:after {
    align-items: center;
    background-image: none;
    background-repeat: repeat;
    background-size: initial;
    border: 1px solid #5ddcf2;
    border-radius: 50%;
    color: #5ddcf2;
    content: "";
    display: flex;
    flex-shrink: 0;
    font-family: bootstrap-icons !important;
    font-size: 15px;
    font-size: 20px;
    height: auto;
    height: 32px;
    justify-content: center;
    left: 22px;
    line-height: 32px;
    margin-left: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: initial;
    transition: all .4s ease;
    width: auto;
    width: 32px
}

.faq-wrap .accordion-button:not(.collapsed):after {
    background-image: none;
    background: #5ddcf2;
    color: #fff;
    content: "";
    font-family: bootstrap-icons !important;
    top: 50%;
    transform: none;
    transform: translateY(-50%)
}

.faq-wrap .accordion-body {
    background: #5ddcf20d;
    border-top: none;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: right
}

.faq-wrap .accordion-button:not(.collapsed) {
    background: #fff;
    border-radius: 5px 5px 0 0;
    box-shadow: none;
    box-shadow: 5px 2px 30px #0000000f;
    color: #1f2230
}

.faq-form-area {
    box-shadow: 5px 2px 30px #0000000f;
    margin-top: 78px;
    padding: 25px
}

@media(max-width:991px) {
    .faq-form-area {
        margin-top: 0
    }
}

.faq-form-area h5 {
    color: #1f2230;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px
}

.faq-form-area p {
    margin-bottom: 20px
}

.faq-form-area .faq-form label {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px
}

.faq-form-area .faq-form .form-inner {
    margin-bottom: 20px
}

.faq-form-area .faq-form input,
.faq-form-area .faq-form textarea {
    border: 1px solid #eee;
    padding: 12px 20px;
    transition: .35s ease-in;
    width: 100%
}

@media(max-width:767px) {

    .faq-form-area .faq-form input,
    .faq-form-area .faq-form textarea {
        padding: 10px 15px
    }
}

.faq-form-area .faq-form input::placeholder,
.faq-form-area .faq-form textarea::placeholder {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400
}

.faq-form-area .faq-form input:focus,
.faq-form-area .faq-form textarea:focus {
    border: 1px solid #5ddcf2
}

.section-title3 {
    color: #1f2230;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: right
}

.live-auction-section {
    position: relative;
    z-index: 1
}

.live-auction-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .live-auction-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.live-auction-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1
}

@media(max-width:767px) {
    .live-auction-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.auction-details-section {
    position: relative
}

.auction-details-section .nav {
    padding-right: 0
}

.auction-details-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .auction-details-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.auction-details-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1
}

@media(max-width:767px) {
    .auction-details-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.auction-details-section .details-tab-btn {
    background: #fff
}

.product-details-right h3 {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px
}

.product-details-right p {
    margin-bottom: 20px
}

.product-details-right h4 {
    color: #1f2230;
    font-size: 25px;
    font-weight: 400
}

.product-details-right h4 span {
    font-weight: 700
}

.product-details-right .bid-form {
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    margin-top: 40px;
    padding: 25px
}

.product-details-right .bid-form .form-title {
    margin-bottom: 20px;
    padding-bottom: 3px
}

.product-details-right .bid-form .form-title h5 {
    color: #1f2230;
    font-size: 22px;
    font-weight: 600
}

.product-details-right .bid-form .form-title p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    position: relative
}

.product-details-right .bid-form .form-title p:before {
    background-color: #5ddcf2;
    border-radius: 5px;
    bottom: -12px;
    content: "";
    height: 3px;
    position: absolute;
    right: 0;
    width: 52px
}

.product-details-right .bid-form .form-title p:after {
    background-color: #5ddcf2;
    border-radius: 5px;
    bottom: -12px;
    content: "";
    height: 3px;
    position: absolute;
    right: 56px;
    width: 4px
}

.product-details-right .bid-form .form-inner {
    align-items: center;
    display: flex;
    justify-content: center
}

.product-details-right .bid-form .form-inner input[type=text] {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 11px 15px;
    transition: all .42s ease;
    width: 100%
}

.product-details-right .bid-form .form-inner input[type=text]::placeholder {
    color: dimgray;
    font-size: 16px;
    font-weight: 500
}

.product-details-right .bid-form .form-inner input[type=text]:focus {
    border: 1px solid #5ddcf2
}

.product-details-right .bid-form .form-inner button {
    border: none;
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 700;
    outline: none;
    padding: 10px 35px
}

.small-image-list {
    padding-right: 0
}

.small-image-list .nav-item img {
    border-radius: 5px;
    cursor: pointer;
    height: 120px;
    max-width: 120px;
    transition: all .62s ease;
    width: auto
}

@media(min-width:1200px)and (max-width:1399px) {
    .small-image-list .nav-item img {
        height: 115px
    }
}

@media(min-width:992px)and (max-width:1199px) {
    .small-image-list .nav-item img {
        height: 112px
    }
}

@media(max-width:767px) {
    .small-image-list .nav-item img {
        height: 100px
    }
}

.small-image-list .nav-item:hover img {
    transform: scale(1.1)
}

.tab-content img {
    border-radius: 0 0 5px 5px
}

.tab-content .auction-gallery-timer {
    background-color: #1f2230;
    border-radius: 5px 4px 0 0;
    padding: 10px 20px;
    text-align: center
}

.tab-content .auction-gallery-timer h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0
}

@media(max-width:767px) {
    .tab-content .auction-gallery-timer h3 {
        font-size: 24px
    }
}

.details-tab-btn {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 3px 5px 20px #0000000f;
    color: #1f2230;
    display: flex;
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    padding: 15px 30px;
    transition: .4s ease-out 0s;
    width: 100%
}

.details-tab-btn:hover {
    background: #5ddcf2;
    color: #fff
}

.details-tab-btn.active {
    background: #5ddcf2 !important;
    color: #fff
}

.bid-list {
    padding-left: 0
}

.bid-list li {
    border-bottom: 1px solid #eee;
    padding: 20px 0
}

.bid-list li:last-child {
    border-bottom: initial;
    padding-bottom: 0
}

.bid-list .bidder-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.bid-list .bidder-area .bidder-img {
    margin-left: 25px
}

@media(max-width:767px) {
    .bid-list .bidder-area .bidder-img {
        margin-right: 15px
    }
}

.bid-list .bidder-area .bidder-content h6 {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px
}

.bid-list .bidder-area .bidder-content p {
    font-size: 16px
}

.bid-list .bid-time p,
.bid-list .bidder-area .bidder-content p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-weight: 500;
    margin-bottom: 0
}

.bid-list .bid-time p {
    font-size: 14px
}

.bid-list-area {
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 3px 5px 20px #0000000f;
    max-height: 350px;
    overflow-y: auto;
    padding: 0 20px
}

.bid-list-area::-webkit-scrollbar {
    width: 5px
}

.bid-list-area::-webkit-scrollbar-track {
    background: #eee
}

.bid-list-area::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
    height: 100px;
    -webkit-transition: .35s ease-in;
    transition: .35s ease-in
}

.bid-list-area::-webkit-scrollbar-thumb:hover {
    background: #1f2230
}
.describe-content{
    text-align: justify;
}
.describe-content h4 {
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 24px;
    font-weight: 600
}

.describe-content p {
    margin-bottom: 20px
}

.describe-content .describe-list {
    margin: 0;
    padding: 0
}

.describe-content .describe-list li {
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative
}

.describe-content .describe-list li:before {
    content: "";
    font-family: bootstrap-icons;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0
}

.describe-content .describe-list li a {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5
}

.describe-content .describe-list li .bx {
    font-size: 24px;
    margin-right: 12px
}

.offer-banner {
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    padding: 25px
}

.offer-banner h4 {
    color: #1f2230;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px
}

.offer-banner img {
    width: 100%
}

.about-section {
    position: relative
}

.about-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .about-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.about-section .about-content span {
    color: dimgray;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase
}

.about-section .about-content h2 {
    color: #1f2230;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px
}

.about-section .about-content .about-list {
    margin-top: 25px
}

.about-list {
    margin: 0 0 40px;
    padding: 0
}

.about-list li {
    margin-bottom: 15px;
    padding-right: 30px;
    position: relative
}

.about-list li:before {
    content: "";
    font-family: bootstrap-icons;
    font-size: 20px;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 0
}

.about-list li a {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5
}

.about-list li .bx {
    font-size: 24px;
    margin-right: 12px
}

.about-img-area {
    position: relative
}

.about-img-area .total-tag {
    background: #fff;
    border-radius: 100px 100px 100px 5px;
    box-shadow: 3px 2px 35px #001b5514;
    padding: 25px;
    position: absolute;
    right: 30px;
    text-align: center;
    top: 0
}

@media(max-width:1199px) {
    .about-img-area .total-tag {
        right: 0
    }
}

@media(max-width:767px) {
    .about-img-area .total-tag {
        display: none;
        visibility: hidden
    }
}

.about-img-area .total-tag img {
    margin-bottom: 12px;
    max-width: 100%
}

.about-img-area .total-tag h6 {
    color: #1f2230;
    font-size: 16px;
    font-weight: 500
}

.about-img-area .total-tag h5 {
    color: #1f2230;
    font-size: 20px;
    font-weight: 700
}

.about-img-area .about-vector {
    animation: rotation 14s linear infinite;
    left: -50px;
    position: absolute;
    top: 0;
    z-index: -1
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.about-img-area .about-linear {
    bottom: -70px;
    left: 0;
    position: absolute
}

@media(max-width:991px) {
    .about-img-area .about-linear {
        display: none;
        visibility: hidden
    }
}

.choose-us-section .angle-vector {
    left: -20px;
    position: absolute;
    top: 130px
}

@media(min-width:992px)and (max-width:1199px) {
    .choose-us-section .angle-vector {
        left: -10px;
        top: 150px
    }
}

@media(max-width:991px) {
    .choose-us-section .angle-vector {
        display: none;
        visibility: hidden
    }
}

.map-area iframe {
    height: 585px;
    width: 100%
}

.contact-section {
    position: relative;
    z-index: 1
}

.contact-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .contact-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.contact-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1
}

@media(max-width:767px) {
    .contact-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.contact-signle {
    border: initial;
    box-shadow: 3px 5px 20px #0000000f;
    padding: 25px;
    text-align: center;
    transition: all .4s ease-in
}

.contact-signle:hover .icon {
    background: #5ddcf2
}

.contact-signle:hover .icon i {
    color: #fff
}

.contact-signle .icon {
    background: #5ddcf233;
    border-radius: 50%;
    height: 70px;
    line-height: 70px;
    margin-left: 15px;
    min-width: 70px;
    text-align: center;
    transition: all .4s ease-in
}

.contact-signle .icon i {
    color: #5ddcf2;
    font-size: 36px;
    transition: all .35s ease-in
}

.contact-signle .text {
    text-align: start
}

.contact-signle .text h4 {
    color: #1f2230;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px
}

.contact-signle .text p {
    font-size: 1rem;
    margin-bottom: 0
}

.contact-signle .text a,
.contact-signle .text p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-weight: 500;
    line-height: 28px
}

.contact-signle .text a {
    font-size: 16px
}

.text-green,
.text-red {
    color: #5ddcf2 !important
}

.dashboard-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.dashboard-section .section-bg-top {
    position: absolute;
    right: -100px;
    top: 0;
    z-index: -2
}

@media(max-width:767px) {
    .dashboard-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.dashboard-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -2
}

@media(max-width:767px) {
    .dashboard-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.dashboard-section .nav-pills .nav-link {
    background-color: #fff
}

.dashboard-section .nav-pills .nav-link:hover {
    background-color: #5ddcf2
}

.table-title-area {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px
}

.table-title-area h3 {
    color: #1f2230;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7
}

.table-title-area .nice-select {
    max-width: 270px
}

.eg-table {
    border-collapse: collapse;
    overflow: hidden;
    width: 100%
}

.eg-table thead {
    background: #f1f1f1
}

.eg-table thead tr {
    border-width: 1px
}

.eg-table thead tr th {
    border-color: #d2d2d266;
    border-width: 1px;
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
    padding: 15px;
    text-align: center;
    vertical-align: top;
    white-space: nowrap
}

@media(max-width:767px) {
    .eg-table thead tr th {
        display: none
    }
}

.eg-table tbody tr td {
    border: 2px solid #eeeeeebf;
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-weight: 400;
    text-align: center;
    vertical-align: middle
}

@media(max-width:767px) {
    .eg-table tbody tr td {
        display: block;
        padding-left: 50%;
        position: relative;
        text-align: right;
        width: 100%
    }
}

.eg-table tbody tr td img {
    max-width: 40px;
    width: 100%
}

@media(max-width:767px) {
    .eg-table tbody tr {
        margin-bottom: 30px
    }

    .eg-table,
    .eg-table tbody,
    .eg-table tbody tr {
        display: block;
        width: 100%
    }

    .eg-table td:before {
        color: #1f2230;
        content: attr(data-label);
        font-weight: 600;
        left: 0;
        padding-left: 15px;
        position: absolute;
        text-align: left;
        width: 50%
    }
}

.table-wrapper {
    background-color: #fff;
    box-shadow: 5px 2px 30px #0000000f;
    margin-bottom: 30px;
    overflow-x: auto;
    width: 100%
}

@media(max-width:767px) {
    .table-wrapper {
        box-shadow: none
    }
}

.table-wrapper .order-table tr td {
    padding: 10px 15px
}

.table-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.table-pagination P {
    color: #1f2230;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 10px
}

@media(max-width:576px) {
    .table-pagination P {
        margin-bottom: 1rem
    }
}

.nav-btn-style {
    background: #fff;
    box-shadow: 5px 2px 30px #0000000f;
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 20px;
    font-weight: 500;
    min-width: 0;
    padding: 10px 20px;
    text-align: right;
    transition: all .42s ease;
    width: 100%
}

.nav-btn-style svg {
    fill: dimgray;
    margin-left: 10px;
    transition: all .42s ease
}

.nav-btn-style:hover {
    background-color: #5ddcf2;
    color: #fff
}

.nav-btn-style:hover svg {
    fill: #fff
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #5ddcf2;
    color: #fff
}

.nav-pills .nav-link.active svg,
.nav-pills .show>.nav-link svg {
    fill: #fff
}

.dashboard-profile {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 5px 2px 30px #0000000f
}

.dashboard-profile .form-wrapper {
    box-shadow: none
}

.dashboard-profile .owner {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 40px 40px 0
}

.dashboard-profile .owner .image {
    margin-left: 25px
}

.dashboard-profile .owner .image img {
    border-radius: 50%;
    height: 100%;
    max-width: 100px;
    width: 100%
}

.dashboard-profile .owner .content h3 {
    color: #1f2230;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px
}

.dashboard-profile .owner .content p {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0
}

.dashboard-card {
    box-shadow: 5px 2px 30px #0000000f
}

.dashboard-card:hover .body .icon svg {
    fill: #5ddcf2
}

.dashboard-card .header {
    background: #1f2230;
    border-radius: 4px 4px 0 0;
    padding: 10px 20px
}

.dashboard-card .header h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0
}

.dashboard-card .body {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 25px
}

.dashboard-card .body .counter-item h2 {
    color: #1f2230;
    font-size: 40px;
    font-weight: 600
}

.dashboard-card .body .icon svg {
    fill: dimgray;
    transition: all .42s ease
}

.button-group {
    margin-top: 50px
}

.button-group .profile-btn {
    background-color: #5ddcf2;
    border: 1px solid #5ddcf2;
    border-radius: 30px;
    color: #fff;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-left: 20px;
    outline: none;
    padding: 13px 20px;
    text-align: center;
    transition: all .42s ease-in-out
}

.button-group .profile-btn:hover {
    background-color: #fff;
    color: #5ddcf2
}

.button-group .cancel-btn {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    color: #1f2230;
    outline: none;
    padding: 13px 30px;
    text-align: center;
    transition: all .42s ease-in-out
}

.button-group .cancel-btn:hover {
    background-color: #5ddcf2;
    border: 1px solid #5ddcf2;
    color: #fff
}

.blog-details-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.blog-details-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -2
}

@media(max-width:767px) {
    .blog-details-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.blog-details-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -2
}

@media(max-width:767px) {
    .blog-details-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.blog-details-single .blog-img img {
    width: 100%
}

.blog-details-single .blog-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 35px 0 25px;
    padding: 0
}

@media(max-width:767px) {
    .blog-details-single .blog-meta {
        justify-content: space-between
    }
}

.blog-details-single .blog-meta li {
    margin-left: 20px
}

.blog-details-single .blog-meta a {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 16px;
    font-weight: 500
}

.blog-details-single .blog-meta a img {
    margin-left: 10px
}

.blog-details-single .blog-title {
    font-family: Cairo, sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    text-align: right
}

.blog-details-single blockquote {
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 30px;
    margin-top: 25px;
    padding: 30px 25px
}

.blog-details-single blockquote .quote-icon {
    margin-bottom: 15px
}

.blog-details-single blockquote h5 {
    color: #1f2230;
    font-size: 22px;
    font-weight: 600
}

.blog-details-single .sub-title {
    color: #1f2230;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px
}

.blog-details-single .blog-video-area {
    margin-bottom: 25px;
    margin-top: 25px
}

.blog-details-single .blog-video-area img {
    border-radius: 5px
}

.blog-details-single .blog-tag {
    border-bottom: 1px solid #eee;
    margin-bottom: 50px;
    margin-top: 35px;
    padding: 20px 0
}

.blog-details-single .blog-tag h6 {
    color: dimgray;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    margin-left: 10px;
    white-space: nowrap
}

.blog-details-single .blog-tag .tag-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    justify-content: center;
    margin: 0;
    padding: 0
}

.blog-details-single .blog-tag .tag-list li {
    margin-right: 5px;
    text-decoration: underline
}

.blog-details-single .blog-tag .tag-list li a {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all .42s ease;
    white-space: nowrap
}

.blog-details-single .blog-tag .tag-list li a:hover {
    color: #5ddcf2
}

.blog-details-single .blog-tag .share-social {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0
}

.blog-details-single .blog-tag .share-social .bx {
    border-radius: 50%;
    height: 24px;
    line-height: 24px;
    text-align: center;
    transition: all .42s ease-out 0s;
    width: 24px
}

.blog-details-single .blog-tag .share-social .bx:hover {
    background-color: #5ddcf2;
    color: #fff
}

.blog-details-single .blog-author {
    align-items: center;
    background: #f1f1f1;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    padding: 30px
}

.blog-details-single .blog-author .author-image img {
    min-width: 140px
}

.blog-details-single .blog-author .author-detials {
    text-align: right
}

.blog-details-single .blog-author .author-detials h5 {
    color: #1f2230;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px
}

.video-play {
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%)
}

.video-play .video-icon {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #5ddcf2;
    display: inline-block;
    font-size: 36px;
    height: 60px;
    line-height: 52px;
    position: relative;
    text-align: center;
    width: 60px
}

.video-play .video-icon:before {
    animation: ripple-1 2s ease-in-out infinite;
    background: #ffffff80
}

.video-play .video-icon:after,
.video-play .video-icon:before {
    border-radius: 50%;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.video-play .video-icon:after {
    animation: ripple-2 2s ease-in-out infinite;
    animation-delay: .5s;
    background: #ffffff4d
}

@keyframes ripple-1 {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(1.7)
    }
}

@keyframes ripple-2 {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    to {
        opacity: 0;
        transform: scale(1.9)
    }
}

.blog-widget-title {
    margin-bottom: 30px
}

.blog-widget-title h4 {
    font-family: Cairo, sans-serif;
    font-size: 25px;
    font-weight: 600
}

.blog-widget-title span {
    background: #5ddcf2;
    border-radius: 5px;
    display: block;
    height: 3px;
    margin-top: 12px;
    position: relative;
    width: 50px
}

.blog-widget-title span:before {
    left: -10px
}

.blog-widget-title span:after,
.blog-widget-title span:before {
    background: #5ddcf2;
    border-radius: 5px;
    content: "";
    height: 3px;
    position: absolute;
    top: 0;
    width: 5px
}

.blog-widget-title span:after {
    left: -20px
}

.blog-widget-title.style2 h4 {
    margin-bottom: 0
}

.sidebar-widget-title {
    margin-bottom: 25px
}

.sidebar-widget-title h4 {
    font-family: Cairo, sans-serif;
    font-size: 25px;
    font-weight: 600
}

.sidebar-widget-title span {
    background: #5ddcf2;
    border-radius: 5px;
    display: block;
    height: 3px;
    margin-top: 5px;
    position: relative;
    width: 50px
}

.sidebar-widget-title span:before {
    left: -10px
}

.sidebar-widget-title span:after,
.sidebar-widget-title span:before {
    background: #5ddcf2;
    border-radius: 5px;
    content: "";
    height: 3px;
    position: absolute;
    top: 0;
    width: 5px
}

.sidebar-widget-title span:after {
    left: -20px
}

.comment-list {
    margin: 0;
    padding: 0
}

.comment-list>li {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px
}

.comment-list>li:last-child {
    border-bottom: none;
    margin-bottom: 0
}

.blog-sidebar .sidebar-banner {
    align-items: center;
    background-image: linear-gradient(90deg, #1f2230bf, #1f2230bf), url(/static/media/banner-card-img.b79c8289309ad671af24.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    min-height: 415px;
    object-fit: cover;
    padding: 25px;
    text-align: center;
    width: 100%
}

.blog-sidebar .sidebar-banner span {
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px
}

.blog-sidebar .sidebar-banner h3 {
    color: #fff;
    font-family: Cairo, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px
}

.blog-sidebar .sidebar-banner .card--btn {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 9px 35px
}

.comment-box .author {
    align-items: center;
    display: flex;
    justify-content: flex-start
}

.comment-box .author img {
    border-radius: 50%;
    margin-left: 15px;
    max-width: 50px;
    width: 100%
}

.comment-box .author h5 {
    color: #1f2230;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0
}

.comment-box .author span.commnt-date {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: -4px;
    margin-right: 10px
}

.comment-box .comment-header {
    margin-bottom: 10px
}

.comment-box .comment-header .commnt-reply {
    border: 1px solid #eee;
    border-radius: 50%;
    min-width: 25px;
    text-align: center;
    transition: all .42s ease
}

.comment-box .comment-header .commnt-reply .bi {
    color: dimgray;
    transition: all .42s ease
}

.comment-box .comment-header .commnt-reply:hover {
    border: 1px solid #5ddcf2
}

.comment-box .comment-header .commnt-reply:hover .bi {
    color: #5ddcf2;
    transition: all .42s ease
}

.comment-box .comment-body {
    margin-bottom: 20px
}

.comment-form {
    margin-top: 40px
}

.comment-form .form--btn {
    border: none;
    outline: none
}

.comment-form .form-inner {
    margin-bottom: 30px
}

.comment-form .form-inner input,
.comment-form .form-inner textarea {
    background: #f1f1f1;
    border: none;
    border-radius: 5px;
    outline: none;
    padding: 18px 15px;
    transition: all .42s ease;
    width: 100%
}

.comment-form .form-inner input::placeholder,
.comment-form .form-inner textarea::placeholder {
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 400
}

.comment-form .form-inner input:focus,
.comment-form .form-inner textarea:focus {
    background: #5ddcf233
}

.blog-widget-item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 2px 30px #0000000f;
    margin-bottom: 40px;
    padding: 30px 25px
}

.blog-sidebar .search-area .form-inner {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center
}

.blog-sidebar .search-area .form-inner input {
    border: 1px solid #eee;
    color: #1f2230;
    font-family: Cairo, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    padding: 12px 15px;
    width: 100%
}

.blog-sidebar .search-area .form-inner input:focus {
    border-left: 1px solid #5ddcf2
}

.blog-sidebar .search-area .form-inner input::placeholder {
    color: dimgray;
    font-size: 14px;
    font-weight: 400
}

.blog-sidebar .search-area .form-inner .search--btn {
    background: #5ddcf2;
    border: 1px solid #5ddcf2;
    outline: none;
    padding: 11px
}

.blog-sidebar .search-area .form-inner .search--btn .bx {
    color: #fff;
    font-size: 24px
}

.error-section {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.error-section .section-bg-top {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

@media(max-width:767px) {
    .error-section .section-bg-top {
        display: none;
        visibility: hidden
    }
}

.error-section .section-bg-bottom {
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1
}

@media(max-width:767px) {
    .error-section .section-bg-bottom {
        display: none;
        visibility: hidden
    }
}

.error-section .evector1 {
    position: absolute;
    right: 30%;
    top: 30%;
    z-index: -1
}

.error-section .evector2 {
    position: absolute;
    right: 30%;
    top: 60%;
    z-index: -1
}

@media(max-width:767px) {
    .error-section .evector2 {
        display: none;
        visibility: hidden
    }
}

.error-section .evector3 {
    animation: bounce 2s linear infinite alternate;
    left: 30%;
    position: absolute;
    top: 30%;
    z-index: -1
}

@media(max-width:767px) {
    .error-section .evector3 {
        left: 2%
    }
}

@keyframes bounce {
    0% {
        transform: translateY(-20px)
    }

    50% {
        transform: translateY(0)
    }

    to {
        transform: translateY(0)
    }
}

.error-section .evector4 {
    left: 23%;
    position: absolute;
    top: 60%;
    z-index: -1
}

@media(max-width:767px) {
    .error-section .evector4 {
        display: none;
        visibility: hidden
    }
}

.error-section .error-wrapper {
    overflow: hidden;
    padding: 0 30px
}

.error-section .error-wrapper .error-bg {
    animation: rotating 2.5s linear infinite;
    margin-bottom: 35px
}

@keyframes rotating {
    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(3deg)
    }

    50% {
        transform: rotate(0deg)
    }

    75% {
        transform: rotate(-3deg)
    }

    to {
        transform: rotate(0deg)
    }
}

.error-section .error-wrapper .error-content h2 {
    color: #1f2230;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px
}

.error-section .error-wrapper .error-content p {
    margin-bottom: 45px
}

.select-contact__control {
    border-color: #eee !important
}

.select-contact__indicator-separator {
    background-color: #eee !important
}

.react-international-phone-input-container.contact-phone-input {
    direction: ltr
}

.react-international-phone-input-container.contact-phone-input .react-international-phone-country-selector-button {
    height: 54px
}

.react-international-phone-input-container.contact-phone-input .react-international-phone-input {
    direction: ltr !important;
    height: 54px;
    text-align: left !important
}

.contact-phone {
    background-color: #5ddcf2;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    text-decoration: none
}

.contact-phone:hover {
    color: #fff
}

.form-wrapper .btn--primary {
    z-index: 0
}

.form-wrapper .solutions-select input {
    width: auto
}

.react-international-phone-country-selector-dropdown {
    z-index: 3
}

@media only screen and (min-width:1199px) {
    .main-menu ul li:hover ul.submenu {
        display: block !important;
        transition: all .3s linear
    }
}

.select {
    position: relative;
    width: 80px
}

.select.style-2 {
    border: 1px solid #eee;
    border-radius: 5px;
    height: 50px;
    line-height: 30px;
    position: relative;
    width: 100%
}

.select.style-2 .selectBtn {
    color: dimgray;
    font-family: Cairo, sans-serif;
    font-size: 13px;
    font-weight: 400
}

.select .selectBtn {
    background: var(--bg1);
    background: #0000;
    border-radius: 3px;
    box-sizing: border-box;
    color: dimgray;
    cursor: pointer;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    width: 100%
}

.select .selectBtn:after {
    border-bottom: 2px solid dimgray;
    border-right: 2px solid dimgray;
    content: "";
    height: 7px;
    left: 20px;
    position: absolute;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    transition: .2s ease;
    width: 7px
}

.select .selectBtn.toggle {
    border-radius: 3px 3px 0 0
}

.select .selectBtn.toggle:after {
    transform: translateY(-50%) rotate(-135deg)
}

.select .selectDropdown {
    background: var(--bg1);
    background: #fff;
    border-radius: 0 0 3px 3px;
    border-top: 1px solid #eee;
    box-shadow: 5px 7px 35px 18px #8b8b8b1a;
    overflow: hidden;
    position: absolute;
    top: 40px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: .2s ease;
    visibility: hidden;
    width: 100%;
    z-index: 1
}

.select .selectDropdown .option {
    box-sizing: border-box;
    color: dimgray;
    cursor: pointer;
    font-family: Cairo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px
}

.select .selectDropdown .option:hover {
    background: #5ddcf2;
    color: #fff
}

.select .selectDropdown.toggle {
    transform: scale(1);
    visibility: visible
}

/*# sourceMappingURL=main.9ce2405d.css.map*/