/*slider carousel with animation*/
#animating-slider .item{
    display: flex;
    justify-content: flex-start;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#animating-slider .item img{
    width: auto !important;
}
#animating-slider .item .animating-img{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation-duration:2s;
    flex-basis: 750px;
}
#animating-slider .item .text{
    flex:1;
    display: flex;
    flex-direction: column;
    padding-top: 8%;
    /*animation-duration: 2s;*/
    flex-basis: 40%;
    overflow: hidden;
    align-items: flex-start;
}
#animating-slider .item .text > *{
    animation-duration: 3s;
}
#animating-slider .item .text h2{
    color: #191919;
    font-size: 55px;
    font-family: Raleway;
    font-weight: 800;
    margin-bottom: 15px;
    animation-duration: 2s;
}
#animating-slider .item .text h3{
    font-size: 30px;
    font-family: Raleway;
    font-weight: 400;
    line-height: 35px;
    background: linear-gradient(90deg, #03E4BA 0%, #002820 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#animating-slider .item .text > :last-child{
    width: 100%;
}
#animating-slider .item p{
    color: #5F6069;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 40px;
}
#animating-slider .is-style-mint-btn{
    margin-top: 40px;
}
#animating-slider .is-style-mint-btn a{
    float:left;
}

@-webkit-keyframes slideInRightText {
    0% {
        -webkit-transform: translate3d(180%,0,0);
        transform: translate3d(180%,0,0);
        visibility: visible;
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes slideInRightText {
    0% {
        -webkit-transform: translate3d(180%,0,0);
        transform: translate3d(180%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInRightText {
    -webkit-animation-name: slideInRightText;
    animation-name: slideInRightText;
}
@-webkit-keyframes slideInLeftText {
    0% {
        -webkit-transform: translate3d(-180%,0,0);
        transform: translate3d(-180%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeftText {
    0% {
        -webkit-transform: translate3d(-180%,0,0);
        transform: translate3d(-180%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInLeftText {
    -webkit-animation-name: slideInLeftText;
    animation-name: slideInLeftText;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,100%,0);
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight;
}
#animating-slider .owl-dots{
    text-align: center;
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
}
#animating-slider .owl-dots .owl-dot.active {
    width: 32px;
}
#animating-slider .owl-dots .owl-dot.active span{
    background: #5F6069;
    /*transition: width 4s linear;*/
    /*width:100%;*/
}
#animating-slider .owl-dots .owl-dot span{
    width: 0;
    height: 8px;
    /*display: inline-block;*/
    background: #7676764F;
    transition: width 0.3s ease;
}
#animating-slider .owl-dots .owl-dot {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    width: 8px;
    height: 8px;
    margin-left: 2px;
    margin-right: 2px;
    background: #7676764F;
    border-radius: 50px;
    padding: 0;

}
#green-carousel.owl-carousel {
    max-width: 1110px;
    position: absolute;
    left:0;
    right:0;
    margin: auto;
}
#green-carousel.owl-carousel .item {
    border-radius: 14px;
    border: 1px solid #03E4BA;
    background: linear-gradient(180deg, rgba(111, 240, 216, 0.11) 0%, rgba(193, 241, 232, 0.11) 100%);
    backdrop-filter: blur(17.850000381469727px);
    padding: 10px 30px;
    margin: 14px 10px;
    width: 100%;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Size adjust with less than 4 items */
.CarouselItemAdjust {
	min-width:250px;
	max-width:280px;
}

.CarouselStageAdjust {
	width:100%!important;
	justify-content:center;
}


#green-carousel.owl-carousel .item:hover {
    background: linear-gradient(180deg, rgba(111, 240, 216, 0.11) 0%, rgba(193, 241, 232, 0.11) 100%), rgba(111, 240, 216, 0.42);
    background-blend-mode: overlay; /* Blend the new color */
}

#green-carousel.owl-carousel .item:after {
    content: ''; /* Initially empty */
    position: absolute;
    top: 5px;
    right: 6px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50px;
    height: 24px;
    width: 24px;
    text-align: center;
    color: #03E4BA;
    opacity: 0; /* Initially invisible */
    font-family: 'Font Awesome 6 Free';
    display: flex; /* Center the content */
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: opacity 0.3s, background-color 0.3s;
}
#green-carousel.owl-carousel .item:hover:after {
    content: '\e09f'; /* Font Awesome icon */
    background-color: rgba(255, 255, 255, 0.44);
    opacity: 1; /* Fade in */
}
#green-carousel.owl-carousel .item:hover .car-promotions-title,#green-carousel.owl-carousel .item:hover .car-promotions-subtitle{
    color:#191919;
}
#green-carousel.owl-carousel .item .car-promotions-title{
    color: #464851;
    font-family: Barlow;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    margin-bottom: 4px;
}
#green-carousel.owl-carousel .item .car-promotions-subtitle{
    color: #464851;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}

/*for a/b testing*/
#homepage-video.adjust-height{
    min-height: calc(100vh - 243px) !important;
}
.normal-position-carousel .promotions-carousel-outer.adjust-position{
    margin-top:0 !important;
}
.promotions-carousel-outer.adjust-position {
    margin-top: -200px !important;
}
html[dir=rtl] .owl-carousel {
    direction: ltr;
}
.img-width-32 img{
    height:32px;
}
html[dir="rtl"] #promotions-carousel figure{
    float: left;
}
html[dir="rtl"] #promotions-carousel .promo-img{
    left:24px;
    right:unset;
}
html[dir="rtl"] .cta-registration-box .cta-right-side{
    border-radius: 40px 0 0 40px;
}
html[dir="rtl"] .cta-registration-box img{
    border-radius: 0 40px 40px 0;
}
.owl-carousel .owl-item img{
    width: auto !important;
}
.owl-stage,.owl-item{
    display: flex;
}
#account-comparison-carousel,#promotions-carousel{
    overflow: hidden;
}
#promotions-carousel .owl-stage-outer,#account-comparison-carousel .owl-stage-outer{
    overflow: visible;
}
#promotions-carousel .item{
    position: relative;
}
html[lang="vi-VN"] #promotions-carousel p:first-of-type {
    font-size: 21px!important;
    line-height: 26px!important;
}

#promotions-carousel a{
    position:absolute;
    bottom:8%;
}
#promotions-carousel .promo-img{
   position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    right: 24px;
    z-index: -1;
}
#promotions-carousel .owl-stage{
    padding-left: 0 !important;
}
.promotions-carousel-outer{
    margin-top: -160px !important;
}
.normal-position-carousel .promotions-carousel-outer{
    margin-top: 0 !important;
}
#promotions-carousel .owl-prev{
    display: none;
}
#promotions-carousel .owl-next{
    position: absolute;
    right: 20px;
    top: 140px;
    border-radius: 50px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-color: #fff;
    border-style: unset;
    font-weight: 900;
}
#promotions-carousel .wp-block-cover__inner-container{
    width: 100%;
}
#promotions-carousel.owl-carousel:not(.owl-loaded){
    opacity: 0;
}
#promotions-carousel .owl-dots{
    text-align: center;
    margin-top: 15px;
}
#promotions-carousel .owl-dots .owl-dot{
    border: 0;
    padding: 0 2px;
    background-color: transparent;
}
#promotions-carousel .owl-dots .owl-dot.active span{
    background: #003BE5;
}
#promotions-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: #CBCBCB;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}
#promotions-carousel.owl-carousel .wp-block-column.item {
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2px;
    box-shadow: 0px 33px 51.2px 0px rgba(0, 0, 0, 0.12);
}
#promotions-carousel .item span{
    border-radius: 18px;
    background: rgb(255 255 255 / 40%) !important;
}
#promotions-carousel.owl-carousel .wp-block-column.item:before {
    position:relative;
    /* width: 180px; */
    /* aspect-ratio: 1; */
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(to right, rgba(0, 59, 229, 0.6), rgb(3, 228, 186 , 0.6));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
     mask-composite: exclude;
}

@media screen and (max-width: 576px){
    #promotions-carousel .item {
        max-width: 98%;
        margin: 0 auto;
    }
    .owl-carousel.glass-effect .wp-block-column{
        margin: 0 15px;
    }

}
/*ACCOUNT TYPES CAROUSEL FOR MOBILE*/
.account-types-boxes-mobile{
    display: none !important;
}
.account-types-boxes-mobile .account-box{
    max-width: 95%;
    margin: 0 auto;
}
.account-types-boxes-mobile .account-box span{
    border-radius: 20px;
}
.account-types-boxes-mobile .owl-dots{
    position: absolute;
    bottom: 40px;
    left: 40px;
}
.account-types-boxes-mobile .account-box p{
    padding-bottom: 20px;
}
.account-types-boxes-mobile figure{
    margin-top: -25px;
    margin-right: -22px;
}
.account-types-boxes-mobile img{
    height: 160px;
}
/*General owl carousel css*/
.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: #8F8F8F;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}
.owl-dots .owl-dot{
    border: 0;
    padding: 0 2px;
    background-color: transparent;
}
.owl-dots .owl-dot.active span{
    background: #FFFFFF;
}
/*TRADING PORTAL*/
#trading-portal-carousel .item span{
    border-radius: 40px;
}
#trading-portal-carousel{
    overflow: hidden;
    margin-bottom: 120px;
}
#trading-portal-carousel .owl-stage-outer{
    overflow: visible;
    padding: 0 10px;
}
#trading-portal-carousel.owl-carousel:not(.owl-loaded){
    opacity: 0;
}
#trading-portal-carousel.owl-carousel .owl-item img{
    width: auto;
    max-height: 80px;
    margin-bottom:15px;
}
#trading-portal-carousel .item .wp-block-cover{
    align-content: flex-start;
    flex-wrap: wrap;
    height:100%;
    padding: 30px 16px !important;
}
#trading-portal-carousel .owl-stage{
    padding-left: 0 !important;
}
#trading-portal-carousel .owl-prev{
    display: none;
}
#trading-portal-carousel .owl-next{
    position: absolute;
    right: 20px;
    top: 140px;
    border-radius: 50px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-color: #fff;
    border-style: unset;
    color: #003BE5;
    box-shadow: 0px 3px 6px #00000029;
}
#vps-carousel-mobile .wp-block-column .wp-block-columns{
    height: 100%;
}
/*ACCOUNT COMPARISON*/
#account-comparison-carousel .owl-stage-outer{
    padding: 0 5px;
}
#account-comparison-carousel .owl-stage{
    padding-left: 0 !important;
}
#account-comparison-carousel.owl-carousel:not(.owl-loaded){
    opacity: 0;
}
#account-comparison-carousel .owl-dots{
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 30px;
}
#account-comparison-carousel .owl-prev{
    display: none;
}
#account-comparison-carousel .owl-next{
    position: absolute;
    right: 10px;
    top: 140px;
    border-radius: 50px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-color: #fff;
    border-style: unset;
}
#account-comparison-carousel .owl-next .fa-angle-right{
    color: #003BE5;
}
#account-comparison-carousel .has-medium-font-size{
    padding-bottom: 24px;
}
#account-comparison-carousel .owl-item .wp-block-columns{
    height: 100%;
}
html[dir=rtl] #account-comparison-carousel .owl-item .wp-block-columns {
    height: 100%;
    text-align: right;
}

/* CAROUSEL NEW DESIGNS phase 1 to be removed in phase 2 */

#promotions-carousel p:first-of-type{
    color: #000 !important;
    font-weight:700 !important;
    font-size:24px !important;
    line-height:32px !important;
}
#promotions-carousel p:nth-of-type(2){
    color: #000 !important;
    font-weight:700 !important;
    font-size:16px !important;
}
#promotions-carousel .wp-block-cover{
    min-height:260px !important;
}
#promotions-carousel img{
    max-width: 136px;
}
#promotions-carousel a {
    color:#003BE5 !important;
    font-weight:600;
    font-size: 16px;
}
#promotions-carousel .promo-img{
    width:auto;
    bottom:-24px;
}
@media screen and (max-width: 576px){
    #promotions-carousel .promo-img img {
        height: auto !important;
    }
    #promotions-carousel p br {
        display: block;
    }
    #promotions-carousel .wp-block-cover {
        min-height: 230px !important;
    }
    #animating-slider .item .animating-img{
        height:270px !important;
    }
}

/*NEW DESIGNS*/
/*PROMOS CAROUSEL*/
.owl-carousel.glass-effect .wp-block-column{
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.40);
    background-blend-mode: soft-light;
    padding:20px;
    box-shadow: 0 2px 14.4px 0 rgba(94, 94, 94, .25);
    -webkit-box-shadow: 0 2px 14.4px 0 rgba(94, 94, 94, .25);
    backdrop-filter: blur(41.5px);
    -webkit-backdrop-filter: blur(41.5px);
    margin: 14px 15px;
}

.owl-carousel.glass-effect{
    margin-top: -145px;
    gap:0;
    justify-content: center;
}

.owl-carousel.glass-effect figure{
    margin: 0 0 10px 0;
}
.owl-carousel.glass-effect a{
    text-decoration: none !important;
}
.owl-carousel.glass-effect .owl-item:last-child{
    margin-right: 0 !important;
}
.owl-carousel.glass-effect .owl-nav button{
    position: absolute;
    top:42%;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid #CBCBCB;
    background-color: #F7F8FA;
}
.owl-carousel.glass-effect .owl-nav button.owl-next{
    right:0;
}
.owl-carousel.glass-effect .owl-nav button.owl-prev{
    left:-6px;
}
.owl-carousel.glass-effect .owl-nav button i{
    font-weight: 700;
    color: #5F6069;
    font-size: 20px;
}
.owl-carousel.glass-effect:not(.owl-loaded) .wp-block-column:nth-child(n+5){
    display:none;
}
/*@media screen and (min-width: 1200px){*/
/*    .owl-carousel.glass-effect .owl-stage-outer{*/
/*        overflow: visible !important;*/
/*    }*/

/*}*/
@media screen and (min-width:1100px) {
    #promotions-carousel.double-carousel .owl-stage-outer {
        display: flex;
        justify-content: center;
    }

    #promotions-carousel.double-carousel .owl-stage {
        justify-content: center;
    }
}

@media screen and (max-width: 576px){
    #homepage-video.adjust-height {
        min-height: 66vh!important;
    }
    .promotions-carousel-outer.adjust-position .owl-item .wp-block-cover {
        max-width: 100%;
        min-height: 220px!important;
        padding: 16px!important;
    }
    #homepage-video.adjust-height .wp-block-cover__inner-container .wp-block-columns{
        margin-bottom:50px !important;
    }
    .homepage-header.adjust-height p{
        font-size: 16px !important;
        line-height: 21px;
    }
    .promotions-carousel-outer .owl-item .wp-block-cover{
        max-width: 100%;
        min-height: 250px !important;
        padding: 16px !important;
    }
    #promotions-carousel p{
        max-width: 100%;
    }
    #promotions-carousel a{
        bottom:14%;
    }
    #promotions-carousel p br{
        display: none;
    }
    #promotions-carousel p.has-link-color{
        margin-top: 50px !important;
        font-weight: 400 !important;
    }
    #promotions-carousel .promo-img{
        bottom: 2px;
    }
    #promotions-carousel .promo-img img{
        height: 90px;
    }
    #promotions-carousel .has-xx-large-font-size{
        font-size: 48px !important;
        margin: 0;
    }
    .cta-registration-box{
        flex-direction: column-reverse;
    }
    .cta-registration-box .cta-right-side {
        border-radius: 20px 20px 0 0 !important;
    }
    .account-types-boxes-mobile{
        display: block !important;
        overflow: hidden;
        margin-bottom: 0 !important;
        margin: 0 !important;
    }
    .account-types-boxes-mobile .account-box .wp-block-cover{
        height: 100%;
    }
    .account-types-boxes-mobile h3{
        font-size: 24px !important;
    }
    .promotions-carousel-outer {
        margin-top: -130px;
    }
    .header-title.portal-title{
        font-size: 32px!important;
        line-height: 40px;
        max-width: 100% !important;
    }
    #trading-portal-carousel .owl-stage-outer{
        padding: 0;
    }
    #trading-portal-carousel .item span{
        margin: 0 10px;
        border-radius: 20px;
        box-shadow: unset;
    }
    #trading-portal-carousel .item .wp-block-cover{
        min-height: 300px !important;
        padding-right: 30px !important;
        padding-bottom: 0 !important;
        padding-top: 20px !important;
    }
    #trading-portal-carousel .item h3{
        font-size: 24px !important;
        padding-top: 20px;
    }
    #trading-portal-carousel .item p{
        font-size: 16px !important;
    }
    #trading-portal-carousel figure {
        min-height: 70px;
    }
    #trading-portal-carousel {
        margin-bottom: 64px;
        margin-top: 0;
        height:auto;
    }
    #trading-portal-mockups-carousel.owl-carousel{
        overflow: hidden;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    #trading-portal-mockups-carousel .owl-item{
        display: block;
    }
    #trading-portal-mockups-carousel .owl-stage{
        align-items: flex-start;
    }
    #trading-portal-mockups-carousel .owl-stage img{
        width: 100% !important;
    }
    #trading-portal-mockups-carousel.owl-carousel .owl-dots{
        text-align: center;
    }
    #trading-portal-mockups-carousel.owl-carousel .owl-dots .owl-dot.active span{
        background: #001246;
    }
    #trading-portal-mockups-carousel.owl-carousel .owl-dots .owl-dot span{
        background: #CBCBCB;
    }
    /*vps mobile*/
    #vps-carousel-mobile .owl-stage{
        padding-left: 0 !important;
    }
    #vps-carousel-mobile .wp-block-columns{
        padding: 20px 10px 20px 16px !important;
        min-height: 140px;
        gap: 10px;
    }
    #vps-carousel-mobile .wp-block-columns p{
        margin-bottom: 0 !important;
    }
    #vps-carousel-mobile .wp-block-columns img{
        width: auto !important;
        max-height: 80px;
    }
    #vps-carousel-mobile{
        margin-bottom: 20px;
        overflow: hidden;
    }
    #vps-carousel-mobile .owl-stage-outer{
        overflow: visible;
    }
    #vps-carousel-mobile.owl-carousel:not(.owl-loaded){
        opacity: 0;
    }
    .platform-page-hover{
        background-color: #EFF1F5 !important;
        color: #000A26;
    }
    .platform-page-hover .item{
        background-color: #000A26;
        border-radius: 20px;
        padding: 24px 16px;
    }
    .platform-page-hover.wp-container-24{
        margin-top:40px !important;
    }
    .platform-page-hover{
        margin-right: 0!important;
    }
    .platform-page-hover p.has-medium-font-size{
        text-align: left;
        font-size: 24px !important;
        line-height: 32px;
        padding-top: 15px;
    }
    .platform-page-hover .is-layout-flow > figure.aligncenter{
        margin-left: unset !important;
    }
    .platform-page-hover .item.rocket img{
        height: 70px;
    }
    .platform-page-hover .show-text-hover{
        opacity: 1 !important;
        color: #fff !important;
        text-align: left;
        padding: 10px 0 0 !important;
    }
/*ACCOUNT COMPARISON*/
    #account-comparison-carousel .has-medium-font-size{
        font-size: 24px !important;
    }
    #account-comparison-carousel .wp-block-columns{
        padding-bottom: 60px !important;
    }

/*    NEW DESIGNS*/
    .owl-carousel.glass-effect .owl-stage-outer{
        padding: 0 !important;
    }
    .owl-carousel.glass-effect{
        margin: -100px 0 0 !important;
    }
    .owl-carousel.glass-effect .owl-item .wp-block-column{
        box-shadow: unset;
    }
/*    .owl-carousel.glass-effect {*/
/*        padding: 0 12px !important;*/
/*        margin: -150px 0 0 0!important;*/
/*        overflow: hidden;*/
/*    }*/
/*    .owl-carousel .owl-stage-outer{*/
/*        overflow: visible !important;*/
/*        padding: 0 !important;*/
/*    }*/
/*    .owl-carousel.glass-effect .owl-item{*/
/*        box-shadow: unset;*/
/*    }*/
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}


@media screen and (max-width: 1024px) {
    .animate__slideInLeftText,.animate__fadeInBottomRight,.animate__fadeInUp {
        -webkit-animation-name: fadeIn !important;
        animation-name: fadeIn;
    }
    .animate__slideInRightText {
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn;
    }
    #animating-slider .item{
        flex-direction: column-reverse !important;
        justify-content: flex-end;
    }
    /*#animating-slider .item > * {*/
    /*    -webkit-animation-name: fadeIn;*/
    /*    animation-name: fadeIn;*/
    /*}*/
    #animating-slider .item .text{
        align-items: center;
        text-align: center;
        padding: 26px 10px 10px;
        flex:unset;
        flex-basis: unset;
        align-content: center !important;
    }
    #animating-slider .item .text h2{
        font-size: 32px;
        margin-bottom: 5px;
    }
    #animating-slider .item .text h3{
        font-size: 24px;
    }
    #animating-slider .item p{
        margin-top: 10px;
        font-size: 16px;
        line-height: 21px;
    }

    #animating-slider .item p br{
        display:none;
    }
    #animating-slider .item .animating-img{
        background-size: contain;
        background-position: center;
        height: 350px;
        flex:unset;
        flex-basis: unset;
        /*-webkit-animation-name: fadeIn;*/
        /*animation-name: fadeIn;*/
    }
    #animating-slider .owl-dots{
        bottom: unset;
    }
    #animating-slider .is-style-mint-btn{
        margin-top: 16px;
        display: flex;
        justify-content: center;
    }
    #green-carousel.owl-carousel{
        margin-top: 0;
        position: absolute;
    }
    /* #green-carousel.owl-carousel .owl-stage{
        padding-left: 0 !important;
    } */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    #animating-slider .item .text h2{
        font-size:42px;
    }
    #animating-slider .item .text h3{
        font-size:26px;
    }
    #animating-slider .item p{
        margin-top: 24px;
    }

}
@media screen and (min-width: 1025px) and (max-width: 1500px) {
    #animating-slider .item .animating-img{
        flex-basis: 450px;
    }
}
@media screen and (min-width: 577px) and (max-width: 1024px){
    #homepage-video.adjust-height{
        display:block !important;
        background-color: #011646;
        min-height: calc(100vh - 545px) !important;
    }
    .homepage-header.adjust-height p{
        font-size:20px !important;
        line-height:30px !important;
    }
    #homepage-video.adjust-height img{
        display:none !important;
    }
    .promotions-carousel-outer:not(.outer-double-carousel){
        margin-right: 0 !important;
    }
    #promotions-carousel .owl-item img{
        height: 120px;
    }
    #promotions-carousel .owl-item .wp-block-cover{
        max-width: 100%;
    }
    #vps-carousel-mobile .owl-stage{
        padding-left: 0 !important;
    }
    #vps-carousel-mobile .has-medium-font-size{
        font-size: 24px !important;
    }
    #vps-carousel-mobile figure{
        float: left;
    }
    #vps-carousel-mobile .wp-block-columns img{
        width: auto !important;
        max-height: 80px;
    }
    #vps-carousel-mobile.owl-carousel:not(.owl-loaded){
        opacity: 0;
    }
    #trading-portal-carousel {
        margin-bottom: 64px;
    }
    #trading-portal-carousel .owl-stage-outer {
        padding: 0 15px;
    }
    #trading-portal-mockups-carousel.owl-carousel {
        padding: 0 15px !important;
    }
    #trading-portal-mockups-carousel.owl-carousel:not(.owl-loaded){
        opacity: 0;
    }


}
@media screen and (max-width: 1200px) {
    .glass-effect.owl-carousel:not(.owl-loaded){
        opacity: 0;
    }
}
@media screen and (min-width: 577px) and (max-width: 1200px){
    /*    NEW DESIGNS*/
    .owl-carousel.glass-effect {
        margin: -100px 0 0 !important;
    }

    .owl-carousel.glass-effect .owl-stage{
        padding-left: 0 !important;
    }

    .promotions-carousel-outer.adjust-position {
        margin-top: -13vh !important;
    }
    .owl-carousel.glass-effect .owl-nav button.owl-prev {
        left: 3px;
    }
    .owl-carousel.glass-effect .owl-nav button.owl-next {
        right: 8px;
    }
}

@media screen and (max-width: 400px){
    #promotions-carousel p {
        max-width: 190px;
    }
}
