/* 
    Created on : December 26, 2023, 10:15:00
    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: 1rem;
    font-weight: 500;
}

/* HTML */
html {
    min-height: 100%;
    position: relative;
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
}

/* 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 */

.btn {
    text-decoration: none;
    text-underline-offset: 0.188rem;
    font-weight: 500;
}

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

a: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;
}

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

/* 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;
}

.is-invalid .invalid-feedback {
    display: block;
}

.form-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

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

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

.form-group label.check-label {
    display: block;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0.5rem;
}

/* Form Info Button */
.form-group .form-field.with-info {
    position: relative;
    padding-right: 3.125rem;
}

.form-group .form-info {
    position: absolute;
    right: 0;
    top: 0;
}

.form-group .form-info .btn-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 3.125rem;
    height: 3.125rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-group .form-info .btn-info:hover {
    opacity: 1;
}

.form-group .form-info .btn-info .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.form-group .form-info .btn-info svg.help {
    width: 1.75rem;
    height: 1.75rem;
}

.form-group .form-info .btn-info .material-icon {
    font-size: 1.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;
}

/* Select */
.form-select {
    height: 3.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

/* Form Check */
.form-check {
    display: inline-flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.form-check .form-check-input {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    margin-top: 0;
    margin-right: 0;
    cursor: pointer;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-check .form-check-label {
    font-size: 0.875rem;
    cursor: pointer;
    padding-left: 0.625rem;
    margin-top: 0.125rem;
    margin-bottom: 0;
}

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: 0.625rem;
}

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

/* Media Info */
.media-info .media {
    align-items: flex-start;
}

.media-info .media-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.media-info .media-image svg {
    width: 1rem;
    height: 1rem;
}

.media-info .media-body {
    margin-top: 0.125rem;
    font-weight: 600;
}

/* Modal */
.custom-modal .modal-content {
    border: 0 none;
    -webkit-box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2.5rem 0px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.custom-modal .modal-header {
    position: relative;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: 0 none;
    padding: 1.25rem 3.75rem 1.25rem 1.25rem;
}

.custom-modal .modal-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;
    opacity: 1;
    -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;
}

.custom-modal .modal-header .btn-close svg {
    width: 0.75rem;
    height: auto;
}

.custom-modal .modal-header .btn-close:hover {
    opacity: 0.8;
}

.custom-modal .modal-header .modal-title {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
    width: 100%;
}

.custom-modal .modal-header .modal-title .icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.custom-modal .modal-header .modal-title .icon-holder .material-icon {
    font-size: 2rem;
}

.custom-modal .modal-body {
    padding: 1.25rem;
}

.custom-modal .modal-body 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;
}

.custom-modal .modal-item {
    padding: 2rem;
    margin-bottom: 3rem;
    -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);
}

.custom-modal .modal-body .title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
}

.custom-modal .modal-body ul li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.custom-modal .modal-body .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;
}

.custom-modal .modal-body .image-holder::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.custom-modal .modal-body .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;
}

.custom-modal .modal-body .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;
}

.custom-modal .modal-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;
}

.custom-modal .modal-footer .btn {
    padding: 0 3rem;
    margin: 0;
}

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

/* 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,
.choices__item--disabled,
.choices__item[data-id*="1"] {
    opacity: 0.7;
}

.choices__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    border: 0 none;
}

/* 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: 600;
}

.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: 13.5rem;
    max-width: 13.5rem;
}

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

.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 {
    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 a {
    text-decoration: none;
}

.top-header .col-top-logo .media-image {
    width: 2.368rem;
    height: 3.5rem;
    margin-right: 0.5rem;
}

.top-header .col-top-logo .media-image img {
    height: 3.5rem;
}

.top-header .col-top-logo .media-body {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}

.top-header .col-top-logo .media-body p {
    margin-bottom: 0;
    line-height: 1;
}

.top-header .col-top-logo .media-body span {
    display: inline-block;
    text-transform: uppercase;
    line-height: 1;
}

.top-header .col-top-logo .media-body small {
    text-transform: none;
    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,
.top-header .col-header-options .btn-group .btn-call-us .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 {
    margin-right: 0.625rem;
}

.top-header .col-header-options .dropdown-language .dropdown-item {
    position: relative;
    padding-right: 2.5rem;
}

.top-header .col-header-options .dropdown-language .btn .indicator {
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.top-header .col-header-options .dropdown-language .btn .indicator svg {
    width: 0.75rem;
    height: 0.75rem;
}

.top-header .col-header-options .dropdown-language .btn.selected:hover {
    opacity: 1;
}

.top-header .col-header-options .dropdown-language .btn.selected .indicator {
    display: flex;
}

.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-call-us .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 .btn-group .btn-call-us .media-image span {
    font-size: 1.625rem;
}

.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 .dropdown-call-us .dropdown-item span {
    font-size: 1.375rem;
}

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

.top-header .col-header-options .btn-group a.top-header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 2rem;
    font-size: 0.875rem;
}

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

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

.top-header-mobile .slogan-holder {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
}

.top-header-mobile .slogan-holder span {
    width: 100%;
    display: block;
    text-transform: none;
    line-height: 1;
}

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

.top-header-mobile .col-header-options .btn-group .top-header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 2rem;
    font-size: 0.875rem;
}

/* 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;
    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.5rem;
    -moz-border-radius: 0.5rem;
    border-radius: 0.5rem;
    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: 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;
}

.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: 0 none;
    opacity: 1;
    -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;
}

.splide__arrow:hover:not(:disabled) {
    opacity: 0.8 !important;
}

.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: 2.25rem;
}

.splide-main .content-holder h2 {
    font-size: 2.25rem;
    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 .media-info {
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.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;
}

.page-section.no-border {
    border-bottom: 0 none;
}

/* Inner Page section */
.inner-page-section {
    margin-bottom: 7rem;
}



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

.section-main-text {
    font-size: 1rem;
    margin-bottom: 3rem;
}

.section-main-text p:not(:last-child) {
    margin-bottom: 1rem;
}

.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;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem 0;
}

.section-title .title {
    font-size: 2.25rem;
    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;
}

/* Price list page */
.table-title {
    margin-bottom: 1rem;
}

.table-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

/* 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;
}

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

/* Inner Section */
.inner-section .title-item.sticky {
    top: 7rem;
    padding-top: 0;
}

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

.title-item.sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 5rem;
    margin: 0;
}

.title-item .section-title.title-holder {
    margin-bottom: 3rem;
}

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

.title-item p:last-of-type {
    margin-bottom: 0;
}

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

/* Info box */
.alert.info-box {
    padding: 2rem 4rem 2rem 2rem;
    margin-bottom: 3rem;
    min-height: unset;
}

.info-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-basis: 100%;
    width: 100%;
    padding: 2rem;
    -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);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.info-box.top-aligned {
    align-items: flex-start;
}

.info-box .info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.info-box.info .info-icon {
    color: #fff;
}

.info-box .info-icon svg {
    width: auto;
    height: 1.25rem;
    flex-shrink: 0;
}

.info-box .info-icon span {
    font-size: 1.25rem;
}

.info-box .info-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.info-box.top-aligned .info-content h2 {
    margin-top: 0.375rem;
}

.info-box .info-content p {
    margin-bottom: 0.5rem;
}

.info-box .info-content p:last-child {
    margin: 0;
}

.info-box .info-content p a {
    word-break: break-word;
}

.alert.info-box .btn-close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
    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;
}

.alert.info-box.top-aligned .btn-close {
    top: 1.875rem;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

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

/* Image Box */
.image-box .col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.image-box.image-left .col:first-child {
    order: 1;
}

.image-box.image-left .col:last-child {
    order: 2;
}

.image-box.image-right .col:first-child {
    order: 2;
}

.image-box.image-right .col:last-child {
    order: 1;
}

.image-box .top-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.image-box .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.image-box .image-holder {
    overflow: hidden;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.inner-content-section .main-content .image-box {
    padding: 3rem 0;
}

.inner-content-section .main-content .image-box:last-of-type {
    border: 0 none;
    padding-bottom: 0;
}

.inner-content-section .main-content .image-box .image-holder {
    margin: 0;
}

.inner-content-section .main-content .image-box .image-holder::before {
    padding-top: 75%;
}

.image-box .content-holder {
    width: 100%;
}

.image-box .content-holder .top-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.image-box .content-holder h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: left;
}

.image-box .content-holder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.image-box .content-holder p {
    font-size: 1rem;
}

.image-box .content-holder .btn {
    margin-top: 2rem;
    font-size: 1rem;
    height: 3.125rem;
    font-weight: 700;
}

/* 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 ul {
    padding-left: 0.875rem;
}

.faq-section .custom-accordion.faq-accordion .accordion-body ul li {
    margin-bottom: 0.5rem;
}

.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: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.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;
}

/* Our services */
.our-services-item {
    position: relative;
    height: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.our-services-item:hover {
    transform: scale(1.03, 1.03);
}

.our-services-item .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;
}

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

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

.our-services-item .content-holder {
    padding: 1rem;
}

.our-services-item .content-holder h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.our-services-item .content-holder h3 a {
    text-decoration: none;
}

.our-services-item .content-holder .media {
    align-items: flex-start;
}

.our-services-item .content-holder .media:not(:last-child) {
    margin-bottom: 0.625rem;
}

.our-services-item .content-holder .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    margin-right: 0.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.our-services-item .content-holder .media-body {
    margin-top: 0.188rem;
}

/* Page Section Options */
.page-options-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-options-holder .btn {
    width: 13.25rem;
    text-transform: uppercase;
}

.page-options-holder .btn:not(:last-child) {
    margin-right: 1.25rem;
}

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

.benefit-item .media {
    position: relative;
    margin-bottom: 1rem;
}

.benefit-item .media .media-image {
    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%;
}

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

.benefit-item .media .media-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Call to action */
.call-to-action-section {
    padding: 7rem 0;
}

.call-to-action-section .call-to-action {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}

.call-to-action-section .call-to-action .media {
    align-items: center;
    max-width: 30rem;
}

.call-to-action-section .call-to-action .media:not(:last-child) {
    margin-bottom: 2.25rem;
}

.call-to-action-section .call-to-action .media-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.call-to-action-section .call-to-action .media-body p {
    margin-bottom: 1.5rem;
}

.call-to-action-section .call-to-action .media .media-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    margin-right: 1rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.call-to-action-section .call-to-action .media .media-image span {
    font-size: 2rem;
}

.call-to-action-section .call-to-action .media .btn {
    width: 15.188rem;
}

.call-to-action-section .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;
}

.call-to-action-section .image-holder::before {
    content: '';
    display: block;
    padding-top: 75%;
}

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

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

.featured-news-section .news-item,
.listing-news-section .news-item {
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

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

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

.news-item .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;
}

.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: 1rem;
    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 a .material-icon,
.news-item .item-header .icon-holder .material-icon {
    font-size: 1.875rem;
    margin-right: 0.313rem;
}

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

.news-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-item h3 a {
    text-decoration: none;
    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;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    padding: 12.5rem 0;
}

.parallax-section.main-banner,
.parallax-section.main-banner .parallax-holder {
    height: calc(100vh - 10rem);
}

.parallax-section.main-banner {
    padding: 0;
}

.parallax-section.main-banner .button-holder .btn,
.parallax-section.contact-us .button-holder .btn {
    width: 13.25rem;
}

.parallax-section.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0)scale(1, 1);
}

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

.parallax-section .parallax-holder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.parallax-section .parallax-content {
    max-width: 60rem;
    /* padding: 3rem;
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem; */
}

.parallax-section .parallax-content h1,
.parallax-section .parallax-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.parallax-section .parallax-content .main-text {
    margin-bottom: 3rem;
}

.parallax-section .parallax-content .main-text .media-info {
    margin-bottom: 1rem;
    text-align: center;
}

.parallax-section .parallax-content .main-text .media-info .media {
    display: inline-flex;
}

.parallax-section .parallax-content .main-text p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

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

.parallax-section .parallax-content .button-holder .btn:not(:last-child) {
    margin-right: 1.25rem;
}

.parallax-section .parallax-content .button-holder .btn {
    text-transform: uppercase;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.parallax-section .parallax-content .button-holder .media {
    justify-content: flex-start;
}

.parallax-section .parallax-content .button-holder .media-image {
    width: 3.125rem;
    height: 3.125rem;
    border-width: 1px;
    border-style: solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.parallax-section .parallax-content .button-holder .media-image span {
    margin-right: 0;
    font-size: 2rem;
}

.parallax-section .parallax-content .button-holder .media-body {
    font-size: 0.875rem;
}

.parallax-section .parallax-content .button-holder .media-body small {
    display: block;
    width: 100%;
    font-size: 0.75rem;
}

.parallax-section .disclaimer-text {
    display: block;
    margin-top: 1.875rem;
}

.parallax-section .disclaimer-text p {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
}

.parallax-section.section-counter .counter-item {
    width: 25%;
}

.parallax-section.section-counter .parallax-title {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.parallax-section.section-counter .parallax-title h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

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


.parallax-section.section-counter .counter-holder {
    width: 100%;
}

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

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

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

.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: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.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.25rem;
    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 {
    font-family: "Open Sans", sans-serif;
    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;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.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: 5rem 0 5rem 0;
}

.article-options-holder {
    padding: 0;
}

.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 h3 {
    font-size: 1.25rem;
    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 .image-holder iframe {
    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: 3rem;
}

.inner-content-section .download-documents.download-page {
    padding-top: 0;
    margin-top: 0;
    border-top: 0 none;
}

.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-image .material-icon {
    font-size: 2rem;
}

.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;
}

/* Table responive */
.table-holder {
    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);
}

.table-holder:not(:last-child) {
    margin-bottom: 3rem;
}

.inner-content-section .main-content .table-holder h3 {
    margin-top: 0;
}

.table-responsive.custom-table {
    display: block;
    margin: 0;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.custom-table table {
    margin-bottom: 0;
}

.custom-table table thead th {
    font-size: 1rem;
    padding: 1.25rem 1rem;
    min-width: 10rem;
    font-weight: 600;
}

.custom-table .table caption {
    padding: 1rem;
}

.custom-table table tbody th,
.custom-table table tbody td {
    padding: 1.25rem 1rem;
    font-weight: 600;
    vertical-align: middle;
}

.custom-table table thead th.compensation {
    text-align: center;
    width: 11rem;
    max-width: 11rem;
    min-width: 11rem;
}

.custom-table table thead th.action {
    min-width: 3rem;
    max-width: 3rem;
    width: 3rem;
}

.custom-table table .col-actions .btn-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    text-decoration: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.custom-table table .col-actions .btn-action .popover-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
}

.custom-table table .col-actions .btn-action .media-image {
    margin-right: 0;
}

.news-content-section .table-responsive {
    margin: 3.5rem 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 4rem 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: 1.5rem;
    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: 1;
}

.download-item-holder:hover svg {
    right: 1rem;
    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 .icon-holder .material-icon {
    font-size: 2rem;
}

.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;
}

/* Gallery */
.masonry-item {
    margin-bottom: 1.5rem;
}

.gallery-item {
    position: relative;
}

.gallery-item .image-holder {
    overflow: hidden;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

/* 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: 2.25rem;
}

.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: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

.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;
}

/* Terms and conditions */
.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 Contact */
.footer-contact {
    display: block;
    margin-top: 3rem;
}

.footer-contact .map-holder {
    display: block;
    padding: 1rem;
    margin-bottom: 3rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.footer-contact .image-holder {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    height: 28.125rem;
    overflow: hidden;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
    z-index: 1;
}

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

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

.footer-contact .image-box .content-holder>h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin: 1.875rem 0 1.25rem 0;
}

.footer-contact .contact-item {
    position: relative;
    padding: 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;
}

.footer-contact .contact-item .media .media-image {
    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%;
    flex-shrink: 0;
}

.footer-contact .contact-item .media .media-body h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-contact .contact-item .media .media-body p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-contact .contact-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;
}

.footer-contact .contact-item:hover>svg {
    right: 0.875rem;
    opacity: 1;
}

/* 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: 2.25rem 0 3rem 0;
}

.footer .footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    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: center;
    flex-wrap: wrap;
    flex-basis: 100%;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.footer .footer-content .footer-nav li {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.footer .footer-content .footer-nav li:not(:last-child) {
    margin-right: 1.25rem;
}

.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 .company-item {
    padding: 1rem;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    border-radius: 0.625rem;
}

.footer .company-item .media .media-image {
    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%;
    flex-shrink: 0;
}

.footer .company-item .media-body h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer .company-item .media-body p {
    font-size: 0.875rem;
    margin-bottom: 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 0 0;
}

.footer .content-holder.content-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer .content-holder.content-center p {
    text-align: center;
}

.footer .content-holder.content-center p a {
    text-decoration: none;
    font-weight: 500;
    -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-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 ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

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

.footer .content-holder.content-right a {
    text-decoration: none;
    font-weight: 400;
    -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-top: 2.5rem;
    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;
}

/* GDPR */
.gdpr-box {
    font-size: 0.875rem;
    padding: 2rem;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 18rem;
    z-index: 1020;
    -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);
}

.gdpr-box .btn {
    width: 100%;
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
}

.gdpr-box .btn:last-child {
    margin: 0;
}

.gdpr-box .btn-link {
    font-weight: 600;
    text-decoration: underline;
}

.gdpr-box .btn-link:hover {
    text-decoration: none;
    opacity: 1;
}

/* Animated */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

/* background #ffffff */
html,
.page-wrapper,
.top-header,
.toast,
.toast .btn-close,
.top-header .col-header-options .dropdown-language .btn.selected,
.header,
.header .col-header-center .header-center-holder .header-search,
.search-box .form-control,
.form-control:disabled,
.form-control:focus,
.form-check .form-check-input,
.form-check .form-check-input:checked,
.form-check .form-check-input:active,
.autocomplete,
.offcanvas,
.custom-accordion .accordion-item,
.accordion-button,
.custom-accordion .accordion-button:not(.collapsed),
.splide__pagination__page,
.news-item .item-content,
.download-item-holder .content-holder .file-type,
.inner-content-section .download-documents .document-item .media .media-body .file-type,
.dropArea::before,
.choices__inner,
.is-focused .choices__inner,
.is-open .choices__inner,
.choices__list--dropdown,
.choices__list[aria-expanded],
.choices__list--single,
.form-group .form-info .btn-info,
.white-bg,
.btn.white-bg:hover,
.btn.white-bg:focus,
.btn.white-bg.disabled,
.btn.white-bg:disabled,
.btn.white-bg:active,
.btn.white-bg.active,
.btn.white-bg:first-child:active,
:not(.btn-check)+.btn.white-bg:active,
.call-to-action-section .call-to-action .media .media-image,
.footer-contact .map-holder,
.footer-contact .contact-item .media .media-image,
.footer .company-item .media .media-image,
.gdpr-box {
    background-color: #ffffff;
}

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

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

/* background #4264EC */
.counter-section .counter-title .icon-holder .item-icon,
.counter-item.light-blue-bg,
.contact-section .map .view-on-google,
.service-item .item-date time {
    background-color: #4264EC;
}

/* background 005796 */
.top-header-mobile-container,
.custom-modal .modal-body time,
.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,
.custom-table table thead th,
.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,
.icon-list-style .media .media-image,
.search-col .media-icon,
.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,
.counter-section,
.download-item-holder .content-holder time,
.inner-content-section .download-documents .document-item .media .media-body time,
.article-options-section .social-share-holder .social-links ul li a,
.contact-center-section .contact-item .media-image {
    background-color: #005796;
}

/* background #538ad6 */
.form-group .form-info .btn-info .icon-holder,
.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg:hover,
.btn.chefchaouen-blue-bg:focus,
.btn.chefchaouen-blue-bg.disabled,
.btn.chefchaouen-blue-bg:disabled,
.btn.chefchaouen-blue-bg:active,
.btn.chefchaouen-blue-bg.active,
.btn.chefchaouen-blue-bg:first-child:active,
:not(.btn-check)+.btn.chefchaouen-blue-bg:active {
    background-color: #538ad6;
}

/* background #f5f6f8 */
.gray-bg,
.btn.gray-bg,
.btn.gray-bg:hover,
.btn.gray-bg:focus,
.btn.gray-bg.disabled,
.btn.gray-bg:disabled,
.btn.gray-bg:active,
.btn.gray-bg.active,
.btn.gray-bg:first-child:active,
:not(.btn-check)+.btn.gray-bg:active,
.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,
.counter-item.light-gray-bg,
.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 {
    background-color: #f5f6f8;
}

/* background E6F2FF */
table.table-light-blue {
    --bs-table-bg: #E6F2FF;
}

/* background #CD0319 */
.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,
.toast.toast-danger .toast-icon,
.new-label,
.contact-center-section .contact-item.red .media-image {
    background-color: #CD0319;
}

/* background-color FFE1E6 */
.contact-center-section .contact-item.red {
    background-color: #FFE1E6;
}

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

/* background #79c142 */
.toast.toast-success .toast-icon,
.contact-center-section .contact-item.selected .media-image {
    background-color: #79c142;
}

/* background-color E4F3D9 */
.contact-center-section .contact-item.selected {
    background-color: #E4F3D9;
}

/* 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,
.form-select.is-invalid {
    background-color: rgba(255, 68, 61, 0.07);
}

/* background rgba(230, 242, 255, .4) */
.header .col-header-center .header-center-holder .search-box .input-group.focused:before,
.parallax-section.overlay.light::after {
    background-color: rgba(230, 242, 255, .2);
}

/* background rgba(10, 15, 43, 1) */
.parallax-section.overlay.dark::after {
    background-color: rgba(10, 15, 43, .5)
}

/* background linear-gradients */
.splide-main {
    background: rgb(230, 242, 255);
    background: linear-gradient(0deg, rgba(230, 242, 255, 1) 30%, rgba(255, 255, 255, 1) 70%);
}

.scroll-line,
.splide__arrow.splide__arrow--next,
.section-title.animated-line::after,
.custom-modal.notification .modal-header,
.red-gradient {
    background: #CD0319;
    background: linear-gradient(90deg, #8B0211 0%, #CD0319 100%);
}

.splide__arrow.splide__arrow--prev {
    background: #CD0319;
    background: linear-gradient(90deg, #CD0319 0%, #8B0211 100%);
}

.call-to-action-section .section-title.animated-line::after {
    background: #538ad6;
    background: linear-gradient(90deg, #538ad6 0%, #6bb7fe 100%);
}

.offcanvas-header,
.custom-modal .modal-header,
.top-header .col-header-options .btn-group .btn-call-us .media-image,
.blue-gradient {
    background: #005796;
    background: linear-gradient(90deg, #004080 0%, #005796 100%);
}

.call-to-action-section {
    background: #005796;
    background: linear-gradient(180deg, #005796 0, #004080 100%);
}

.footer {
    background: #005796;
    background: linear-gradient(98deg, #004080 6.35%, #005796 48.34%, #004080 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);
}

.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,
.footer-contact .contact-item,
.footer .company-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-contact .contact-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, 87, 150, 1);
    animation: pulse-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(205, 3, 25, 1);
    animation: pulse-red 2s infinite;
}

.pulse-effect.chefchaouen-blue {
    box-shadow: 0 0 0 0 rgba(83, 138, 214, 1);
    animation: pulse-chefchaouen 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, 87, 150, 0.7);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(0, 87, 150, 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(205, 3, 25, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(205, 3, 25, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(205, 3, 25, 0);
    }
}

@keyframes pulse-chefchaouen {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 138, 214, 0.7);
    }

    70% {
        box-shadow: 0 0 0 0.625rem rgba(83, 138, 214, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(83, 138, 214, 0);
    }
}

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

/* font #0A0F2B */
body,
.toast,
.toast .btn-close,
.top-header .col-top-logo .media-body,
.top-header .col-header-options .btn-group a.top-header-link,
.top-header .col-header-options .btn-group .top-header-link:hover,
.top-header .col-header-options .btn-group .btn-search.collapsed,
.top-header .col-header-options .btn-group .dropdown-toggle,
.top-header .col-header-options .btn-group .dropdown-toggle:hover,
.top-header .col-header-options .btn-group .dropdown-toggle:focus,
.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,
.form-select,
.form-select: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,
.offcanvas-categories .custom-accordion .accordion-button,
.offcanvas-categories .custom-accordion .accordion-button:hover,
.offcanvas-categories .custom-accordion .accordion-button.active,
.our-services-item .content-holder h3 a,
.news-item .item-image a,
.news-item .item-header a.btn-link,
.news-item h3 a,
.counter-section .counter-title .icon-holder,
.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,
.white-bg,
.btn.white-bg:hover,
.btn.white-bg:focus,
.btn.white-bg.disabled,
.btn.white-bg:disabled,
.btn.white-bg:active,
.btn.white-bg.active,
.btn.white-bg:first-child:active,
:not(.btn-check)+.btn.white-bg:active {
    color: #0A0F2B;
}

/* font #ffffff */
.top-header .col-header-options .btn-group a.top-header-link.colored-bg,
.top-header .col-header-options .btn-group .top-header-link.colored-bg:hover,
.top-header .col-header-options .btn-group .btn-call-us .media-image,
.top-header .col-header-options .dropdown-language .btn .indicator svg,
.top-header .btn-categories,
.top-header-mobile .slogan-holder,
.custom-accordion .accordion-body ul.mobile-menu li a.active,
.custom-modal .modal-header .btn-close,
.custom-modal .modal-header .modal-title,
.custom-modal .modal-body time,
.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,
.parallax-section.section-counter.dark,
.parallax-section.section-counter.dark .parallax-title h2,
.parallax-section.section-counter.dark a,
.parallax-section.dark .parallax-content,
.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-gradient,
.btn.red-gradient:hover,
.btn.red-gradient:focus,
.btn.red-gradient.disabled,
.btn.red-gradient:disabled,
.btn.red-gradient:active,
.btn.red-gradient.active,
.btn.red-gradient:first-child:active,
:not(.btn-check)+.btn.red-gradient: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,
.blue-gradient,
.btn.blue-gradient,
.btn.blue-gradient:hover,
.btn.blue-gradient:focus,
.btn.blue-gradient.disabled,
.btn.blue-gradient:disabled,
.btn.blue-gradient:active,
.btn.blue-gradient.active,
.btn.blue-gradient:first-child:active,
:not(.btn-check)+.btn.blue-gradient: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,
.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg,
.btn.chefchaouen-blue-bg:hover,
.btn.chefchaouen-blue-bg:focus,
.btn.chefchaouen-blue-bg.disabled,
.btn.chefchaouen-blue-bg:disabled,
.btn.chefchaouen-blue-bg:active,
.btn.chefchaouen-blue-bg.active,
.btn.chefchaouen-blue-bg:first-child:active,
:not(.btn-check)+.btn.chefchaouen-blue-bg:active,
.call-to-action-section,
.call-to-action-section h2,
.call-to-action-section h3,
.outline.white,
.splide__arrow,
.splide__arrow:hover,
.splide__arrow:disabled:hover,
.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,
.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,
.inner-content-section .download-documents .document-item .media .media-image svg,
.inner-content-section .download-documents .document-item .media .media-image .material-icon,
.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,
.custom-table table thead th,
.contact-center-section .contact-item .media-image,
.footer-newsletter .newsletter-text,
.footer-newsletter .input-group .form-control,
.footer .footer-content h3,
.footer .footer-content .footer-nav a,
.footer .footer-content .footer-nav li,
.footer .company-item,
.footer .content-holder.content-left ul li a,
.footer .content-holder.content-right,
.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,
.form-group .form-info .btn-info .icon-holder,
.footer-contact .image-box .content-holder,
.footer-contact .contact-item,
.footer .content-holder.content-center p,
.footer .content-holder.content-center p a {
    color: #ffffff;
}

a,
.toast .btn-close:hover,
.alert.info-box.top-aligned .btn-close:hover,
.blue-text,
ul li::marker,
.choices__heading,
.search-col .media:hover h3,
.custom-accordion .accordion-button,
.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button.active,
.news-item h3 a:hover,
.news-item .item-header a.btn-link:hover,
.breadcrumb-item a,
.breadcrumb-item a:hover,
.inner-content-section .main-content ul li::marker,
.inner-content-section .download-documents .document-item:hover .media .media-body .title,
.download-item-holder:hover .title,
.download-item-holder:hover>svg,
.contact-center-section .contact-item:hover .title,
.contact-center-section .contact-item:hover svg,
.upload-documents .btn:hover,
.call-to-action-section .call-to-action .media .media-image,
.gdpr-box .btn-link,
.footer-contact .contact-item .media .media-image,
.footer .company-item .media .media-image {
    color: #005796;
}

/* font #6bb7fe */
.top-header .col-header-options .btn-group .btn-search:hover,
.footer .footer-content .footer-nav a:hover,
.footer .social-links ul li a:hover,
.footer .content-holder.content-left ul li a:hover,
.footer .content-holder.content-right a:hover,
.footer .developed-by p .btn-link:hover,
.footer .content-holder.content-center p a:hover,
.footer .developed-by p a:hover {
    color: #6bb7fe;
}

/* font #4264EC */
.counter-section .counter-title .icon-holder span,
.tag-item:hover {
    color: #4264EC;
}

/* font CD0319 */
.red-text,
.top-header .col-header-options .btn-group a.top-header-link.red-text,
.top-header .col-header-options .btn-group .top-header-link.red-text: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.show,
.header .col-header-center .header-center-holder nav>ul li .btn-nav.active,
.form-group label.is-invalid,
.invalid-feedback,
.offcanvas-categories .link-item a:hover,
.offcanvas-categories .link-item a.active,
.our-services-item .content-holder .media-image span,
.upload-documents .btn svg,
.contact-center-section .contact-item.red:hover .title,
.contact-center-section .contact-item.red:hover svg {
    color: #CD0319;
}

/* font 79c142 */
.contact-center-section .contact-item.selected:hover .title,
.contact-center-section .contact-item.selected:hover .media svg {
    color: #79c142;
}

/* 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 #005796 */
a.link-underline {
    text-decoration-color: #005796 !important;
}

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

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

/* border #D9D9D9 */
.form-control,
.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 */
.top-header-container,
.search-col>h3,
.section-subtitle,
.page-section,
.inner-content-section .download-documents,
.contact-section .service-item,
.inner-content-section .main-content .image-box {
    border-bottom: 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 #005796 */
.search-box .form-control,
.splide__pagination__page {
    border: 1px solid #005796;
}

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

.form-title h2,
.inner-title h2 {
    border-bottom: 1px dashed #D9D9D9;
}

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

/* border-color #D9D9D9 */
.choices:not(.is-open):hover .choices__inner,
.choices__list--dropdown,
.choices__list[aria-expanded],
.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,
.form-check .form-check-input,
.form-select {
    border-color: #D9D9D9;
}

/* border-color #005796 */
.toast.toast-info,
.search-box .input-group .form-control:focus,
.form-control:hover,
.form-control:focus,
.form-check .form-check-input:checked,
.form-check .form-check-input:hover,
.form-select:hover,
.form-select:focus,
.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: #005796;
}

/* border E6F2FF */
table.table-light-blue {
    --bs-table-border-color: rgba(40, 60, 142, .3);
}

table.table-light-blue caption {
    border-right: 1px solid rgba(40, 60, 142, .3);
    border-left: 1px solid rgba(40, 60, 142, .3);
    border-bottom: 1px solid rgba(40, 60, 142, .3);
}

/* border-color #002855 */
.outline.blue {
    border-color: #005796;
}

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

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

/* border-color #CD0319 */
.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,
.form-select.is-invalid:hover,
.our-services-item .content-holder .media-image {
    border-color: #CD0319;
}

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

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

/* popover-arrow border-color #005796 */
.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: #005796;
    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: #005796;
    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: #005796;
    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: #005796;
    top: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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>');
}

/* .form-check .form-check-input:checked radio and checkbox color #005796  */
.form-check .form-check-input:checked[type="checkbox"],
.form-check .form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23005796' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

/* form-select svg color #0A0F2B */
.form-select {
    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='%230A0F2B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}


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

@media (max-width: 991px) {

    .top-header,
    .top-header .col-header-options .btn-group .btn-call-us .media-image {
        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 .btn-call-us .media-image,
    .top-header .col-header-options .btn-group .dropdown-toggle,
    .top-header .col-header-options .btn-group .btn-search,
    .top-header .col-header-options .btn-group .btn-search:hover {
        color: #002855;
    }

    .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;
    }

    .top-header-mobile-container {
        display: none;
    }

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

    .gray-bg-desktop,
    .btn.gray-bg-desktop,
    .btn.gray-bg-desktop:hover,
    .btn.gray-bg-desktop:focus,
    .btn.gray-bg-desktop.disabled,
    .btn.gray-bg-desktop:disabled,
    .btn.gray-bg-desktop:active,
    .btn.gray-bg-desktop.active,
    .btn.gray-bg-desktop:first-child:active,
    :not(.btn-check)+.btn.gray-bg-desktop:active {
        background-color: #f5f6f8;
    }
}

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

    .our-services-item .image-holder .item-image,
    .gallery-item 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;
    }

    .our-services-item .image-holder:hover .item-image,
    .gallery-item:hover img {
        transform: scale(1.07, 1.07);
    }

    .featured-news-section .news-item:hover,
    .listing-news-section .news-item:hover {
        transform: scale(1.03, 1.03);
    }
}

@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;
    }

    .footer .contact-data-col:nth-child(1),
    .footer .contact-data-col:nth-child(2),
    .footer .company-data-col:nth-child(1),
    .footer .company-data-col:nth-child(2) {
        margin-bottom: 2.25rem;
    }
}

@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 .media-image {
        margin-right: 0;
    }

    .top-header .col-top-logo .media-image img {
        height: 3.5rem;
    }

    .top-header .col-top-logo .media-body {
        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-toggle {
        padding: 0 1.25rem 0 0;
    }

    .top-header .col-header-options .btn-group .dropdown-toggle>svg {
        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 .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-language .media-image,
    .top-header .col-header-options .btn-language .media-image .flag-icon,
    .top-header .col-header-options .btn-call-us .media-image {
        width: 1.375rem;
        height: 1.375rem;
    }

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

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

    .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;
    }

    .parallax-section.main-banner,
    .parallax-section.main-banner .parallax-holder {
        height: calc(100vh - 5rem);
    }

    .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;
    }

    .title-item.sticky {
        position: unset !important;
        margin-bottom: 3rem;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .parallax-section.section-counter .counter-item {
        width: 50%;
    }

    .parallax-section .parallax-content .button-holder {
        flex-wrap: wrap;
        width: 20rem;
        margin: 0 auto;
    }

    .parallax-section .parallax-content .button-holder .btn:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.25rem;
    }

    .our-services-col:not(:last-child),
    .news-col:not(:last-child) {
        margin-bottom: 3rem;
    }

    .page-options-holder {
        flex-wrap: wrap;
        width: 20rem;
        margin: 0 auto;
    }

    .page-options-holder .btn:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.25rem;
    }

    .image-box.image-right .col:first-child {
        order: 1;
    }

    .faq-section .title-item .view-all-items {
        display: none;
    }

    .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;
    }

    .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%;
    }

    .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;
    }

    .footer .content-holder.content-right ul {
        flex-wrap: wrap;
    }

    .footer .content-holder.content-right ul li {
        text-align: center;
        width: 100%;
    }

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

}

@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;
    }

    .custom-table table thead th.compensation {
        width: 6.75rem;
        max-width: 6.75rem;
        min-width: 6.75rem;
    }

    .parallax-section.section-counter .counter-item {
        width: 100%;
    }

    .download-item-holder {
        padding: 2rem 4rem 2rem 1.25rem;
    }

    .download-item-holder .item-label {
        left: 1.25rem;
    }

    .contact-section .form-check-inline {
        width: 100%;
    }

    .contact-section .form-check-inline:not(:last-child) {
        margin-bottom: 1rem;
    }

    .contact-section .global-form .button-holder {
        justify-content: center;
    }

    .footer .contact-data-col:nth-child(3),
    .footer .company-data-col:nth-child(3) {
        margin-bottom: 2.25rem;
    }

    .footer .content-holder.content-right {
        margin-top: 1.875rem;
    }

    .footer .content-holder.content-left ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer .content-holder.content-left ul li {
        width: 100%;
        text-align: center;
    }

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