
/* home-banner */
section.home-banner {
    background: linear-gradient(180deg, #350080 0%, #0E0025 80%);
    
}
.home-banner__pagetitle {
    padding: 40px 0 80px;
}
.home-banner__pagetitle h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 1rem;
}
.home-banner__pagetitle p.sub__title {
    font-family: var(--font-main);
    font-size: var(--font-size-xl);
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}
.home-banner__pagetitle .btn__wrap .btn {
    padding: 14px 35px;
    color: var(--color-bg-main);
}
.home-banner__pagetitle .btn__wrap .btn:hover,
.home-banner__pagetitle .btn__wrap .btn:focus {
    border-color: var(--color-bg-main);
    color: var(--color-secondary);
    background: var(--color-bg-main);
}
span.highlight {
    color: var(--color-secondary-2)!important;
}
/*** swiper slider ***/
.home-banner__swiper {
    padding-top: 80px;
    padding-bottom: 40px;
}
.home-banner__swiper .swiper-container {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.home-banner__swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  background-color: Transparent;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.2);
}
.home-banner__swiper .swiper-slide .detail-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    font-size: 0;
    z-index: 3;
}
.home-banner__swiper .swiper-slide .picture {
  width: 320px;
  height: 320px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.home-banner__swiper .swiper-slide .picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.home-banner__swiper .swiper-slide .picture:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.52%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}
.home-banner__swiper .swiper-slide .detail {
  padding: 8px 16px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
    z-index: 2;
} 
.home-banner__swiper .swiper-slide.swiper-slide-active .detail {
    opacity: 1;
}
.home-banner__swiper .swiper-slide .detail span.h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    text-transform: capitalize;
}

/*** filter ***/
form.filter-form .fields-flex {
    background: var(--color-main);
    height: 72px;
    border-radius: 56px;
    overflow: hidden;
    backdrop-filter: blur(15px);
}
form.filter-form .form-control {
    height: 40px;
    border: none;
    padding: 2px;
    color: var(--color-secondary);
    font-size: var(--font-size-md);
    line-height: 24px;
    font-family: var(--font-main);
    border-radius: 0;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent;
}
.filter-form .form-group {
    padding: 0 16px;
    position: relative;
    width: 100%;
}
.filter-form .form-group:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.filter-form button.btn.btn-search {
    font-size: var(--font-size-lg);
    line-height: 24px;
    font-family: var(--font-main);
    font-weight: 400;
    padding: 20px;
    width: 72px;
    height: 72px;
    border-radius: 58px;
    transition: all 0.5s ease;
}
.filter-form button.btn.btn-search svg path {
    color: var(--color-secondary);
    fill: var(--color-secondary);
}
.filter-form button.btn.btn-search:hover svg path,
.filter-form button.btn.btn-search:focus svg path {
    color: var(--color-secondary-1);
    fill: var(--color-secondary-1);
}
form.filter-form input::-webkit-input-placeholder {
    color: var(--color-secondary);
}
form.filter-form input::-moz-placeholder {
    color: var(--color-secondary);
}
form.filter-form input:-moz-placeholder {
    color: var(--color-secondary);
}
form.filter-form input:-ms-input-placeholder {
    color: var(--color-secondary);
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
/* floating */
.floating-label {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--font-size-md);
    line-height: 24px;
    color: var(--color-secondary);
    opacity: 1;
    top: 10px;
    left: 16px;
    pointer-events: none;
    position: absolute;
    transition: all .2s ease;
    margin-bottom: 0;
    z-index: 1;
    padding: 0 16px 0 32px;
}
label.floating-label.select-label {
    top: 5px;
}
.floating-diff .floating-label {
    opacity: 0;
}
.floating-diff.focused .floating-label,
.floating-diff.focus .floating-label {
    opacity: 1;
}
.form-group.focused .floating-label {
    opacity: 1;
    color: var(--color-secondary);
    top: -8px;
    font-size: 12px;
}
.form-group.focused .floating-label, .form-group.focus .floating-label {
    top: -8px;
}
.form-group.focused label.floating-label.select-label,
.form-group.focus label.floating-label.select-label {
    top: -8px;
}
.form-group.focused select.form-control,
.form-group.focus select.form-control {
    padding-top: 21px;
}
.filter-form .form-group.focus .form-control#datepicker {
    height: 38px !important;
    padding: 7px 16px 5px 32px !important;
    position: relative;
    top: 10px;
}
/* before -label */
.form-group label.floating-label:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../media/filter/music.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
}
.form-group.search-field label.floating-label:before {
    background-image: url("../media/filter/music.svg");
}
.form-group.city-field label.floating-label:before {
    background-image: url("../media/filter/map.svg");
}
.form-group.date-field label.floating-label:before {
    background-image: url("../media/filter/date.svg");
    background-size: 20px;
    background-position: left top;
}
.filter-form .form-group.date-field {
    margin-left: 16px !important;
    padding-left: 32px;
    position: relative;
}
.filter-form .form-group.date-field::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../media/filter/date.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
}
form.filter-form .form-group.floating-group.focused .form-control,
form.filter-form .form-group.select2Part.floating-group.focused .select2-container {
    position: relative;
    top: 10px;
}
/* select2 */
.select2Part .floating-label{
  opacity: 0;
}
.select2Part.focused .floating-label{
  opacity: 1;
}
.select2multiple .floating-label{
  opacity: 1;
}
.select2-container--default .select2-selection--single {
    background-color: transparent !important;
    color: var(--color-secondary) !important; 
}
.filter-form .select2-container--default .select2-selection--single .select2-selection__clear {
    height: 20px !important;
    width: 20px !important;
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    margin: 0 !important;
    padding: 0px !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    display: none!important;
}
.filter-form .select2-container--default .select2-selection--single .select2-selection__clear span {
    color: var(--color-secondary);
    display: block;
}
.filter-form .form-group .select2.select2-container {
    position: static;
}
.select2-container--default .select2-selection--single {
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    position: relative;
    height: 40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px;
    padding-right: 0;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding-top: 0;
    text-align: left;
    width: calc(100% - 44px);
}
.filter-form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    color: var(--color-secondary);
    font-size: 14px;
}
.form-group.focused .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-secondary);
    display: none;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: var(--font-size-md);
    line-height: 24px;
    color: var(--color-secondary)!important;
    padding: 0 16px 0 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}
.form-group.search-field .select2-selection--single .select2-selection__placeholder:before,
.filter-form .search-field .select2-selection.select2-selection--single.select2-selection--clearable:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../media/filter/music.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
}
.form-group.city-field .select2-selection--single .select2-selection__placeholder:before,
.filter-form .city-field .select2-selection.select2-selection--single.select2-selection--clearable:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../media/filter/map.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
}
.filter-form .select2-selection.select2-selection--single.select2-selection--clearable {
    padding: 7px 16px 5px 32px!important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    transition: 240ms;
    height: 16px !important;
    width: 16px !important;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -2px;
    padding: 0;
}

.filter-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #ffffff transparent transparent transparent;
    border-width: 6px 6px 0 6px;
    border-radius: 6px;
    margin-left: 0;
    margin-top: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.filter-form .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #ffffff transparent;
    border-width: 0 6px 6px 6px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: 14px;
    font-weight: 300;
    border: none !important;
    border-radius: 4px;
    color: var(--color-secondary);
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.1)!important;
    position: relative;
    padding-right: 12px;
    outline: 0 !important;
    line-height: 20px;
}
.select2-search--dropdown {
    padding: 0 0 8px!important;
    margin: 0!important;
}
.select2-dropdown {
    background-color: rgba(0, 0, 0, 0.5)!important;
    backdrop-filter: blur(30px);
    border: none!important;
    border-radius: 8px !important;
    padding: 8px 8px;
}
.select2-dropdown .select2-results__options .select2-results__option {
    padding: 8px 0px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--color-secondary);
    border-radius: 0;
    background-color: transparent!important;
}
.select2-dropdown .select2-results__options .select2-results__option:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
    background-color: transparent!important;
    color: var(--color-secondary-2)!important;
}
.select2-container--default .select2-results > .select2-results__options {
    padding: 0 16px;
    scrollbar-width: thin; 
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent; 
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 4px;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: transparent;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255,255,255,0.25);
}
/* datepicker */
.datepicker.datepicker-dropdown {
    background-color: rgba(0, 0, 0, 0.5)!important;
    backdrop-filter: blur(30px);
    border-radius: 8px;
    padding: 8px;
}
.datepicker table {
    min-width: 260px;
    min-height: 240px;
    border-collapse: separate;
    border-spacing: 8px;
}
.datepicker .datepicker-switch {
    width: 145px;
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: 400;
    color: var(--color-secondary)!important;
}

.datepicker table tr td, .datepicker table tr th {
    font-size: 14px;
    font-weight: 600 !important;
    width: 24px !important;
    height: 24px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    line-height: 24px !important;
    display: table-cell;
    color: var(--color-secondary);
    font-family: var(--font-main);
}
.datepicker table tr td.new, .datepicker table tr td.old {
    color: rgba(255, 255, 255, 0.5) !important;
}
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.datepicker table tr td.today,
.datepicker table tr td.today.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today.disabled:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today[disabled] {
    background: var(--color-secondary) !important;
    color: #585268!important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today:hover:hover {
    background: #271B4A !important;
    color: var(--color-secondary)!important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.datepicker table tr td.active, .datepicker table tr td.active.disabled, 
.datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover, 
.datepicker table tr td.active.active, .datepicker table tr td.active.disabled.active, 
.datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover.active, 
.datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active:active, 
.datepicker table tr td.active:hover.active, .datepicker table tr td.active:hover:active, 
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
    background: #271B4A !important;
    color: var(--color-secondary)!important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.datepicker-dropdown:before , .datepicker-dropdown.datepicker-orient-left:after {
    display: none!important;
}
.datepicker table tr td span.focused, .datepicker table tr td span:hover {
    background: #716789!important;
}
.datepicker table tr td span {
    height: 40px;
    line-height: 40px;
}
.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
    background: #716789!important; 
}
input[type="text"]::placeholder,
input[type="text"]:-ms-input-placeholder, 
input[type="text"]:-moz-placeholder,
input[type="text"]::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5)!important;
}
@media (max-width : 768px) {
    form.filter-form .fields-flex {
        height: 56px;
        border-radius: 30px; 
    }
    .filter-form .form-group {
    padding: 0 12px;
    width: 33.33%;
    }
    .filter-form .form-group.date-field {
    margin-left: 12px !important;
    padding-left: 24px; 
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        padding: 0 0 0 32px;
    }
    .filter-form .form-group.date-field::before {
    width: 20px;
    height: 20px;
    background-size: 20px;
    }
    .filter-form button.btn.btn-search {
    padding: 14px;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    }

    .select2-container--default .select2-results > .select2-results__options {
    padding: 0;
    }
    .datepicker table {
    min-width: 220px;
    min-height: 180px; 
    }
    .datepicker table tr td, .datepicker table tr th {
    font-weight: 500 !important;
    }
}
@media (max-width : 767px) {
    form.filter-form .fields-flex {
        height: 56px;
        border-radius: 30px;
        padding-left: 40px;
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        padding: 0 0 0 24px;
        font-size: 0;
    }
    .select2-selection__placeholder {
        font-size: 0!important;
    }
    .filter-form .form-group.floating-group {
        padding: 0 16px;
        width: 56px;
    }
    .filter-form .form-group.date-field {
        margin-left: 0 !important;
        padding-left: 16px;
    }
    form.filter-form .form-control.datepicker.floating-control {
        font-size: 0;
    }
    .filter-form .form-group.search-field:not(.floating-group) {
        width: calc(100% - 168px);
        padding: 0;
    }
    .filter-form .form-group.search-field:not(.floating-group) .form-control {
        padding: 0 8px;
    }
    .filter-form .form-group.date-field::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    }
    .filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
        opacity: 0;
    }
    .select2-dropdown {
        min-width: 200px;
        transform: translateX(-100px);
    }
    .filter-form button.btn.btn-search {
        padding: 14px;
        width: 40px;
        height: 56px;
        border-radius: 40px;
        background: transparent;
        border: none;
        position: absolute;
        left: 0;
    }
    form.filter-form {
        position: relative;
    }
    input#search_all::placeholder, input#search_all:-moz-placeholder,
    input#search_all::-moz-placeholder, input#search_all::-webkit-input-placeholder {
        color:  #FFFFFF80!important;
    }
    .form-group.city-field.filled-in .select2-selection--single .select2-selection__placeholder:before, .filter-form .city-field.filled-in .select2-selection.select2-selection--single.select2-selection--clearable:before {
        background-image: url(../media/filter/map-fill.svg);
    }
    .form-group.search-field.filled-in .select2-selection--single .select2-selection__placeholder:before, .filter-form .search-field.filled-in .select2-selection.select2-selection--single.select2-selection--clearable:before {
        background-image: url(../media/filter/music-fill.svg);
    }
    .filter-form .form-group.date-field.filled-in::before {
        background-image: url(../media/filter/date-fill.svg);
    }
    .datepicker table tr td, .datepicker table tr th {
    font-size: 12px; 
    }
    .datepicker table {
    border-spacing: 4px;
    }
    .datepicker .datepicker-switch {
    font-size: 13px !important;
    line-height: 24px !important;
    }
    .filter-sticky {
        position: fixed !important;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--color-bg-secondary);
        padding: 8px 8px 24px;
        transition: all 0.3s ease;
        border-radius: 38px 38px 0 0;
    }
    .filter-sticky.filter-form button.btn.btn-search {
        left: 8px;
    }
}
@media (max-width: 450px) {
    .filter-form .form-group.floating-group {
        padding: 0 12px;
        width: 48px;
    }
    .filter-form .form-group.search-field:not(.floating-group) {
        width: calc(100% - 144px); 
    }
    .filter-form button.btn.btn-search {
        padding: 10px;
        width: 36px;
        height: 56px;
        border-radius: 40px;
    }
    form.filter-form .fields-flex {
        padding-left: 36px;
    }
    .filter-form button.btn.btn-search svg {
        width: 16px;
    }
    .filter-form .form-group.search-field:not(.floating-group) .form-control {
        padding: 0;
    }
    .select2-dropdown {
        transform: translateX(-150px);
    }
    .select2-dropdown .select2-results__options .select2-results__option {
        padding: 6px 0px;
        font-size: 12px; 
    }
}
/*** End filter ***/
/*** style global home__wrapper ***/

.home__wrapper h2 , .home__wrapper .h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    text-align: center;
    margin: 0;
    position: relative;
    display: inline-block;
}
.home__wrapper h2.h2-sm {
    font-size: 48px;
}
.home__wrapper p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    margin: 0;
}
.home__wrapper h3, .home__wrapper .h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
}

.btn-with-icon {
    padding-right: 72px;
    position: relative;
}
.btn-with-icon:after {
    content: "";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(/media/icons/arrow-dark.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.btn-with-icon:hover:after, .btn-with-icon:focus:after {
    background-image: url(/media/icons/arrow-white.svg);
}
/*** home-services ***/
.home-services {
    position: relative;
    overflow: hidden;
}
.home-services:before {
    content: "";
    position: absolute;
    right: -88px;
    top: -98px;
    width: 375px;
    height: 375px;
    background-image: url(/media/home/spark-11.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
    z-index: 0;
}
.home-services:after {
    content: "";
    position: absolute;
    width: 388px;
    height: 406px;
    left: 0;
    bottom: 0;
    background-image: url(/media/home/spark-22.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
}
.home-services .container > div {
    position: relative;
    z-index: 1;
}
.home-services .home-services__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--section-gap-lg);
}
.home-services .home-services__title h2:after {
    content: "";
    position: absolute;
    width: 37px;
    height: 55px;
    right: -52px;
    bottom: -5px;
    background-image: url(/media/home/click.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
}
.item-service__card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 40px;
    z-index: 1;
}
.item-service__card .picture img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.item-service__card .detail {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 24px;
    z-index: 2;
    width: 100%;
}
.item-service__card:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
}
.item-service__card .detail h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    margin: 0;
}
.item-service:nth-child(2) .detail h3 span, .item-service:nth-child(3) .detail h3 span {
    display: block;
}
.item-service:not(:last-child) {
    position: relative;
}
.item-service:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    right: -30px;
    background-image: url(/media/home/services/button.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    z-index: 3;
    pointer-events: none;
}
.item-service:nth-child(4) .item-service__card .picture img {
    filter: brightness(1) contrast(1.2) saturate(1.0) hue-rotate(330deg);
}
/*** End home-services ***/
/*** home-talent ***/
.home-talent {
    position: relative;
    background-image: url(/media/home/bg-talent.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.home-talent:before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: brightness(0.6) contrast(1.2) saturate(1.5) hue-rotate(5deg);
    transform: scale(1);
    z-index: 0;
}
.home-talent:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}
.home-talent .home-talent__content,
.home-talent .home-talent__text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap-lg);
}
.home-talent .home-talent__content {
    max-width: 784px;
    margin: 0 auto;
}
.home__wrapper .home-talent p {
    font-size: 17px;
    font-weight: 300;
}
.home-talent__btn .btn {
    line-height: 21px;
}
/*** End home-talent ***/
/*** home-offers ***/
.home-offers {
    background-color: var(--color-secondary);
    position: relative;
}
.home-offers:after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    bottom: 0;
    width: 315px;
    height: calc(100% - 16px);
    background-image: url(/media/home/bg-offers.png);
    background-repeat: no-repeat;
    background-position: right top;
}
.home-offers .home-offers__content {
    position: relative;
    z-index: 1;
    padding: 0 120px;
}
.home-offers .offer-card .h3 {
    color: var(--color-bg-main);
}
.home-offers .offer-card p {
    color: var(--color-bg-main);
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    text-align: left;
}

.home-offers .swiper-offers-container {
    width: 100% !important;
    overflow: hidden;
    padding: 0 0 32px;
}
.home-offers .swiper-button-prev, .home-offers .swiper-button-next {
    background: var(--color-bg-main);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
.home-offers .swiper-button-prev, .home-offers .swiper-container-rtl .swiper-button-next {
    background-image: url(/media/icons/arrow-left.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
.home-offers .swiper-button-next, .home-offers .swiper-container-rtl .swiper-button-prev {
    background-image: url(/media/icons/arrow-right.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
.home-offers .swiper-pagination-bullet {
    background: #D9D9D9;
    opacity: 1;
}
.home-offers .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-main);
}
/*** End home-offers ***/
/*** home-categories ***/
.home-categories {
    padding: var(--section-py-xl) 0 0;
    background: linear-gradient(180deg, #0C0021 0%, rgba(23, 0, 61, 0) 100%);
    position: relative;
}
.home__wrapper .home-categories__title h2 {
    line-height: 1.5;
}
.home-categories .row-categories {
    grid-template-columns: repeat(9, 1fr);
    gap: 18px;
}
.category-card .detail h3 {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: var(--font-size-lg);
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--color-secondary); 
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-card:hover .detail h3 {
    color: var(--color-secondary-2);
}
.category-card {
    text-decoration: none !important;
}
.category-card .picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}
.home-categories__content {
    margin-bottom: var(--section-py-md);
}
.home-categories__cta {
    background: rgb(255 255 255 / 10%);
    padding: var(--section-py-sm);
    border-radius: 80px;
}
.home__wrapper .home-categories__cta h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 48px;
    align-items: center;
    display: inline-flex;
    margin: 0;
}
.home__wrapper .home-categories__cta h2 span {
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;
    margin-right: 24px;
}
.button-style-3.btn-with-icon:hover:after, .button-style-3.btn-with-icon:focus:after {
    background-image: url(/media/icons/arrow-green.svg);
}
.item_category .category-card .picture {
    position: relative;
}
.item_category .category-card .picture:after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    right: -8px;
    bottom: -8px;
    background-image: url(/media/icons/button-category.svg);
    background-size: 56px;
    background-position: right bottom;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease;
}
.item_category .category-card:hover .picture:after {
    opacity: 1;
    transform: translateX(0);
}
.category-card:hover .detail h3 {
    color: var(--color-secondary-2) !important;
}
/*** End home-categories ***/
/*** home-recommendations ***/
/* card-artist style in custom.css */
/*** End home-recommendations ***/
/*** home-subscription ***/
section.home-subscription {
    padding: 42px 0 164px;
    background: linear-gradient(180deg, rgba(57, 0, 149, 0) 0%, #74118A 89.42%);
    background-image: url(/media/home/bg-subscription-left.png), linear-gradient(180deg, rgba(57, 0, 149, 0) 0%, #74118A 89.42%);
    background-repeat: no-repeat;
    background-position: left center, center top;
    background-size: auto, cover;
    position: relative;
}
.home-subscription:before {
    content: "";
    position: absolute;
    right: 0;
    top: 42px;
    width: 100%;
    height: 100%;
    background-image: url(/media/home/bg-subscription-top.png);
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto;
    z-index: 0;
}
.home-subscription:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 57px;
    width: 100%;
    height: 100%;
    background-image: url(/media/home/bg-subscription-bottom.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto;
    z-index: 0;
}
.home-subscription .container > div {
    position: relative;
    z-index: 1;
}
.home-subscription .home-subscription__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap-lg);
}
.home__wrapper .home-subscription p.sub__title {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
}
.home__wrapper .home-subscription p.text {
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
}
.home-subscription .nav.nav-pills {
    border: none;
    background: #FFFFFF1A;
    margin: 0 auto;
    width: auto;
    border-radius: 40px;
    padding: 4px;
    gap: 8px;
    display: inline-flex;
}
.home-subscription .nav.nav-pills .nav-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-secondary);
    padding: 16px 40px;
    border-radius: 32px;
    background: transparent;
}
.home-subscription .nav-pills .nav-link.active, .home-subscription .nav-pills .show > .nav-link {
    background: var(--color-secondary);
    color: var(--color-main)!important;
}
.home-subscription .nav-pills .nav-link:focus, .home-subscription .nav-pills .nav-link:hover {
    color: var(--color-secondary-2);
}
.home-subscription .tab-content {
    display: block;
    margin: 50px 0 0;
}
.home-subscription .subscriptions-swiper .swiper-wrapper {
    align-items: stretch;
}
.home-subscription .subscriptions-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.plan-card {
    position: relative;
    height: 100%;
}
.plan-card .plan-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    border: 3px solid  var(--color-secondary);
    background: var(--color-bg-secondary);
    border-radius: 40px;
    padding: 35px;
    position: relative;
    z-index: 1;
}
.plan-card.top-plan .plan-card__content {
    border-color: var(--color-secondary-1);
}
.plan-card.plan-2 .plan-card__content {
    border-color: var(--color-secondary-2);
}
.plan-card .plan-card__badge {
    background: var(--color-secondary-1);
    border: 3px solid var(--color-secondary-1);
    backdrop-filter: blur(16px);
    padding: 16px 16px 48px;
    position: absolute;
    left: 0;
    right: 0;
    top: -56px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    border-radius: 40px 40px 0 0;
    z-index: 0;
    opacity: 0;
    transform: translateY(56px);
    transition: opacity .3s ease-out, transform .4s linear;
    opacity: 1!important;
    transform: translateY(0)!important;
}
.plan-card .plan-card__badge span {
    position: relative;
    padding-left: 32px;
    padding-right: 32px; 
}
.plan-card .plan-card__badge span:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 15px;
    background-image: url(/media/home/subscriptions/top-plan.svg);
    background-repeat: no-repeat;
    background-size: auto;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.plan-card:hover .plan-card__badge {
    opacity: 1;
    transform: translateY(0);
}
.plan-card.plan-1 .plan-card__badge span:before, .plan-card.plan-2 .plan-card__badge span:before {
    background-image: url(/media/home/subscriptions/top-plan-dark.svg);
}
.plan-card.plan-1 .plan-card__badge {
    background: var(--color-secondary);
    border: 3px solid var(--color-secondary);
    color: var(--color-bg-main);
}
.plan-card.plan-2 .plan-card__badge {
    background: var(--color-secondary-2);
    border: 3px solid var(--color-secondary-2);
    color: var(--color-bg-main);
}
.plan-card.top-plan {
    border: none;
}
.plan-card.top-plan .plan-card__badge img {
    margin-right: 8px;
}
.plan-card h3.plan-title {
    margin: 0;
    line-height: 20px;
}
.home__wrapper .plan-card .plan-title .h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0px;
    vertical-align: bottom;
    margin: 0;
}
.plan-card .plan-title .h4.subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0px;
}
.plan-card .plan-icon img {
    width: 36px;
    height: 36px;
}
.plan-card .discount {
    width: 148px;
    border: 1px solid #ffffff;
    border-radius: 8px;
    text-align: center;
    font-family: Sora;
    font-weight: 700;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0px;
    padding: 7px 12px;
    text-transform: capitalize;
}

.plan-card .plan-text .plan-description {
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: 0px;
}
.plan-card .plan-text .plan-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    min-height: 56px;
    vertical-align: middle;
}
.plan-card .plan-text .plan-price em {
    font-style: normal;
}
.plan-card .plan-text .plan-price small {
    font-size: 20px;
    text-transform: lowercase;
}
.plan-card .plan-text .plan-price .price-off {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: 0px;
    position: relative;
    margin-right: 0;
    top: 0;
    color: var(--color-secondary);
}
.plan-card .plan-text .plan-price .price-off:after {
    width: calc(100% + 4px);
    height: 100%;
    border-top: 2px solid #fff;
    content: "";
    position: absolute;
    top: 8px;
    left: -7px;
    transform: rotate(15deg);
}
.plan-card.plan-2 .plan-text .plan-price .price-off:after {
    border-top-color: var(--color-secondary-2);
}
.plan-card.top-plan .plan-text .plan-price .price-off:after {
    border-top-color: var(--color-secondary-1);
}
.plan-divider hr {
    margin: 0;
    border-top: 1px solid var(--color-secondary);
    opacity: .2;
}
dl.plan-details-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
dl.plan-details-list dt, dl.plan-details-list dd {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    min-height: 1.5rem;
    padding: 0;
    margin-bottom: .5rem;
    font-weight: 300;
    text-transform: capitalize;
    word-break: normal;
    font-size: 12px;
    line-height: 21px;
}
dl.plan-details-list dd {
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
    text-align: right;
}
dl.plan-details-list dt {
    -ms-flex: 1 0 70%;
    flex: 1 0 70%;
    text-align: left;
}
dl.plan-details-list dd.plan-detail-value i {
    font-size: 14px;
}
.plan-card .plan-action .btn {
  position: relative;
  overflow: hidden; 
    width: 100%;
}

.plan-card .plan-action .btn span {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.plan-card .plan-action .btn span.span_initial {
  opacity: 1;
  transform: translateY(0);
}

.plan-card .plan-action .btn span.span_hover {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
}

.plan-card:hover .btn.button-style-2 span.span_initial,
.plan-card:focus .btn.button-style-2 span.span_initial {
  opacity: 0;
  transform: translateY(-10px);
}

.plan-card:hover .btn.button-style-2 span.span_hover,
.plan-card:focus .btn.button-style-2 span.span_hover {
  opacity: 1;
  transform: translateY(0); 
}
.plan-card .btn.button-style-2 {
    color: var(--color-bg-main);
}
.plan-card .btn.button-style-2:hover, .plan-card .btn.button-style-2:focus {
    color: var(--color-secondary);
}
.plan-card.plan-2 .btn.button-style-2 {
    background: var(--color-secondary-2);
    border-color: var(--color-secondary-2);
    color: var(--color-bg-main);
}
.plan-card.plan-2 .btn.button-style-2:hover, .plan-card.plan-2 .btn.button-style-2:focus {
    background: var(--color-main);
    border-color: var(--color-secondary-2);   
    color: var(--color-secondary-2);
}
.plan-card.top-plan .btn.button-style-2 {
    background: var(--color-secondary-1);
    border-color: var(--color-secondary-1);
    color: var(--color-secondary);
}
.plan-card.top-plan .btn.button-style-2:hover, .plan-card.top-plan .btn.button-style-2:focus {
    background: var(--color-secondary);
    border-color: var(--color-secondary-1);   
    color: var(--color-secondary-1);
}
.plan-card.plan-2 .discount {
    color: var(--color-secondary-2);
    border-color: var(--color-secondary-2);
}
.plan-card.top-plan .discount {
    color: var(--color-secondary-1);
    border-color: var(--color-secondary-1);
}
.plan-card .plan-action {
    margin: auto 0 0;
}
/*** End home-subscription ***/
/*** home-voucher ***/
section.home-voucher {
    padding: var(--section-py-lg) 0;
    background-color: var(--color-secondary);
    background-image: url(/media/home/bg-voucher-left.png);
    background-repeat: repeat-y;
    background-size: auto;
    background-position: left top;
}
.home-voucher__content * {
    text-align: left !important;
    color: var(--color-bg-main);
}
/*** End home-voucher ***/
/*** home-blog ***/
.home-blog {
    padding: var(--section-py-lg) 0 var(--section-py-md);
    position: relative;
}
.blog__grid {
    grid-template-columns: repeat(2, 1fr);
}
.grid-item-large {
  grid-row: span 2;
}
.grid-item-small {
  grid-column: 2;
}
.post-item {
    display: flex;
    flex-direction: column;
    background: #200050;
    border-radius: 16px;
    border: none;
    width: 100%;
    height: 100%;
    gap: 8px;
    text-decoration: none;
    color: var(--color-secondary);
    overflow: hidden;
}
.post-item .detail {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.post-item .detail h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.post-item .post-excerpt , .post-item .post-excerpt p {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    text-align: left!important;
}
.post-item .read-more {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-secondary-2);
    display: table;
    position: relative;
    width: auto;
    margin-top: 8px;
    margin-left: 0;
    margin-right: 0;
    transition: transform 0.3s linear;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(0);
}
.post-item .read-more i {
    font-size: 12px;
}
.post-item .picture img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1);
    /* transition: transform 0.3s linear; */
}
.post-item .picture img {
    width: 100%;
    height: auto;
    max-height: 370px;
    object-fit: cover;
}
.post-item .post-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
.grid-item-small .post-item .post-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}
.grid-item-small .post-item {
    flex-direction: row;
    height: 100%;
}
.grid-item-small .post-item .picture {
    width: 40%;
}
.grid-item-small .post-item .detail {
    width: 60%;
}
.grid-item-small .post-item .picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.grid-item-small .post-item .detail h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
}
.grid-item-small .post-item .detail {
    padding: 24px;
    justify-content: space-between;
}
}
.post-item:hover .post-title h3, .post-item:hover .post-excerpt {
    color: var(--color-secondary);
}
.post-item:hover .read-more {
    text-decoration: underline;
}
.post-item:hover .picture img {
    transform: scale(1.05);
}
/*** End home-blog ***/
/*** home-faq ***/
.home-faq {
    padding: var(--section-py-lg) 0;
    background-color: var(--color-bg-main);
    background: linear-gradient(180deg, rgba(57, 0, 149, 0) 0%, rgba(116, 17, 138, 0.6) 100%);
}
.home__wrapper .home-faq h2 {
    font-size: 40px;
}
button.btn-collapse {
    padding: 8px 8px 8px 32px;
    background: transparent;
    border: none;
    text-align: left;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.faq-item {
    background: #FFFFFF1A;
    max-width: 800px;
    border-radius: 48px;
    width: 100%;
    transition: max-width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.6s ease;
}
button.btn-collapse h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0px;
    margin: 0;
    color: var(--color-secondary);
    padding-right: 80px;
    transition: all 0.4s ease;
}
button.btn-collapse .icon-toggle svg {
    transform: rotate(0deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-item.active,
.faq-item.hovered,
.faq-item:hover {
    max-width: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0%, rgba(226, 255, 108, 0.3) 100%);
    text-align: center;
}
.faq-item .faq-collapse {
    padding: 0 32px 32px;
    text-align: left;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--font-main);
}
.faq-item:not(.active).hovered button.btn-collapse .icon-toggle svg ,
button.btn-collapse:not(.active):hover .icon-toggle svg {
    transform: rotate(90deg);
}
.faq-item.active button.btn-collapse .icon-toggle svg  {
    transform: rotate(270deg); 
    transition: none;
}
.faq-item.active button.btn-collapse .icon-toggle svg, .faq-item.active button.btn-collapse .icon-toggle svg path,
.faq-item.hovered button.btn-collapse .icon-toggle svg path, .faq-item.hovered button.btn-collapse .icon-toggle svg,
button.btn-collapse:hover .icon-toggle svg path, button.btn-collapse:hover .icon-toggle svg {
    fill: var(--color-secondary-2);
    color: var(--color-secondary-2);
}
.faq-item.active button.btn-collapse h3 ,
.faq-item.hovered button.btn-collapse h3 ,
button.btn-collapse:hover h3 {
    color: var(--color-secondary-2);
}
.faq-item .faq-collapse {
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s linear;
}
.faq-item.active .faq-collapse, .faq-item .faq-collapse.show{
  transform: translateY(0);
  opacity: 1;
}
/*** End home-faq ***/
/*** home-support ***/
.home-support {
    padding: 104px 0;
    background-color: var(--color-secondary-2);
    background-image: url(/media/home/bg-support.png);
    background-repeat: repeat-x;
    background-position: left center;
    background-size: auto cover;
}
.home-support h2, .home-support p {
    color: var(--color-bg-main);
    text-align: left;
} 
.home__wrapper .home-support h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
}
.home__wrapper .home-support p {
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    font-family: var(--font-heading);
}
.home-support .btn i {
    width: 24px;
    text-align: center;
    margin-right: 16px;
    font-size: 20px;
    height: 16px;
    top: 3px;
    position: relative;
}
/*** End home-support ***/

.filter-form .select2-container--default .select2-selection--single .select2-selection__clear {
    display: block!important;
}
.filter-form .select2-container--default .select2-selection--single .select2-selection__clear span {
    font-weight: 300;
    font-size: 20px;
}
/*** V mini-Desktop ***/
@media ( max-width: 1400px ) and ( min-width: 992px ) {
    .category-card .picture img {
    width: 90px;
    height: 90px;
    }
}
@media ( max-width: 1200px ) {
.home-banner__swiper {
    padding-top: 40px;
}  
.home-banner__swiper .swiper-slide .picture {
    width: 280px;
    height: 280px; 
} 
    .home-banner__swiper .swiper-slide .detail span.h3 {
        font-size: 24px;
    } 
.home-banner__pagetitle h1 {
    font-size: 64px;
}
.home-banner__pagetitle p.sub__title {
    font-size: var(--font-size-lg);
}
.home-banner__pagetitle {
    padding-bottom: 62px;
}
.home__wrapper h2, .home__wrapper .h2 {
    font-size: 48px;
}
.home__wrapper p {
    font-size: 18px;
    line-height: 30px;
}
.item-service__card {
    height: 360px; 
}
.item-service__card .picture img {
    height: 360px; 
}
.home-talent .home-talent__content, .home-talent .home-talent__text {
    gap: var(--section-gap-sm);
}
.home-categories {
    padding: var(--section-py-lg) 0 var(--section-py-md);
}
.home__wrapper .home-categories__title h2 {
    line-height: 1.2;
}
.home-subscription .home-subscription__title {
    gap: var(--section-gap-md);
}
.home__wrapper .home-subscription p.sub__title {
    font-size: 24px; 
    line-height: 1.5;
}
.plan-card .plan-text .plan-price {
    font-size: 40px; 
    min-height: 47px;
}
.home__wrapper .plan-card .plan-title .h3 {
    font-size: 36px;
    line-height: 48px; 
}
.plan-card .plan-title .h4.subtitle {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
}
dl.plan-details-list dt, dl.plan-details-list dd {
    min-height: 1.25rem;
    margin-bottom: .25rem;
    font-size: 11px;
    line-height: 20px;
}
dl.plan-details-list dd.plan-detail-value i {
    font-size: 12px;
}
dl.plan-details-list {
    margin: 0;
}
.plan-card .plan-card__content {
    padding: 24px;
}
section.home-subscription {
    padding: 40px 0 120px; 
}
.home-subscription:after {
    bottom: 40px; 
}
.home-subscription:before {
    top: 32px;
    width: 100%;
    height: 180px;
    background-size: 100%;
}
.home-subscription .title_icon img {
    width: 100px;
    height: auto;
}
.home__wrapper h2.h2-sm {
    font-size: 40px;
} 
.home__wrapper .home-voucher p {
    font-size: 18px;
    line-height: 30px;
}
section.home-voucher {
    padding: 60px 0;
    background-size: 300px;
}
.home-faq {
    padding: 60px 0;
}
.home__wrapper .home-faq h2 {
    font-size: 36px;
}
.home__wrapper .home-support h2 {
    font-size: 30px;
}
.home__wrapper .home-support p {
    font-size: 40px;
}
.home-support {
    padding: 80px 0;
}
.post-item .detail h3 {
    font-size: 26px; 
    margin-bottom: .5rem;
}
.post-item .read-more {
    font-weight: 500;
    font-size: 14px;
}
.grid-item-small .post-item .post-excerpt {
    -webkit-line-clamp: 4;
    line-clamp: 4; 
}
button.btn-collapse {
    padding: 8px 8px 8px 28px;
    height: 72px; 
}
button.btn-collapse .icon-toggle svg {
    width: 56px;
    height: 56px;
}
button.btn-collapse h3 {
    font-weight: 500;
}
.faq-item {
    max-width: 68%; 
}
    .home__wrapper h3, .home__wrapper .h3 {
        font-size: 42px;
    }
}

@media ( max-width: 1025px ) {
    .home-banner__swiper .swiper-slide .detail span.h3 {
        font-size: 20px;
    }
}
/*** V tablet ***/
@media ( max-width: 992px ) {
    .home-services__swiper .swiper-slide {
        position: relative;
    }
    .home-services__swiper .swiper-slide:nth-child(1) { z-index: 4; }
    .home-services__swiper .swiper-slide:nth-child(2) { z-index: 3; }
    .home-services__swiper .swiper-slide:nth-child(3) { z-index: 2; }
    .home-services__swiper .swiper-slide:nth-child(4) { z-index: 1; }
    .home-services__swiper .item-service__card {
        z-index: 1;
    }
    .home-services__swiper .item-service:not(:last-child)::before {
        z-index: 5;
        pointer-events: none;
    }
    .home-banner__swiper .swiper-slide .picture {
        width: 250px;
        height: 250px;
    }
    .home-banner__pagetitle h1 {
        font-size: 48px;
    }
    .home-banner__swiper .swiper-slide .detail span.h3 {
        font-size: 18px;
    }
        .home__wrapper h2, .home__wrapper .h2 {
        font-size: 40px;
    }
    .home-services .home-services__title {
        gap: var(--section-gap-sm);
    }
    .home-services .home-services__title h2:after {
        display: none;
    }
    .home__wrapper .home-talent p {
        font-size: 16px;
    }
    .home-offers .home-offers__content {
        padding: 0 80px;
    }
    .home__wrapper h3, .home__wrapper .h3 {
        font-size: 38px;
    }
    .home-offers:after {
        width: 200px;
        background-position: left top;
    }
    .home-categories__title.mb-4, .home-faq__title.mb-4 {
        margin-bottom: 2rem !important;
    }
    .home__wrapper h2.h2-sm {
        font-size: 36px;
    }
    section.home-voucher {
        padding: 40px 0;
        background-size: 160px;
    }
    .home-faq {
        padding: 40px 0 60px;
    }
    .faq-item {
        max-width: 100%;
    }
    .home__wrapper .home-faq h2 {
        font-size: 32px;
        line-height: 40px;
        text-align: left;
        max-width: calc(100% - 270px);
    }
    .home-categories .row-categories {
        grid-template-columns: repeat(5, 1fr);
    }
    .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 0!important; 
    }
    .home-subscription .home-subscription__title {
        gap: var(--section-gap-sm);
    }
    .home__wrapper .home-subscription p.sub__title {
        font-size: 20px;
        line-height: 1;
    }
    .post-item .detail h3 {
        font-size: 24px;
        line-height: 1.2;
    }
    .home-subscription:after {
        bottom: 40px;
        height: 40px;
        background-size: auto 40px;
    }
    .home-categories__cta {
        border-radius: 40px;
    }
}
/*** V Mobile ***/
@media ( max-width: 768px ) {
        .home-banner__swiper .swiper-slide .picture {
        width: 200px;
        height: 200px;
    }
        .home-banner__pagetitle h1 {
        font-size: 44px;
    }
    .home-banner__pagetitle p.sub__title {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 1rem;
    }
    .home-banner__swiper .swiper-slide .detail span.h3 {
        font-size: 16px;
    }
    .home-categories .row-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    .item-service__card .detail {
    padding: 24px 16px;
    }
    .item-service__card .detail h3 {
        font-size: 18px;
    }
    .home-categories__cta {
        border-radius: 32px;
    }
    .home__wrapper h2, .home__wrapper .h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .home__wrapper p {
        font-size: 16px;
        line-height: 28px;
    }
    .home-services:before {
        right: -60px;
        top: -60px;
        width: 200px;
        height: 200px;
        background-size: 200px;
    }
    .home-services:after {
        width: 250px;
        height: 280px;
        background-size: 250px;
    }
    .home-talent .home-talent__content {
        max-width: 80%;
    }
    .home-offers .offer-card, .home-offers .offer-card p {
        text-align: center;
    }
    .home-offers .offer-card p {
        font-size: 14px;
        line-height: 24px;
    }
    .home-offers:after {
        width: 140px;
        background-position: left top;
    }
    .home__wrapper .home-categories__cta h2 {
        flex-direction: column;
        align-items: center;
    }
    .home-recommendations__title {
        text-align: center;
    }
    .category-card .detail h3 {
        font-size: var(--font-size-md);
    }
    .home-subscription:before {
        top: 0;
        height: 120px;
    }
    .home-subscription .title_icon img {
        width: 64px; 
    }
    .home__wrapper .home-subscription p.sub__title {
        font-size: 16px;
        line-height: 1;
    }
    section.home-voucher .home-voucher__content {
        text-align: center;
        align-items: center;
        max-width: 440px;
        margin: 0 auto;
        z-index: 1;
        position: relative;
    }
    .home__wrapper h2.h2-sm {
        font-size: 30px;
        line-height: 1;
    }
    .home__wrapper .home-voucher p {
        font-size: 16px;
        line-height: 28px;
        text-align: center !important;
    }
    .home__wrapper .home-voucher h2 {
        text-align: center !important;
    }
    section.home-voucher {
        background: var(--color-secondary);
        position: relative;
    }
    section.home-voucher:before {
        content: "";
        position: absolute;
        left: -150px;
        top: 0;
        width: 300px;
        height: 100%;
        background-image: url(/media/home/bg-voucher-left.png);
        background-repeat: repeat-y;
        background-size: 100%;
        background-position: left top;
    }
    section.home-blog {
        padding: 60px 0 40px;
    }
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-item-large {
        grid-row: span 1;
        grid-column: 1 / -1;
    }
    .item-2.grid-item-small {
        grid-column: 2 / 3;
    }
    .item-1.grid-item-small {
        grid-column: 1 / 2;
    }
    .post-item .detail h3 {
        font-size: 20px;
    }
    .post-item .read-more {
        font-size: 12px;
    }
    .grid-item-small .post-item .post-excerpt {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    .home__wrapper .home-faq h2 {
        font-size: 24px;
        line-height: 32px; 
    }
    button.btn-collapse h3 {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        padding-right: 0;
    }
    button.btn-collapse .icon-toggle svg {
        width: 40px;
        height: 40px;
    }
    .faq-item {
    border-radius: 30px; 
    }
    button.btn-collapse {
        height: auto;
    }
    .home-faq {
        padding: 40px 0 40px;
    }
    .home-support {
        padding: 48px 0;
        text-align: center;
        background-position: right center;
        background-size: cover;
    }
    .home-support .home-support__content {
        text-align: center !important;
        align-items: center;
    }
    .home__wrapper .home-support h2 {
        font-size: 24px;
    }
    .home__wrapper .home-support p {
        font-size: 32px;
        line-height: 39px;
        text-align: center !important;
    }
        .home__wrapper .home-talent p {
        font-size: 14px;
    }
    .home__wrapper .home-categories__cta h2 {
        font-size: 18px;
        line-height: 1.2;
    }
    .home__wrapper .plan-card .plan-title .h3 {
        font-size: 32px;
        line-height: 42px;
    }
    .plan-card .plan-title .h4.subtitle {
        font-size: 14px;
        line-height: 24px;
        margin: 0;
    }
    .plan-card .plan-icon img {
        width: 32px;
        height: 32px;
    } 
    section.home-subscription {
        padding: 40px 0 120px;
        background: linear-gradient(180deg, rgba(57, 0, 149, 0) 0%, #74118A 89.42%);
    }
    .post-item .picture img {
        max-height: 200px;
    }
    .faq-item .faq-collapse {
    font-size: 12px;
    line-height: 18px;
    padding: 0px 20px 25px 28px;
    }
    .item_category .category-card .picture:after {
    width: 46px;
    height: 46px;
    right: -8px;
    bottom: -8px;
    background-size: 46px;
    }
}
@media ( max-width: 576px ) {
    .home-banner__swiper {
        padding-top: 40px;
        padding-bottom: 24px;
    }
    .home-banner__swiper .swiper-slide .picture {
        width: 180px;
        height: 180px;
    }
    .home-banner__swiper .swiper-slide .detail span.h3 {
        font-size: 14px;
        text-align: left!important;
    }
    .home-banner__pagetitle {
        padding-bottom: 3rem;        
        padding-top: 24px;
    }
    .home-banner__pagetitle h1 {
        font-size: 40px;
    }
    .home-banner__pagetitle  h1 span {
        display: block;
    }
    .home-banner__pagetitle p.sub__title {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 1rem;
    }
    .home-services .home-services__title {
        gap: 1rem;
    }
    .home__wrapper h2, .home__wrapper .h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .home__wrapper p {
        font-size: 14px;
        line-height: 24px;
    }
    .item-service__card {
        height: 248px;
        border-radius: 16px;
    }
    .item-service__card .picture img {
        height: 248px;
    }
    .item-service__card .detail {
        padding: 16px;
    }
    .item-service__card .detail h3 {
        font-size: 14px;
        line-height: 20px;
    }
    .item-service:not(:last-child)::before {
        width: 48px;
        height: 48px;
        background-size: 48px;
    }
    .home-services:before {
        right: -54px;
        top: -51px;
        width: 158px;
        height: 158px;
        background-size: 158px;
    }
    .home-services:after {
        width: 206px;
        height: 220px;
        background-size: 206px;
    }
    .home-talent .home-talent__content {
        max-width: 100%;
        padding: 0 .5rem;
    }
    .home__wrapper .home-talent p {
        font-size: 12px;
        line-height: 18px;
    }
    .home-offers .home-offers__content {
        padding: 0 20px;
        text-align: center;
    }
    .home-offers .swiper-button-prev, .home-offers .swiper-button-next {
        display: none;
    }
    .home-offers:after {
        width: 90px;
        background-size: auto 100%;
        background-position: left center;
        top: 0;
        bottom: 0;
        height: 100%;
    }
    .home-offers .offer-card p {
        font-size: 12px;
        line-height: 18px; 
        text-align: center;
        }
    .home__wrapper h3, .home__wrapper .h3 {
        font-size: 28px;
        line-height: 34px;
    }
    .home-offers .offer-card p {
        font-size: 14px;
        line-height: 24px;
    }
    .home-categories__title {
        max-width: 290px;
        margin: 0 auto;
    }
    .category-card .picture img {
    width: 80px;
    height: 80px; 
    }
    .category-card .detail h3 {
        font-size: 12px;
        line-height: 18px;
        margin: 0;
    }
    .home-categories .row-categories {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
        column-gap: 14px;
    }
    .home-categories__content {
        margin-bottom: 32px;
    }
    .home__wrapper .home-categories__cta h2 span {
        font-size: 40px;
        line-height: 48px;
        margin-right: 0;
    }
    .home__wrapper .home-categories__cta h2 {
        font-size: 16px;
        line-height: 1;
    }
    .home__wrapper h2.h2-sm {
        font-size: 28px;
        line-height: 34px;
    }
    .home-categories__cta {
        padding: 1rem;
    }
    .home__wrapper h2.h2-sm {
        font-size: 28px;
    }
    .home-recommendations__title {
        text-align: center;
    }
    section.home-subscription {
        padding: 40px 0 104px;
    }
    .home__wrapper .home-subscription p.sub__title {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
    }
    .home__wrapper .home-subscription p.text {
        font-size: 12px;
        line-height: 1.2;
        font-weight: 300;
    }
    .home-subscription:before {
        top: 0; 
    }
    .home-subscription .home-subscription__title {
        gap: 1rem;
        max-width: 345px;
        margin: 0 auto 40px;
    }
    .home-subscription .title_icon img {
        width: 48px;
        height: auto;
    }
    .home__wrapper .plan-card .plan-title .h3 {
        font-size: 24px;
        line-height: 32px;
    }
    .plan-card .plan-title .h4.subtitle {
        font-size: 12px;
        line-height: 24px;
        margin: 0;
    }
    .plan-card .plan-icon img {
        width: 26px;
        height: 26px;
    }
    .plan-card .plan-card__content {
        gap: 12px;
    }
    .plan-card .plan-icon {
        margin-bottom: 12px !important;
    }
    .plan-card .plan-card__badge {
        padding: 8px 16px 40px;
        top: -38px;
        font-size: 14px;
        line-height: 24px;
    }
    .plan-card .plan-text .plan-price {
        font-size: 32px;
        min-height: inherit;
        line-height: 40px;
    }
    .plan-card .plan-text .plan-description {
        margin-bottom: 12px !important;
    }
    dl.plan-details-list dt, dl.plan-details-list dd {
        font-size: 10px;
        line-height: 16px;
    }
    .plan-card .plan-action .btn {
        padding: .825rem 1rem;
    }
    .plan-card .plan-card__content {
        padding: 16px 20px;
    }
    .plan-card .plan-text .plan-description {
    font-size: 10px;
    line-height: 16px;
    }
    .home-subscription:after {
        bottom: 40px;
        height: 24px;
        background-size: auto 24px;
    }
    .home-subscription .nav.nav-pills .nav-link {
    font-size: 14px;
    line-height: 20px;
    padding: 14px 32px;
    }
    .home__wrapper .home-voucher p {
        font-size: 12px;
        line-height: 18px; 
    }
    .home__wrapper .home-voucher .btn {
        padding: 8px 58px 8px 32px;
        font-size: 14px;
        line-height: 24px;
    }
    .home__wrapper .home-voucher .btn:after {
        width: 20px;
        height: 20px;
        right: 24px;
    }
    section.home-voucher:before {
        left: -177px;
    }
    .post-item .picture img {
        max-height: 160px;
    }
    .post-item .detail h3 {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
    .post-item .post-excerpt {
        font-size: 12px;
        line-height: 18px;
    }
    .post-item .read-more {
        font-size: 12px;
        color: var(--color-secondary);
        text-decoration: underline;
        font-weight: 400;
        line-height: 21px;
        margin: 0 !important;
        display: table;
        width: auto !important;
        transform: none !important;
    }
    .post-item .read-more i {
        font-size: 0;
    }
    .post-item {
        gap: 0;
    }
    .post-item .post-excerpt, .grid-item-small .post-item .post-excerpt {
        -webkit-line-clamp: 4;
        line-clamp: 4; 
    }
    .home__wrapper .home-faq h2 {
        max-width: 265px;
    }
    button.btn-collapse h3 {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        font-family: var(--font-main);
        padding-right: 0;
    }
    button.btn-collapse {
        padding: 8px 8px 8px 16px;
    }
    button.btn-collapse .icon-toggle svg {
        width: 33px;
        height: 33px;
    }
    .faq-item .faq-collapse {
        padding: 0px 16px 20px; 
    }
    .faq-item {
    border-radius: 25px;
    }
    .home-support {
        padding: 40px 0;
        background-position: left center;
    }
    .home__wrapper .home-support h2 {
        font-size: 20px;
        line-height: 25px;
    }
    .home-support .home-support__content .btn {
        padding: 8px 28px 8px 28px;
        font-size: 13px;
        line-height: 24px;
    }
    .home-support .btn i {
        width: 22px;
        margin-right: 13px;
        font-size: 18px;
        height: 12px;
        top: 3px;
    }
}
@media (max-width: 480px) {
    .home-banner__swiper .swiper-slide .detail span.h3 {
        font-size: 12px;
    }
    .home-banner__swiper .swiper-slide .picture {
        width: 165px;
        height: 165px;
    }
    .item-service__card .detail h3 {
        font-size: 12px;
        line-height: 20px;
    }
    .home-talent__btn .btn {
        font-size: 13px;
        padding: 1rem 1rem;
    }
    .home-offers .home-offers__content {
        padding: 0; 
    }
    .home__wrapper .home-categories__cta .btn {
        padding-left: 1rem;
        padding-right: 3rem;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        display: block;
    }
    .home__wrapper .home-categories__cta .btn__wrap {
        width: 100%;
    }
    /* .home__wrapper .home-categories__cta .btn.btn-with-icon:after {
        width: 20px;
        height: 20px;
        right: 16px;
    } */
    .home__wrapper h2.h2-sm {
        font-size: 24px;
    }
    .home-services .home-services__title h2 br {
        display: none;
    }
    .home__wrapper .home-subscription p.sub__title {
        font-size: 12px;
        line-height: 1.5;
        font-weight: 400;
    }
    .home__wrapper .home-subscription p.text {
    font-size: 10px; 
    }
    .post-item .picture img {
        max-height: 140px;
    }
    .home__wrapper .home-faq h2 {
    max-width: 240px;
}
    .item-service:not(:last-child)::before {
        width: 45px;
        height: 45px;
        background-size: 45px;
    }
}
/*** adjust search filter mobile ***/

@media (max-width: 767px) {
    
form.filter-form {
    flex-wrap: wrap!important;
    flex-direction: column;
    padding: 24px 16px 16px;
}
.home-banner__filter.swip-on form.filter-form {
            position: fixed !important;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--color-bg-secondary);
        border-radius: 38px 38px 0 0;
}
    form.filter-form .fields-flex {
        height: auto;
        border-radius: 0;
        padding-left: 0;
        flex-wrap: wrap;
        flex-direction: column;
        background: transparent;
        overflow: visible;
        backdrop-filter: none;
        width: 100%!important;
    }
        .filter-form .form-group {
        padding: 0!important;
        width: 100%!important;
        border: none !important;
        margin: 0 0 8px !important;
    }
        .filter-form button.btn.btn-search {
        padding: 14px;
        border-radius: 40px;
        background: transparent;
        border: none;
        position: relative;
        left: inherit;
        width: 100%;
        height: 52px;
        background: var(--color-secondary-1);
    }
    .filter-form button.btn.btn-search:hover, .filter-form button.btn.btn-search:focus, .filter-form button.btn.btn-search:active {
        background: var(--color-secondary);
        color: var(--color-secondary-1);
        border-color: var(--color-secondary-1);
    }
    .filter-form button.btn.btn-search span.visually-hidden {
    width: auto !important;
    height: auto !important;
    margin: 0 0 0 .5rem !important;
    border: none !important;
    position: relative !important;
    overflow: visible !important;
    clip: inherit !important;
}
.filter-form button.btn.btn-search .search-icon {
    position: relative;
    top: -1px;
}
    .filter-form .select2-container--default .select2-selection--single .select2-selection__arrow {
        opacity: 1;
        right: 8px;
    }
    .filter-form .form-group .select2.select2-container {
    position: static;
    width: 100% !important;
        background: var(--color-main);
    padding: 8px;
    border-radius: 8px;
}
    .filter-form .form-group.date-field {
        margin-left: 0 !important;
        padding-left: 0;
    }
    form.filter-form .form-control.datepicker.floating-control {
        font-size: 14px;
        background: var(--color-main);
        padding: 12px;
        border-radius: 8px;
        height: 56px;
        padding-left: 46px;
    }
    .filter-form .form-group.date-field::before {
        z-index: 0;
        left: 16px;
        transform: translateY(-50%);
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        padding: 0 0 0 32px;
        font-size: 14px !important;
    }
        .home-banner__filter .filter-form {
        max-height: 0;
        opacity: 0;
        transform: translateY(24px);
        overflow: hidden;
        pointer-events: none;
        transition: max-height 300ms ease, opacity 300ms ease, transform 300ms ease;
    }
    .home-banner__filter.swip-on .filter-form {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
        .filter-btn-swip {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 20px;
        padding: 12px 0 8px;
        z-index: 2;
    }
    .filter-btn-swip:after {
        content: "";
        position: absolute;
        width: 64px;
        height: 4px;
        top: 8px;
        background: var(--color-bg-secondary-1);
        left: 50%;
        transform: translateX(-50%);
        border-radius: 8px;
    }
    .filter-form button.btn.btn-search svg {
        width: 20px;
        height: 20px;
    }
    .filter-sticky.filter-form button.btn.btn-search span.visually-hidden {
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        margin: auto !important;
        overflow: auto !important;
        clip: auto !important;
        white-space: nowrap !important;
        border: 0 !important;
        position: relative !important;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }
    .filter-sticky.filter-form button.btn.btn-search span.search-icon {
        position: relative;
        top: -1px;
        margin-right: 10px;
    }
        .select2-dropdown {
        transform: none!important;
    }
    button.btn.btn-toggle-swip {
    background: #44268B;
    border-color: #44268B;
    width: 100%;
    height: 56px;
    color: #FFFFFF80;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
    button.btn.btn-toggle-swip span.search-icon {
    position: relative;
    top: -1px;
    margin-right: 12px;
}
button.btn.btn-toggle-swip span.search-icon svg {
    width: 20px;
    height: 20px;
}
.home-banner__filter.filter-sticky {
        padding: 20px 16px 16px; 
}
    #open_preferences_center {
        bottom: 100px!important;
    }

/* .filter-form .search-field .select2-selection.select2-selection--single.select2-selection--clearable:before {
    left: 12px;
}
.filter-form .city-field .select2-selection.select2-selection--single.select2-selection--clearable:before {
    left: 12px;
}
.form-group.city-field .select2-selection--single .select2-selection__placeholder:before,
.form-group.search-field .select2-selection--single .select2-selection__placeholder:before {
    left: 3px;
} */
}
