@charset "UTF-8";
/* ===

Theme Name: Cleanster
Author: Koval Web
Author URI: https://kovalweb.com/
Description: Website development by Koval Web
Tags: html5, css3, sass, gulp, bootstrap grid
Version: 2.0

0. Root
1. Content
    1.1 Fonts
    1.2 Base
    1.3 Tables
    1.4 Typography
2. General
3. Layouts
4. Components
5. Media

=== */
/* === 0. Root === */
:root {
    --font-family: "Inter";
    --font-size: 16px;
    --font-weight: 400;
    --line-height: 1.5;
    --heading-font-family: "Inter";
    --heading-font-weight: 600;
    --heading-line-height: 1.4;
    --accent: #DE2180;
    --accent-hover: #C31D70;
    --base: #ffffff;
    --text: #0f141a;
    --text-secondary: #66696e;
    --link: #0f141a;
    --border: #e2e2e2;
    --placeholder: #6b6b6b;
    --error: #ff3d0d;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, footer, header, main, nav, section {
    display: block;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button {
    -webkit-appearance: button;
}

button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

/* === 1. Content === */
@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v13-latin/inter-v13-latin-300.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v13-latin/inter-v13-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v13-latin/inter-v13-latin-500.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v13-latin/inter-v13-latin-600.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Inter"), url("../fonts/inter-v13-latin/inter-v13-latin-700.woff2") format("woff2");
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size);
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 1.5rem;
}

body {
    position: relative;
    font-size: 1rem;
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
    line-height: var(--line-height);
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    color: var(--text);
    background: var(--base);
}

header ul, header ol, footer ul, footer ol, aside ul, aside ol, nav ul, nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr auto;
    grid-template-rows: auto 1fr auto;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    min-height: 100vh;
}

.main > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.main > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

.main > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

table {
    width: 100%;
    border-bottom: 1px solid var(--border);
}

table.table-border {
    border: 1px solid var(--border);
}

table.table-border td {
    border-right: 1px solid var(--border);
}

table td, table th {
    padding: 1rem;
}

table tr:nth-child(even) {
    background: #F0F4F8;
}

table thead tr {
    border-bottom: 1px solid var(--border);
}

table thead tr th {
    font-weight: bold;
    font-size: 1rem;
}

table tfoot {
    font-weight: 600;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    .table-responsive {
        position: relative;
        width: 100%;
        overflow-y: auto;
    }

    .table-responsive table {
        width: 650px;
    }

    .table-responsive-outer {
        position: relative;
    }

    .table-responsive-outer::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0.625rem;
        height: 100%;
        background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.3)), to(#fff));
        background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.3), #fff);
    }

    .table-container::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 0.875rem;
        height: 0.875rem;
    }

    .table-container::-webkit-scrollbar-thumb {
        border: 3px solid #fff;
        background: rgba(0, 0, 0, 0.3);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family), sans-serif;
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    padding: 0;
    margin: 0 0 2rem 0;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1.125rem;
}

p {
    margin: 0 0 2rem 0;
}

a {
    color: var(--link);
    text-decoration: underline;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
    color: var(--link);
}

b, strong {
    font-weight: 600;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

code {
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

mark {
    padding: 0.2em;
    background: var(--accent);
    color: var(--base);
}

small {
    font-size: 0.85rem;
}

blockquote {
    padding: 0 0 0 1.25em;
    font-style: italic;
    border-left: 2px solid var(--accent);
}

blockquote p {
    margin-bottom: 0 !important;
}

blockquote footer {
    color: var(--accent);
    font-style: normal;
    padding-top: 0.8em;
}

.article {
    --margin: 2rem;
}

.article.article-md {
    --margin: 1.5rem;
}

.article a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.article a:not(.btn) {
    color: #cb018a;
}

.article > * {
    margin-bottom: var(--margin);
}

.article > *:last-child {
    margin-bottom: 0;
}

.article h2, .article h3, .article h4, .article h5, .article h6 {
    margin-top: calc(var(--margin) + 0.5rem);
    text-align: left;
}

.article h2:first-child, .article h3:first-child, .article h4:first-child, .article h5:first-child, .article h6:first-child {
    margin-top: 0;
}

.article ul, .article ol {
    list-style: none;
    margin: 0 0 var(--margin) 0;
    padding: 0;
}

.article ul li, .article ol li {
    position: relative;
    margin-bottom: 0.25rem;
}

.article ul li:last-child, .article ol li:last-child {
    margin-bottom: 0;
}

.article ul li::before, .article ol li::before {
    line-height: var(--line-height);
    min-width: 0.75rem;
    margin-right: 0.5rem;
}

.article ul li::before {
    content: "•";
}

.article ol {
    counter-reset: item;
}

.article ol li::before {
    content: counter(item) ".";
    counter-increment: item;
}

.article img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 767.98px), only screen and (min-width: 567px) and (max-width: 900px) and (orientation: landscape) {
    h1, .h1 {
        font-size: 2rem;
    }

    h2, .h2 {
        font-size: 1.75rem;
    }

    h3, .h3 {
        font-size: 1.5rem;
    }

    h4, .h4 {
        font-size: 1.25rem;
    }

    h5, .h5 {
        font-size: 1.125rem;
    }
}
/* === 2. General === */
.aspect-ratio {
    --aspect-ratio-size: 100%;
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.aspect-ratio::after {
    content: "";
    float: left;
    margin-top: 100%;
}

.aspect-ratio.ar-3x4::after {
    margin-top: 133.33333%;
}

.aspect-ratio.ar-4x3::after {
    margin-top: 75%;
}

.aspect-ratio.ar-16x9::after {
    margin-top: 56.25%;
}

.aspect-ratio.custom::after {
    margin-top: var(--aspect-ratio-size);
}

.aspect-ratio > img {
    position: absolute;
    left: 0;
    top: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

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

.text-row {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-row.row-2 {
    -webkit-line-clamp: 2;
}

.text-row.row-3 {
    -webkit-line-clamp: 3;
}

.scroll-text {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    overflow: hidden;
}

.scroll-text ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.img-cover {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-w100 {
    width: 100%;
}

.img-container img {
    display: block;
    width: 100%;
}

.img-rounded {
    border-radius: 1rem;
    overflow: hidden;
}

.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fw-500 {
    font-weight: 500;
}

.accent-color {
    color: var(--accent);
}

.accent-color:hover {
    color: var(--accent);
}

.magenta-color {
    color: #cb018a !important;
}

.secondary-color {
    color: var(--text-secondary);
}

.links-nav {
    margin: -0.75rem 0 0 -1.5rem;
}

.links-nav > li {
    font-weight: 500;
    padding: 0.75rem 0 0 1.5rem;
    cursor: pointer;
}

.links-nav > li.active, .links-nav > li:hover {
    color: var(--accent);
}

.links-none {
    display: none;
}

.links-none.active {
    display: block;
}

.stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.stars._new li {
    width: 1rem;
    height: 1rem;
}

.stars._new li.active {
    fill: #FFC048;
}

.stars li {
    width: 0.875rem;
    height: 0.875rem;
    fill: #bcc2c9;
    margin-right: 0.125rem;
}

.stars li:last-child {
    margin-right: 0;
}

.stars li.active {
    fill: #ff9c19;
}

.stars li svg {
    display: block;
    width: 100%;
    height: 100%;
}

.apps-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 -0.5rem -0.5rem;
}

.apps-nav > ul > li {
    line-height: 1;
    margin: 0 0 0.5rem 0.5rem;
}

.apps-nav > ul > li:hover a:not(.btn-link) {
    opacity: 0.75;
}

.apps-nav > ul > li a {
    display: block;
}

.ul-check-wrap {
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px dashed var(--border);
    background-color: #F9F9FB;
}

.ul-check > li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.ul-check > li:last-child {
    margin-bottom: 0;
}

.ul-check > li::before {
    content: url("../img/ic-point.svg");
    position: absolute;
    left: 0;
    top: 0;
}

.ul-check.ul-check-sm {
    font-size: 0.875rem;
}

.ul-check.ul-check-sm > li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.ul-check.ul-check-sm > li:last-child {
    margin-bottom: 0;
}

.ul-check.ul-check-sm > li::before {
    content: url("../img/ic-check-20.svg");
    margin-top: 0.125rem;
}

.ul-check._new {
    font-size: 0.875rem;
    font-weight: 500;
}

.ul-check._new > li {
    padding-left: 2.125rem;
    margin-bottom: 1rem;
    line-height: 1.125rem;
}

.ul-check._new > li:last-child {
    margin-bottom: 0;
}

.ul-check._new > li::before {
    content: url("../img/check-new.svg");
    width: 1.125rem;
    height: 1.125rem;
}

.ul-check._new > li strong {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.375rem;
}

.ul-check._new > li span {
    font-size: 0.75rem;
    line-height: 1.375rem;
}

.ul-check._new._no-active > li::before {
    content: url("../img/check-new2.svg");
}

.ul-check._new._check-center > li::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ul-check-headline {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.625rem;
    margin-bottom: 1rem;
    letter-spacing: 0.338px;
    text-transform: uppercase;
    color: #BCC2C9;
}

.ul-check-heading {
    font-weight: 600;
}

.ul-check-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.dwn-btn {
    max-width: 17.375rem;
    margin-left: auto;
    margin-right: auto;
}

.dwn-btn.dwn-btn-left {
    margin-left: 0;
}

.info {
    position: relative;
    font-size: 0.875rem;
    padding: 1.5rem 1.5rem 1.5rem 3.625rem;
    border-radius: 0.25rem;
    background-color: #fbfbfb;
    margin: 0;
    background-image: url("../img/ic-info.svg");
    background-position: 1.5rem 1.5rem;
    background-repeat: no-repeat;
}

.info.info-clear {
    padding: 0 0 0 2rem;
    background-color: transparent;
    background-position: 0 0;
}

.info.info-sm {
    font-size: 0.75rem;
    line-height: 1.42;
}

.box-item {
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    -webkit-box-shadow: 0 0.125rem 2rem 0 rgba(106, 120, 132, 0.12);
    box-shadow: 0 0.125rem 2rem 0 rgba(106, 120, 132, 0.12);
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.box-item .box-img {
    margin-bottom: 1.75rem;
}

.box-item .box-desc {
    max-width: 14rem;
    margin: 0.5rem auto 0;
}

.box-item:hover {
    border-color: var(--accent);
}

.box-img {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 5.625rem;
    height: 5.625rem;
    border-radius: 50%;
}

.box-img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #F9F9FB;
    opacity: 0.5;
}

.box-img img {
    width: 3rem;
    height: 3rem;
}

.box-img > * {
    position: relative;
    z-index: 1;
}

.box-heading {
    font-weight: 500;
    line-height: 1.375rem;
}

.box-heading._md {
    font-size: 1.25rem;
    line-height: 1.875rem;
}

.box-desc {
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.box-desc._md {
    font-size: 0.9375rem;
    line-height: 1.625rem;
}

@media (max-width: 575.98px) {
    .box-heading br {
        display: none;
    }
}

.ts-carousel {
    padding: 0 2.5rem;
}

.ts-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 100%;
    margin-right: 2rem;
}

.ts {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background-color: var(--base);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
    min-height: 100%;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
}

.ts._sm {
    font-size: 0.875rem;
}

.ts._sm .ts-full_name {
    font-size: 1rem;
}

.ts._sm .ts-img {
    width: 4rem;
    height: 4rem;
    min-width: 4rem;
}

.ts:hover {
    border-color: var(--accent);
}

.ts-img {
    position: relative;
    width: 7rem;
    height: 7rem;
    min-width: 7rem;
    border-radius: 50%;
    background-color: #f0f2f5;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.ts-full_name {
    font-size: 1.125rem;
    line-height: 1;
    font-weight: 500;
}

.ts-position {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.75rem;
    line-height: normal;
    padding: 0.25rem 0.75rem;
    color: var(--text-secondary);
    background: rgba(202, 206, 212, 0.4);
    border-radius: 0.25rem;
    overflow: hidden;
    margin: 0.5rem auto 0;
}

.ts-stars {
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .ts-col {
        width: calc(50% - 1rem);
    }
}

@media (min-width: 992px) {
    .ts-col {
        width: calc(33.3% - 1.3125rem);
    }
}

@media (min-width: 1400px) {
    .ts-col {
        width: calc(25% - 1.5rem);
    }
}

.img-styled {
    position: relative;
    max-width: 36rem;
}

.img-styled .aspect-ratio {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    z-index: 1;
}

.img-styled-decor {
    display: none;
}

@media (min-width: 768px) {
    .img-styled-decor {
        display: block;
        position: absolute;
        width: auto;
        height: 60%;
        z-index: -1;
        pointer-events: none;
    }

    .img-styled-decor1 {
        right: -10%;
        top: -26%;
    }

    .img-styled-decor2 {
        left: 1.5%;
        bottom: -22%;
    }
}

.h-100 {
    height: 100%;
}

.h-4rem {
    height: 4rem;
}

.h-3rem {
    height: 3rem;
}

.h-2_5rem {
    height: 2.5rem;
}

.h-2rem {
    height: 2rem;
}

.h-1_5rem {
    height: 1.5rem;
}

.h-1rem {
    height: 1rem;
}

.h-0_5rem {
    height: 0.5rem;
}

.gx-1_25rem {
    --bs-gutter-s: 1.25rem;
}

.g-2rem {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.gy-2rem {
    --bs-gutter-y: 2rem;
}

.gx-2_5rem {
    --bs-gutter-s: 2.5rem;
}

.gy-2_5rem {
    --bs-gutter-y: 2.5rem;
}

.gy-4rem {
    --bs-gutter-y: 4rem;
}

.g-1_25rem {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

.gy-1_25rem {
    --bs-gutter-y: 1.25rem;
}

.gy-1rem {
    --bs-gutter-y: 1rem;
}

/* === 3. Layouts === */
.header {
    position: relative;
    top: 0;
    padding: 0.75rem 0;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 11;
}

.header.sticky {
    position: sticky;
}

.header.absolute {
    position: absolute;
    top: 0.5rem;
}

.header.header-min {
    font-size: 0.875rem;
}

.header.header-min .btn.btn-sm {
    padding-left: 1rem;
    padding-right: 1rem;
}

.header.header-transparent {
    background-color: transparent;
    border-color: transparent;
    color: var(--base);
}

.header.header-transparent .logo {
    color: var(--base);
    fill: var(--base);
}

.header.header-transparent a {
    color: var(--base);
}

.header.header-transparent .btn.btn-white {
    color: var(--accent);
}

.header.header-transparent .btn.btn-white:hover {
    color: var(--base);
}

.header:not(.absolute) .btn.btn-white {
    background-color: var(--accent);
    color: var(--base);
}

.header a {
    text-decoration: none;
}

.btn-login {
    fill: none;
    stroke: currentColor;
}

.btn-login svg {
    margin-right: 0.75rem;
}

.header-col {
    position: relative;
    z-index: 2;
}

.header-col-menu {
    position: relative;
    z-index: 1;
}

.logo-wrapper {
    position: relative;
    z-index: 100;
    line-height: 0;
}

.logo {
    --logo-max-height: 1.25rem;
    --logo-mobile-max-height: 1.125rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: var(--heading-font-family), sans-serif;
    line-height: var(--heading-line-height);
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: bold;
    fill: var(--accent);
    color: var(--accent);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.logo.logo-white {
    fill: var(--base);
}

.logo svg {
    display: block;
    height: 100%;
    width: auto;
    max-height: var(--logo-mobile-max-height);
}

.logo-icon {
    color: var(--accent);
    fill: currentColor;
    height: 2.25rem;
    margin-right: 0.75rem;
}

.logo-container-abs {
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 100%;
    z-index: 1;
}

.logo-container-abs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang {
    position: relative;
    text-transform: capitalize;
}

.lang:hover .lang-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.lang.p-right .lang-list {
    left: initial;
    right: 0;
}

.lang-current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    fill: var(--text);
    fill: currentColor;
    min-height: 2rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.lang-current-text {
    margin-left: 0.625rem;
}

.footer .lang-list {
    top: inherit;
    bottom: 100%;
    padding: 0.625rem 0 1.625rem;
}

.footer .lang-list::before {
    top: inherit;
    bottom: 1rem;
}

.footer .lang-list::after {
    top: inherit;
    bottom: 0.425rem;
    border-bottom: none;
    border-top: 0.625rem solid var(--base);
}

.lang-list {
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0.375rem);
    -ms-transform: translateY(0.375rem);
    transform: translateY(0.375rem);
    padding: 1.625rem 0 0.625rem;
    min-width: 120px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.lang-list a {
    color: var(--text) !important;
}

.lang-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 100%;
    height: calc(100% - 1rem);
    border-radius: 0.5rem;
    -webkit-box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
    box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
    background-color: var(--base);
}

.lang-list::after {
    content: "";
    position: absolute;
    left: 0.25rem;
    top: 0;
    border: 0.5rem solid transparent;
    border-bottom: 0.625rem solid var(--base);
    z-index: 1;
}

.lang-list > li {
    position: relative;
    z-index: 2;
}

.lang-list > li > a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 1rem;
    background-color: var(--base);
    line-height: 1.5;
}

.lang-list > li:hover > a, .lang-list > li.active > a {
    background-color: #f0f2f5;
}

.branch-banner-wrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--base);
    z-index: 11;
}

.branch-banner {
    padding: calc(var(--bs-gutter-x) * 0.375) 0;
    font-size: 0.875rem;
}

.branch-banner .btn-branch {
    margin-left: 1rem;
}

.branch-banner-icon {
    --w: 3rem;
    width: var(--w);
    min-width: var(--w);
    height: var(--w);
    margin-right: calc(var(--bs-gutter-x) * 0.5);
}

.branch-banner-title {
    font-weight: bold;
}

.branch-banner-desc {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header.absolute {
        top: 0.75rem;
    }

    .logo svg {
        max-height: var(--logo-max-height);
    }

    .logo-container-abs {
        top: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .header-ai {
        padding: 1.25rem 0;
    }
}

@media (min-width: 1400px) {
    .header.header-min {
        font-size: 1rem;
    }

    .header-ai {
        padding: 1.5rem 1rem;
        max-width: 1600px;
        margin: 0 auto;
    }

    .header-ai .container {
        max-width: 100%;
    }

    .header-ai .btn-outline {
        font-weight: 500;
    }
}

@media (max-width: 575.98px) {
    .header.header-min .logo {
        --logo-mobile-max-height: 1rem;
    }

    .header.header-min .btn.btn-sm {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem !important;
        min-height: auto;
    }
}

.section {
    position: relative;
    padding: 5rem 0;
}

.section.section-no-padding {
    padding: 0;
}

.section.section-pt-minimal {
    padding-top: 2rem;
}

.section.section-pt-2rem {
    padding-top: 2rem;
}

.section.section-pt-2_5rem {
    padding-top: 2.5rem;
}

.section.section-pt-3rem {
    padding-top: 3rem;
}

.section.section-pb-3rem {
    padding-bottom: 3rem;
}

.section.section-p-minimal {
    padding: 2rem 0;
}

.section.section-pb-none {
    padding-bottom: 0;
}

.section.section-pt-none {
    padding-top: 0;
}

.section-accent-background {
    position: relative;
    background-color: #d95491;
    color: var(--base);
}

.section-accent-background::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/intro-bg-grid.svg");
    background-position: left top;
}

.section-accent-background a {
    color: var(--base);
}

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

.section-bgc {
    background-color: #f0f2f5;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h1, .section-header h2, .section-header h3 {
    font-size: 2.125rem;
    margin: 0;
}

.section-header h3 {
    font-size: 1.75rem;
}

.section-header p {
    margin: 1.25rem 0 0;
    max-width: 40rem;
}

.section-header p:first-child {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #BCC2C9;
    line-height: 2;
    letter-spacing: 0.1625rem;
    margin: 0 0 0.75rem 0;
}

.section-header p:first-child.sp-cat {
    font-weight: normal;
    text-transform: initial;
    letter-spacing: normal;
}

.section-header p:first-child.sp-cat a {
    text-decoration: underline;
}

.section-header p:first-child.sp-cat a:hover {
    text-decoration: none;
}

.section-header._new h1, .section-header._new h2, .section-header._new h3 {
    font-size: 2.125rem;
    font-weight: 500;
}

.section-header._new p {
    color: var(--text-secondary);
    line-height: 1.625rem;
    margin-top: 1rem;
}

.section-header._new p:first-child {
    color: #BCC2C9;
}

.section-header._h_2rem h1, .section-header._h_2rem h2, .section-header._h_2rem h3 {
    font-size: 2rem;
}

.section-header.sh-p-50 p {
    max-width: 50rem;
}

.section-header.sm h1, .section-header.sm h2 {
    font-size: 1.75rem;
}

.section-header.lg h1, .section-header.lg h2 {
    font-size: 2.5rem;
}

.section-header.lg p {
    font-size: 1rem;
}

.section-header.mb_none {
    margin-bottom: 0;
}

.section-header.mb_2 {
    margin-bottom: 2rem;
}

.section-header.mb_2_5 {
    margin-bottom: 2.5rem;
}

.section-header.mb_3 {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-header h1, .section-header h2 {
        font-size: 2.625rem;
    }

    .section-header h3 {
        font-size: 2.125rem;
    }

    .section-header.sm2 h1, .section-header.sm2 h2 {
        font-size: 2.25rem;
    }

    .section-header.md h1, .section-header.md h2 {
        font-size: 3rem;
    }

    .section-header.md p:not(:first-child) {
        font-size: 1.125rem;
    }

    .section-header.lg h1, .section-header.lg h2 {
        font-size: 3.375rem;
    }

    .section-header.lg p:not(:first-child) {
        font-size: 1.25rem;
    }

    .section-header.lg p.sp-cat {
        font-size: 1.125rem;
    }

    .section-header.lg p.fs-18 {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .section-header {
        --max-width-lg: 100%;
        max-width: var(--max-width-lg);
    }
}

@media (max-width: 991.98px) {
    .section.section-with-logo-abs {
        padding-top: 6.5rem;
    }
}

.footer {
    position: relative;
    width: 100%;
    padding: 5rem 0;
}

.footer.footer-gray {
    border: none;
    background-color: #f0f2f5;
}

.footer-contacts {
    margin-bottom: 4rem;
}

.footer-contact-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    fill: var(--text-secondary);
}

.footer-contact-link > svg {
    margin-right: 1rem;
}

.footer-contact-link:hover {
    color: var(--accent);
    fill: var(--accent);
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-item-link {
    font-weight: 500;
    text-decoration: none;
    color: #6b6b6b;
}

.footer-item-link:hover {
    color: var(--accent);
}

.footer-item-list {
    font-size: 0.875rem;
    letter-spacing: -0.22px;
}

.footer-item-list li {
    margin-bottom: 0.625rem;
}

.footer-item-list li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1.5rem;
    text-decoration: none;
    color: var(--text);
}

.footer-item-list li a:hover {
    color: var(--accent);
}

.footer-item-list li:last-child {
    margin-bottom: 0;
}

.footer-item-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-bottom {
    margin-top: 1rem;
}

.footer-bottom-nav {
    fill: var(--text);
}

.footer-bottom-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 -2rem -2rem;
}

.footer-bottom-nav > ul > li {
    margin: 0 0 2rem 2rem;
}

.footer-bottom-nav > ul > li > a {
    display: block;
}

.footer-bottom-nav > ul > li > a > svg {
    display: block;
}

.footer-bottom-nav > ul > li.footer-bottom-social a {
    fill: var(--text-secondary);
}

.footer-bottom-nav > ul > li.footer-bottom-social a:hover {
    fill: var(--accent);
}

.location-current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.location-current svg {
    margin-right: 0.625rem;
}

.apps-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 -1rem -1rem;
}

.apps-list li {
    margin: 0 0 1rem 1rem;
}

.apps-list li a {
    display: block;
}

.apps-list li a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.75rem;
    line-height: normal;
    color: #6b6b6b;
}

.footer-nav-secondary {
    font-size: 0.75rem;
}

.footer-nav-secondary ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 -2rem -2rem;
}

.footer-nav-secondary ul li {
    margin: 0 0 2rem 2rem;
}

.footer-nav-secondary ul li a {
    display: block;
    color: #6b6b6b;
    text-decoration: none;
}

.footer-nav-secondary ul li a:hover {
    color: var(--text);
}

.footer-dev {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 0 1rem;
    z-index: 1;
}

.footer-dev a {
    color: var(--text);
}

@media (min-width: 1200px) {
    .footer-logo {
        margin-bottom: 4rem;
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}
/* === 4. Components === */
.btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 -1rem -1rem;
}

.btn-group .btn {
    margin: 0 0 1rem 1rem;
}

.btn {
    --btn-ripple-width: 100%;
    --btn-ripple-duration: 0.4s;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1rem;
    min-height: 3rem;
    font-family: var(--font-family), sans-serif;
    font-weight: 600;
    line-height: 1.5;
    color: var(--base);
    fill: currentColor;
    background-color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.375rem;
    -webkit-transition: color var(--btn-ripple-duration), fill var(--btn-ripple-duration), border-color var(--btn-ripple-duration);
    transition: color var(--btn-ripple-duration), fill var(--btn-ripple-duration), border-color var(--btn-ripple-duration);
}

.btn.loading span {
    opacity: 0;
}

.btn.loading .btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
}

.btn .btn-loader {
    display: none;
}

.btn > span, .btn > svg {
    position: relative;
    z-index: 1;
}

.btn > svg:first-of-type {
    margin-right: 0.5rem;
}

.btn > svg:last-child {
    margin-right: 0;
    margin-left: 0.5rem;
}

.btn .btn-ripple-hover {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--accent-hover);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width var(--btn-ripple-duration), padding-top var(--btn-ripple-duration);
    transition: width var(--btn-ripple-duration), padding-top var(--btn-ripple-duration);
}

.btn.btn-with-icon {
    padding-left: 1rem;
}

.btn.btn-w280 {
    min-width: 17.5rem;
}

.btn.btn-w240 {
    min-width: 14rem;
}

.btn.btn-w200 {
    min-width: 12.5rem;
}

.btn.btn-white {
    background-color: var(--base);
    color: var(--text);
}

.btn.btn-white.btn-outline {
    border-color: var(--base);
    color: var(--base);
}

.btn.btn-white.btn-outline .btn-ripple-hover {
    background-color: var(--base);
}

.btn.btn-white.btn-outline:hover {
    color: var(--accent);
}

.btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text);
    color: var(--text);
    padding: calc(0.5rem - 2px) 1.5rem;
}

.btn.btn-outline .btn-ripple-hover {
    background-color: var(--text);
}

.btn.btn-outline._1 {
    font-weight: 500;
    border-width: 1px;
}

.btn.btn-outline._border {
    border-color: var(--border);
}

.btn.btn-outline._border:hover {
    border-color: var(--text);
}

.btn.btn-outline.btn-accent {
    border-color: var(--accent);
    color: var(--accent);
}

.btn.btn-outline.btn-accent .btn-ripple-hover {
    background-color: var(--accent);
}

.btn.btn-outline.btn-accent:hover {
    color: var(--base);
}

.btn.btn-rounded {
    border-radius: 100px;
}

.btn.btn-branch {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    min-height: auto;
    color: var(--accent);
    background-color: transparent;
    border: 1px solid var(--accent);
    border-radius: 0.5rem;
}

.btn.btn-branch .btn-ripple-hover {
    background-color: var(--accent);
}

.btn.btn-branch:hover {
    color: var(--base);
}

.btn.btn-xs {
    font-size: 0.875rem;
    min-height: 2rem;
    padding: 0.25rem 1rem;
}

.btn.btn-xs.btn-outline {
    border-width: 1px;
    padding: calc(0.25rem - 1px) 1rem;
}

.btn.btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 1.25rem;
    min-height: 2.25rem;
}

.btn.btn-sm.btn-outline {
    padding-top: calc(0.375rem - 2px);
    padding-bottom: calc(0.375rem - 2px);
}

.btn.btn-lg {
    font-size: 1.125rem;
    padding-top: 0.84375rem;
    padding-bottom: 0.84375rem;
}

.btn.btn-lg.btn-outline {
    padding-top: calc(0.84375rem - 2px);
    padding-bottom: calc(0.84375rem - 2px);
}

.btn.btn-wide {
    width: 100%;
}

.btn .btn-arrow-icon {
    position: absolute !important;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    stroke: currentColor;
    fill: none;
}

.btn:focus {
    outline: none;
}

.btn:hover {
    color: var(--base);
}

.btn:hover .btn-ripple-hover {
    width: calc(var(--btn-ripple-width) * 2.5);
    padding-top: calc(var(--btn-ripple-width) * 2.5);
}

.btn-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (min-width: 390px) {
    .btn.btn-w360 {
        min-width: 22.5rem;
    }
}

body .flickity-carousel-init {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

body .flickity-viewport {
    width: 100%;
}

body .fc-dots-static .flickity-button {
    position: relative;
    margin-top: 1.5rem;
}

body .fc-dots-static .flickity-prev-next-button {
    top: initial;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

body .fc-dots-static .flickity-prev-next-button.previous {
    left: initial;
    margin-right: 0.125rem;
}

body .fc-dots-static .flickity-prev-next-button.next {
    right: initial;
    margin-left: 0.125rem;
}

body .flickity-button {
    position: absolute;
    color: var(--text);
    padding: 0;
    background: transparent;
}

body .flickity-button:hover {
    background: transparent;
}

body .flickity-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

body .flickity-button:disabled {
    opacity: 0.5;
}

body .flickity-prev-next-button {
    width: 1rem;
    height: 1rem;
}

body .flickity-prev-next-button .flickity-button-icon {
    top: 12.5%;
    left: 12.5%;
    width: 75%;
    height: 75%;
}

*::-webkit-input-placeholder {
    color: var(--placeholder);
    opacity: 1;
}

*::-webkit-input-placeholder,
*::placeholder {
    color: var(--placeholder);
    opacity: 1;
}

.form-item {
    position: relative;
}

.form-item._styled .form-label,
.form-item._styled .form-control {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.form-item._styled .form-control {
    padding-top: 1.125rem;
    padding-bottom: 0.25rem;
}

.form-item._line .form-label,
.form-item._line .form-control {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
}

.form-item._line .form-control {
    padding-top: 1.25rem;
    padding-bottom: 0.375rem;
    border-color: var(--base);
    border-bottom-color: var(--border);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-item._line .form-control.intl-tel {
    padding-left: 3.5rem;
}

.form-item._line .form-label {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
}

.form-item._line .select .form-label {
    font-size: 0.75rem;
    -webkit-transform: translate(0, -0.625rem);
    -ms-transform: translate(0, -0.625rem);
    transform: translate(0, -0.625rem);
    opacity: 1;
    visibility: visible;
}

.form-item._line .select::after {
    right: 0;
    background-image: url("../img/keyboard_arrow_down_24.svg");
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -0.75rem;
}

.form-item._line._address .form-label,
.form-item._line._address .form-control {
    padding-right: 1.375rem;
}

.form-item._line._email .form-label,
.form-item._line._email .form-control, .form-item._line._password .form-label,
.form-item._line._password .form-control {
    padding-right: 1.75rem;
}

.form-item._line .iti__selected-flag {
    padding: 0.875rem 0 0 0;
}

.form-item._sm .form-label,
.form-item._sm .form-control {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.form-item._sm .select select {
    padding-right: 1.875rem;
}

.form-item._address .form-control {
    background-image: url("../img/map-marker-alt-solid.svg");
    background-repeat: no-repeat;
    background-position: center right 0.25rem;
}

.form-item._email .form-control {
    background-image: url("../img/mail_24.svg");
    background-repeat: no-repeat;
    background-size: 1.125rem;
    background-position: center right 0.25rem;
}

.form-item.focus .form-label, .form-item.active .form-label {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    transform: translateX(1rem);
}

.form-item.focus._styled .form-label, .form-item.active._styled .form-label {
    font-size: 0.75rem;
    -webkit-transform: translate(0, -0.5rem);
    -ms-transform: translate(0, -0.5rem);
    transform: translate(0, -0.5rem);
    opacity: 1;
    visibility: visible;
}

.form-item.focus._line .form-label, .form-item.active._line .form-label {
    -webkit-transform: translate(0, -0.625rem);
    -ms-transform: translate(0, -0.625rem);
    transform: translate(0, -0.625rem);
}

.form-item .iti {
    display: block;
}

.form-label,
.form-control {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    padding: 0.6875rem 1rem;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.form-control {
    font-family: var(--font-family), sans-serif;
    font-weight: var(--font-weight);
    border-color: var(--border);
    background: var(--base);
    outline: none;
    color: var(--text);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--accent);
}

.form-control:disabled {
    opacity: 0.5;
    background: var(--base);
}

.form-label {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--placeholder);
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    pointer-events: none;
    z-index: 1;
}

.select {
    position: relative;
}

.select select {
    padding-right: 2rem;
}

.select::after {
    content: "";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    width: 1.125rem;
    height: 1.75rem;
    margin-top: -0.875rem;
    pointer-events: none;
    background-image: url(../img/dropdown-icon.svg);
    background-repeat: no-repeat;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.select .form-control {
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 #edeeef;
    box-shadow: 0 0.125rem 0.25rem 0 #edeeef;
}

.select._js select {
    display: none;
}

.select-selected {
    cursor: pointer;
}

.select-selected.select-active {
    border-color: var(--accent);
}

.select-items {
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 0.9375rem;
    width: 100%;
    margin-top: 0.5rem;
    background-color: var(--base);
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.1), 0 6px 30px 5px rgba(0, 0, 0, 0.06), 0 16px 24px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.1), 0 6px 30px 5px rgba(0, 0, 0, 0.06), 0 16px 24px 2px rgba(0, 0, 0, 0.07);
    z-index: 11;
}

.select-items > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 1.25rem;
    min-height: 2.5rem;
    cursor: pointer;
}

.select-items > div.selected, .select-items > div:hover {
    background-color: #f7f7f7;
}

.select-items.select-hide {
    opacity: 0;
    visibility: hidden;
}

textarea {
    height: auto;
    resize: none;
}

.form-control-pw-btn {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url("../img/visibility_off_24.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    z-index: 2;
}

.form-control-pw-btn._visible {
    background-image: url("../img/visibility_24.svg");
}

.input-states-labelled {
    display: block;
    line-height: 1;
}

.form-item-group {
    position: relative;
}

.form-item-group.focus .form-item-label {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    transform: translateX(1rem);
}

.text-danger {
    color: var(--error);
}

.counter-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.counter-container._md .form-control {
    min-width: 2.625rem;
    width: 2.625rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.counter-container._md .counter-btn {
    width: 2.625rem;
    height: 2.625rem;
}

.counter-container .form-control {
    font-weight: 500;
    border-radius: 0;
    min-width: 3rem;
    width: 3rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    border-left: none;
    border-right: none;
}

.counter-container .form-control:focus {
    border-color: var(--border);
}

.counter-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border);
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.counter-btn:hover {
    border-color: var(--accent);
}

.counter-btn:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.counter-btn:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    cursor: pointer;
}

.counter-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Begin switch */
.switch {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    line-height: 1;
}

.switch input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.switch input:checked + .switch-slider {
    background-color: var(--accent);
}

.switch input:checked + .switch-slider::after {
    -webkit-transform: translateX(1rem);
    -ms-transform: translateX(1rem);
    transform: translateX(1rem);
}

.switch-slider {
    position: relative;
    display: block;
    height: 1.5rem;
    min-width: 2.5rem;
    width: 2.5rem;
    border-radius: 100px;
    overflow: hidden;
    background-color: #D6DBE0;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.switch-slider::after {
    content: "";
    position: absolute;
    left: 0.125rem;
    top: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: var(--base);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 3px 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 3px 1px 0 rgba(0, 0, 0, 0.05);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
}

.switch-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.switch-label:first-child {
    margin-right: 1rem;
}

.switch-label:last-child {
    margin-left: 1rem;
}

/* End switch */
/* Begin ratio */
.radio {
    position: relative;
}

.radio-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.radio-input:hover + .radio-label::before {
    border: var(--accent);
}

.radio-input:checked + .radio-label::after {
    opacity: 1;
}

.radio-input:checked + .radio-label::before {
    border: var(--accent);
}

.radio-input:checked + .radio-label .radio-label-ext {
    color: #cb018a;
}

.radio-label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: var(--font-weight);
    line-height: 1.5rem;
    margin: 0;
    padding: 0 0 0 2rem;
    cursor: pointer;
}

.radio-label a {
    text-decoration: none;
}

.radio-label a:hover {
    text-decoration: underline;
}

.radio-label::before, .radio-label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    background-color: #eaedef;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.radio-label::after {
    background-color: var(--accent);
    background-image: url("../img/check-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    opacity: 0;
}

.radio-label-ext {
    font-weight: 500;
    color: #bcc2c9;
    margin-left: 0.5rem;
}

/* End ratio */
/* Begin billing */
.billing {
    font-size: 1rem;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.125rem 0.25rem 0 #edeeef;
    box-shadow: 0 0.125rem 0.25rem 0 #edeeef;
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(to bottom, #d9dadd, #b8b9be);
    border-image-slice: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)), -webkit-gradient(linear, left top, left bottom, from(#d9dadd), to(#b8b9be));
    background-image: linear-gradient(to bottom, #fff, #fff), linear-gradient(to bottom, #d9dadd, #b8b9be);
    background-origin: border-box;
    background-clip: content-box, border-box;
    max-width: 21.25rem;
}

.billing-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 3rem;
    padding: 0.5rem 3.625rem 0.5rem 1rem;
    border-bottom: 1px solid var(--border);
}

.billing-card-icon {
    margin-right: 0.75rem;
}

.billing-card-hidden {
    font-weight: bold;
    margin-right: 0.5rem;
}

.billing-card-type {
    position: absolute;
    top: 50%;
    right: 0.625rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.billing-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.billing-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    min-height: 3rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--border);
    letter-spacing: -0.015rem;
}

.billing-col:last-child {
    border-right: none;
}

.billing-col > svg {
    margin-right: 1rem;
}

/* End billing */
.form-info-sm {
    font-size: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    color: var(--text-secondary);
    background-color: #f0f2f5;
}

body .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

body .iti__arrow {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../img/keyboard_arrow_down_24.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0.25rem;
    border: none;
}

.wpcf7-form br {
    display: none;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form .form-item br {
    display: none;
}

.wpcf7-form .form-item .wpcf7-not-valid-tip {
    color: var(--error);
    font-size: 0.67rem;
    line-height: 1;
    position: absolute;
    right: 5px;
    top: 5px;
    white-space: nowrap;
}

.wpcf7-form .form-item.form-field-checkbox .wpcf7-not-valid-tip {
    top: -0.75rem;
    right: initial;
    left: 0;
}

.wpcf7-form .form-item .wpcf7-form-control-wrap {
    position: static;
}

.wpcf7-form .form-item input.wpcf7-not-valid,
.wpcf7-form .form-item textarea.wpcf7-not-valid,
.wpcf7-form .form-item select.wpcf7-not-valid {
    border-color: var(--error);
}

.wpcf7-form .form-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wpcf7-form .form-btn + p {
    display: none;
}

.wpcf7-form .form-btn > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.wpcf7-form .form-btn .btn {
    margin-bottom: 0;
}

.form-btn-inner {
    position: relative;
}

.wpcf7 form .wpcf7-response-output {
    position: relative;
    padding: 0.75rem 1rem;
    margin: 1.25rem 0 0 0;
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.375rem;
    border: none;
    overflow: hidden;
    z-index: 1;
}

.wpcf7 form .wpcf7-response-output::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--base);
    pointer-events: none;
    z-index: -1;
}

.wpcf7 form .wpcf7-response-output::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #E91C1C;
    opacity: 0.1;
    pointer-events: none;
}

.wpcf7 form.sent .wpcf7-response-output::after {
    background-color: #1CAB55;
}

.wpcf7 .form-field label {
    margin-bottom: 0;
}

.wpcf7-spinner {
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0 0 1rem;
    background-color: transparent;
}

.wpcf7-spinner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--text);
    opacity: 0.15;
}

.wpcf7-spinner::before {
    background-color: var(--text);
}

body.menu-open .menu-btn span:nth-child(1) {
    -webkit-transform: translateX(1.5rem);
    -ms-transform: translateX(1.5rem);
    transform: translateX(1.5rem);
    background-color: transparent;
}

body.menu-open .menu-btn span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.menu-open .menu-btn span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

body.menu-open .menu-btn span:nth-child(4) {
    -webkit-transform: translateX(-1.5rem);
    -ms-transform: translateX(-1.5rem);
    transform: translateX(-1.5rem);
    background-color: transparent;
}

.menu-btn-wrapper {
    position: relative;
    z-index: 100;
}

.menu-btn {
    position: relative;
    width: 1.125rem;
    height: 0.9375rem;
    cursor: pointer;
    overflow: hidden;
}

.menu-btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    -webkit-transition: background-color 0.2s, -webkit-transform 0.4s ease-in-out;
    transition: background-color 0.2s, -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, background-color 0.2s;
    transition: transform 0.4s ease-in-out, background-color 0.2s, -webkit-transform 0.4s ease-in-out;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2), .menu-btn span:nth-child(3) {
    top: 0.375rem;
}

.menu-btn span:nth-child(3) {
    right: 0;
}

.menu-btn span:nth-child(4) {
    bottom: 0;
}

.menu-footer {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 1.25rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .menu-btn {
        margin-right: 0.25rem;
    }
}

.mega-menu-item-heading {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    padding: 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mega-menu-item-heading img {
    margin-right: 0.625rem;
}

@media (min-width: 1200px) {
    .menu-left .menu-list > li {
        margin-right: 2rem;
    }

    .menu-left .menu-list .mega-menu {
        left: calc(0.25 * var(--bs-gutter-x));
        right: initial;
    }

    .menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: var(--text);
    }

    .menu-list > li {
        position: relative;
        margin-right: 1.5rem;
    }

    .menu-list > li.mega-menu-item-has-children {
        position: static;
    }

    .menu-list > li:last-child {
        margin-right: 0;
    }

    .menu-list > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: currentColor;
        line-height: 2.25rem;
    }

    .menu-list > li > a > .menu-item-btn {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: 2.25rem;
        margin-left: 0.625rem;
    }

    .menu-list > li > a > .menu-item-btn::after {
        content: "";
        position: absolute;
        left: -0.125rem;
        top: calc(100% - 0.25rem);
        border: 0.5rem solid transparent;
        border-bottom: 0.625rem solid var(--base);
        z-index: 1;
        -webkit-transform: translateY(0.375rem);
        -ms-transform: translateY(0.375rem);
        transform: translateY(0.375rem);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.1s linear;
        transition: all 0.1s linear;
    }

    .menu-list > li a {
        text-decoration: none;
        -webkit-transition: color 0.2s;
        transition: color 0.2s;
    }

    .menu-list > li a svg {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        stroke: currentColor;
    }

    .menu-list > li:hover > a > .menu-item-btn::after {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .menu-list > li:hover > ul, .menu-list > li:hover .mega-menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .menu-list > li.active > a {
        font-weight: bold;
    }

    .menu-list > li:hover > a, .menu-list > li.active > a {
        color: var(--accent);
    }

    .menu-list > li > ul {
        position: absolute;
        left: 0;
        top: 100%;
        font-size: 0.875rem;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(0.375rem);
        -ms-transform: translateY(0.375rem);
        transform: translateY(0.375rem);
        padding: 1.625rem 0 0.625rem;
        min-width: 170px;
        -webkit-transition: all 0.1s linear;
        transition: all 0.1s linear;
    }

    .menu-list > li > ul::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.8125rem;
        width: 100%;
        height: calc(100% - 1rem);
        border-radius: 0.5rem;
        -webkit-box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
        box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
        background-color: var(--base);
    }

    .menu-list > li > ul a {
        color: var(--text) !important;
    }

    .menu-list > li > ul > li {
        position: relative;
        z-index: 2;
    }

    .menu-list > li > ul > li > a {
        display: block;
        color: var(--text);
        text-decoration: none;
        padding: 0.6rem 1rem;
        background-color: var(--base);
        line-height: 1.5;
    }

    .menu-list > li > ul > li:hover > a, .menu-list > li > ul > li.active > a {
        background-color: #f0f2f5;
    }

    .menu-list > li .mega-menu {
        position: absolute;
        right: calc(0.25 * var(--bs-gutter-x));
        top: 100%;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(0.375rem);
        -ms-transform: translateY(0.375rem);
        transform: translateY(0.375rem);
        color: var(--text);
        -webkit-transition: all 0.1s linear;
        transition: all 0.1s linear;
    }

    .menu-list > li .mega-menu a {
        color: var(--text) !important;
    }

    .menu-list > li .mega-menu::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.8125rem;
        width: 100%;
        height: calc(100% - 1rem);
        border-radius: 0.5rem;
        -webkit-box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
        box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
        background-color: var(--base);
    }

    .menu-list > li .mega-menu .row {
        position: relative;
        z-index: 1;
    }

    .header-transparent .menu-list {
        color: var(--base);
    }

    .header-transparent .menu-list > li:hover > a, .header-transparent .menu-list > li.active > a {
        color: var(--base);
    }

    .mega-menu {
        padding: 3.75rem 2.5rem 3rem;
        width: 100vw;
        max-width: 960px;
        font-size: 0.875rem;
    }

    .mega-menu a {
        color: var(--text);
    }

    .mega-menu ul li {
        margin-bottom: 1rem;
    }

    .mega-menu ul li:last-child {
        margin-bottom: 0;
    }

    .mega-menu ul li a {
        display: block;
        color: var(--text);
        font-weight: 600;
        text-decoration: none;
        padding: 0.25rem 0;
        background-color: var(--base);
        line-height: 1.5;
    }

    .mega-menu ul li p {
        font-size: 0.75rem;
        font-weight: normal;
        line-height: var(--line-height);
        color: var(--text);
        margin: 0.25rem 0 0;
    }

    .mega-menu-item-heading {
        font-size: 1.125rem;
        padding: 0 0 1.25rem 0;
        border-top: none;
        margin-bottom: 1.5rem;
    }

    .mega-menu-item-heading img {
        display: block;
        margin-right: 0.875rem;
        width: 1.125rem;
        height: 1.125rem;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .menu-btn {
        margin-right: 1rem;
    }
}

@media (max-width: 1199.98px) {
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .menu {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    body.menu-open .menu-btn span:nth-child(1) {
        -webkit-transform: translateX(2.5rem);
        -ms-transform: translateX(2.5rem);
        transform: translateX(2.5rem);
        background-color: transparent;
    }

    body.menu-open .menu-btn span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    body.menu-open .menu-btn span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    body.menu-open .menu-btn span:nth-child(4) {
        -webkit-transform: translateX(-2.5rem);
        -ms-transform: translateX(-2.5rem);
        transform: translateX(-2.5rem);
        background-color: transparent;
    }

    body.menu-open .header-transparent {
        color: var(--text);
    }

    body.menu-open .header-transparent .menu-btn {
        color: var(--text);
    }

    body.menu-open .header-transparent .logo {
        color: var(--accent);
        fill: var(--accent);
    }

    .menu-col {
        padding: 0 !important;
    }

    .menu {
        position: fixed;
        left: 0;
        top: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        background-color: var(--base);
        padding-top: 5rem;
        z-index: 98;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        background-color: var(--base);
        overflow: hidden;
        overflow-y: auto;
    }

    .menu.menu-transition {
        -webkit-transition: -webkit-transform 0.4s;
        transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
        transition: transform 0.4s, -webkit-transform 0.4s;
    }

    .menu > ul > li {
        position: relative;
        border-bottom: 1px solid var(--border);
    }

    .menu > ul > li a {
        color: var(--text) !important;
    }

    .menu > ul > li > a {
        display: block;
        color: var(--text);
        text-decoration: none;
        width: 100%;
        padding: 0 3.75rem 0 1.25rem;
        height: 3.125rem;
        line-height: 3.125rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .menu > ul > li.active > a, .menu > ul > li.open > a {
        color: var(--accent);
    }

    .menu > ul > li.open .menu-item-btn {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
    }

    .menu > ul > li .menu-item-btn {
        position: absolute;
        right: 0;
        top: 0;
        width: 3.125rem;
        height: 3.125rem;
        border-left: 1px solid var(--border);
        fill: var(--text);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        cursor: pointer;
    }

    .menu > ul > li > ul {
        display: none;
        background-color: var(--base);
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .menu > ul > li > ul li {
        border-bottom: 1px solid var(--border);
    }

    .menu > ul > li > ul li:last-child {
        border-bottom: none;
    }

    .menu > ul > li > ul li a {
        display: block;
        padding: 0.625rem 1.25rem 0.625rem 1.75rem;
        text-decoration: none;
        color: var(--text);
    }

    .menu > ul > li > ul li:hover a, .menu > ul > li > ul li.active a {
        color: var(--text);
    }

    .menu > ul > li > ul > li > ul > li:last-child {
        border: none;
    }

    .menu > ul > li > ul > li > ul > li > a {
        padding-left: 2.75rem;
    }

    .menu a {
        color: var(--text) !important;
    }

    .menu .menu-lang {
        list-style: none;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-transform: capitalize;
        margin: 0 -1.25rem -1rem 0;
    }

    .menu .menu-lang li {
        margin: 0 1.25rem 1rem 0;
    }

    .menu .menu-lang li a {
        text-decoration: none;
    }

    .menu .menu-lang li.active a {
        color: var(--accent) !important;
    }

    .mega-menu {
        display: none;
    }

    .menu-list {
        border-top: 1px solid var(--border);
    }

    .mm-sub-menu-list > li {
        border-top: 1px solid var(--border);
    }

    .mm-sub-menu-list > li:first-child {
        border-top: none;
    }

    .mm-sub-menu-list > li p {
        font-size: 0.8125rem;
        padding: 0 1.25rem 0.625rem 1.75rem;
        margin: -0.5rem 0 0 0;
    }

    .mm-sub-menu-list a {
        display: block;
        font-weight: 500;
        padding: 0.625rem 1.25rem 0.625rem 1.75rem;
        text-decoration: none;
    }

    .menu-item-btn {
        stroke: var(--text) !important;
    }
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    margin: 0 -0.375rem;
    padding: 0;
}

.pagination li a, .pagination li span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.25rem;
    border: 1px solid var(--border);
    margin: 0 0.375rem;
    text-decoration: none;
    color: var(--text);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagination li a:hover, .pagination li span:hover {
    border-color: var(--accent);
}

.pagination li a.dots:hover, .pagination li span.dots:hover {
    border-color: var(--border);
}

.pagination li.active a, .pagination li.active span {
    color: #fff;
    background-color: var(--accent);
    border-color: var(--accent);
    pointer-events: none;
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.breadcrumbs a, .breadcrumbs span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.8125rem;
    position: relative;
    margin-right: 0.5rem;
    text-decoration: none;
}

.breadcrumbs a::after, .breadcrumbs span::after {
    content: url("../img/ic-chevron-right-solid-small.svg");
    margin-left: 0.5rem;
}

.breadcrumbs a:last-child, .breadcrumbs span:last-child {
    margin-right: 0;
}

.breadcrumbs a:last-child::after, .breadcrumbs span:last-child::after {
    display: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.accordion-item {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.accordion-item.active .accordion-trigger svg {
    -webkit-transform: translateY(-50%) rotateX(180deg);
    transform: translateY(-50%) rotateX(180deg);
}

.accordion-trigger {
    position: relative;
    font-size: 1.125rem;
    line-height: 1;
    padding: 1.5rem 2.5rem 1.5rem 0;
    cursor: pointer;
}

.accordion-trigger svg {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    fill: currentColor;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    z-index: 1;
}

.accordion-content {
    display: none;
    color: var(--text-secondary);
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .accordion-trigger {
        font-size: 1.25rem;
    }
}

.aside-item {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.aside-item._box-shadow {
    -webkit-box-shadow: 0 0.25rem 1rem -0.25rem rgba(173, 179, 186, 0.4);
    box-shadow: 0 0.25rem 1rem -0.25rem rgba(173, 179, 186, 0.4);
}

.aside-item._padding-none {
    padding: 0;
}

.aside-item._bg {
    background-color: #f0f2f5;
}

.aside-item._bg-image {
    color: var(--base);
    background-color: var(--text);
}

.aside-item._gradient {
    color: var(--base);
    background-image: -webkit-gradient(linear, right top, left top, from(#cb0288), to(#ef417b));
    background-image: linear-gradient(to left, #cb0288, #ef417b);
}

.aside-item:last-child {
    margin-bottom: 0;
}

.aside-item-content {
    position: relative;
    z-index: 1;
}

.aside-item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.aside-item-box {
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
}

.aside-item-heading {
    font-size: 1.5rem;
    font-weight: 500;
}

.aside-item-heading._sm {
    font-size: 1.125rem;
}

.aside-item-heading._lg {
    font-size: 2rem;
}

.aside-item-desc {
    margin: 0;
}

/* === 5. Media === */
@media (min-width: 768px) {
    .fs-18 {
        font-size: 1.125rem;
    }
}

@media (min-width: 1200px) {
    .container-sm {
        max-width: 62.5rem;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 86.5rem;
    }

    .container-md {
        max-width: 78.75rem;
    }

    .container-sm {
        max-width: 62.5rem;
    }
}