/* 
    Created on : Jul 23, 2023, 12:11:11
    Author     : bob
*/

/* Font */
/* https://fonts.google.com/specimen/Open+Sans */
/* font-family: 'Open Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* General */
body {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.875rem;
    font-weight: 500;
}

/* HTML */
html {
    min-height: 100%;
    position: relative;
}

/* Focus disable dotted box on focus */
a:focus,
button:focus,
.btn:focus,
.form-control:focus,
.form-check-input:focus,
.form-select:focus,
.choices__inner:focus,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices__input,
.choices__input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-check-input:active {
    filter: brightness(100%);
}

.btn,
.btn:hover,
.btn:focus {
    border: 0 none;
}

.btn {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Links */
a,
.btn {
    text-decoration: none;
    text-underline-offset: 0.188rem;
    font-weight: 500;
}

a.link-underline {
    text-decoration: underline;
    text-decoration-color: currentcolor;
    text-underline-offset: 0.188rem;
    font-weight: 600;
}

a.link-underline:hover {
    text-decoration: none;
}

a.disabled,
a:disabled,
.btn.disabled,
.btn:disabled {
    pointer-events: unset;
    cursor: not-allowed;
}

a.disabled:hover,
a:disabled:hover,
.btn.disabled:hover,
.btn:disabled:hover {
    opacity: 0.65;
}

a.item-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Material icons */
.material-symbols-outlined {
    font-variation-settings:
        'opsz' 20,
        'wght' 300,
        'FILL' 0,
        'GRAD' 0
}

/* Image */
img {
    max-width: 100%;
    height: auto;
}

svg {
    flex-shrink: 0;
}

/* Scroll line */
.scroll-line {
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    position: fixed;
    z-index: 1040;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Pulse effect */
.pulse-effect {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.btn-square.pulse-effect {
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

/* Badges */
.badge.badge-notification {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 100%;
    width: 1.125rem;
    height: 1.125rem;
    padding: 0;
    font-size: 0.75rem;
    line-height: unset;
    z-index: 1;
    -webkit-transform: translate(-75%, -25%);
    -moz-transform: translate(-75%, -25%);
    -ms-transform: translate(-75%, -25%);
    -o-transform: translate(-75%, -25%);
    transform: translate(-75%, -25%);
}

/* Popover */
.popover.custom-popover {
    z-index: 1011;
}

.popover.custom-popover.fade {
    -webkit-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.popover.popover-xs {
    min-width: 0;
}

.popover {
    min-width: 17.25rem;
    border: 0 none;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    -webkit-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-link {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0;
}

.btn-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    padding: 0 2.5rem;
    font-weight: 600;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn-square.outline {
    border-width: 1px;
    border-style: solid;
}

/* Form */
/* Remove Arrows/Spinners */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none !important;
}

.form-group {
    position: relative;
    margin-bottom: 1.875rem;
}

.form-group label {
    font-weight: 600;
    padding-left: 0.75em;
    margin-bottom: 0.25rem;
}

.form-control {
    height: 3.125rem;
    font-size: 0.875rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

.form-control:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.form-control {
    height: 3.125rem;
    font-size: 0.875rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
}

.form-control.input-with-icon {
    padding: 0 .75rem 0 3rem;
    border: 0 none;
}

.invalid-feedback {
    padding-left: 0.75rem;
}

textarea.form-control.height-10 {
    min-height: calc(10em + (.75rem + 2px));
}

/* Intl-tel-input */
.input-with-country-code .iti {
    width: 100%;
}

:root {
    --iti-hover-color: #f5f6f8;
    --iti-border-color: #d9d9d9;
    --iti-dialcode-color: #002855;
}

.iti__country-container {
    padding-right: 0;
}

.iti__country-container,
.iti__selected-country,
.iti__selected-country-primary {
    -webkit-border-top-left-radius: 0.5rem;
    -webkit-border-bottom-left-radius: 0.5rem;
    -moz-border-radius-topleft: 0.5rem;
    -moz-border-radius-bottomleft: 0.5rem;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.iti input.iti__tel-input {
    padding-left: 62px !important;
}

.iti__selected-country-primary {
    padding: 0 0.75rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.iti--inline-dropdown .iti__dropdown-content {
    margin-top: 1rem;
    padding: 1rem 0.75rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: none;
}

.iti__search-input {
    min-height: 2.5rem;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    outline: none;
}

.iti__country-list {
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
}

.iti__country {
    padding: 0.5rem 1rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.iti__dial-code {
    font-weight: 600;
}

/* Intl-tel-input PopUp*/
.iti--fullscreen-popup.iti--container {
    padding: 2.5rem;
}

.iti--fullscreen-popup .iti__dropdown-content {
    padding: 1.25rem;
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.iti--fullscreen-popup .iti__close-button {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
}

.iti--fullscreen-popup .iti__close-button svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Media */
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.media .media-body {
    -ms-flex: 1;
    flex: 1;
}

/* Choices */
.choices {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.choices__inner {
    padding: .375rem .75rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    border-radius: .5rem;
    min-height: 3.125rem;
}

.is-open .choices__inner {
    border-radius: 0.5rem 0.5rem 0 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 0 0 .5rem 0.5rem;
    z-index: 2;
}

.choices[data-type*="select-multiple"]::after {
    content: "";
    border: 0 none;
    position: absolute;
    right: 11.5px;
    top: 50%;
    pointer-events: none;
}

.choices[data-type*="select-one"]::after,
.choices[data-type*="select-multiple"]::after {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0 none;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 12px 12px;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -moz-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}


.choices[data-type*="select-one"].is-open::after,
.choices[data-type*="select-multiple"].is-open::after {
    margin: 0;
    border: 0 none;
    -webkit-transform: translateY(-50%) rotate(18deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.choices[data-type*="select-one"] .choices__list--dropdown .choices__item--selectable,
.choices[data-type*="select-one"] .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 0.625rem;
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 0.5rem 0.5rem;
}

.is-flipped .choices__list--dropdown,
.is-flipped .choices__list[aria-expanded] {
    border-radius: 0.5rem 0.5rem 0 0;
}

.choices__input,
.choices[data-type*="select-one"] .choices__input {
    background-color: transparent;
    font-size: 0.875rem;
    height: 1.875rem;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.choices[data-type*="select-one"] .choices__input {
    padding: .375rem .75rem;
    min-height: 3rem;
}

.choices__list--multiple .choices__item {
    display: inline-flex;
    align-items: center;
    border: 0 none;
    margin: 0.313rem 0.625rem 0.313rem 0;
    height: 1.875rem;
    font-size: 0.875rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

.choices[data-type*="select-one"] .choices__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 1.875rem;
    padding-bottom: 0.375rem;
}

.choices__list--multiple .choices__item.is-highlighted {
    border: 0 none;
}

.choices__list--multiple .choices__item[data-deletable],
.choices[data-type*="select-one"] .choices__list--single {
    padding-right: 0.625rem;
}

.choices[data-type*="select-one"] .choices__list--single {
    padding: 0;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

.choices[data-type*="select-one"] .choices__list--single .choices__item {
    position: relative;
    display: block;
    align-items: center;
    border: 0 none;
    margin: 0;
    height: 1.875rem;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

.choices[data-type*="select-one"] .choices__button,
.choices[data-type*="select-multiple"] .choices__button {
    background-size: 1rem;
    width: 1rem;
    opacity: 1;
    border-left: 0 none;
    margin-right: 0;
    line-height: 1.5;
}

.choices[data-type*="select-one"] .choices__button {
    right: 0.625rem;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
    opacity: 1;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
    font-size: 0.875rem;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    word-break: break-word;
}

.choices__placeholder {
    opacity: 0.7;
}

/* Upload documents */
.upload-documents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.875rem;
}

.upload-documents .btn {
    display: inline-flex;
    align-items: center;
    border: 0 none;
    text-decoration: none;
    text-align: left;
    word-break: break-word;
    margin: 0.313rem 0.625rem 0.313rem 0;
    padding: 0.25rem 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

.upload-documents .btn svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.313rem;
}

/* Dropzone */
.dropArea {
    position: relative;
}

.dropArea::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.dropzone-holder {
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.dropzone-holder:hover {
    cursor: pointer;
}

.dropzone-holder .dropzone-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.875rem;
}

.form-group .dropzone-holder .dropzone-text label {
    display: inline-flex;
    justify-content: center;
    width: auto;
    height: 2.5rem;
    padding-left: 2.5rem;
    font-size: 0.875rem;
}

.dropzone-holder .dropzone-text h2 {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
}

.dropzone-holder .dropzone-text .btn {
    margin: 1.625rem 0;
}

.dropzone-holder .dropzone-text p {
    display: block;
    width: 100%;
    text-align: center;
}

.dropzone-holder .dropzone-text p:last-child {
    margin-bottom: 0;
}


/* Toast */
.toast-container {
    position: fixed;
    padding: 0 0.75rem;
    top: 12rem;
    left: 50%;
    z-index: 1070;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.toast:not(.showing):not(.show) {
    opacity: 0;
    visibility: hidden;
}

.toast {
    position: relative;
    width: 34.5rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    padding: 0.625rem 5.625rem 0.625rem 1.375rem;
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
}

.toast .toast-body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-basis: 100%;
    padding: 0.75rem 0;
}

.toast .toast-content {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    padding-left: 3.438rem;
}

.toast .toast-border {
    width: 0.375rem;
    min-width: 0.375rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
}

.toast .toast-icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.toast .toast-icon svg {
    width: auto;
    height: 1.25rem;
}

.toast h3 {
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.toast p {
    width: 100%;
    margin-bottom: 0;
}

.toast a {
    font-weight: 500;
}

.toast ul {
    padding-left: 0;
    margin-bottom: 0;
}

.toast ul li {
    list-style: none;
}

.toast .btn-close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 2.25rem;
    height: 2.25rem;
    position: absolute;
    top: 50%;
    right: 1.375rem;
    text-transform: uppercase;
    background-image: none;
    opacity: 1;
    z-index: 2;
    box-sizing: border-box;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    border: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.toast .btn-close svg {
    width: 0.75rem;
    height: auto;
}

/* Dropdown */
.dropdown-toggle-no-caret:after {
    display: none;
}

.dropdown-menu.dropdown-sm {
    min-width: 9rem;
    max-width: 9rem;
}

.dropdown-menu.dropdown-md {
    min-width: 12.5rem;
    max-width: 12.5rem;
}

.dropdown-menu.dropdown-lg {
    min-width: 17.5rem;
    max-width: 17.5rem;
}

.dropdown-menu.dropdown-xl {
    min-width: 20rem;
    max-width: 20rem;
}

.dropdown-custom.dropdown-menu {
    font-size: 0.875rem;
    border: 0 none;
    padding: 1rem;
    -webkit-border-top-left-radius: 0.625rem;
    -moz-border-radius-topleft: 0.625rem;
    border-top-left-radius: 0.625rem;
    -webkit-border-top-right-radius: 0.625rem;
    -moz-border-radius-topright: 0.625rem;
    border-top-right-radius: 0.625rem;
    -webkit-border-bottom-left-radius: 0.625rem;
    -moz-border-radius-bottomleft: 0.625rem;
    border-bottom-left-radius: 0.625rem;
    -webkit-border-bottom-right-radius: 0.625rem;
    -moz-border-radius-bottomright: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

.dropdown-custom .dropdown-content {
    padding: 0;
}

.dropdown-custom .dropdown-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.dropdown-custom .dropdown-item:not(:last-of-type) {
    margin-bottom: 0.313rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    white-space: normal;
}

/* Opacity hover 0.8 */
.btn:hover,
.search-col .media:hover .media-image img,
.btn-square:hover,
.col-employee .employee-item-box .employee-contacts a:hover {
    opacity: 0.8;
}

/* Header */
.header-container {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    display: block;
    z-index: 1020;
}

.header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 5rem;
    padding: 0 1.5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

/* Top header */
.top-header-container {
    position: relative;
    display: block;
    z-index: 1021;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0 1.5rem;
    z-index: 1021;
}

.top-header .col-top-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.top-header .col-top-logo svg {
    width: auto;
    height: 2.75rem;
}

.top-header .col-top-logo a {
    display: flex;
    align-items: center;
}

.top-header .col-top-logo .logo-text {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    font-weight: 500;
}

.top-header .col-top-logo .logo-text span {
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.top-header .col-header-options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 0 0%;
}

.top-header .col-header-options .btn-group .dropdown-toggle {
    position: relative;
    height: 2.5rem;
    font-size: 0.875rem;
    padding: 0 1.25rem 0 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.top-header .col-header-options .btn-group .dropdown-menu {
    margin-top: 0.675rem !important;
}

.top-header .col-header-options .btn-group .btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 0.875rem;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.top-header .col-header-options .btn-group .dropdown-toggle>svg {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.875rem;
    height: 0.875rem;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -moz-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.top-header .col-header-options .btn-group .dropdown-toggle.show>svg {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.top-header .col-header-options .btn-group a.top-header-link {
    display: flex;
    align-items: center;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 0.875rem;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.top-header .col-header-options .btn-group:not(:last-of-type) {
    margin-right: 1rem;
}

.top-header .col-header-options .btn-group .btn-language .media-image {
    margin-right: 0.625rem;
}

.top-header .col-header-options .btn-group .top-header-link .media-image,
.top-header .col-header-options .btn-group .btn-search .media-image {
    margin-right: 0;
}

.top-header .col-header-options .btn-group .popover-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
}

.top-header-popover.popover.custom-popover {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.313rem !important;
    z-index: 1021;
}

.top-header .col-header-options .dropdown-language .dropdown-item .media-image,
.top-header .col-header-options .btn-group .media-image svg {
    width: 1.375rem;
    height: 1.375rem;
}

.top-header .col-header-options .btn-group .media-image span {
    font-size: 1.625rem;
}

.top-header .col-header-options .btn-language .media-image,
.top-header .col-header-options .btn-language .media-image .flag-icon {
    height: 2.5rem;
    width: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.top-header .col-header-options .dropdown-language .dropdown-item .flag-icon {
    width: 1.375rem;
    height: 1.375rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.top-header .col-header-options .btn-group .btn-search:hover,
.top-header .col-header-options .btn-group .top-header-link:hover {
    opacity: 1;
}

/* Header nav */
.header .col-header-center .header-center-holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .col-header-center .header-center-holder nav {
    display: block;
    width: 100%;
}

.header .col-header-center .header-center-holder nav>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.header .col-header-center .header-center-holder nav>ul li {
    list-style: none;
}

.header .col-header-center .header-center-holder nav>ul li.dropdown .dropdown-menu li:not(:last-of-type) {
    margin-bottom: 0.313rem;
}

.header .col-header-center .header-center-holder nav>ul>li:not(:last-of-type) {
    margin-right: 1.25rem;
}

.header .col-header-center .header-center-holder nav>ul li.dropdown .btn-nav {
    padding: 0 1.25rem 0 0;
}

.header .col-header-center .header-center-holder nav>ul li .btn-nav {
    display: flex;
    align-items: center;
    height: 3.5rem;
    padding: 0 0.5rem 0 0;
    font-size: 1rem;
    font-weight: 600;
}

.header .col-header-center .header-center-holder nav>ul li .btn-nav .icon-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin-right: 0;
    height: auto;
    width: 2.5rem;
}

.header .col-header-center .header-center-holder nav>ul li .btn-nav .icon-holder svg {
    width: 1.375rem;
    height: 1.375rem;
    margin-right: 0;
}

.header .col-header-center .header-center-holder nav>ul li .btn-nav .icon-holder span {
    font-size: 1.625rem;
}

.header .col-header-center .header-center-holder nav>ul li .dropdown-toggle>svg {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0.875rem;
    height: 0.875rem;
    margin: 0;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -moz-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.header .col-header-center .header-center-holder nav>ul li .dropdown-toggle.show>svg {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

/* Header Search */
.top-header .col-header-options .btn-search svg:last-child,
.top-header .col-header-options .btn-search.collapsed svg:first-child {
    display: block;
}

.top-header .col-header-options .btn-search svg:first-child,
.top-header .col-header-options .btn-search.collapsed svg:last-child {
    display: none;
}

.top-header .col-header-options .btn-search svg:last-child {
    width: 1.625rem;
    height: 1.625rem;
}

.header .col-header-center .header-center-holder.search-open nav {
    visibility: hidden;
    opacity: 0;
}

.header .col-header-center .header-center-holder .header-search {
    position: absolute;
    width: 100%;
    z-index: 1;
    transition: none;
}

.header .col-header-center .header-center-holder .header-search.collapsing,
.header .col-header-center .header-center-holder .header-search.collapsing .form-control {
    display: none;
}

.header .col-header-center .header-center-holder .search-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    max-width: 25rem;
    margin-right: 1.25rem;
}

.search-box svg.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0.625rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.header .col-header-center .header-center-holder .search-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 60vw;
}

.header .col-header-center .header-center-holder .search-box .input-group .form-control {
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.header .col-header-center .header-center-holder .search-box .input-group.focused:before {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.1);
    content: '';
    height: 100vh;
    z-index: 0;
    cursor: default;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header .col-header-center .header-center-holder .search-box .input-group .form-control.input-with-icon {
    padding: 0 .75rem 0 3rem;
}

.search-box svg.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 1rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

/* Autocomplete */
.autocomplete {
    position: absolute;
    top: calc(100% - 0.5rem);
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.25rem 0 0.625rem 0;
    font-size: 0.875rem;
    z-index: 5;
    -webkit-border-bottom-right-radius: 0.625rem;
    -webkit-border-bottom-left-radius: 0.625rem;
    -moz-border-radius-bottomright: 0.625rem;
    -moz-border-radius-bottomleft: 0.625rem;
    border-bottom-right-radius: 0.625rem;
    border-bottom-left-radius: 0.625rem;
}

.search-results-holder {
    display: flex;
    align-items: flex-start;
    flex-basis: 100%;
    overflow: hidden;
}

.search-col {
    overflow: hidden;
}

.search-col:first-child {
    width: 15rem;
    padding-left: 0;
}

.search-col:last-child {
    flex: 1 0 0%;
}

.search-col .search-content {
    height: 50vh;
    padding: 0 1rem 1rem 1rem;
    overflow-x: hidden;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
}

.search-results {
    display: none;
}

.search-results.active {
    display: block;
}

.search-col>h3 {
    padding-left: 1rem;
    padding-bottom: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
}

.search-col .media {
    position: relative;
    padding: 1rem 0;
}

.search-col .media.top-aligned {
    align-items: flex-start;
}

.search-col .media.top-aligned .media-body {
    margin-top: 0.25rem;
}

.search-col .media:first-child {
    padding: 0.5rem 0 1rem 0;
}

.search-col .media:last-child {
    padding: 1rem 0 0 0;
}

.search-col .media-image {
    position: relative;
    width: 6.5rem;
    margin-right: 1.25rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 1;
}

.search-col .media-image::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.search-col .media-image .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.search-col .media-image::after {
    content: "";
    height: 100%;
    left: 0;
    mix-blend-mode: darken;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.search-col .media-image .top-sticker {
    top: 0.313rem;
    left: 0.313rem;
    height: 1.625rem;
    padding: 0 0.625rem;
    font-size: 0.75rem;
}

.search-col .media-image img {
    max-width: 6.5rem;
    height: auto;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.search-col .media-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.search-col .media-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.search-col .media-body h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.search-col .media-body .result-date {
    font-size: 0.75rem;
}

.search-col .media-body .status {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-col .media-body .status .status-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.75rem;
}

.search-col .media-body .item-price {
    position: relative;
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.search-col .media-body .item-price span {
    display: block;
    width: 100%;
}

.search-col .media-body .item-price.discount.animation>div>div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    height: auto;
}

.search-col .media-body .item-price.discount.animation .animation-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-col .vertical-menu {
    padding: 0.5rem 0 0 0;
    margin: 0;
}

.search-col .vertical-menu li {
    list-style: none;
}

.search-col .vertical-menu li:not(:last-of-type) {
    margin-bottom: 0.313rem;
}

.search-col .vertical-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    text-underline-offset: 0.188rem;
    cursor: pointer;
}

.search-col .media {
    position: relative;
}

/* Offcanvas */
.offcanvas {
    border: 0 none !important;
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
}

.modal-backdrop,
.modal-backdrop.show,
.offcanvas-backdrop.show {
    opacity: unset;
}

.modal-backdrop,
.modal-backdrop.show,
.my-backdrop,
.offcanvas-backdrop,
.iti--fullscreen-popup.iti--container {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.offcanvas-header {
    position: relative;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1rem 4.5rem 1rem 1.5rem;
    min-height: 5rem;
}

.offcanvas-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    width: 100%;
}

.offcanvas .offcanvas-header .btn-close {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 2.25rem;
    height: 2.25rem;
    background-image: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}

.offcanvas .btn-close svg {
    width: 0.75rem;
    height: auto;
}

.offcanvas-body {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.offcanvas-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 0 none;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    z-index: 1;
}

.offcanvas-footer .btn:not(:last-child) {
    margin-right: 1rem;
}

/* Custom Accordion */
.custom-accordion .accordion-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: unset;
}

.custom-accordion .accordion-item {
    position: relative;
    border: 0 none;
    z-index: 4;
}

.custom-accordion .accordion-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
}

.custom-accordion .accordion-button {
    font-size: 1rem;
    font-weight: 500;
    padding-right: 1.75rem;
    box-shadow: none;
}

.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button:focus {
    z-index: unset;
}

.custom-accordion .accordion-button::after,
.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    display: none;
}

.custom-accordion .accordion-button svg {
    position: absolute;
    top: 50%;
    right: 0.375rem;
    width: 0.875rem;
    height: 0.875rem;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.custom-accordion .accordion-button.collapsed svg {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -moz-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}

.custom-accordion .accordion-body {
    padding: 0 0 1rem 0;
}

.custom-accordion .accordion-body a {
    text-decoration: underline;
}

.custom-accordion .accordion-body a:hover {
    text-decoration: none;
}

/* Splide */

/* Splide controls */
.splide__arrow {
    top: 50%;
    width: 3rem;
    height: 3rem;
    border-width: 1px;
    border-style: solid;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.splide__arrow:hover:not(:disabled) {
    opacity: 1;
}

.splide__arrow,
.splide__arrow:focus {
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1) !important;
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1) !important;
}

.splide__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

.splide__arrow:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

/* Splide pagination */
.splide__pagination li {
    display: inline-flex;
}

/* Carousel progress */
.carousel-progress {
    margin-top: 1.875rem;
}

.carousel-progress-bar {
    height: 2px;
    transition: width 1000ms ease;
    width: 0;
}

/* Splide Main */
.splide-main {
    margin-bottom: 6rem;
}

.splide-main .splide__arrow {
    visibility: hidden;
    opacity: 0;
}

.splide-main:hover .splide__arrow {
    visibility: visible;
    opacity: 1;
}

.splide-main .splide__arrow--prev {
    left: -5rem;
}

.splide-main .splide__arrow--next {
    right: -5rem;
}

.splide-main .slide-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
}

.splide-main .content-holder {
    padding-right: 3rem;
}

.splide-main .content-holder h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.splide-main .content-holder p {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0;
}

.splide-main .content-holder .btn {
    margin-top: 2rem;
    font-size: 1rem;
    height: 3.5rem;
    font-weight: 600;
    width: 15rem;
}

.splide-main .image-holder {
    position: relative;
    width: 100%;
    margin: 3rem 0;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 1;
}

.splide-main .image-holder::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.splide-main .image-holder .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.splide__pagination {
    top: 100%;
    bottom: unset;
    margin-top: 1rem;
}

.splide__pagination__page {
    width: 0.625rem;
    height: 0.625rem;
    opacity: 1;
}

.splide__pagination__page.is-active {
    transform: scale(1);
}

.splide__video {
    z-index: 10;
}

.splide__video .splide__video__play {
    width: 5rem;
    height: 5rem;
    padding: 0;
    opacity: 1;
    display: none;
}

.splide__video .splide__video__play:hover {
    opacity: 0.8;
}

/* Page section */
.page-section {
    padding: 7rem 0 7rem 0;
}

/* Section title */
.section-title {
    position: relative;
    display: block;
    margin-bottom: 4rem;
}

.latest-news .section-title.animated-line,
.how-to-steps .section-title.animated-line {
    margin-bottom: 3.5rem;
}

.section-title.animated-line::after {
    content: '';
    position: absolute;
    bottom: calc(-1.5rem - 1.5px);
    left: 0;
    transform: scaleX(0);
    width: 15rem;
    height: 3px;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.section-title.animated-line.visible::after {
    transform: scaleX(1);
}

.section-title time {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem 0;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.section-title p a {
    text-decoration: underline;
}

.section-title p a:hover {
    text-decoration: none;
}

/* Figure logo */
.section {
    position: relative;
}

.section>.container {
    position: relative;
    z-index: 2;
}

.figure-logo {
    position: absolute;
    z-index: 1;
}

.figure-logo svg {
    position: relative;
    width: auto;
    height: 20rem;
    z-index: 1;
}

.figure-logo.figure-top {
    top: 3rem;
    right: 1rem;
    opacity: 0.01;
}

.figure-logo.figure-bottom {
    bottom: 3rem;
    left: 1rem;
    opacity: 0.01;
}

.counter-section .figure-center {
    top: 50%;
    opacity: 0.01;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.counter-section .figure-center.left {
    left: 1rem;
}

.counter-section .figure-center.right {
    right: 1rem;
}

.benefits-section .figure-bottom {
    opacity: 0.15;
    bottom: 6rem;
    left: 5rem;
}

.faq-section .figure-bottom {
    opacity: 0.1;
    bottom: 6rem;
    left: 5rem;
}

.footer-general .figure-logo.figure-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.015;
}

/* How to steps */
.page-section.how-to-steps {
    padding: 7rem 0 7rem 0;
}

.how-to-col {
    margin-bottom: 3rem;
}

.how-to-col:nth-last-child(1),
.how-to-col:nth-last-child(2) {
    margin-bottom: 0;
}

.how-to-item {
    height: 100%;
    padding: 2rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.how-to-item .media {
    position: relative;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.how-to-item .media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 0;
    margin-bottom: 1.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.how-to-item .media .media-image svg {
    width: 1.375rem;
    height: 1.375rem;
}

.how-to-item .media .media-image span {
    font-size: 2rem;
}

.how-to-item .media .media-body {
    flex: none;
    width: 100%;
}

.how-to-item .media .media-body h2 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 600;
}

.how-to-item a {
    text-decoration: underline;
}

.how-to-item a:hover {
    text-decoration: none;
}

/* Title item */
.title-item {
    padding-top: 3rem;
}

.title-item .title-holder h2 {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    z-index: 2;
}

.title-item p {
    margin-bottom: 2rem;
}

.title-item .button-holder .btn {
    width: 15rem;
}

/* FAQ section */
.faq-section .custom-accordion.faq-accordion .accordion-item {
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-section .custom-accordion.faq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 3rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-button {
    padding: 2rem 3rem 2rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-section .custom-accordion.faq-accordion .accordion-button svg {
    width: 1.25rem;
    height: 1.25rem;
    right: 1rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body {
    padding: 0 3rem 2rem 2rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-section .image-holder img {
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.faq-section .view-all-items {
    margin-top: 2rem;
}

.faq-section .view-all-items p {
    margin: 0;
}

.faq-section .title-item .view-all-items,
.faq-section .title-item .view-all-items .button-holder {
    justify-content: flex-start;
}

.faq-section .view-all-items .button-holder .btn {
    width: 15rem;
}

/* FAQ listing */
.faq-section.listing-faq-section {
    margin-bottom: 3rem;
}

.faq-section.listing-faq-section .faq-section-border {
    margin-bottom: 1rem;
    padding: 2rem 0;
}

.faq-section.listing-faq-section .faq-aside-col .faq-aside-holder {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 100%;
    padding-right: 3rem;
}

.faq-section.listing-faq-section .faq-title {
    position: sticky;
    position: -webkit-sticky;
    top: 7rem;
    padding: 0;
    margin: 1rem 0 2.65rem 0;
}

.faq-section.listing-faq-section .faq-title .media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.faq-section.listing-faq-section .faq-title .media .media-image span {
    font-size: 2rem;
}

.faq-section.listing-faq-section .faq-title .media .media-body h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-section.listing-faq-section .custom-accordion.faq-accordion {
    margin: 1rem 0;
}

.faq-section.listing-faq-section .custom-accordion.faq-accordion .accordion-item {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.faq-section.listing-faq-section .custom-accordion.faq-accordion .accordion-item:not(:last-child) {
    margin-bottom: 3rem;
}

/* View all items */
.view-all-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.view-all-items .button-holder {
    display: flex;
    justify-content: center;
    width: 100%;
}

.view-all-items .button-holder .btn {
    width: 15rem;
}

.view-all-items .counter-holder {
    margin-top: 2rem;
}

/* Latest news splide */
.latest-news {
    padding: 0 0 7rem 0;
}

.latest-news .splide__arrow {
    visibility: hidden;
    opacity: 0;
}

.latest-news:hover .splide__arrow {
    visibility: visible;
    opacity: 1;
}

.latest-news:hover .splide__arrow:disabled {
    visibility: visible;
    opacity: 0.3;
}

.latest-news .splide__arrow--prev {
    left: -5rem;
}

.latest-news .splide__arrow--next {
    right: -5rem;
}

.latest-news .splide__pagination {
    top: 100%;
    bottom: unset;
    margin-top: 1rem;
}

/* News */
.listing-news-section {
    padding-bottom: 7rem;
}

.listing-news-section .news-item {
    margin-bottom: 5rem;
}

.listing-news-section .view-all-items {
    margin-top: 2rem;
}

.news-item .image-holder {
    position: relative;
    width: 100%;
    -webkit-border-top-left-radius: 0.625rem;
    -webkit-border-top-right-radius: 0.625rem;
    -moz-border-radius-topleft: 0.625rem;
    -moz-border-radius-topright: 0.625rem;
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
    overflow: hidden;
    z-index: 1;
}

.news-item .image-holder::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.news-item .image-holder .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.news-item .item-content {
    position: relative;
    -webkit-border-top-left-radius: 0.375rem;
    -webkit-border-top-right-radius: 0.375rem;
    -moz-border-radius-topleft: 0.375rem;
    -moz-border-radius-topright: 0.375rem;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    padding: 0.875rem 1.25rem 0.875rem 1.25rem;
    margin: -2.185rem 1.25rem 0 1.25rem;
    z-index: 10;
}

.news-item .item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
}

.news-item .item-header a,
.news-item .item-header .icon-holder {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.news-item .item-header a.btn-link {
    text-decoration: none;
    padding-left: 0;
}

.news-item .item-header a:not([href]) {
    cursor: default;
}

.news-item .item-header a svg,
.news-item .item-header .icon-holder svg {
    width: 1.375rem;
    height: 1.375rem;
    margin-right: 0.5rem;
}

.news-item .item-header p {
    margin-bottom: 0;
}

.news-item h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

.news-item h3 a {
    font-weight: 600;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Featured links */
.featured-links-section {
    top: 1px;
}

.featured-links-section .link-item {
    position: relative;
    padding: 1rem 2.5rem 1rem 1rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.featured-links-section .link-item>svg {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 0.875rem;
    height: 0.875rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.featured-links-section .link-item:hover>svg {
    right: 0.875rem;
    opacity: 1;
}

.featured-links-section .link-item .media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.featured-links-section .link-item .media .media-image span {
    font-size: 2rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.featured-links-section .link-item .media .media-body h2 {
    font-size: 0.875rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Featured logos splide */
.page-section.featured-logos {
    padding: 3rem 0;
}

.featured-logos .splide__arrow {
    visibility: hidden;
    opacity: 0;
}

.featured-logos:hover .splide__arrow {
    visibility: visible;
    opacity: 1;
}

.featured-logos .splide__arrow--prev {
    left: -5rem;
}

.featured-logos .splide__arrow--next {
    right: -5rem;
}

.featured-logos img {
    transform: scale(1, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.featured-logos a:hover img {
    transform: scale(1.07, 1.07);
}

/* Counter section */
.counter-section {
    position: relative;
}

.counter-section .counter-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    margin-bottom: 2rem;
}

.counter-section .counter-title .icon-holder {
    display: flex;
    justify-content: center;
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.counter-section .counter-title .icon-holder .item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.counter-section .counter-title .icon-holder .item-icon svg {
    width: 2rem;
}

.counter-section .counter-title .icon-holder .item-icon span {
    font-size: 2rem;
}

.counter-section .counter-title h2 {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.25rem;
    text-align: center;
}

.counter-section .counter-title p {
    margin-bottom: 3rem;
    text-align: center;
}

.counter-section .counter-title .button-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.counter-section .counter-title .button-holder .btn {
    width: 15rem;
}

/* Counter */
.counter-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.counter-content {
    display: block;
    width: 100%;
}

.counter-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 15rem;
    padding: 1.5rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
}

.stat-figure {
    display: block;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.stat-number {
    display: block;
    width: 100%;
    text-align: center;
}

.stat-caption {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Breadcrumb */
.breadcrumb {
    padding: 2.25rem 0 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.breadcrumb-item+.breadcrumb-item::before {
    position: relative;
    top: 2px;
    width: 0.875rem;
    height: auto;
    padding: 0;
    margin-right: 0.25rem;
}

/* News article */
.article-holder {
    margin: 0;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.article-options-section {
    padding: 3rem 0 7rem 0;
}

.article-options-holder {
    padding: 2rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.article-options-section .options-title {
    display: block;
    width: 100%;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-options-section .tag-items-holder {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.article-options-section .tag-items-holder .tag-item {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.article-options-section .social-share-holder {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: right;
}

.article-options-section .social-share-holder .social-links {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.article-options-section .social-share-holder .social-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.article-options-section .social-share-holder .social-links ul li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.article-options-section .social-share-holder .social-links ul li:not(:last-child) {
    margin-right: 1rem;
}

.article-options-section .social-share-holder .social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.article-options-section .social-share-holder .social-links ul li a:hover {
    text-decoration: none;
    transform: scale(1.07, 1.07);
}

.article-options-section .social-share-holder .social-links ul li svg {
    width: 1.375rem;
    height: 1.375rem;
}

.article-main-image {
    margin-bottom: 3rem;
}

.article-main-image .image-holder {
    position: relative;
    width: 100%;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 1;
}

.article-main-image .image-holder::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.article-main-image .image-holder .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.splide-article {
    margin-bottom: 5rem;
}

.splide-article .splide .image-holder {
    position: relative;
    width: 100%;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 1;
}

.splide-article .splide .image-holder::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.splide-article .splide .image-holder .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.splide-article .splide__track {
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.splide-article .splide__arrow {
    visibility: hidden;
    opacity: 0;
}

.splide-article:hover .splide__arrow {
    visibility: visible;
    opacity: 1;
}

.splide-article .splide__arrow--prev {
    left: 2rem;
}

.splide-article .splide__arrow--next {
    right: 2rem;
}

.inner-content-section .main-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.875rem 0 1.25rem 0;
}

.inner-content-section .main-content .image-holder {
    position: relative;
    display: block;
    margin: 3rem 0;
    width: 100%;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    overflow: hidden;
    z-index: 1;
}

.inner-content-section .main-content .image-holder::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.inner-content-section .main-content .image-holder .item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.inner-content-section .main-content ul li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.inner-content-section .main-content a {
    text-decoration: underline;
}

.inner-content-section .main-content a:hover {
    text-decoration: none;
}

.inner-content-section .news-video-holder {
    display: block;
    width: 100%;
    margin: 3rem 0 0 0;
    overflow: hidden;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.inner-content-section .download-documents {
    display: block;
    margin-top: 3rem;
    padding-top: 2rem;
}

.inner-content-section .download-documents h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.875rem;
}

.inner-content-section .download-documents .document-item-col {
    margin-bottom: 3rem;
}

.inner-content-section .download-documents .document-item {
    position: relative;
    padding: 2rem;
    height: 100%;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.inner-content-section .download-documents .document-item .media {
    position: relative;
}

.inner-content-section .download-documents .document-item .media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.inner-content-section .download-documents .document-item .media {
    display: inline-flex;
    align-items: flex-start;
}

.inner-content-section .download-documents .document-item .media .media-image svg {
    width: 1.75rem;
    height: 1.75rem;
}

.inner-content-section .download-documents .document-item .media .media-body time {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.inner-content-section .download-documents .document-item .media .media-body .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.inner-content-section .download-documents .document-item .media .media-body .file-type {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 1rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.inner-content-section .download-documents .document-item .media .media-body .file-type .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.313rem;
}

.inner-content-section .download-documents .document-item .media .media-body .file-type .icon-holder svg {
    width: 1.375rem;
    height: 1.375rem;
}

/* Leaderline DESKTOP */
.leaderline-holder-desktop {
    position: relative;
    display: block;
    width: 100%;
    height: 1121px;
}

.leaderline-holder-desktop .leaderline-item {
    position: absolute;
    padding: 1rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.leaderline-holder-desktop .leaderline-item img {
    display: block;
    margin: 0 auto 0.5rem auto;
    width: 5rem;
    height: auto;
}

.leaderline-holder-desktop .leaderline-item .ats-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.leaderline-holder-desktop .leaderline-item .ats-logo svg {
    width: 1.75rem;
    height: 1.75rem;
}

.leaderline-holder-desktop .leaderline-item h2 {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.leaderline-holder-desktop .element-marker {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    border-width: 2px;
    border-style: solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.leaderline-holder-desktop .element-marker.top {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.leaderline-holder-desktop .element-marker.right {
    top: 50%;
    right: 0;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.leaderline-holder-desktop .element-marker.bottom {
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.leaderline-holder-desktop .element-marker.left {
    top: 50%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Leaderline items */
.leaderline-holder-desktop .item-1 {
    width: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.leaderline-holder-desktop .item-2 {
    width: 137px;
    top: 149px;
    left: 50%;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}

.leaderline-holder-desktop .item-3 {
    width: 146px;
    top: 215px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.leaderline-holder-desktop .item-4 {
    width: 144px;
    top: 281px;
    left: 50%;
    -webkit-transform: translateX(-194px);
    -moz-transform: translateX(-194px);
    -ms-transform: translateX(-194px);
    -o-transform: translateX(-194px);
    transform: translateX(-194px);
}

.leaderline-holder-desktop .item-5 {
    width: 170px;
    top: 301px;
    left: 50%;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}

.leaderline-holder-desktop .item-6 {
    width: 140px;
    top: 367px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.leaderline-holder-desktop .item-7 {
    width: 150px;
    top: 481px;
    left: 50%;
    -webkit-transform: translateX(-200px);
    -moz-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    -o-transform: translateX(-200px);
    transform: translateX(-200px);
}

.leaderline-holder-desktop .item-8 {
    width: 187px;
    top: 501px;
    left: 50%;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}

.leaderline-holder-desktop .item-9 {
    width: 175px;
    top: 610px;
    left: 50%;
    -webkit-transform: translateX(-194px);
    -moz-transform: translateX(-194px);
    -ms-transform: translateX(-194px);
    -o-transform: translateX(-194px);
    transform: translateX(-194px);
}

.leaderline-holder-desktop .item-10 {
    width: 161px;
    top: 610px;
    left: 50%;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
}

.leaderline-holder-desktop .item-11 {
    width: 202px;
    top: 610px;
    left: 50%;
    -webkit-transform: translateX(201px);
    -moz-transform: translateX(201px);
    -ms-transform: translateX(201px);
    -o-transform: translateX(201px);
    transform: translateX(201px);
}

.leaderline-holder-desktop .item-12 {
    width: 176px;
    top: 691px;
    left: 50%;
    -webkit-transform: translateX(-377px);
    -moz-transform: translateX(-377px);
    -ms-transform: translateX(-377px);
    -o-transform: translateX(-377px);
    transform: translateX(-377px);
}

.leaderline-holder-desktop .item-13 {
    width: 145px;
    top: 815px;
    left: 50%;
    -webkit-transform: translateX(-103px);
    -moz-transform: translateX(-103px);
    -ms-transform: translateX(-103px);
    -o-transform: translateX(-103px);
    transform: translateX(-103px);
}

.leaderline-holder-desktop .item-14 {
    width: 130px;
    top: 815px;
    left: 50%;
    -webkit-transform: translateX(-243px);
    -moz-transform: translateX(-243px);
    -ms-transform: translateX(-243px);
    -o-transform: translateX(-243px);
    transform: translateX(-243px);
}

.leaderline-holder-desktop .item-15 {
    width: 125px;
    top: 815px;
    left: 50%;
    -webkit-transform: translateX(-378px);
    -moz-transform: translateX(-378px);
    -ms-transform: translateX(-378px);
    -o-transform: translateX(-378px);
    transform: translateX(-378px);
}

.leaderline-holder-desktop .item-16 {
    width: 172px;
    top: 815px;
    left: 50%;
    -webkit-transform: translateX(52px);
    -moz-transform: translateX(52px);
    -ms-transform: translateX(52px);
    -o-transform: translateX(52px);
    transform: translateX(52px);
}

.leaderline-holder-desktop .item-17 {
    width: 151px;
    top: 815px;
    left: 50%;
    -webkit-transform: translateX(234px);
    -moz-transform: translateX(234px);
    -ms-transform: translateX(234px);
    -o-transform: translateX(234px);
    transform: translateX(234px);
}

.leaderline-holder-desktop .item-18 {
    width: 151px;
    top: 965px;
    left: 50%;
    -webkit-transform: translateX(150px);
    -moz-transform: translateX(150px);
    -ms-transform: translateX(150px);
    -o-transform: translateX(150px);
    transform: translateX(150px);
}

.leaderline-holder-desktop .item-19 {
    width: 130px;
    top: 965px;
    left: 50%;
    -webkit-transform: translateX(321px);
    -moz-transform: translateX(321px);
    -ms-transform: translateX(321px);
    -o-transform: translateX(321px);
    transform: translateX(321px);
}

.leaderline-holder-desktop .item-20 {
    width: 162px;
    top: 1046px;
    left: 50%;
    -webkit-transform: translateX(229px);
    -moz-transform: translateX(229px);
    -ms-transform: translateX(229px);
    -o-transform: translateX(229px);
    transform: translateX(229px);
}

.leaderline-holder-desktop .item-21 {
    width: 150px;
    top: 965px;
    left: 50%;
    -webkit-transform: translateX(-377px);
    -moz-transform: translateX(-377px);
    -ms-transform: translateX(-377px);
    -o-transform: translateX(-377px);
    transform: translateX(-377px);
}

.transition {
    position: absolute;
}

.transition.middle-1 {
    top: 570px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.transition.middle-2 {
    top: 715px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.transition.middle-3 {
    top: 776px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* Article Icon item */
.inner-content-section .main-content .icon-item-box {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Icon list style */
.icon-item-box {
    padding: 2rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.icon-item-box:not(:last-child) {
    margin-bottom: 3rem;
}

.icon-list-style .media:not(:last-child) {
    margin-bottom: 1rem;
}

.icon-list-style .media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.icon-list-style .media .media-image svg {
    width: 2rem;
    height: 2rem;
}

.icon-list-style .media .media-image span {
    font-size: 2rem;
}

.icon-list-style .media .media-body h2,
.icon-list-style .media .media-body h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Benefits section */
.icon-item-col {
    margin-bottom: 3rem;
}

.icon-item-col:nth-last-child(1),
.icon-item-col:nth-last-child(2) {
    margin-bottom: 0;
}

.icon-item-col.col-lg-12:nth-last-child(2) {
    margin-bottom: 3rem;
}

.icon-item-box {
    height: 100%;
}

.icon-item-box p:last-child {
    margin-bottom: 0;
}

.icon-item-box .media {
    position: relative;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.icon-item-box .media .media-body {
    flex: none;
    width: 100%;
}

.icon-item-box .media .media-image {
    margin-right: 0;
    margin-bottom: 1.25rem;
}

.benefits-section .icon-item-col:nth-last-child(1),
.benefits-section .icon-item-col:nth-last-child(2) {
    margin-bottom: 0;
}

/* Article Image box */
.inner-content-section .image-holder img {
    margin-top: 0;
}

/* Documents page */
.listing-documents-section {
    padding-bottom: 7rem;
}

.inner-content-section .download-item:first-child {
    margin-top: 3.5rem;
}

.download-item:not(:last-child),
.listing-documents-section.report-section .download-item:last-child {
    margin-bottom: 3rem;
}

.download-item-holder {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 3rem 2rem 2rem;
    height: 100%;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.download-item-holder>svg {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.download-item-holder:hover svg {
    right: 0.875rem;
    opacity: 1;
}

.download-item-holder .icon-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.download-item-holder .icon-holder svg {
    width: 1.75rem;
    height: 1.75rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.download-item-holder .item-label {
    position: absolute;
    top: 0;
    left: 2rem;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.download-item-holder .content-holder time {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.download-item-holder .content-holder .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.listing-documents-section.report-section .download-item-holder .content-holder .title {
    font-size: 1rem;
    margin-bottom: 0;
}

.download-item-holder .content-holder p {
    margin-bottom: 0;
}

.download-item-holder .content-holder .file-type {
    display: inline-block;
    padding: 0.25rem 1rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.download-item-holder .content-holder .file-type .media-image {
    margin-right: 0.313rem;
}

.download-item-holder .content-holder .file-type .media-image svg {
    width: 1.375rem;
    height: 1.375rem;
}

/* White box holder */
.counter-section .counter-section-item {
    padding: 3rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Toolbar mobile top */
.toolbar-holder-top-mobile {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.toolbar-holder-top-mobile .btn-group {
    width: 100%;
}

.toolbar-holder-top-mobile .btn.btn-media {
    height: auto;
    width: 100%;
    padding: 0;
}

.toolbar-holder-top-mobile .btn.btn-media .media {
    padding: 1rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
}

.toolbar-holder-top-mobile .btn-media .media-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.625rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.toolbar-holder-top-mobile .btn-media .media-image span {
    font-size: 1.625rem;
}

.toolbar-holder-top-mobile .btn-media .media-body {
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}

.toolbar-holder-top-mobile .btn-media .media>svg {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.875rem;
    height: 0.875rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Contact */
.contact-section {
    padding-bottom: 7rem;
}

.contact-section .toolbar-contact-holder {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-section .aside-col-holder {
    display: flex;
    flex-direction: column;
    position: sticky;
    position: -webkit-sticky;
    top: 7rem;
    padding-top: 0;
    padding-bottom: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    background-clip: padding-box;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.contact-section .aside-holder {
    padding: 0 1.5rem 0 0;
    padding-top: 0.5rem;
    overflow-y: auto;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
}

.contact-section .aside-holder .aside-title {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
}

.offcanvas-contact-mobile .nav-aside ul,
.contact-section .nav-aside ul {
    padding: 0;
    margin: 0;
}

.offcanvas-contact-mobile .nav-aside ul li,
.contact-section .nav-aside ul li {
    list-style: none;
}

.offcanvas-contact-mobile .nav-aside ul li a,
.contact-section .nav-aside ul li a {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 500;
    font-size: 0.938rem;
    text-decoration: none;
    text-underline-offset: 0.188rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.offcanvas-contact-mobile .nav-aside ul li.active a,
.contact-section .nav-aside ul li.active a {
    font-weight: 600;
}

.offcanvas-contact-mobile .nav-aside ul li a .badge.badge-notification,
.contact-section .nav-aside ul li a .badge.badge-notification {
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.contact-section .global-form .button-holder {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Map */
.contact-section .col-contact-info {
    margin-bottom: 3rem;
}

.contact-section .contact-item-box {
    padding: 2rem;
    height: 100%;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.contact-section .contact-item-box .media {
    position: relative;
    flex-wrap: wrap;
}

.contact-section .contact-item-box .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 0;
    margin-bottom: 1.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.contact-section .contact-item-box .media-image span {
    font-size: 2rem;
}

.contact-section .contact-item-box .media-body {
    flex: none;
    width: 100%;
}

.contact-section .contact-item-box .media-body h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-section .contact-item-box .media-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-section .contact-item-box .media-body ul li {
    margin-bottom: 0.25rem;
}

.contact-section .contact-item-box .media .view-all-phone-numbers a {
    text-decoration: underline;
}

.contact-section .contact-item-box .media .view-all-phone-numbers a:hover {
    text-decoration: none;
}

.contact-section .map {
    position: relative;
}

.contact-section .map .view-on-google {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 11;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contact-section .map .view-on-google a {
    width: max-content;
}

.contact-section .map-holder {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.contact-section .map-holder::before {
    content: '';
    display: block;
    height: 25rem;
}

.contact-section .map-holder .map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Departments */
.section-subtitle {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-subtitle:not(:first-child) {
    margin-top: 2rem;
}

.section-subtitle h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
}

.col-employee {
    margin-bottom: 3rem;
}

.row.gx-lg-5:nth-last-child(1) .col-employee {
    margin-bottom: 0;
}

.col-employee .employee-item-box {
    position: relative;
    padding: 2rem 2rem 7rem 2rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
    height: 100%;
}

.director-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.625rem;

}

.director-badge .ats-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.25rem;
}

.director-badge .ats-logo svg {
    width: 2.5rem;
    height: 2.5rem;
}

.director-badge p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

.col-employee .employee-item-box .media {
    justify-content: center;
    flex-wrap: wrap;
}

.col-employee .employee-item-box .media-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    width: 80%;
    height: 80%;
    margin-right: 0;
    margin-bottom: 1.25rem;
}

.col-employee .employee-item-box .media-image::before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.col-employee .employee-item-box .media-image .item-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.col-employee .employee-item-box .media-image span {
    position: absolute;
    font-size: 2.5rem;
}

.col-employee .employee-item-box .media-body {
    flex: none;
    width: 100%;
}

.col-employee .employee-item-box .media-body .employee-name {
    text-align: center;
}

.col-employee .employee-item-box .media-body .employee-name h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.col-employee .employee-item-box .media-body .employee-name p {
    margin: 0;
}

.col-employee .employee-item-box .employee-contacts {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.col-employee .employee-item-box .employee-contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.col-employee .employee-item-box .employee-contacts a:not(:last-child) {
    margin-right: 1rem;
}

.col-employee .employee-item-box .employee-contacts span {
    font-size: 2rem;
}

.col-employee .employee-item-box .employee-contacts svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Uslovi koriscenja */
.contact-section .service-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 2rem 0;
}

.contact-section .service-item .new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.service-item .item-date time {
    display: inline-block;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.contact-section .service-item h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-section .service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.875rem;
}

.contact-section .service-item ul li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.contact-section .service-item a {
    text-decoration: underline;
}

.contact-section .service-item a:hover {
    text-decoration: none;
}

/* Footer */
.footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.footer-newsletter {
    padding-top: 5rem;
}

.newsletter-wrapper {
    display: block;
    width: 100%;
    padding-bottom: 5rem;
}

.footer-newsletter .newsletter-holder {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.footer-newsletter .newsletter-content {
    width: 30rem;
}

.footer-newsletter .newsletter-text {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-newsletter .newsletter-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter .newsletter-text p {
    margin-bottom: 0;
}

.footer-newsletter .input-group .form-control {
    padding-right: 8.5rem;
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.footer-newsletter .input-group .btn {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    height: 2.25rem;
    font-size: 0.875rem;
    padding: 0 2rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
    z-index: 10;
}

.footer-general {
    position: relative;
}

.footer-general>.container {
    position: relative;
    z-index: 1;
}

.footer .footer-wrapper {
    position: relative;
    padding: 5rem 0 2.5rem 0;
}

.footer .footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}

.footer .footer-content h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    min-height: 2rem;
    margin-bottom: 1rem;
}

.footer .footer-content h3 .icon-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    margin-right: 0;
    height: auto;
    width: 2rem;
}

.footer .footer-content h3 .icon-holder svg {
    width: 1.375rem;
    height: 1.375rem;
    margin-right: 0;
}

.footer .footer-content h3 .icon-holder span {
    font-size: 1.625rem;
}

.footer .footer-content .footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-basis: 100%;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.footer .footer-content .footer-nav li {
    list-style: none;
    display: flex;
    width: 100%;
}

.footer .footer-content .footer-nav a {
    font-weight: 500;
    padding: 0.5rem 0;
    font-weight: 400;
    margin: 0;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.footer .footer-content .footer-nav li:first-child a {
    padding-top: 0;
}

.footer .social-links {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-top: 2.5rem;
}

.footer .social-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.footer .social-links ul li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.footer .social-links ul li:not(:last-child) {
    margin-right: 1rem;
}

.footer .social-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.footer .social-links ul li a:hover {
    text-decoration: none;
}

.footer .social-links ul li svg {
    width: 1.375rem;
    height: 1.375rem;
}

.footer-bottom-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 3.125rem 0;
}

.footer .content-holder.content-left {
    display: flex;
    align-items: center;
}

.footer .content-holder.content-left ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer .content-holder.content-left ul li {
    list-style: none;
    font-size: 0.875rem;
}

.footer .content-holder.content-left ul li:not(:last-child) {
    margin-right: 1rem;
}

.footer .content-holder.content-left ul li a {
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.footer .content-holder.content-right {
    display: flex;
    align-items: center;
}

.footer .content-holder.content-right a {
    font-weight: 600;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.footer .content-holder.content-right p {
    font-weight: 400;
    margin-bottom: 0;
}

.footer .developed-by {
    font-size: 0.875rem;
    padding-bottom: 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.footer .developed-by p {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin-bottom: 0;
}

.footer .developed-by p .btn-link {
    display: inline-block;
    margin-left: 0.313rem;
    font-weight: 600;
}

.footer .developed-by p a {
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.313rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/******************************/
/* Default light color scheme */
/******************************/

/* Background colors */
/*********************/

/* background #ffffff */
html,
.page-wrapper,
.toast,
.toast .btn-close,
.header,
.top-header .col-top-logo .logo-icon,
.header .col-header-center .header-center-holder .header-search,
.search-box .form-control,
.form-control:disabled,
.form-control:focus,
.autocomplete,
.offcanvas,
.custom-accordion .accordion-item,
.accordion-button,
.custom-accordion .accordion-button:not(.collapsed),
.splide__arrow,
.splide__pagination__page,
.news-item .item-content,
.icon-item-box,
.download-item-holder .content-holder .file-type,
.inner-content-section .download-documents .document-item .media .media-body .file-type,
.leaderline-holder-desktop .leaderline-item .ats-logo,
.leaderline-holder-mobile .leaderline-item .ats-logo,
.leaderline-holder-desktop .element-marker,
.leaderline-holder-mobile .element-marker,
.dropArea::before,
.choices__inner,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices__list--dropdown,
.choices__list[aria-expanded],
.choices__list--single {
    background-color: #ffffff;
}

/* background transparent */
.btn-square.outline.blue {
    background-color: transparent;
}

/* background #E5F4FB */
.light-blue-bg,
.download-item .download-item-holder:hover,
.inner-content-section .download-documents .document-item:hover,
.tag-item:hover,
.upload-documents .btn:hover {
    background-color: #E5F4FB;
}

/* background #0091d5 */
.search-col .vertical-menu li a.active,
.search-col .vertical-menu li a.active:hover,
.search-col .vertical-menu li a.active:focus,
.search-col .vertical-menu-mobile li a.active,
.search-col .vertical-menu-mobile li a.active:hover,
.search-col .vertical-menu-mobile li a.active:focus,
.dropdown-item.active,
.dropdown-item.active:hover,
.dropdown-item.active:focus,
.custom-accordion .accordion-body ul.mobile-menu li a.active,
.custom-accordion .accordion-body ul.mobile-menu li a.active:hover,
.toast.toast-info .toast-icon,
.carousel-progress-bar,
.splide__pagination__page.is-active,
.blue-bg,
.btn.blue-bg:hover,
.btn.blue-bg:focus,
.btn.blue-bg.disabled,
.btn.blue-bg:disabled,
.btn.blue-bg:active,
.btn.blue-bg.active,
.btn.blue-bg:first-child:active,
:not(.btn-check)+.btn.blue-bg:active,
.how-to-item .media .media-image,
.section-title time,
.download-item-holder .content-holder time,
.counter-section .counter-title .icon-holder .item-icon,
.counter-item.light-blue-bg,
.article-options-section .social-share-holder .social-links ul li a,
.inner-content-section .download-documents .document-item .media .media-body time,
.contact-section .map .view-on-google,
.service-item .item-date time {
    background-color: #0091d5;
}

/* background #002855 */
.dark-blue-bg,
.btn.dark-blue-bg:hover,
.btn.dark-blue-bg:focus,
.btn.dark-blue-bg.disabled,
.btn.dark-blue-bg:disabled,
.btn.dark-blue-bg:active,
.btn.dark-blue-bg.active,
.btn.dark-blue-bg:first-child:active,
:not(.btn-check)+.btn.dark-blue-bg:active,
.offcanvas-header,
.search-col .media-icon,
.icon-list-style .media .media-image,
.featured-links-section .link-item .media .media-image,
.download-item-holder .icon-holder,
.faq-section.listing-faq-section .faq-title .media .media-image,
.inner-content-section .download-documents .document-item .media .media-image,
.contact-section .contact-item-box .media-image,
.employee-item-box .employee-contacts a {
    background-color: #002855;
}

/* background #f5f6f8 */
.dropdown-item:hover,
.dropdown-item:focus,
.search-col .vertical-menu li a:hover,
.search-col .vertical-menu-mobile li a:hover,
.custom-accordion .accordion-body ul.mobile-menu li a:hover,
.carousel-progress,
.featured-logos,
.counter-item.light-gray-bg,
.inner-content-section .main-content .icon-item-box,
.download-item .download-item-holder,
.tag-item,
.faq-section.listing-faq-section .custom-accordion .accordion-item,
.faq-section.listing-faq-section .accordion-button,
.faq-section.listing-faq-section .custom-accordion .accordion-button:not(.collapsed),
.inner-content-section .download-documents .document-item,
.choices__list--multiple .choices__item,
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.choices__list--multiple .choices__item.is-highlighted,
.upload-documents .btn,
.iti__country.iti__highlight,
.contact-section .contact-item-box,
.col-employee .employee-item-box {
    background-color: #f5f6f8;
}

/* background #ee303c */
.red-bg,
.btn.red-bg:hover,
.btn.red-bg:focus,
.btn.red-bg.disabled,
.btn.red-bg:disabled,
.btn.red-bg:active,
.btn.red-bg.active,
.btn.red-bg:first-child:active,
:not(.btn-check)+.btn.red-bg:active,
.scroll-line,
.toast.toast-danger .toast-icon,
.new-label {
    background-color: #ee303c;
}

/* background #fecb2e */
.toast.toast-warning .toast-icon {
    background-color: #fecb2e;
}

/* background #79c142 */
.toast.toast-success .toast-icon {
    background-color: #79c142;
}

/* background rgba(217, 0, 29, 0.07) */
.form-control.is-invalid,
.form-control:focus.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-control:focus:invalid {
    background-color: rgba(255, 68, 61, 0.07);
}

/* background linear-gradients */
.splide-main,
.col-employee .employee-item-box .media-image {
    background: rgb(229, 244, 251);
    background: linear-gradient(0deg, rgba(229, 244, 251, 1) 30%, rgba(255, 255, 255, 1) 70%);
}

.section-title.animated-line::after {
    background: linear-gradient(90deg, #0077b3 0, #00aaff 100%);
}

.featured-links-section {
    background: linear-gradient(180deg, #00aaff 0, #0077b3 100%);
}

.how-to-steps,
.counter-section {
    background: linear-gradient(180deg, #002855 0, #051738 100%);
}

.top-header,
.footer {
    background: linear-gradient(98deg, #051738 6.35%, #002855 48.34%, #030b1b 81.25%);
}

/* background opacity */
.modal-backdrop,
.modal-backdrop.show,
.my-backdrop,
.offcanvas-backdrop,
.iti--fullscreen-popup.iti--container {
    background-color: rgba(255, 255, 255, 0.3);
}

.how-to-item,
.counter-section-item {
    background-color: rgba(255, 255, 255, 0.01);
}

.transparent-bg,
.btn.transparent-bg:hover,
.btn.transparent-bg:focus,
.btn.transparent-bg.disabled,
.btn.transparent-bg:disabled,
.btn.transparent-bg:active,
.btn.transparent-bg.active,
.btn.transparent-bg:first-child:active,
:not(.btn-check)+.btn.transparent-bg:active,
.featured-links-section .link-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.featured-links-section .link-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-newsletter .input-group .form-control,
.footer .social-links ul li a {
    background-color: rgba(255, 255, 255, 0.03);
}


/* Specific backgrounds */
/* Breadcrumb before svg color #002855 */
.breadcrumb-item+.breadcrumb-item::before {
    content: url('data:image/svg+xml,<svg stroke="%23002855" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M184 112l144 144-144 144" fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="48"></path></svg>');
}

/* Pulse effect */
.pulse-effect.yellow {
    box-shadow: 0 0 0 0 rgba(254, 171, 77, 1);
    animation: pulse-yellow 2s infinite;
}

.pulse-effect.blue {
    box-shadow: 0 0 0 0 rgba(0, 145, 213, 1);
    animation: pulse-blue 2s infinite;
}

.pulse-effect.dark-blue {
    box-shadow: 0 0 0 0 rgba(0, 40, 85, 1);
    animation: pulse-dark-blue 2s infinite;
}

.pulse-effect.green {
    box-shadow: 0 0 0 0 rgba(121, 193, 66, 1);
    animation: pulse-green 2s infinite;
}

.pulse-effect.red {
    box-shadow: 0 0 0 0 rgba(238, 48, 60, 1);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 171, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(254, 171, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 171, 77, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 145, 213, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(0, 145, 213, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 145, 213, 0);
    }
}

@keyframes pulse-dark-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 40, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(0, 40, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 40, 85, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(121, 193, 66, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(121, 193, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(121, 193, 66, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 48, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(238, 48, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(238, 48, 60, 0);
    }
}

/* Font colors */
/***************/

/* font #002855 */
body,
.toast,
.toast .btn-close,
.dropdown-custom .dropdown-item,
.accordion-item,
.col-header-center .header-center-holder nav>ul li .btn-nav,
.search-col .vertical-menu li a,
.search-col .vertical-menu-mobile li a,
.form-control,
.form-control:focus,
.offcanvas-categories .link-item a,
.custom-accordion .accordion-button.collapsed,
.custom-accordion .accordion-body ul.mobile-menu li a,
.custom-accordion .accordion-body ul.mobile-menu li a:hover,
.splide__arrow,
.splide__arrow:disabled:hover,
.news-item .item-image a,
.news-item .item-header a.btn-link,
.news-item h3 a,
.counter-section .counter-title .icon-holder,
.breadcrumb-item a,
.download-item-holder,
.tag-item,
.contact-section .nav-aside ul li a,
.offcanvas-contact-mobile .nav-aside ul li a,
.choices__list--multiple .choices__item,
.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after,
.upload-documents .btn,
.contact-section .contact-item-box .media-body ul li a.phone-number,
.col-employee .employee-item-box .media-image span {
    color: #002855;
}

/* font #ffffff */
.top-header .col-top-logo .logo-text,
.top-header .col-header-options .btn-group a.top-header-link,
.top-header .col-header-options .btn-group .btn-search.collapsed,
.top-header .col-header-options .btn-group .dropdown-toggle,
.top-header .btn-categories,
.custom-accordion .accordion-body ul.mobile-menu li a.active,
.offcanvas-header h2,
.offcanvas .offcanvas-header .btn-close,
.toast .toast-icon svg,
.dropdown-item.active,
.search-col .vertical-menu li a.active,
.search-col .vertical-menu-mobile li a.active,
.search-col .media-icon,
.transparent-bg,
.btn.transparent-bg:hover,
.btn.transparent-bg:focus,
.btn.transparent-bg.disabled,
.btn.transparent-bg:disabled,
.btn.transparent-bg:active,
.btn.transparent-bg.active,
.btn.transparent-bg:first-child:active,
:not(.btn-check)+.btn.transparent-bg:active,
.red-bg,
.btn.red-bg:hover,
.btn.red-bg:focus,
.btn.red-bg.disabled,
.btn.red-bg:disabled,
.btn.red-bg:active,
.btn.red-bg.active,
.btn.red-bg:first-child:active,
:not(.btn-check)+.btn.red-bg:active,
.dark-blue-bg,
.btn.dark-blue-bg:hover,
.btn.dark-blue-bg:focus,
.btn.dark-blue-bg.disabled,
.btn.dark-blue-bg:disabled,
.btn.dark-blue-bg:active,
.btn.dark-blue-bg.active,
.btn.dark-blue-bg:first-child:active,
:not(.btn-check)+.btn.dark-blue-bg:active,
.blue-bg,
.btn.blue-bg,
.btn.blue-bg:hover,
.btn.blue-bg:focus,
.btn.blue-bg.disabled,
.btn.blue-bg:disabled,
.btn.blue-bg:active,
.btn.blue-bg.active,
.btn.blue-bg:first-child:active,
:not(.btn-check)+.btn.blue-bg:active,
.outline.white,
.section-title time,
.download-item-holder .content-holder time,
.download-item-holder .new-label,
.icon-list-style .media .media-image svg,
.icon-list-style .media .media-image span,
.how-to-steps .figure-logo svg,
.how-to-steps .section-title .title,
.how-to-steps .section-title p,
.how-to-item .media .media-image svg,
.how-to-item .media .media-image span,
.how-to-item .media .media-body h2,
.how-to-item p,
.counter-section .figure-logo svg,
.counter-section .counter-title .icon-holder .item-icon svg,
.counter-section .counter-title .icon-holder .item-icon span,
.counter-section .counter-title h2,
.counter-section .counter-title p,
.counter-item.light-blue-bg,
.featured-links-section .link-item,
.featured-links-section .link-item .media .media-image svg,
.featured-links-section .link-item .media .media-image span,
.inner-content-section .download-documents .document-item .media .media-image svg,
.inner-content-section .download-documents .document-item .media .media-body time,
.article-options-section .social-share-holder .social-links ul li a,
.article-options-section .social-share-holder .social-links ul li a:hover,
.download-item-holder .icon-holder,
.faq-section.listing-faq-section .faq-title .media .media-image span,
.contact-section .contact-item-box .media-image,
.contact-section .map .view-on-google a,
.employee-item-box .employee-contacts a,
.service-item .item-date time,
.footer-newsletter .newsletter-text,
.footer-newsletter .input-group .form-control,
.footer .footer-content h3,
.footer .footer-content .footer-nav a,
.footer .content-holder.content-left ul li a,
.footer .content-holder.content-right p,
.footer .content-holder.content-right a,
.footer .developed-by p,
.footer .developed-by p .btn-link,
.footer .developed-by p a,
.footer .social-links ul li a,
.footer .figure-logo svg {
    color: #ffffff;
}

/* font #0091d5 */
a,
.toast .btn-close:hover,
.top-header .col-header-options .btn-group .btn-search:hover,
.top-header .col-header-options .btn-group .top-header-link:hover,
.header .col-header-center .header-center-holder nav>ul li .btn-nav:hover,
.header .col-header-center .header-center-holder nav>ul li .btn-nav.active,
.search-col .media:hover h3,
.custom-accordion .accordion-button,
.offcanvas-categories .link-item a:hover,
.offcanvas-categories .link-item a.active,
.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button.active,
.splide__arrow:hover,
.outline.light-blue,
.btn.light-blue-bg,
.btn.light-blue-bg:hover,
.btn.light-blue-bg:focus,
.btn.light-blue-bg.disabled,
.btn.light-blue-bg:disabled,
.btn.light-blue-bg:active,
.btn.light-blue-bg.active,
.btn.light-blue-bg:first-child:active,
:not(.btn-check)+.btn.light-blue-bg:active,
.icon-item .media .media-image svg,
.icon-item .media .media-image span,
.news-item .item-header a.btn-link:hover,
.news-item h3 a:hover,
.counter-section .counter-title .icon-holder span,
.breadcrumb-item a:hover,
.inner-content-section .main-content ul li::marker,
.download-item-holder:hover .title,
.download-item-holder:hover>svg,
.inner-content-section .download-documents .document-item:hover .title,
.tag-item:hover,
.upload-documents .btn:hover,
.contact-section .nav-aside ul li.active a,
.offcanvas-contact-mobile .nav-aside ul li.active a,
.contact-section .nav-aside ul li a:hover,
.offcanvas-contact-mobile .nav-aside ul li a:hover,
.contact-section .service-item ul li::marker,
.footer .footer-content .footer-nav a:hover,
.footer .content-holder.content-left ul li a:hover,
.footer .content-holder.content-right a:hover,
.footer .social-links ul li a:hover,
.footer .developed-by p .btn-link:hover,
.footer .developed-by p a:hover {
    color: #0091d5;
}

.form-group label.is-invalid,
.upload-documents .btn svg {
    color: #ee303c;
}

/* font #92999f */
.form-control::placeholder,
.download-item-holder .content-holder p,
.benefits-section .figure-logo svg,
.faq-section .figure-logo svg {
    color: #92999f;
}

/* text-decoration-color #0091d5 */
a.link-underline {
    text-decoration-color: #0091d5 !important;
}

/* color rgba */
.footer-newsletter .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Border colors */
/*****************/

/* border #D9D9D9 */
.form-control,
.article-options-holder,
.iti__search-input {
    border: 1px solid #D9D9D9;
}

/* border-top #D9D9D9 */
.inner-content-section .download-documents,
.contact-section .service-item:first-child {
    border-top: 1px solid #D9D9D9;
}

/* border-top, border-bottom #D9D9D9 */
.faq-section.listing-faq-section .faq-section-border {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

/* border-bottom #D9D9D9 */
.search-col>h3,
.section-subtitle,
.contact-section .service-item {
    border-bottom: 1px solid #D9D9D9;
}

/* border-left #D9D9D9 */
.article-options-holder .social-col {
    border-left: 1px solid #D9D9D9;
}

/* border-right #D9D9D9 */
.search-col:first-child .search-content,
.faq-section.listing-faq-section .faq-aside-col .faq-aside-holder,
.iti__selected-country {
    border-right: 1px solid #D9D9D9;
}


/* border rgba(255, 255, 255, 0.1) */
.footer-newsletter .input-group .form-control {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* border-bottom rgba(255, 255, 255, 0.1) */
.footer .newsletter-wrapper,
.footer .footer-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* border #0091d5 */
.search-box .form-control,
.splide__pagination__page {
    border: 1px solid #0091d5;
}

/* border dashed #D9D9D9 */
.dropzone-holder {
    border: 1px dashed #D9D9D9;
}

/* border-color #ffffff */
.outline.white {
    border-color: #ffffff;
}

/* border-color #D9D9D9 */
.splide__arrow,
.splide__arrow,
.splide__arrow:disabled:hover,
.choices:not(.is-open):hover .choices__inner,
.choices__inner,
.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded],
.choices__inner:focus,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices[data-type*="select-one"] .choices__input,
.choices__inner:focus {
    border-color: #D9D9D9;
}

/* border-color #0091d5 */
.toast.toast-info,
.search-box .input-group .form-control:focus,
.form-control:hover,
.form-control:focus,
.outline.light-blue,
.splide__arrow:hover,
.dropzone-holder:hover,
.iti__search-input:hover,
.iti__search-input:focus,
.footer-newsletter .input-group .form-control:hover,
.footer-newsletter .input-group .form-control:focus {
    border-color: #0091d5;
}

/* border-color #002855 */
.outline.blue,
.leaderline-holder-desktop .element-marker,
.leaderline-holder-mobile .element-marker {
    border-color: #002855;
}

/* border-color #fecb2e */
.toast.toast-warning {
    border-color: #fecb2e;
}

/* border-color #79c142 */
.toast.toast-success {
    border-color: #79c142;
}

/* border-color #ee303c */
.toast.toast-danger,
.form-control:hover.is-invalid,
.form-control:focus.is-invalid,
.form-control:focus.is-invalid:hover,
.was-validated .form-control:invalid,
.was-validated .form-control:focus:invalid {
    border-color: #ee303c;
}

/* Specific border colors */
/**************************/

.autocomplete {
    border-top: 1px solid #ffffff;
    border-left: 1px solid #0091d5;
    border-right: 1px solid #0091d5;
    border-bottom: 1px solid #0091d5;
}

/* popover-arrow border-color #0091d5 */
.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::before,
.bs-popover-end>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::after,
.bs-popover-end>.popover-arrow::after {
    border-right-color: #0091d5;
    left: 1px;
}

.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::before,
.bs-popover-start>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::after,
.bs-popover-start>.popover-arrow::after {
    border-left-color: #0091d5;
    right: 1px;
}

.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::before,
.bs-popover-top>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
    border-top-color: #0091d5;
    bottom: 1px;
}

.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::before,
.bs-popover-bottom>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after {
    border-bottom-color: #0091d5;
    top: 1px;
}

.counter-item.light-blue-bg:before {
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid #0091d5;
}

.counter-item.light-gray-bg::before {
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid #f5f6f8;
}

/* choices single chevron */
.choices[data-type*="select-one"]::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23002855' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.choices[data-type*="select-multiple"]::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23002855' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.choices[data-type*="select-multiple"] .choices__button {
    background-image: url('data:image/svg+xml,<svg fill="%23b83488" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 469.33 469.33"><path d="M256,490.67c129.6,0,234.67-105.06,234.67-234.67S385.6,21.33,256,21.33,21.33,126.4,21.33,256C21.49,385.54,126.46,490.51,256,490.67ZM256,64c106,0,192,86,192,192S362,448,256,448,64,362,64,256,150,64.12,256,64Z" transform="translate(-21.33 -21.33)"></path><path d="M176.92,335.08a21.33,21.33,0,0,0,30.17,0L256,286.17l48.92,48.92a21.33,21.33,0,0,0,30.17-30.17L286.17,256l48.92-48.92a21.33,21.33,0,0,0-30.17-30.17L256,225.83l-48.92-48.92a21.33,21.33,0,0,0-30.17,30.17L225.83,256l-48.92,48.92a21.33,21.33,0,0,0,0,30.17Z" transform="translate(-21.33 -21.33)"></path></svg>');
}

.choices[data-type*="select-one"] .choices__button {
    background-image: url('data:image/svg+xml,<svg fill="%23b83488" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 469.33 469.33"><path d="M256,490.67c129.6,0,234.67-105.06,234.67-234.67S385.6,21.33,256,21.33,21.33,126.4,21.33,256C21.49,385.54,126.46,490.51,256,490.67ZM256,64c106,0,192,86,192,192S362,448,256,448,64,362,64,256,150,64.12,256,64Z" transform="translate(-21.33 -21.33)"></path><path d="M176.92,335.08a21.33,21.33,0,0,0,30.17,0L256,286.17l48.92,48.92a21.33,21.33,0,0,0,30.17-30.17L286.17,256l48.92-48.92a21.33,21.33,0,0,0-30.17-30.17L256,225.83l-48.92-48.92a21.33,21.33,0,0,0-30.17,30.17L225.83,256l-48.92,48.92a21.33,21.33,0,0,0,0,30.17Z" transform="translate(-21.33 -21.33)"></path></svg>');
}


/* Media Query Colors */
/**********************/

@media (max-width: 991px) {
    .top-header {
        background-color: #ffffff;
        background: linear-gradient(0deg, #ffffff 100%);
    }

    .top-header .btn-categories,
    .top-header .col-header-options .btn-group a.top-header-link,
    .top-header .col-header-options .btn-group .dropdown-toggle,
    .top-header .col-header-options .btn-group .btn-search {
        color: #002855;
    }

    .article-options-section .social-share-holder {
        border-top: 1px solid #D9D9D9;
    }

    .faq-section.listing-faq-section .faq-title {
        border-bottom: 1px solid #D9D9D9;
    }
}


/* Media Query Style */
/*********************/

/* min-width */
/*************/
@media (min-width:576px) {
    .container {
        max-width: 576px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 95%;
    }

    .col-categories.mobile {
        display: none;
    }

    .view-more-mobile,
    .view-all-mobile {
        display: none;
    }

    .leaderline-holder-mobile {
        display: none;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 85%;
    }

    .news-item .image-holder .item-image {
        transform: scale(1, 1);
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .news-item .image-holder:hover .item-image {
        transform: scale(1.07, 1.07);
    }
}

@media (min-width:1700px) {
    .container {
        max-width: 85%;
    }
}

@media (min-width:1920px) {
    .container {
        max-width: 1632px;
    }
}


/* max-width */
/*************/
@media (max-width: 1199px) {
    .header .col-header-center .header-center-holder .search-box {
        max-width: 80vw;
    }

    .figure-logo {
        display: none;
    }

    .footer .figure-logo {
        display: block;
    }

    .featured-links-section .featured-links-col:nth-child(1),
    .featured-links-section .featured-links-col:nth-child(2) {
        margin-bottom: 3rem;
    }
}

@media (max-width: 991px) {
    .toast-container {
        top: 6.875rem;
    }

    .top-header-container {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        z-index: 1020;
    }

    .top-header {
        padding: 0 0.75rem;
        -webkit-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.1);
        border-bottom: 0 none;
    }

    .top-header .col-top-logo .logo-icon {
        width: auto;
        margin-right: 0.625rem;
    }

    .top-header .col-top-logo svg {
        height: 3.5rem;
    }

    .top-header .col-top-logo .logo-text {
        display: none;
    }

    .top-header .col-categories {
        display: flex;
        align-items: center;
        margin-left: 0.5rem;
    }

    .top-header .btn-categories {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
    }

    .top-header .btn-categories svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .top-header .col-header-options .btn-group .media-image {
        margin-right: 0;
    }

    .top-header .col-header-options .btn-group .dropdown-item .media-image {
        margin-right: 0.5rem;
    }

    .top-header .col-header-options .btn-group .dropdown-item .media-body {
        display: flex;
    }

    .top-header .col-header-options .btn-search svg:last-child {
        display: block;
        width: 1.375rem;
        height: 1.375rem;
    }

    .top-header .col-header-options .btn-group .media-body {
        display: none;
    }

    .top-header .col-header-options .btn-group .btn-search,
    .top-header .col-header-options .btn-group a.top-header-link,
    .top-header .col-header-options .btn-group .popover-holder {
        width: auto;
    }

    .top-header .col-header-options .btn-group:not(:last-of-type) {
        margin-right: 1.25rem;
    }

    .top-header .col-header-options .btn-group .btn-language .media-image {
        margin-right: 0;
    }

    .top-header .col-header-options .btn-language .media-image,
    .top-header .col-header-options .btn-language .media-image .flag-icon {
        width: 1.375rem;
        height: 1.375rem;
    }

    .header-container {
        display: none;
    }

    .search-box {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .search-box .input-group .form-control {
        border-top-left-radius: 0.5rem !important;
        border-bottom-left-radius: 0.5rem !important;
        border-top-right-radius: 0.5rem !important;
        border-bottom-right-radius: 0.5rem !important;
    }

    .offcanvas.offcanvas.offcanvas-search .offcanvas-body {
        padding: 0;
    }

    .autocomplete-mobile {
        padding-top: 1rem;
    }

    .search-results-holder {
        flex-wrap: wrap;
        overflow: unset;
    }

    .search-col,
    .search-col:first-child,
    .search-col:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .search-col>h3 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .search-col .search-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        height: auto;
    }

    .search-col:first-child .search-content {
        border-right: 0 none;
    }

    .search-col .vertical-menu-mobile {
        padding: 0.5rem 0 0 0;
        margin: 0;
    }

    .search-col .vertical-menu-mobile li {
        list-style: none;
    }

    .search-col .vertical-menu-mobile li:not(:last-child) {
        margin-bottom: 0.313rem;
    }

    .search-col .vertical-menu-mobile li a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        font-size: 0.875rem;
        font-weight: 600;
        text-decoration: none;
        padding: 0.5rem 1rem;
        -webkit-border-radius: 0.375rem;
        -moz-border-radius: 0.375rem;
        border-radius: 0.375rem;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
    }

    .search-col,
    .search-col:first-child,
    .search-col:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .search-col .media:first-child {
        padding: 1rem 0;
    }

    .search-col .search-content .media-image {
        align-items: flex-start;
    }

    /* Mobile menu */
    .offcanvas-categories .link-item {
        padding: 0;
    }

    .offcanvas-categories .link-item a {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 600;
        -webkit-border-radius: 0.375rem;
        -moz-border-radius: 0.375rem;
        border-radius: 0.375rem;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .offcanvas-categories .link-item a .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        width: 1.625rem;
        margin-right: 0.5rem;
    }

    .offcanvas-categories .link-item a .icon-holder svg {
        width: 1.375rem;
        height: 1.375rem;
        margin-right: 0;
    }

    .offcanvas-categories .custom-accordion .accordion-button {
        padding-left: 0;
        font-size: 1rem;
        font-weight: 600;
    }

    .offcanvas-categories .custom-accordion .accordion-button .icon-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        width: 1.625rem;
        margin-right: 0.5rem;
    }

    .offcanvas-categories .custom-accordion .accordion-button .icon-holder svg {
        position: relative;
        top: 0;
        right: unset;
        width: 1.375rem;
        height: 1.375rem;
        margin-right: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .offcanvas-categories .custom-accordion .accordion-button .icon-holder span {
        font-size: 1.625rem;
    }

    .custom-accordion .accordion-body ul.mobile-menu {
        position: relative;
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 2rem 0 0;
        margin: 0;
    }

    .custom-accordion .accordion-body ul.mobile-menu li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-basis: 100%;
        list-style: none;
    }

    .custom-accordion .accordion-body ul.mobile-menu li:not(:last-child) {
        margin-bottom: 0.313rem;
    }

    .custom-accordion .accordion-body ul.mobile-menu li a {
        text-decoration: none;
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .custom-accordion .accordion-body ul.mobile-menu li .menu-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        font-weight: 500;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        -webkit-border-radius: 0.375rem;
        -moz-border-radius: 0.375rem;
        border-radius: 0.375rem;
    }

    .section.splide-main .col:first-of-type {
        order: 2;
    }

    .section.splide-main .col:last-of-type {
        order: 1;
    }

    .splide-main .slide-item {
        height: auto;
    }

    .section.splide-main .content-holder {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .splide-main .image-holder {
        margin: 3rem 0 1.875rem 0;
    }

    .title-item {
        padding-top: 0;
        margin-bottom: 3rem;
    }

    .benefits-section .title-item .button-holder,
    .faq-section .title-item .view-all-items {
        display: none;
    }

    .benefits-section .view-more-mobile .button-holder {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 5rem;
    }

    .benefits-section .view-more-mobile .button-holder .btn {
        width: 15rem;
    }

    .faq-section .view-all-items {
        margin-top: 5rem;
    }

    .faq-section.listing-faq-section .faq-section-border {
        border-top: 0;
        border-bottom: 0;
    }

    .faq-section.listing-faq-section .faq-aside-col .faq-aside-holder {
        border-right: 0 none;
    }

    .icon-item-col:nth-last-child(2) {
        margin-bottom: 3rem;
    }

    .article-options-section .tags-holder {
        margin-bottom: 2rem;
    }

    .article-options-section .social-share-holder {
        justify-content: flex-start;
        text-align: left;
        padding-top: 2rem;
    }

    .article-options-holder .social-col {
        border-left: 0 none;
    }

    .how-to-col:nth-last-child(2),
    .benefits-section .icon-item-col:nth-last-child(2) {
        margin-bottom: 3rem;
    }

    .faq-section.listing-faq-section .faq-section-border {
        padding: 0;
    }

    .faq-section.listing-faq-section .faq-aside-col .faq-aside-holder {
        padding-right: 0;
        height: auto;
    }

    .faq-section.listing-faq-section .faq-title {
        padding-bottom: 2rem;
        margin: 0 0 1rem 0;
        width: 100%;
    }

    .inner-content-section .download-documents .document-item-col:last-child {
        margin-bottom: 0;
    }

    .leaderline-holder-desktop {
        display: none;
    }

    /* Leaderline MOBILE */
    .leaderline-holder-mobile {
        position: relative;
        display: block;
        width: 100%;
        height: 1810px;
    }

    .leaderline-holder-mobile .leaderline-item {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 1rem;
        width: 140px;
        min-height: 60px;
        -webkit-border-radius: 0.375rem;
        -moz-border-radius: 0.375rem;
        border-radius: 0.375rem;
    }

    .leaderline-holder-mobile .leaderline-item img {
        margin: 0 auto 0.5rem auto;
        width: 5rem;
        height: auto;
    }

    .leaderline-holder-mobile .leaderline-item .ats-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem auto;
        width: 2.5rem;
        height: 2.5rem;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }

    .leaderline-holder-mobile .leaderline-item .ats-logo svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .leaderline-holder-mobile .leaderline-item h2 {
        display: block;
        width: 100%;
        font-size: 0.75rem;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
    }

    .leaderline-holder-mobile .element-marker {
        position: absolute;
        width: 0.75rem;
        height: 0.75rem;
        border-width: 2px;
        border-style: solid;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
    }

    .leaderline-holder-mobile .element-marker.top {
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .leaderline-holder-mobile .element-marker.right {
        top: 50%;
        right: 0;
        -webkit-transform: translate(50%, -50%);
        -moz-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
        -o-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }

    .leaderline-holder-mobile .element-marker.bottom {
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
        -moz-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
        -o-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
    }

    .leaderline-holder-mobile .element-marker.left {
        top: 50%;
        left: 0;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .leaderline-holder-mobile .element-marker.left-top {
        top: 15px;
        left: 0;
        -webkit-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }

    .leaderline-holder-mobile .element-marker.left-bottom {
        bottom: 15px;
        left: 0;
        -webkit-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }

    /* Leaderline items */
    .leaderline-holder-mobile .mobile-item-1 {
        width: 180px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .leaderline-holder-mobile .mobile-item-2 {
        top: 149px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-3 {
        top: 229px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .leaderline-holder-mobile .mobile-item-4 {
        top: 309px;
        left: 50%;
        -webkit-transform: translateX(-176px);
        -moz-transform: translateX(-176px);
        -ms-transform: translateX(-176px);
        -o-transform: translateX(-176px);
        transform: translateX(-176px);
    }

    .leaderline-holder-mobile .mobile-item-5 {
        top: 329px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-6 {
        width: 160px;
        top: 409px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .leaderline-holder-mobile .mobile-item-7 {
        top: 523px;
        left: 50%;
        -webkit-transform: translateX(-176px);
        -moz-transform: translateX(-176px);
        -ms-transform: translateX(-176px);
        -o-transform: translateX(-176px);
        transform: translateX(-176px);
    }

    .leaderline-holder-mobile .mobile-item-8 {
        top: 543px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-9 {
        height: 90px;
        top: 623px;
        left: 50%;
        -webkit-transform: translateX(-176px);
        -moz-transform: translateX(-176px);
        -ms-transform: translateX(-176px);
        -o-transform: translateX(-176px);
        transform: translateX(-176px);
    }

    .leaderline-holder-mobile .mobile-item-10 {
        height: 90px;
        top: 623px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-11 {
        height: 90px;
        top: 733px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-12 {
        top: 843px;
        left: 50%;
        -webkit-transform: translateX(-176px);
        -moz-transform: translateX(-176px);
        -ms-transform: translateX(-176px);
        -o-transform: translateX(-176px);
        transform: translateX(-176px);
    }

    .leaderline-holder-mobile .mobile-item-13 {
        min-height: 133px;
        top: 924px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-14 {
        top: 1077px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-15 {
        top: 1186px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-16 {
        min-height: 104px;
        top: 1295px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-17 {
        min-height: 75px;
        top: 1419px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-18 {
        min-height: 75px;
        top: 1544px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-19 {
        top: 1639px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-20 {
        top: 1720px;
        left: 50%;
        -webkit-transform: translateX(36px);
        -moz-transform: translateX(36px);
        -ms-transform: translateX(36px);
        -o-transform: translateX(36px);
        transform: translateX(36px);
    }

    .leaderline-holder-mobile .mobile-item-21 {
        top: 1544px;
        left: 50%;
        -webkit-transform: translateX(-176px);
        -moz-transform: translateX(-176px);
        -ms-transform: translateX(-176px);
        -o-transform: translateX(-176px);
        transform: translateX(-176px);
    }

    .offcanvas-contact-mobile .nav-aside ul li a {
        padding: 1rem 0;
    }

    .footer .footer-content {
        margin-bottom: 2.5rem;
    }

    .footer .content-holder.content-left {
        width: 100%;
        justify-content: center;
    }

    .footer .content-holder.content-right {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .splide-main .content-holder h2,
    .section-title .title,
    .counter-section .counter-title h2,
    .title-item .title-holder h2 {
        font-size: 2rem;
    }

    .featured-links-section .featured-links-col:nth-child(3) {
        margin-bottom: 3rem;
    }

    .download-item-holder {
        padding: 2rem 2.5rem 2rem 1.25rem;
    }

    .download-item-holder .item-label {
        left: 1.25rem;
    }
}