:root {
    --white: #FFF;
    --white-60: rgba(255, 255, 255, 0.6);
    --white-16: rgba(255, 255, 255, 0.16);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-5: rgba(255, 255, 255, 0.05);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-8: rgba(0, 0, 0, 0.08);
    --bg-menu: rgba(30, 30, 30, 0.35);
    --btn-text: #202020;
    --blue: #167EFC;
    --blue-bold: #0A3CBA;
    --blue-link: #137EFC;
    --bg-black: #111111;
    --border-color: rgba(228, 235, 243, .15);
    --bg-box: #1E1E1E;
    --bg-contact-page: #151517;
    --text-error: #EF1717;
    --text-success: #24A02B;
    --bg-select: #212d43;
    --bg-black-fix: #121010;
}

@font-face {
    font-family: 'Greycliff CF Regular';
    font-style: normal;
    src: url(/../assets/static_page_v4/GreycliffCF-Light.ttf) format('truetype');
}

@font-face {
    font-family: 'Greycliff CF Bold';
    font-style: normal;
    src: url(/../assets/static_page_v4/GreycliffCF-DemiBold.ttf) format('truetype');
}


* {
    box-sizing: border-box
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: 'Greycliff CF Regular';
}

nav ul {
    list-style: none;
    -webkit-padding-start: 0;
    -moz-padding-start: 0;
    padding-inline-start: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

img {
    max-width: 100%;
    /* pointer-events: none; */
}

.flex,
.flex-m {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.flex-colum {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.ss-v4-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.ss-v4-content-max-w-1668px {
    max-width: 1668px;
    width: 100%;
    margin: auto;
}

.ss-v4-content-max-w-1600px {
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.ss-v4-content-max-w-1440px {
    max-width: 1460px;
    width: 100%;
    margin: auto;
}

.ss-v4-content-max-w-1360px {
    max-width: 1360px;
    width: 100%;
    margin: auto;
}

.ss-v4-row {
    width: 100%;
    margin: auto;
}

.ss-v4-bg-trans {
    background: var(--bg-menu);
    backdrop-filter: blur(8px);
}

.ss-grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
}

.ss-grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
}

.ss-grid-cols-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 24px;
}

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

.ss-btn {
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

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

.text-trans {
    text-transform: uppercase;
}

.disable-mobile {
    display: block;
}

.enable-mobile {
    display: none;
}

.menu-enable-mobile {
    display: none;
}

.rel {
    position: relative;
}

.bold {
    font-family: 'Greycliff CF Bold';
}

.title-lg {
    font-size: 60px;
}

.ss-v4-btn {
    border: none;
    border-radius: 30px;
    padding: 0 32px;
    height: 48px;
    font-size: 12px!important;
    line-height: 12px!important;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Greycliff CF Bold';
}

.ss-v4-btn-main-white {
    border: 1px solid var(--white);
    color: var(--btn-text);
    background: var(--white);
}

.ss-v4-btn-main-white:hover {
    border: 1px solid var(--white-16);
    color: var(--white);
    background: transparent;
}

.ss-v4-btn-line-blue {
    color: var(--white);
    background-image: linear-gradient(to right, var(--blue), var(--blue-bold));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-btn-line-blue:hover {
    background-image: linear-gradient(to bottom, var(--blue), var(--blue-bold));
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-btn-login {
    border: 1px solid var(--white-16);
    color: var(--white);
    background: transparent;
    min-width: 120px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-btn-login:hover {
    border: 1px solid var(--white);
    color: var(--bg-black);
    background: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-main-title-f85 {
    font-family: 'Greycliff CF Regular';
    font-size: 92px;
    line-height: 92px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-main-title-f80 {
    font-family: 'Greycliff CF Regular';
    font-size: 80px;
    line-height: 100px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-main-title-f86 {
    font-family: 'Greycliff CF Regular';
    font-size: 86px;
    line-height: 100px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-main-title-f72 {
    font-family: 'Greycliff CF Regular';
    font-size: 72px;
    line-height: 86px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-flex-hz-center {
    display: flex;
    align-items: center;
}

.w-full {
    width: 100%;
}

.max-h-70 {
    max-height: 70%;
}

.mb-86px {
    margin-bottom: 86px;
}

.pl-64px {
    padding-left: 64px;
}

.mb-64px {
    margin-bottom: 64px;
}

.mt-48px {
    margin-top: 48px;
}

.mb-48px {
    margin-bottom: 48px;
}

.mb-40px {
    margin-bottom: 40px;
}

.pl-32px {
    padding-left: 32px;
}

.mb-32px {
    margin-bottom: 32px;
}

.mr-24px {
    margin-right: 24px;
}

.mb-24px {
    margin-bottom: 24px;
}

.mr-16px {
    margin-right: 16px;
}

.mb-16px {
    margin-bottom: 16px;
}

.mb-8px {
    margin-bottom: 8px;
}

.z-2 {
    z-index: 2;
}

.ss-remove-font {
    font-weight: 400;
}

.ss-img-content img {
    max-width: 100%;
}

.ss-font-32 {
    font-size: 32px;
}

.ss-img-content.ss-custom-image-uk img {
    max-width: 1360px;
    margin-bottom: 32px;
    width: 100%;
}

/*MENU*/
.ss-v4-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.ss-v4-menu .menu {
    height: 88px;
}

.ss-v4-menu .menu li {
    list-style: none;
    float: left;
    line-height: 88px;
}

.ss-v4-menu .menu li a {
    display: block;
    padding: 0 18px;
    line-height: 88px;
    text-decoration: none;
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-menu .menu li a:hover {
    color: var(--blue);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ss-v4-logo-left {
    display: flex;
    align-items: center;
}

.ss-menu-active {
    font-family: 'Greycliff CF Bold';
    color: var(--blue)!important;
}

.ss-fix-a {
    line-height: 12px;
}

.ss-logo-v4 img {
    width: 240px;
}

.ss-v4-menu-center {
    display: flex;
    justify-content: flex-end;
}

.ss-menu-mobile {
    display: none;
}

/*END MENU*/

/*animation fade*/
.fade-left {
    position: relative;
    animation: mfFadeLeft 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-top {
    position: relative;
    animation: mfFadeTop 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-right {
    position: relative;
    animation: mfFadeRight 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-bottom {
    position: relative;
    animation: mfFadeBottom 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in;
}

.fade-on {
    animation-play-state: running;
}

@keyframes mfFadeLeft {
    from {
        left: -200px;
    }

    to {
        left: 0px;
    }
}

@keyframes mfFadeTop {
    from {
        top: -200px;
    }

    to {
        top: 0px;
    }
}

@keyframes mfFadeRight {
    from {
        right: -200px;
    }

    to {
        right: 0px;
    }
}

@keyframes mfFadeBottom {
    from {
        bottom: -200px;
    }

    to {
        bottom: 0px;
    }
}

/*end animation fade*/

/* FOOTER */
.footer {
    padding: 36px 0;
    background: var(--bg-black);
    margin: auto;
}

.ss-footer-content {
    padding: 50px 0;
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.ss-menu-f {
    display: flex;
    justify-content: flex-end;
}

.f-menu {
    min-width: 200px;
}

.f-menu h2 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 16px;
    color: var(--white);
}

.f-menu a {
    display: block;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 16px;
    color: var(--white-60);
    text-decoration: none;
}

.f-menu a:hover {
    color: var(--blue);
}

.ss-v4-logo-bottom img {
    width: 200px;
}

.ss-copy-right {
    padding: 50px 0 50px;
}

.ss-copy-right p {
    font-size: 20px;
    line-height: 24px;
    color: var(--white);
}

.ss-share-gr.mobile {
    display: none;
}

/* End FOOTER */

/* BOX CUSTOM */
.ss-box-v4-custom {
    padding: 32px;
    border-radius: 16px;
    background-color: var(--bg-box);
    cursor: pointer;
    overflow: hidden;
}

.ss-box-v4-custom h2 {
    font-size: 28px;
    line-height: 39px;
    color: var(--white);
    margin-bottom: 8px;
}

.ss-box-v4-custom p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white-60);
}

/* END BOX CUSTOM */

/* SECTION 1 */
.ss-banner-head {
    width: 100%;
    height: 100vh;
    position: relative;
}

.ss-video-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.ss-video-bg-fix-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.ss-intro-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ss-intro-content {
    max-width: 780px;
    margin-left: 64px;
}

.ss-intro-content p {
    font-size: 24px;
    line-height: 33px;
    color: var(--white);
}

.ss-intro-logo-m {
    display: none;
}

/* END SECTION 1 */

/* SECTION 2 */
.ss-section-v4 {
    background-color: var(--bg-black);
    padding: 48px 0;
    overflow: hidden;
}

.ss-v4-gr-title p {
    font-size: 24px;
    line-height: 32px;
    color: var(--white-60);
}

.ss-v4-flex-center {
    display: flex;
    justify-content: center;
}

/* END SECTION 2 */
/* SECTION 3 */
.ss-v4-gr-title-2 {
    overflow: hidden;
}

.ss-v4-gr-title-2 p {
    font-size: 24px;
    line-height: 25px;
    color: var(--white-60);
}

.ss-v4-flex-center {
    display: flex;
    justify-content: center;
}

/* END SECTION 3 */
/* SECTION 4 */

.ss-left-buyer {
    padding-left: 160px;
    padding-right: 80px;
    overflow: hidden;
}

.ss-img-right-full img {
    max-width: 100%;
}

.ss-v4-gr-title-3 {
    overflow: hidden;
}

.ss-v4-gr-title-3 p {
    font-size: 18px;
    line-height: 24px;
    color: var(--white-60);
}

.ss-box-v4-custom-s2 h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 8px;
    color: var(--white);
}

.ss-box-v4-custom-s2 p {
    font-size: 16px;
    line-height: 18px;
    color: var(--white-60);
}

/* END SECTION 4 */
/* SECTION 5 */

.ss-v4-gr-title-4 {
    overflow: hidden;
}

.ss-v4-gr-title-4 p {
    font-size: 18px;
    line-height: 21px;
    color: var(--white-60);
}

.ss-fake-img {
    position: relative;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
}

/* END SECTION 5 */
/* SECTION 6 */

.ss-ticket-v4-item {
    border-radius: 16px;
    position: relative;
    width: 100%;
    height: 784px;
    overflow: hidden;
    cursor: pointer;
}

.ss-ticket-v4-item-trans{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-50);
    backdrop-filter: blur(32px);
    z-index: 2;
    opacity: 1;
    transition: all .4s;
}

.ss-ticket-v4-item:hover .ss-ticket-v4-item-trans {
    opacity: 0;
    transition: all .4s;
}

.ss-ticket-v4-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-link-to {
    position: absolute;
    height: 48px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: flex;
}

.ss-link-to span{
    font-size: 30px;
    line-height: 35px;
    margin-right: 16px;
    color: var(--white);
}

.ss-ticket-v4-item-desc {
    padding: 24px 32px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
}

.ss-ticket-v4-item-desc h2 {
    font-size: 30px;
    line-height: 35px;
    color: var(--white);
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ss-ticket-v4-item-desc p {
    font-size: 16px;
    line-height: 18px;
    height: 36px;
    color: var(--white-60);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* END SECTION 6 */
/* SECTION 7 */

.ss-testimonials-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-testimonials-v4-container {
    padding: 120px 0;
}

.ss-testimonials-v4 {
    max-width: 1368px;
    width: 100%;
    border-radius: 16px;
    padding: 0 60px 60px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--white-16);
    background: var(--white-10);
}

.ss-tab-menu {
    display: flex;
}

.ss-tab-item {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid var(--white-60);
    transition: border-color 0.3s;
}

.ss-tab-item.ss-active {
    border-bottom: 2px solid var(--white);
    font-weight: bold;
}

.ss-tab-item img {
    opacity: 0.7;
}

.ss-tab-item.ss-active {
    border-bottom: 2px solid var(--white);
    font-weight: bold;
}

.ss-tab-item.ss-active img {
    opacity: 1;
}

.ss-tab-content {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    height: 420px;
}

.ss-tab-pane {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
}

.ss-tab-pane.ss-active {
    left: 0;
    opacity: 1;
}

.tab-pane:not(.active) {
    left: -100%;
}

.ss-tab-pane h3 {
    font-size: 24px;
    line-height: 42px;
    color: var(--white);
}

.ss-tab-pane h4 {
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.ss-tab-pane p {
    font-size: 20px;
    line-height: 30px;
    color: var(--white-60);
}

.tes-end {
    display: flex;
    justify-content: flex-end;
}

/* END SECTION 7 */
/* SECTION 8 */

.ss-contact-us-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-right-contact-us {
    z-index: 2;
    display: flex;
    padding-top: 64px;
}

.ss-share-icon {
    cursor: pointer;
    display: inline-flex;
    text-decoration: none;
    outline: none;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--white-16);
    background: transparent;
    margin-right: 12px;
}

.ss-share-icon .ss-hv {
    display: none;
}

.ss-share-icon:hover .ss-non-hv {
    display: none;
}

.ss-share-icon:hover .ss-hv {
    display: block;
}

.ss-share-icon:hover {
    border: 1px solid var(--white);
    background: var(--white);
}

.ss-fake-img-2 {
    z-index: 1;
    width: calc(100% + 120px);
}

/* END SECTION 8 */
/* CONTACT PAGE */
main.ss-contact-page {
    background: var(--bg-contact-page);
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-wrapper {
    filter: blur(330px);
    inset: 0%;
    width: 100%;
    height: 100%;
    position: relative;
}

.ss-bg-i-top {
    position: absolute;
    top: 0;
    right: 0;
}

.ss-bg-i-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

.ss-v4-content-contact-input {
    height: 1160px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.ss-fix-ab {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ss-section-contact-v4 {
    padding: 200px 0 100px;
    overflow: hidden;
}

.ss-v4-content-max-w-912px {
    width: 912px;
    margin: auto;
}

.ss-v4-main-title-f75 {
    font-family: 'Greycliff CF Regular';
    font-size: 75px;
    line-height: 75px;
    letter-spacing: -2px;
    color: var(--white);
}

.ss-v4-desc-f18 {
    font-family: 'Greycliff CF Regular';
    font-size: 18px;
    line-height: 25px;
    color: var(--white-60);
}

.ss-v4-title-label-gr-input {
    font-family: 'Greycliff CF Regular';
    font-size: 22px;
    line-height: 30px;
    color: var(--white);
}

.ss-grid-cols-2-gap-16 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
}

.ss-input-custom-v4 {
    width: 100%;
    height: 58px;
    border-radius: 8px;
    border: 1px solid var(--white-16);
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    outline: none;
    background: var(--white-5);
    padding: 0 16px;
}

.ss-input-custom-v4::placeholder {
    color: var(--white-60);
    opacity: 1;
}

.ss-input-custom-v4::-ms-input-placeholder {
    color: var(--white-60);
}

.ss-text-f14 {
    font-family: 'Greycliff CF Regular';
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.mb-12px {
    margin-bottom: 12px;
}

/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
}

.custom-select-wrapper select {
    display: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    line-height: 58px;
    border-radius: 8px;
    border: 1px solid var(--white-16);
    color: var(--white-60);
    font-size: 18px;
    outline: none;
    background: var(--white-5);
    padding: 0 16px;
    font-family: 'Greycliff CF Regular', sans-serif !important;
}

.custom-select-trigger.selected {
    color: var(--white);
}

.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    right: 25px;
    margin-top: -3px;
    border-bottom: 2px solid var(--white-5);
    border-right: 2px solid var(--white-5);
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.custom-select-trigger.selected:after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
}

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 0;
    border: 1px solid var(--white-16);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px var(--bg-contact-page);
    background: var(--bg-box);
    transition: all .4s ease-in-out;
    z-index: 3;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid var(--white-16);
    border-left: 1px solid var(--white-16);
    background: var(--bg-box);
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 24px;
    border-bottom: 1px solid var(--white-16);
    font-size: 16px;
    font-weight: 400;
    color: var(--white-60);
    line-height: 42px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    font-family: 'Greycliff CF Regular', sans-serif !important;
}

.custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
}

.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}

.custom-option:hover,
.custom-option.selection {
    background: var(--bg-contact-page);
    color: var(--white);
}

/* END CONTACT PAGE */
/* LOOKUP PAGE */

.ss-v4-content-lookup-input{
    height: 640px;
    position: relative;
    width: 100%;
    z-index: 2;
}
.ss-v4-title-f18 {
    font-family: 'Greycliff CF Regular';
    font-size: 18px;
    line-height: 25px;
    color: var(--white);
}
.ss-a-link-to{
    color: var(--blue-link);
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
}
/* END LOOKUP PAGE */
/* TERMS  */
.ss-v4-content-terms-input{
    min-height: 100vh;
    position: relative;
    width: 100%;
    z-index: 2;
}

.ss-v4-content-terms-input.ss-v4-vacciantion{
    min-height: calc(100vh - 300px);
}
.ss-box-title-w{
    width: 210px;
}
.ss-v4-title-f20{
    font-family: 'Greycliff CF Bold';
    font-size: 20px;
    line-height: 28px;
    color: var(--white);
}

.ss-v4-desc-f16 {
    font-family: 'Greycliff CF Regular';
    font-size: 16px;
    line-height: 24px;
    color: var(--white-60);
}

.ss-a-link-to-color-text{
    color: var(--white-60);
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
}

.ss-v4-content-terms-input ul{
    padding-left: 24px;
}

.ss-v4-content-terms-input ul li{
    list-style: unset;
    color: var(--white-60);
}
/* END TERMS */

/* FEATURE */

.ss-max-w-1020px {
    max-width: 1020px;
    margin: 0 auto;
}

.ss-main-pt {
    padding-top: 88px;
    background: var(--bg-black);
}

.ss-bg-black {
    background: #000;
}

.ss-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-pb-0-im {
    padding-bottom: 0 !important;
}

.ss-v4-main-title-f48 {
    font-family: 'Greycliff CF Regular';
    font-size: 48px;
    line-height: 57px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.ss-video-hide-left {
    overflow: hidden;
}

.ss-video-hide-left .ss-video-hide-left-content {
    width: calc(100% + 48px);
    margin-left: -48px;
    padding: 24px;
    border-radius: 24px;
    border: 3px solid var(--white-60);
}

.ss-video-hide-left .ss-video-hide-left-content video {
    width: 100%;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.ss-right-power {
    padding-left: 48px;
    padding-right: 24px;
    overflow: hidden;
}

.ss-box-v4-custom-s3 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-gap: 24px;
    width: 100%;
    background: var(--bg-box);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 96px;
}

.ss-box-v4-custom-s3._32 {
    grid-template-columns: 3fr 2fr;
}

.ss-box-v4-custom-s3-text {
    padding: 24px;
    display: flex;
    align-items: center;
}

.ss-box-v4-custom-s3-image img {
    width: 100%;
}

.ss-mb-0-im {
    margin-bottom: 0 !important;
}

/* END FEATURE */

/* MUSIC */
.ss-intro-content.music {
    max-width: 1260px;
    margin-left: 0;
    margin: auto;
}

.ss-intro-content.music p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ss-v4-gr-title-5 p {
    font-size: 18px;
    line-height: 25px;
    color: var(--white-60);
}

.ss-v4-content-max-w-1200px {
    width: 1200px;
    margin: auto;
}

.ss-v4-main-title-f24 {
    font-family: 'Greycliff CF Regular';
    font-size: 24px;
    line-height: 30px;
    color: var(--white);
}

.ss-max-w-460px {
    max-width: 460px;
}

.ss-flex-hz-end {
    justify-content: flex-end;
}

.ss-tab-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.line-h-86 {
    line-height: 86px;
}

/* END MUSIC */

/* Sports */
.ss-testimonials-sport {
    display: flex;
    flex-direction: column;
    max-width: 1368px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 800px;
    padding: 60px 72px;
    border: 1px solid var(--white-16);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-testimonials-sport h3 {
    font-size: 24px;
    line-height: 42px;
    color: var(--white);
}

.ss-testimonials-sport h4 {
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.ss-testimonials-sport p {
    font-size: 20px;
    line-height: 30px;
    color: var(--white-60);
}

/* END Sports */

/* culture */
.ss-intro-content.culture {
    max-width: 990px;
    margin-left: 0;
    margin: auto;
}
/* end culture */

.mt-8px{
    margin-top: 8px;
}
.error-msg{
    font-size: 14px;
    line-height: 18px;
    color: var(--text-error);
}
.success-msg{
    font-size: 14px;
    line-height: 18px;
    color: var(--text-success);
}

.max-h-fill-content{
    max-height: calc(100vh - 120px);
}

.ss-select-custom-v4{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Remove default arrow */
    background-image: url(/...);
    /* Add custom arrow */
}
.ss-select-custom-v4:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%;
    right: 25px;
    margin-top: -3px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

.ss-max-w-410px{
    max-width: 410px;
}

.gradient-line {
    height: 3px;
    width: 112px;
    background: linear-gradient(to right, #7DBCFF, #137EFC);
}

.ss-video-hide-right {
    overflow: hidden;
}

.ss-video-hide-right .ss-video-hide-right-content {
    width: calc(100% + 30px);
    padding: 24px;
    border-radius: 24px;
    border: 3px solid var(--white-60);
}

.ss-video-hide-right .ss-video-hide-right-content video {
    width: 100%;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.ss-video-left-content{
    width: 100%;
    overflow: hidden;
    height: 80%;
}

.ss-video-left-content video{
    width: 180%;
    margin-left: -40%;
}

.ss-v4-video-center{
    width: 60%;
    overflow: hidden;
}
.ss-v4-video-center video{
    width: 180%;
    margin-left: -40%;
}

.bg-select{
    background: var(--bg-select)!important;
}

/* HOTEL */
.ss-hotels-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ss-intro-content.hotels {
    max-width: 1100px;
    margin: auto;
}

.ss-video-full-size{
    width: 100%;
    position: relative;
}

.ss-video-full-size video{
    width: 100%;
}

.ss-play-video-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.ss-play-video-image.hidden{
    display: none;
}
.ss-play-video-image img{
    width: 100%;
    height: 100%;
}
/* END HOTEL */

.ss-bg-black-fix{
    background-color: var(--bg-black-fix);
}
@media screen and (max-width: 1920px) {
    .ss-v4-container {
        width: 100%;
        margin: auto;
        padding: 0 15px;
    }

    .pb-48px {
        padding-bottom: 48px;
    }

    .ss-fake-img {
        bottom: -48px;
        width: calc(100% + 240px);
    }

    .ss-v4-container-px-0{
        padding: 0;
    }
}

@media screen and (max-width: 1668px) {
    .ss-v4-content-max-w-1668px {
        width: 100%;
        margin: auto;
        padding: 0 15px;
    }
}

@media screen and (max-width: 1600px) {
    .ss-v4-content-max-w-1600px {
        width: 100%;
        margin: auto;
        padding: 0 15px;
    }

    /* SECTION 4 */

    .ss-left-buyer {
        padding-left: 0;
        padding-right: 64px;
    }

    /* END SECTION 4 */
    /* SECTION 5 */
    .ss-fake-img {
        position: relative;
        bottom: 0;
        right: 0;
        top: 0;
        left: 0;
        z-index: 1;
        margin-left: -100px;
    }

    /* END SECTION 5 */
    /* SECTION 7 */
    .ss-fake-img-2 {
        position: relative;
        bottom: 0;
        right: 0;
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* END SECTION 7 */
}

@media screen and (max-width: 1440px) {
    .ss-v4-content-max-w-1440px {
        width: 100%;
        margin: auto;
        padding: 0 15px;
    }

    .mb-86px {
        margin-bottom: 86px;
    }

    /*MENU*/

    .ss-v4-menu .menu li a {
        padding: 0 16px;
    }

    .pl-lg-32px {
        padding-left: 32px;
    }

    .mr-lg-16px {
        margin-right: 16px;
    }

    /*END MENU*/
}

@media screen and (max-width: 1360px) {
    .ss-v4-content-max-w-1360px {
        width: 100%;
        margin: auto;
        padding: 0 15px;
    }

    .mb-86px {
        margin-bottom: 86px;
    }

    .ss-section-v4 {
        padding: 48px 0;
    }

    .mb-64px {
        margin-bottom: 64px;
    }

    /* SECTION 4 */

    .ss-left-buyer {
        padding-right: 16px;
    }

    /* END SECTION 4 */
}

@media screen and (max-width: 1200px) {

    /*MENU*/
    .ss-logo-v4 img {
        width: 200px;
    }

    .ss-v4-menu .menu li a {
        padding: 0 12px;
    }

    .pl-md-16px {
        padding-left: 16px;
    }

    .ss-v4-btn-login {
        min-width: 110px;
    }

    /*END MENU*/

    .ss-v4-content-max-w-1200px {
        width: 100%;
        padding: 0 16px;
    }
    .ss-v4-video-center {
        width: 100%;
    }
    .f-menu {
        min-width: 160px;
    }
}

@media screen and (max-width: 1100px) {
    .ss-tab-content {
        height: 440px;
    }
}

@media screen and (max-width: 1024px) {
    .ss-md-grid-col {
        grid-template-columns: 1fr;
    }

    .ss-img-right-full {
        margin-top: 16px;
    }

    /*MENU*/
    .ss-v4-menu-d {
        display: none;
    }

    .ss-menu-mobile {
        display: block;
    }

    .ss-v4-menu-m {
        height: 60px;
        line-height: 60px;
    }

    .ss-v4-menu-mb {
        background: var(--bg-black);
        z-index: 99;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 0 16px 16px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .ss-v4-menu-mb.hide {
        left: -100%;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .ss-v4-menu-mb .rel {
        width: 100%;
        height: 100%;
        background: var(--bg-black);
        z-index: 99;
    }

    .menu-gr {
        margin-top: 30px;
    }

    .ss-v4-menu-mb ul li {
        list-style: none;
        padding: 15px 0;
    }

    .ss-v4-menu-mb ul li a {
        color: var(--white);
        font-size: 20px;
        line-height: 18px;
        text-decoration: none;
        letter-spacing: 0.3px;
    }

    .ss-v4-bg-trans {
        background: transparent;
        backdrop-filter: blur(0);
    }

    .ss-v4-bg-main-color {
        background: var(--bg-menu);
        backdrop-filter: blur(8px);
    }

    .menu-enable-mobile {
        display: block;
    }

    .ss-close-menu-mb {
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ss-block-scroll {
        height: 100vh;
        overflow: hidden;
    }

    /*END MENU*/
    /* FOOTER */
    .footer {
        padding: 24px 0;
    }

    .ss-footer-content {
        padding: 16px 0;
        display: block;
    }

    .ss-menu-f {
        justify-content: flex-start;
    }

    .ss-v4-logo-bottom img {
        margin-bottom: 24px;
    }

    .ss-copy-right {
        padding: 24px 0;
    }

    .ss-copy-right p {
        font-size: 18px;
        line-height: 20px;
    }

    .ss-menu-f .ss-grid-cols-3,.ss-menu-f .ss-grid-cols-4 {
        width: 100%;
    }
    .ss-share-gr {
        display: none;
    }

    .ss-share-gr.mobile {
        display: flex;
        margin-top: 32px;
    }
    /* End FOOTER */
    .ss-fake-img {
        margin-left: 0;
        width: 100%;
    }

    .md-order-1 {
        order: 1;
    }

    .md-order-2 {
        order: 2;
    }

    .ss-fake-img-2 {
        width: 100%;
    }

    /* SECTION 6 */

    .ss-ticket-v4-item {
        height: 728px;
    }

    .ss-ticket-v4-item-desc {
        padding: 12px 16px;
    }

    .ss-ticket-v4-item-desc h2 {
        font-size: 24px;
        line-height: 28px;
    }

    /* END SECTION 6 */

    .px-lg-16px {
        padding: 0 16px;
    }
}

@media screen and (max-width: 920px) {
    .ss-tab-content {
        height: 520px;
    }
    /* CONTACT PAGE */

    .ss-v4-content-max-w-912px {
        width: 100%;
        margin: auto;
        padding: 0 16px;
    }

    /* END CONTACT PAGE */
}

@media screen and (max-width: 768px) {
    body {
        background-color: var(--bg-black);
    }

    .ss-grid-cols-2,
    .ss-grid-cols-3 {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }

    .disable-mobile {
        display: none;
    }

    .enable-mobile,
    .flex {
        display: block;
    }

    .ss-v4-menu-d {
        display: none;
    }

    .ss-menu-f .ss-grid-cols-3,.ss-menu-f .ss-grid-cols-4 {
        grid-template-columns: 1fr 1fr;
    }

    .f-menu {
        min-width: auto;
    }

    .ss-copy-right p {
        font-size: 14px;
        line-height: 18px;
    }

    .sm-w-full {
        width: 100%;
    }

    .ss-sm-px-24px {
        padding: 0 24px;
    }

    /* SECTION 1 */

    .ss-intro-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .ss-intro-content {
        max-width: 100%;
        margin-left: 0;
    }

    .ss-intro-content .ss-v4-main-title-f85 {
        font-size: 43px;
        line-height: 43px;
        margin-bottom: 16px;
    }

    .ss-intro-content p {
        font-size: 16px;
        line-height: 22px;
        color: var(--white);
    }

    .mb-sm-32px {
        margin-bottom: 32px;
    }

    .mb-sm-24px {
        margin-bottom: 24px;
    }

    .mb-sm-16px {
        margin-bottom: 16px;
    }

    .mt-sm-8px {
        margin-top: 8px;
    }

    .mb-sm-8px {
        margin-bottom: 8px;
    }

    .pb-sm-8px {
        padding-bottom: 8px;
    }

    .ss-intro-content .ss-v4-btn-main-white {
        width: 100%;
    }

    .ss-intro-logo-m {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
    }

    /* END SECTION 1 */
    /* SECTION 2 */
    .ss-section-v4 {
        padding: 32px 0;
    }

    .ss-v4-main-title-f86 {
        font-size: 43px;
        line-height: 43px;
    }

    .ss-v4-gr-title p {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-m-w-135px {
        max-width: 135px;
    }

    /* END SECTION 2 */
    /* SECTION 4 */

    .ss-v4-main-title-f80 {
        font-size: 40px;
        line-height: 40px;
    }

    .ss-v4-gr-title-3 p {
        font-size: 16px;
        line-height: 22px;
    }

    /* END SECTION 4 */
    /* SECTION 5 */
    .ss-v4-main-title-f72 {
        font-size: 40px;
        line-height: 40px;
    }

    .ss-v4-gr-title-4 p {
        font-size: 16px;
        line-height: 22px;
    }

    /* END SECTION 5 */
    /* SECTION 6 */

    .ss-ticket-v4-item {
        height: 480px;
    }

    /* END SECTION 6 */
    /* SECTION 7 */

    .ss-testimonials-v4-container {
        padding: 8px 0;
    }

    .ss-testimonials-v4 {
        border-radius: 8px;
        padding: 0 16px 24px;
    }

    .ss-tab-item {
        padding: 8px;
    }

    .ss-tab-content {
        margin-top: 16px;
    }

    .ss-tab-pane h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ss-tab-pane h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .ss-tab-pane p {
        font-size: 16px;
        line-height: 24px;
    }

    .tes-end {
        display: flex;
        justify-content: flex-end;
    }

    .ss-tab-content {
        height: 460px;
    }

    /* END SECTION 7 */
    /* CONTACT PAGE */

    .ss-section-contact-v4 {
        padding: 140px 0 100px;
        overflow: hidden;
    }

    .ss-v4-main-title-f75 {
        font-size: 32px;
        line-height: 40px;
    }

    .ss-v4-desc-f18 {
        font-family: 'Greycliff CF Regular';
        font-size: 16px;
        line-height: 22px;
        color: var(--white-60);
    }

    .ss-v4-title-label-gr-input {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-input-custom-v4 {
        height: 56px;
        font-size: 16px;
        line-height: 16px;
    }

    /** Custom Select **/

    .custom-select-trigger {
        line-height: 56px;
        font-size: 16px;
    }

    .custom-option {
        padding: 0 16px;
        font-size: 14px;
        line-height: 38px;
    }

    .gradient-wrapper {
        filter: blur(60px);
        width: 120%;
    }

    /* END CONTACT PAGE */

    /* FEATURE */

    .ss-main-pt {
        padding-top: 60px;
    }

    .ss-v4-main-title-f48 {
        font-size: 32px;
        line-height: 48px;
    }

    .ss-video-hide-left .ss-video-hide-left-content {
        padding: 16px;
        border-radius: 16px;
    }

    .ss-video-hide-left .ss-video-hide-left-content video {
        border-radius: 16px;
    }

    .ss-right-power {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-box-v4-custom-s3 {
        grid-template-columns: 1fr;
        grid-gap: 16px;
        border-radius: 8px;
        margin-bottom: 24px;
    }

    .ss-box-v4-custom-s3._32 {
        grid-template-columns: 1fr;
    }

    .ss-box-v4-custom-s3-text {
        padding: 16px;
    }

    .ss-v4-main-title-f85 {
        font-size: 43px;
        line-height: 43px;
        margin-bottom: 16px;
    }

    /* END FEATURE */
    /* MUSIC */
    .ss-v4-gr-title-5 p {
        font-size: 16px;
        line-height: 22px;
    }

    .ss-v4-main-title-f24 {
        font-family: 'Greycliff CF Regular';
        font-size: 16px;
        line-height: 22px;
    }

    .line-h-86 {
        line-height: 40px;
    }

    /* END MUSIC */
    /* Sports */
    .ss-testimonials-sport {
        border-radius: 8px;
        height: 600px;
        padding: 32px 24px;
    }

    .ss-testimonials-sport h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ss-testimonials-sport h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .ss-testimonials-sport p {
        font-size: 16px;
        line-height: 24px;
    }

    /* END Sports */
    .max-h-70{
        max-height: 100%;
    }

    .ss-right-contact-us {
        padding-top: 24px;
    }

    .ss-pb-sm-0-im{
        padding-bottom: 0!important;
    }

    .ml-sm--33px{
        margin-left: -33px;
    }
    .ss-banner-head{
        overflow: hidden;
    }
    .ss-video-bg{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100%;
        right: unset;
        bottom: unset;
    }
    .mb-mt-16px{
        margin-top: 16px;
    }

    .ss-video-left-content,.ss-v4-video-center {
        width: 100%;
        height: 360px;
        position: relative;
    }
    .ss-video-left-content video,.ss-v4-video-center video{
        position: absolute;
        top: -20px;
        width: calc(100% + 280px);
        left: -140px;
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .ss-tab-content {
        height: 520px;
    }
}

@media screen and (max-width: 375px) {
    .ss-tab-content {
        height: 560px;
    }
}

@media screen and (max-width: 350px) {
    .ss-tab-content {
        height: 600px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

.select-language-list * {
    font-family: 'Roboto Flex', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.select-language-list {
    width: 169px;
    padding: 8px;
    border-radius: 8px;
    background: #25282D;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 999;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #3D4148;
}

.select-language-list.ss-hidden {
    display: none
}

.ss-select-language-list-search {
    position: relative;
    width: 100%;
}

.ss-select-language-list-search input,
body.dark-mode:not(.no-dark-mode) .ss-select-language-list-search input {
    width: 100%;
    height: 32px;
    padding-left: 36px;
    padding-right: 8px;
    border: 1px solid #7F8694;
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    outline: none;
    border-radius: 4px;
    background: transparent;
}

.ss-select-language-list-search .ic-search {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 10px;
}

.language-list {
    width: 100%;
    max-height: 200px;
    margin-top: 12px;
    overflow-x: hidden;
    overflow-y: auto;
}

.scrollbar-custom-hidden {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scrollbar-custom-hidden::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* Track */
.scrollbar-custom-hidden::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0;
}

/* Handle */
.scrollbar-custom-hidden::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
}

.language-item {
    padding: 8px;
    border-radius: 4px;
    display: flex;
    width: 100%;
    margin-bottom: 4px;
    cursor: pointer;
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-item .ss-flex-hz {
    display: flex;
    align-items: center;
}

.language-item span {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.ss-image-thumb-custom {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-image-thumb-custom img {
    width: 100%;
    height: 100%;
}

.flex-1 {
    flex: 1;
}

.ss-pl-12px {
    padding-left: 12px;
}

.ss-select-multi-language.home-v4 {
    display: flex;
    width: 112px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: relative;
    margin-bottom: 0;
    padding: 0 8px;
    border: 1px solid var(--white-16);
    background: transparent;
    cursor: pointer;
}
.ss-select-multi-language.home-v4 .ss-flag-select {
    width: 36px;
    height: 36px;
}

.ss-select-multi-language.home-v4 .ss-flag-select img {
    width: 100%;
}

.ss-select-multi-language.home-v4 .flex-1 {
    flex: 1;
}
.ss-select-multi-language.home-v4 .flex-1 p {
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
    margin: 0;
    padding-left: 12px;
}

.ss-select-multi-language.home-v4 .ss-drop-down-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}
