@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
    --black: #000;
    --white: #fff;
    --blue: #081F2C;
    --red: #E40046;
    --purple: #C800A1;
    --pink: #C800A1;
    --orange: #F9423A;
    --dark-gray: #3E4D55;
    --light-gray: #f3f3f3;
}
.color-white {
    color: #fff;
}
.color-red {
    color: var(--red);
}
.color-purple {
    color: var(--purple);
}
.color-pink {
    color: var(--pink);
}
.color-orange {
    color: var(--orange);
}
.color-blue {
    color: var(--blue);
}
.color-dark-gray {
    color: var(--dark-gray);
}
.color-light-gray {
    color: var(--light-gray);
}
.background-white {
    background: #fff;
}
.background-red {
    background: var(--red);
}
.background-purple {
    background: var(--purple);
}
.background-pink {
    background: var(--pink);
}
.background-orange {
    background: var(--orange);
}
.background-blue {
    background: var(--blue);
}
.background-dark-gray {
    background: var(--dark-gray);
}
.background-light-gray {
    background: var(--light-gray);
}
.size-16 {
    font-size: 16px;
}
.size-18 {
    font-size: 18px;
}
.size-22 {
    font-size: 22px;
}
.size-25 {
    font-size: 25px;
}
h1 {
    font-weight: 700;
}
body {
	font-family: 'Montserrat', sans-serif;
    color: var(--black);
    background: var(--white);
    padding-top: 100px;
}
body.slim {
    padding-top: 60px;
}
@media screen and (max-width: 768px)
{
    body.slim {
        padding-top: 60px;
    }
}
a {
    color: #1058F0;
    transition: all 0.2s linear;
}
a:hover {
    color: var(--red);
    transition: all 0.2s linear;
}
#site-header {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--blue);
    z-index: 100;
    transition: all 0.2s linear;
}
body.home {
    padding-top: 0;
}
.home #site-header {
    background: transparent;
}
.scrolled #site-header {
    background: var(--blue);
    transition: all 0.2s linear;
}
.home #acf-block-main_banner-block_635ed1331b22f {
    padding-top: 150px;
}
/* WP admin-bar */
@media screen and (min-width: 768px){
    .admin-bar #site-header {
        top: 32px;
    }
}
@media screen and (max-width: 767px){
    .admin-bar #site-header {
        top: 46px;
    }
}

/* Containers */
.page-container.full .wp-block-columns {
    max-width: 1570px;
    margin: auto;
    padding: 0 15px;
    position: relative;
}
.wp-block-columns.reversed {
    flex-direction: row-reverse;
}
.wp-block-columns.background-blue:before {
    content: ' ';
    position: absolute;
    left: -50%;
    background: var(--blue);
    width: 50%;
    height: 100%;
    top: 0;
}
.wp-block-columns.background-blue:after {
    content: ' ';
    position: absolute;
    right: -50%;
    background: var(--blue);
    width: 50%;
    height: 100%;
    top: 0;
}
.wp-block-columns.background-white:before {
    content: ' ';
    position: absolute;
    left: -50%;
    background: white;
    width: 50%;
    height: 100%;
    top: 0;
}
.wp-block-columns.background-white:after {
    content: ' ';
    position: absolute;
    right: -50%;
    background: white;
    width: 50%;
    height: 100%;
    top: 0;
}
@media screen and (min-width: 576px) {
    .page-container.full .wp-block-columns {
        max-width: 540px;
    }
}
@media screen and (min-width: 768px) {
    .page-container.full .wp-block-columns {
        max-width: 720px;
    }
}
@media screen and (min-width: 992px) {
    .page-container.full .wp-block-columns {
        max-width: 960px;
    }
}
@media screen and (min-width: 1200px) {
    .page-container.full .wp-block-columns {
        max-width: 1140px;
    }
}
@media screen and (min-width: 1400px) {
    .page-container.full .wp-block-columns {
        max-width: 1320px;
    }
}
/*
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1570px;
    }
    .page-container.full  .wp-block-columns {
        max-width: 1570px;
    }
}
*/
@media screen and (min-width: 992px) {
    .hamburger {
        display: none;
    }
}
#site-header.simple {
    height: 60px;
}
#site-header .navbar-header .site-logo a {
    height: 100%;
}

#site-header .header-container {
    height: 100%;
    padding: 0;
    /*max-width: 100%;*/
}
#site-header .navbar {
    height: 100%;
    padding: 0;
    margin: 0;
}
#site-header .navbar-col {
    height: 100%;
    padding: 0;
}
#site-header .navbar-header {
    height: 100%;
}
#site-header .navbar-header .site-logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#site-header .navbar-header .site-logo a {
    max-height: 100%;
    overflow: hidden;
}
#site-header .navbar-header .site-logo img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (min-width: 992px) {
    #site-header .main-menu {
        height: 100%;
        padding: 0;
    }
    #site-header .main-m,
    #site-header .menu-main-menu-container {
        height: 100%;
        text-align: center;
    }
}
#site-header .main-menu ul {
    padding: 0;
    margin: 0;
    height: 100%;
}
#site-header .main-menu ul.menu > li {
    display: inline-block;
    height: 100%;
    transition: all 0.2s linear;
}
#site-header .main-menu ul.menu > li a {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: start;
    text-decoration: none;
    position: relative;
    padding: 0 15px;
}
#site-header .main-menu ul.menu > li:hover {
    background: #071b26;
    transition: all 0.2s linear;
}

#site-header .main-menu ul.menu > li.menu-item-has-children > a::after {
    content: " ";
    background: url(../images/arrow_down.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    width: 17px;
    height: 8px;
    right: 5px;
    top: calc(50% - 4px);
    transition: all 0.2s linear;
}
#site-header .main-menu ul.menu > li .sub-menu {    
    display: none;
    position: absolute;
    /*background: #E5E5E5;*/
    background: linear-gradient(180deg, #071b26,#081f2c, #113448);
    min-width: 230px;
    padding: 0;
    height: auto;
    box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
}
@media screen and (min-width: 992px) {
    #site-header .main-menu ul.menu > li.menu-item-has-children:hover > a::after {
        transform: rotate(180deg);
        transition: all 0.2s linear;
    }
    #site-header .main-menu ul.menu > li.menu-item-has-children > a {
        padding: 0 30px 0 15px;
    }
    #site-header .main-menu ul.menu > li .sub-menu li {
        display: block;
        width: 100%;
        line-height: 40px;
        border-bottom: 1px solid var(--red);
    }
}
#site-header .main-menu ul.menu > li .sub-menu li:last-child {
    border: 0;
}
#site-header .main-menu ul.menu > li .sub-menu li a {
    color: var(--white);
    font-weight: 500;
    transition: all 0.2s linear;
}
#site-header .main-menu ul.menu > li.current-menu-ancestor a,
#site-header .main-menu ul.menu > li.current-menu-item a {
    color: var(--red);
}
#site-header .main-menu ul.menu > li .sub-menu li.current-menu-item a,
#site-header .main-menu ul.menu > li .sub-menu li a:hover {
    color: var(--red);
    transition: all 0.2s linear;
}
@media screen and (min-width: 992px) {
    #site-header .main-menu .collapse:not(.show) {
        display: block !important;
    }
    body.home:not(.scrolled) #site-header .main-menu ul.menu > li:hover {
        background: transparent;
    }
    body.home:not(.scrolled) #site-header .main-menu ul.menu > li .sub-menu {
        /*background: linear-gradient(180deg, transparent, rgb(228 0 70) );*/
        background: linear-gradient(180deg, transparent, rgb(13 41 66) );
    }
    body.home:not(.scrolled) #site-header .main-menu ul.menu > li .sub-menu li a {
        color: #fff;
        text-shadow: 0 0 10px #000;
    }
    body.home:not(.scrolled) #site-header .main-menu ul.menu > li .sub-menu li:hover a {
        color: #ffffff;
        background: rgb(255 255 255 / 15%);
    }
    body.home:not(.scrolled) #site-header .main-menu ul.menu > li .sub-menu li:not(:last-child) {
        border-bottom: 1px solid rgb(255 255 255 / 30%);
    }
}

.simplex-logo-slider .slide .wrapper {
    height: 80px;
}
#simplex-logo-slider .slide .wrapper img {
    max-width: 100%;
    max-height: 100%;
}
.wp-block-buttons .button.red a,
.wp-block-buttons .button.red-borders a,
.button,
a.button,
a.become-partner {
    cursor: pointer;
    display: inline-block;
    line-height: 55px;
    padding: 0 30px;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    min-width: 245px;
    text-align: center;
}
.wp-block-buttons.button.red a,
a.button.red {
    background: var(--red);
}
.wp-block-buttons .button.red-borders a,
a.button.red-borders {
    border: 1px solid var(--red);
    background: transparent;
}
a.button.red.red-borders {
    color: var(--red);
}
a.button.blue.red-borders,
a.button.black.red-borders {
    color: var(--blue);
}
.wp-block-buttons .button.red-borders:hover a,
a.button.red-borders:hover {
    background: var(--red);
    color: #fff;
}
.wp-block-buttons .button.color-blue a,
a.button.color-blue {
    color: var(--blue);
}
.wp-block-buttons .button.purple-borders a,
a.button.purple-borders {
    border: 1px solid var(--purple);
    background: transparent;
}
a.button.purple.purple-borders {
    color: var(--purple);
}
a.button.purple.purple-borders:hover {
    color: #fff;
    background-color: var(--purple);
    border-color: var(--purple);
}
a.become-partner {
    min-width: unset;
    background: var(--red);
}
a.become-partner:hover {
    opacity: 0.8;
}
a.become-partner.sell-crypto-btn {
    background: transparent;
    border: 2px solid var(--red);
}
.button:not(.red-borders) a:hover,
.button:hover {
    opacity: 0.8;
} 
.header-cta-btn a {
    width: auto;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    max-width: 100%;
    width: 100%;
    display: inline-block;
}
.header-cta-btn {
    text-align: right;
}
@media screen and (min-width: 992px) {
    .navbar-header .header-cta-btn {
        display: none;
    }
}
@media screen and (min-width: 992px) and (max-width: 1366px) {
    .header-cta-btn a {
        font-size: 12px;
        line-height: 40px;
        padding: 0 10px;
    }
}
@media screen and (max-width: 991px) {
    .header-cta-btn {
        display: none;
    }
    .navbar-header .header-cta-btn {
        width: calc(100% - (150px + 80px));
        float: left;
        display: inline-block;
    }
    .navbar-header .header-cta-btn a {
        background: var(--red);
        height: 40px;
        color: #fff;
        display: inline-block;
        width: calc(50% - 10px);
        line-height: 12px;
        padding: 8px 0;
        margin-left: 5px;
        white-space: unset;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
        max-width: 80px;
    }
    .apm-post .page-container .main {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.instructions.row {
    margin: 0;
}
#site-footer {    
    background: var(--blue);
    color: #fff;
    border-top: 1px solid var(--light-gray);
    padding-top: 50px;
}
.sb-row {
    margin-bottom: 20px;
}
.footer-sb h4 {
    font-size: 18px;
    font-weight: 700;
}
.footer-sb ul {
    padding: 0;
    list-style: none;
}
.footer-sb ul li {
    margin-bottom: 10px;
}
.footer-sb ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}
.footer-sb ul li a:hover{
    color: var(--red);
}

.footer-bottom {
    padding: 20px 0;
}
.footer-bottom ul {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    justify-content: center;
}
.footer-bottom ul li {
    margin-right: 30px;
    position: relative;
}
.footer-bottom ul li:last-child {
    margin-right: 0;
}
.footer-bottom ul li:after {
    content: " ";
    position: absolute;
    right: -15px;
    height: 100%;
    width: 1px;
    background: #3E4D55;
    bottom: 0;
}
.footer-bottom ul li:last-child:after {
    display: none;
}
.footer-bottom ul li a {
    color: #3E4D55;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.footer-bottom ul li a:hover {
    color: #fff;
}
@media screen and (min-width: 992px) {
    #site-footer .menus {
        padding: 0 90px;
    }
}
#site-footer .site-info img {
    max-width: 100%;
    height: auto;
}
#site-footer .copyrights {
    color: #3E4D55;
    font-size: 14px;
    font-weight: 700;
}
#site-footer .company-address {
    text-align: center;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 30px;
}
.scrollup {
    position: fixed;
    right: 60px;
    width: 50px;
    height: 80px;
    background: #fff;
    z-index: 1;
    bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: start;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
}
.scrollup a {
    color: var(--red);
    text-decoration: none;
    width: 100%;
    height: 100%;
    text-align: center;
}
.scrollup a::after {
    content: "UP";
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}
.scrollup a span {
    font-size: 40px;
    display: block;
}
.scrolled .scrollup {
    opacity: 1;
    visibility: visible;
    transition: all 0.2s linear;
}
.scrolled .scrollup:hover {
    background: var(--red);
}
.scrolled .scrollup:hover a {
    color: #fff;
}

#footer-promo {
    height: 270px;
    padding: 45px 0;
    color: #fff;
    background-size: cover;
}
#footer-promo h2 {
    font-size: 40px;
    font-weight: 700;
    max-width: 50%;
    margin-bottom: 30px;
}

.social-icons,
.social-icons ul {
    padding: 0;
    margin: 0;
}
.social-icons li.social-button {
    display: inline-block;
    margin-right: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.social-icons li.social-button a {
    display: flex;
    width: 32px;
    height: 32px;
    background: var(--red);
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 21px;
}
.social-icons.large li.social-button {
    margin: 0 20px;
}
.social-icons.large li a {
    width: 64px;
    height: 64px;
    font-size: 42px;
}
.page.m-true,
.page.m-default {
    padding: 60px 0;
}

.container.full {
    width: 100%;
    max-width: unset;
    padding: 0;
}
.row.page-content {
    margin: 0;
}
.row.page-content > .col-12 {
    padding: 0;
}

.colorful-bg-1,
#page-about {
    background-image: url(../images/about-Back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
}
.colorful-bg-2 {
    background-image: url(../images/bg-light-bottom.jpg);
    background-size: 100% 1280px;
    background-repeat: no-repeat;
    background-position: 50% -120px;
}
.colorful-bg-3 {
    background-image: url(../images/Simplex_BG_Type_5.jpg);
    background-size: 100% 1280px;
    background-repeat: no-repeat;
    background-position: 50% -120px;
    padding-top: 70px;
}
.colorful-bg-1 .wFormContainer .wForm {
    border-radius: 30px;
    overflow: hidden;
}
h2.side-line,
h2.side-lines {
    position: relative;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}
h2.side-line {
    display: flex;
}
h2.side-lines {
    display: inline-block;
    width: auto;
    padding: 0 80px;
}
h2.side-line.right {
    padding-right: 80px;
    justify-content: end;
}
h2.side-line.left {
    padding-left: 80px;
    justify-content: start;
}
h2.side-line.right:after,
h2.side-line.left:before,
h2.side-lines:before,
h2.side-lines:after {
    content: ' ';
    width: 60px;
    border-bottom: 2px solid var(--red);
    position: absolute;
    top: 50%;
}
h2.side-line.left:before{
    left: 0;
}
h2.side-lines:before {
    left: 0;
}
h2.side-line.right:after{
    right: 0;
}
h2.side-lines:after {
    right: 0;
}
h2.side-lines.no-l:after,
h2.side-lines.no-l:before{
    display: none;
}

/* Swiper Logos */
#simplex-logo-slider .slide .wrapper {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
#simplex-logo-slider .swiper-slide.grayscale img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

#main-content {
    background: #081f2c;
    color: #fff;
}
ul.bulletin {
    list-style: none;
}
ul.bulletin li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
}
ul.bulletin li:before {
    content: ' ';
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}
ul.bulletin.purple li:before {
    background: var(--purple);
}
ul.bulletin.orange li:before {
    background: var(--orange);
}

#why-simplex {
    background-color: #081f2c;
    color: #fff;
    font-size: 20px;
    background-image: url(../images/bg-light-bottom.jpg);
    background-size: auto auto;
    background-position: 60% 100%;
    background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
    #why-simplex .info {
        padding: 60px 0;
    }
    #why-simplex .counters {
        padding: 60px 0;
    }
}
#why-simplex .counters {
    position: relative;
}
#why-simplex .counters .counter-box {
    text-align: center;
    font-size: 18px;
    color: #fff;
    padding: 80px 30px 0;
}
#why-simplex .counters .counter-box .counter-box-title {
    line-height: 70px;
    font-size: 70px;
    font-weight: 700;
}
.egg-shape-red {
    background-image: url(../images/egg-shape-red.svg);
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.egg-shape-purple {
    background-image: url(../images/egg-shape-purple.svg);
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.egg-shape-orange {
    background-image: url(../images/egg-shape-orange.svg);
    background-size: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.egg-shape-red {
    position: absolute;
    top: 60px;
    right: 280px;
    min-width: 280px;
    min-height: 270px;
}
.egg-shape-purple {
    position: absolute;
    top: calc(40% - 150px);
    right: 0;
    min-width: 230px;
    min-height: 300px;
}
.egg-shape-orange {
    position: absolute;
    top: 350px;
    right: 220px;
    min-width: 280px;
    min-height: 290px;
}

#simplex-no-risk {
    padding: 120px 0;
    background-color: #fff;
    color: #000;
    background-image: url(../images/purple-blue-haze.png);
    background-size: 720px;
    background-position: 25% -90px;
    background-repeat: no-repeat;
}

#simplex-no-risk .row.cas {
    height: 400px;
    display: flex;
}
#simplex-no-risk .cas-pane {
    height: 100%;
    max-width: calc(100% / 3);
}
.cas-pane .wrapper,
#simplex-no-risk .cas-pane .wrapper {
    border: 2px dashed var(--red);
    border-radius: 0 75px 0 75px;
    padding: 10px;
    height: 100%;
    position: relative;
}
.cas-pane img,
#simplex-no-risk .cas-pane img {
    height: 100%;
    width: 100%;
    margin-right: -20px;
    position: absolute;
}
#simplex-no-risk .cas-pane.c1 {
    max-width: 190px;
    max-height: 260px;
}
#simplex-no-risk .cas-pane.c2 {
    max-width: 240px;
    max-height: 330px;
    margin-top: 50px;
}
#simplex-no-risk .cas-pane.c3 {
    max-width: 280px;
    max-height: 400px;
    margin-top: 100px;
}


#page-join-us {
    background-color: #081f2c;
    color: #fff;
    font-size: 20px;
}


/*Fancy Quote Block */
.acf-block-fancy-quote  {
    margin: 60px 0;
}
.acf-block-fancy-quote .image {
    padding: 0;
    border-radius: 50px;
    overflow: hidden;
}
.acf-block-fancy-quote .image img {
    width: 100%;
    height: 100%;
}
.acf-block-fancy-quote .row.m1024 {
    max-width: 1024px;
    margin: auto;
}
.acf-block-fancy-quote .content {
    font-size: 18px;
}
@media screen and (min-width: 992px) {
    .acf-block-fancy-quote .image {
        width: 345px;
        height: 345px;
    }
    .acf-block-fancy-quote .content {
        width: calc(100% - 345px);
    }
}
.acf-block-fancy-quote .quote-name {
    font-size: 40px;
    font-weight: 700;
}
.acf-block-fancy-quote .quote-position {
    color: var(--purple);
    font-weight: 700;
    font-size: 20px;
}
@media screen and (min-width: 992px) {
    .acf-block-fancy-quote .wrapper {
        position: relative;
        padding: 60px 60px 30px 30px;
        margin-right: -50px;
        height: 100%;
    }
    .acf-block-fancy-quote .wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50px 0 0 50px;
        padding: 2px 0px 2px 2px;
        background: linear-gradient(0,var(--red),var(--purple));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
}

.ot-form-wrapper .vt-input-element {
    background: var(--blue);
}


/* BLOG PAGE */
.icon-user {
    background: url(../images/icon-user.svg);
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 20px;
    line-height: 20px;
    display: inline-block;
    height: 22px;
    margin-bottom: -2px;
}
.icon-calendar {
    background: url(../images/icon-calendar.svg);
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 21px;
    line-height: 20px;
    display: inline-block;
    height: 23px;
    margin-bottom: -4px;
}
/*.post .image-wrapper,*/
.promoted .image-wrapper {
    height: 370px;
    max-width: 640px;
    border: 2px dashed var(--red);
    border-radius: 0 75px 0 75px;
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.promoted .image-wrapper .inner-image-wrapper {
    margin-right: -20px;
    margin-bottom: -20px;
    position: absolute;
    border-radius: 0 75px 0 75px;
    width: 100%;
    height: 240px;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
}
.promoted .image-wrapper img {
}
.image-wrapper.wp-block-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
}
.post .post-main .image-wrapper {
    margin: 40px 0;
}
.post .post-main .image-wrapper img {
    max-width: 100%;
}
.posts-index .promoted {
    margin-bottom: 60px;
    background: url(../images/blog-promo-bg.jpg);
    background-size: 60% 75%;
    background-position: 100% 50%;
    background-repeat: no-repeat;
}
.posts-index .promoted h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: initial;
    max-height: 100px;
    overflow: hidden;
    margin-bottom: 20px;
}
.post .post-main .post-meta ,
.posts-index .promoted .post-meta {
    margin: 30px 0 20px 0;
    font-size: 18px;
    font-weight: 700;
    display: flex;
}
.post .post-main .post-meta span,
.posts-index .promoted .post-meta span {
    margin-left: 15px;
}
.post-date {
    display: inline-block;
    width: 50%;
}
.post-author {
    display: inline-block;
    width: 50%;
}
.post .date {
   width: auto;
}
.post .post-author {
    width: auto;
    margin-right: 40px;
}
.promoted .post-desc {
    max-height: 100px;
    overflow: hidden;
    margin-bottom: 20px;
}
.button-row,
.title-row {
    margin: 10px 0;
    justify-content: center;
    text-align: center;
}
.page-header {
    margin-bottom: 30px;
}
.posts-index {
    padding: 60px 0;
}
.post-item {
    margin-bottom: 30px;
}
.post-item .wrapper {
    border-radius: 0 40px;
    margin: 0;
    overflow: hidden;
    text-decoration: unset;
    color: var(--black);
    background: var(--light-gray);
    transition: all 0.2s;
}
.post-item:hover .wrapper {
    transition: all 0.2s;
    box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
.post-item a > .read-more{
    color: var(--black);
    font-weight: 500;
}
.post-item .image-wrapper {
    height: 240px;
    overflow: hidden;
    padding: 0;
    position: relative;
    background: var(--light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-item .image-wrapper img {
    max-width: 100%;
}
.post-item .title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    margin-bottom: 20px;
    height: 120px;
}
.post-item a {
    text-decoration: none;
}
.post-item .content-wrapper {
    height: 100%;
    transition: all 0.2s linear;
    padding: 15px;
    margin-bottom: 20px;
    height: 180px;
    overflow: hidden;
}
.post-item .title-wrapper h2,
.post-item .content-wrapper h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: inherit;
    margin: 0;
    color: var(--blue);
}

/* Single Post */
.post {
    background: url(../images/post-bg.svg);
    background-size: auto;
    background-position: 100% 0;
    background-repeat: no-repeat;
}
.more-posts h2 {
    font-weight: 800;
}
.post-body {
    font-size: 20px;
}
.post .button-row{
    margin-bottom: 90px;
}
/* Sidebar */
.post .side {
    padding-top: 90px;
}
/* Pagination*/
.row.navigation {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
.page-numbers {
    display: inline-block;
    width: auto;
    margin-right: 10px;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    color: var(--red);
    border: 1px solid;
}
.page-numbers:not(.dots) {
    background: #fff;
    border-color: var(--red);
    color: var(--red);
}
.page-numbers:not(.dots):hover {
    color: #fff;
    background: var(--purple);
}
.page-numbers.dots {
    border: 0;
    background: #fff;
    color: var(--red);
}
.page-numbers.current {
    border-color: var(--purple);
    color: var(--purple);
}

/* Search Widget */
.wp-block-search__input {
    border: 2px solid var(--red);
    border-radius: 15px 0 0 15px;
    padding: 0 10px;
    line-height: 46px;
    font-size: 16px;
    outline-color: var(--orange);
}
.wp-block-search__button {
    margin: 0;
    background: var(--red);
    border: 2px solid var(--red);
    color: #fff;
    border-radius: 0 15px 15px 0;
}

/* Animations */
.dot-bricks {
    position: relative;
    top: 8px;
    left: -9999px;
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: var(--red);
    color: var(--red);
    box-shadow: 9991px -6px 0 0 var(--red), 9991px 0 0 0 var(--red), 9997px 0 0 0 var(--red);
    animation: dotBricks 2s infinite ease;
  }
  
  @keyframes dotBricks {
    0% {
      box-shadow: 9991px -6px 0 0 var(--red), 9991px 0 0 0 var(--red), 9997px 0 0 0 var(--red);
    }
    8.333% {
      box-shadow: 9997px -6px 0 0 var(--red), 9991px 0 0 0 var(--red), 9997px 0 0 0 var(--red);
    }
    16.667% {
      box-shadow: 9997px -6px 0 0 var(--red), 9991px -6px 0 0 var(--red), 9997px 0 0 0 var(--red);
    }
    25% {
      box-shadow: 9997px -6px 0 0 var(--red), 9991px -6px 0 0 var(--red), 9991px 0 0 0 var(--red);
    }
    33.333% {
      box-shadow: 9997px 0 0 0 var(--red), 9991px -6px 0 0 var(--red), 9991px 0 0 0 var(--red);
    }
    41.667% {
      box-shadow: 9997px 0 0 0 var(--red), 9997px -6px 0 0 var(--red), 9991px 0 0 0 var(--red);
    }
    50% {
      box-shadow: 9997px 0 0 0 var(--red), 9997px -6px 0 0 var(--red), 9991px -6px 0 0 var(--red);
    }
    58.333% {
      box-shadow: 9991px 0 0 0 var(--red), 9997px -6px 0 0 var(--red), 9991px -6px 0 0 var(--red);
    }
    66.666% {
      box-shadow: 9991px 0 0 0 var(--red), 9997px 0 0 0 var(--red), 9991px -6px 0 0 var(--red);
    }
    75% {
      box-shadow: 9991px 0 0 0 var(--red), 9997px 0 0 0 var(--red), 9997px -6px 0 0 var(--red);
    }
    83.333% {
      box-shadow: 9991px -6px 0 0 var(--red), 9997px 0 0 0 var(--red), 9997px -6px 0 0 var(--red);
    }
    91.667% {
      box-shadow: 9991px -6px 0 0 var(--red), 9991px 0 0 0 var(--red), 9997px -6px 0 0 var(--red);
    }
    100% {
      box-shadow: 9991px -6px 0 0 var(--red), 9991px 0 0 0 var(--red), 9997px 0 0 0 var(--red);
    }
}

.snippet {
    margin: 12px 12px 0;
}
.dot-flashing {
    position: relative;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--red);
    color: var(--red);
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
  }
  
  .dot-flashing::before, .dot-flashing::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
  }
  
  .dot-flashing::before {
    left: -8px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--red);
    color: var(--red);
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
  }
  
  .dot-flashing::after {
    left: 8px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--red);
    color: var(--red);
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
  }
  
  @keyframes dotFlashing {
    0% {
      background-color: var(--red);
    }
    50%,
    100% {
      background-color: #ebe6ff;
    }
  }

/* Buy Crypto */
#buy-crypto-info {
    padding: 60px 0;
    background: url(../images/blog-promo-bg.png);
    background-size: 100% 100%;
    background-position: 50% 200%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#buy-crypto-form .container {
  background: var(--blue);
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  padding: 60px;
  border-radius: 50px;
}
#buy-crypto-form .bulletin {
    text-align: left;
    margin: 20px 0 60px;
}
#simplex-form {
    width: 100%;
}

/* Sell Crypto */
#simplex-quote-widget {
    min-height: 440px;
    max-width: 630px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--red);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: #fff;
    border-color: #fff;
}
#simplex-quote-widget iframe {
    height: 448px;
    background: #b3b3b3;
    /*border: 4px solid #b3b3b3;*/
}
#sell-crypto-form {
    background-image: url(../images/Simplex_BG_Type_5.jpg);
    background-size: 100% 1280px;
}
#sell-crypto-form .container {
  /*background: var(--blue);*/
  color: #fff;
  text-align: center;
  /*margin-bottom: 60px;*/
  padding: 60px;
  border-radius: 50px;
}
#change-crypto-info,
#sell-crypto-info {
    padding: 60px 0;
    background: url(../images/blog-promo-bg.png);
    background-size: 100% 100%;
    background-position: 50% 200%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#sell-crypto-info {
    display: none;
}
.info-icon {
    margin-bottom: 30px;
}
.info-icon .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}
.info-icon .text {
    font-size: 24px;
    font-weight: 700;
}

#page-sell #main-page-banner {
    height: 100px;
}
#page-sell #main-page-banner h1 {
    font-size: 40px;
}

/* System Status */
.support-message {
    background: #fff;
    padding: 30px;
    margin: 30px 0;
    border-radius: 30px;
    color: var(--blue);
}
.support-message h2 {
    color: var(--red);
    font-size: 20px;
    border-bottom: 1px solid #d1d1d1;
}
.support-message .message-time,
.support-message .message-date {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

/* Careers */
.row.jobs-header {
    margin-bottom: 40px;
}
#page-careers {
    background: var(--blue);
    color: #fff;
}
#simplex-job-opennings {
    padding: 60px 0;
    background: var(--blue);
    color: #fff;
}
.job-item {
    margin-bottom: 30px;
}
.job-item a {
    font-weight: 700;
    color: var(--black);
}
.job-item .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 260px;
    font-weight: 700;
    color: var(--black);
    background: #fff;
    border-radius: 30px;
    padding: 30px;
}
.job-item .title {
    font-weight: 800;
    font-size: 25px;
    line-height: 28px;
    color: var(--purple);
    flex: auto;
}
.job-item .details {
    display: flex;
    justify-content: center;
    flex: auto;
    margin-bottom: 20px;
}
.job-item .description {
    flex: auto;
}
.job-item .details > .location,
.job-item .details > .department {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#country-list,
#department-list {
    line-height: 40px;
    border-radius: 30px;
    border: 2px solid var(--red);
}
.job-item .details .text {
    display: inline-block;
    line-height: 18px;
    width: calc(100% - 29px);
    font-size: 14px;
}
.icon-location {
    content: ' ';
    width: 24px;
    height: 24px;
    background-image: url(../images/icon-location.svg);
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    display: inline-block;
    line-height: 30px;
    margin-right: 5px;
    float: left;
}
.icon-departments {
    content: ' ';
    width: 24px;
    height: 24px;
    background-image: url(../images/icon-departments.svg);
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    display: inline-block;
    line-height: 30px;
    margin-right: 5px;
    float: left;
}
#simplex-view-job-position h1 {
    margin: 30px 0;
}
#simplex-view-job-position .details {
    display: flex;
    flex: auto;
    margin: 0 0 30px;
}
#simplex-view-job-position .details .location {
    margin-right: 40px;
}

#simplex-view-job-position .career-desc {
    margin-bottom: 60px;
}

#apply-form {
    position: relative;
}
#apply-form .container {
    background: var(--blue);
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    padding: 60px;
    border-radius: 40px;
    z-index: 1;
}
#apply-form .form-row {
    padding: 0 15px;
    text-align: left;
    margin-bottom: 30px;
    float: left;
}
#apply-form .form-row label {
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 300;
}
.form-messages-wrapper {
    width: 100%;
}
#form-action-messages,
.form-messages-wrapper #form-messages{
    display: none;
    padding: 15px;
    background: #071923;
    font-size: 14px;
    color: var(--light-gray);
}
#form-action-messages {
    text-align: center;
}
.form-messages-wrapper #form-action-messages.msg-success,
.msg-success {
    color: #6eca1a;
}
.form-messages-wrapper #form-action-messages .msg-error,
.msg-error {
    color: var(--orange) !important
}
@media screen and (min-width: 768px){
    #apply-form .form-row:not(.full-width) {
        width: 50%;
        float: left;
    }
    #apply-form .form-row.form-policy-wrapper {
        width: 100%;
    }
}
#apply-form .form-row.submit-row {
    text-align: center;
    width: 100%;
}
#apply-form .form-row .form-control {
    background: #FFFFFF;
    border: 2px solid var(--red);
    border-radius: 15px;
}
#apply-form .form-row .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(200 0 161 / 25%);
}
#simplex-view-job-position #apply-form #submit_career_cv {
    margin: 30px 0;
}

#simplex-view-job-position {
    position: relative;
}
#simplex-view-job-position::before {
    content: " ";
    background-image: url(../images/purple-blue-top-right.svg);
    background-size: contain;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 640px;
    height: 640px;
    max-width: 33%;
}
#apply-form::before {
    content: " ";
    background-image: url(../images/purple-blue-middle-right.svg);
    background-size: contain;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 640px;
    height: 640px;
    max-width: 33%;
}
.radio-button {
    padding: 0 20px;
    background: var(--dark-gray);
    line-height: 40px;
    margin-right: 20px;
    border-radius: 8px;
    color: var(--white);
    box-shadow: 0 0 10px 0 0 10px rgb(0 0 0 / 50%);
    text-align: center;
    cursor: pointer;
}
.form-control-radio {
    opacity: 0;
    width: 1px;
    height: 1px;
    transition: all 0.2s linear;
}
.form-control-radio:checked + label {
    background: var(--red);
    transition: all 0.2s linear;
}
.form-policy-wrapper p {
    margin: 0;
}
.form-policy-wrapper label {
    margin-left: 10px;
}
.form-policy-wrapper label a {
    color: var(--red);
    text-decoration: underline;
}
.checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--dark-gray);
    transition: all 0.2s linear;
}
.checkbox-wrap:hover input ~ .checkmark {
    background-color: var(--dark-gray);
    transition: all 0.2s linear;
}
.checkbox-wrap input:checked ~ .checkmark {
    background-color: var(--red);
    transition: all 0.2s linear;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-wrap input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-wrap .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.2s linear;
}
/*
.whr-group.whr-toggle {
    transition: all 0.2s linear;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    margin: 0;
}
.whr-group.whr-toggle a {
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    margin-bottom: 30px;
    padding: 0 20px;
    transition: all 0.2s linear;
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #fff;
}
.whr-group.whr-toggle.whr-active a,
.whr-group.whr-toggle a:hover{
    text-decoration: none;
    color: var(--orange);
}
.whr-items {
    padding: 0;
}
.whr-item {
    list-style-type: none;
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
    float: left;
}
.whr-code,
.whr-dept,
.whr-date {
    display: none;
}
.whr-title {
    margin: 0;
}
.whr-title a {
    padding: 0 15px;
    background: transparent;
    height: 100px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange);
    border: 1px solid rgb(255 255 255);
    transition: all 0.2s linear;
    text-decoration: none;
    background: #ffffff12;
}
.whr-title a:hover {
    border: 1px solid var(--orange);
    background: var(--orange);
    color: #fff;
    transition: all 0.2s linear;
}
.whr-info {
    padding: 0;
    list-style: none;
    text-align: center;
    background: #081f2c;
    color: #fff;
}
@media screen and (max-width: 991px) {
    
    .whr-item {
        list-style-type: none;
        width: 100%;
        padding: 15px;
        margin-bottom: 30px;
        float: left;
    }
}
*/
/* Solutions */
#page-coin-springboard-service {
    background: var(--blue);
    color: #fff;
}
#page-nft-dir3ct,
#page-nft-solution {
    background: var(--blue);
    color: #fff;
}
#page-turnkey-solution {
    background: var(--blue);
    color: #fff;
}

/* Solutions Archive */
#page-solutions {
    background: var(--blue);
}
#page-solutions .wp-block-columns {
    padding-top: 60px;
    padding-bottom: 60px;
}


/* Legal Sheets Nav */
#legal-sheets-nav .menu {
    margin: 0;
    text-align: center;
}
.content #legal-sheets-nav .menu {
	box-shadow: none;
    border-bottom: 1px solid var(--dark-gray);
    border-top: 1px solid var(--dark-gray);
}
@media screen and (min-width: 768px) {
	#legal-sheets-nav {
        height: 40px;
        margin: 30px 0;
	}
	body:not(.scrolled) #legal-sheets-nav {
        border-top: 1px solid var(--dark-gray);
        border-bottom: 1px solid var(--dark-gray);
	}
	section#legal-sheets-nav {
	}
	.scrolled #legal-sheets-nav .menu {
		position: fixed;
		left: 0;
		right: 0;
		top: 100px;
		z-index: 1;
	}
	.admin-bar.scrolled #legal-sheets-nav .menu {
		top: calc(100px + 32px);
	}
    .scrolled #legal-sheets-nav .menu {
    	box-shadow: 0 11px 10px 0 rgb(0 0 0 / 5%);
        background: var(--light-gray);
    }
}
#legal-sheets-nav .menu > li {
    display: inline-block;
	margin: 0;
    margin-right: 40px;
}
#legal-sheets-nav .menu > li a {
    line-height: 40px;
    font-size: 16px;
    color: var(--blue);
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: 600;
}
#legal-sheets-nav .menu > li a:hover {
    color: var(--blue);
}
#legal-sheets-nav .menu > li.current-menu-item a { 
    font-weight: 700;
}
#legal-sheets-nav .menu > li a:after {
    content: ' ';
    border-left: 1px solid var(--blue);
    top: 10px;
    bottom: 10px;
    position: absolute;
    right: -20px;
}
#legal-sheets-nav .menu > li:last-child a:after {
    content: '';
    display: none;
}

.terms-of-use-options .wrapper {
    height: 100px;
    display: flex;
    justify-content: center;
    flex-flow: column;
    font-size: 10px;
    text-align: center;
}

.terms-of-use-options .wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 800;
}

.terms-of-use-options .wrapper .button {
    display: inline-block;
    max-width: 240px;
    margin: auto;
}

/* Widgets */
.sidebar-widget {
    margin-bottom: 30px;
}
.sidebar-widget h3 {
    font-weight: 800;
    font-size: 30px;
    color: #081F2C;
}
.sidebar-widget .widget-ternding-articles .wp-block-group__inner-container {
    background: #FFFFFF;
    border: 2px solid var(--red);
    border-radius: 15px;
    padding: 30px;
}
.wp-block-latest-posts__featured-image { 
    border-radius: 10px;
    margin-right: 15px;
    display: inline-flex;
    height: 115px;
    float: left;
    justify-content: center;
    align-items: center;
}
.wp-block-latest-posts__featured-image img {
    width: 85px;
    border-radius: 20px;
    overflow: hidden;
}
a.wp-block-latest-posts__post-title {
    display: inline-flex;
    width: calc(100% - 100px);
    height: 115px;
    align-items: center;
    color: #081F2C;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}
a.wp-block-latest-posts__post-title:hover {
    color: var(--red);
}

#seize-your-opportunity {
    padding: 120px 0;
    background-color: #fff;
    color: #000;
    background-image: url(../images/purple-blue-haze.png);
    background-size: 720px;
    background-position: 25% -90px;
    background-repeat: no-repeat;
}
#seize-your-opportunity .cas-1 .wrapper {
    width: 445px;
    height: 245px;
    margin: 20px auto 20px 0;
}
#seize-your-opportunity .cas-2 .wrapper {
    width: 365px;
    height: 230px;
    margin: 20px 0 20px auto;
}
@media screen and (min-width: 992px) {
    #seize-your-opportunity .cascading-panes {
        padding-right: 60px;
    }
}
#acf-block-main_banner-block_6361dfa978db2 .overlay .wrapper {
    margin-bottom: 30px;
}

.page-container.full .wp-block-columns.focus-on-your-business {
    padding: 60px 15px;
    font-size: 20px;
}
#page-coin-listing {
    background: var(--blue);
    color: #fff;
}
.why-choose-simplex {
    position: relative;
}
.why-choose-simplex::before {
    content: " ";
    background-image: url(../images/purple-blue-right.svg);
    background-size: contain;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 640px;
    height: 640px;
    max-width: 33%;
}
.why-choose-simplex::after {
    content: " ";
    background-image: url(../images/purple-blue-left.svg);
    background-size: contain;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 640px;
    height: 640px;
    max-width: 33%;
}
.why-choose-simplex {
    padding: 60px 0;
    background: #fff;
    color: var(--black);
    font-size: 20px;
}
.why-choose-simplex .row {
    margin-bottom: 40px;
}
.why-choose-simplex .cas-1 .cas-pane .wrapper {
    height: 230px;
    width: 465px;
}
.why-choose-simplex .cas-2 .cas-pane .wrapper {
    height: 270px;
    width: 525px;
}
@media screen and (min-width: 768px) {
    .why-choose-simplex .our-solution {
        padding-right: 60px;
    }
}

.acf-block-header-with-text {
    position: sticky;
    z-index: 1;
}
.home .acf-block-main_banner .image_layer {
    float: right;
    margin-right: -560px;
    width: 560px;
}
.home .acf-block-main_banner .overlay-container {
    position: relative;
}
.home .acf-block-header-with-text {
    margin-top: -140px;
}


/* Custom */
@media screen and (max-width: 1470px) {
    .home .acf-block-main_banner .overlay-container {
        overflow: hidden;
        max-width: 100%;
    }
}
@media screen and (min-width: 768px) and (max-width: 1470px) {
    .home .acf-block-main_banner .overlay-container {
        padding: 0 60px !important;
    }
}
@media screen and (max-width: 1366px) {
    .wp-block-buttons .button.red a, .wp-block-buttons .button.red-borders a, a.button, a.become-partner {
        padding: 0 15px;
    }
}
#acf-block-main_banner-block_6361dfa978db2 {
    margin-bottom: 80px;
}
.acf-block-testimonials .slide {
    width: 50%;
    padding: 0 15px;
}

#page-turnkey-solution ul.bulletin li {
    max-width: 300px;
}

/* Main Page Banner */
@media screen and (min-width: 991px) {
    #main-page-banner {
        height: 300px;
        padding: 0;
    }
}
#main-page-banner .wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--blue);
    color: #fff;
    border-top: 1px solid var(--light-gray);
    font-size: 20px;
}
#main-page-banner .wrapper h1 {
    font-weight: 700;
    font-size: 64px;
}
#main-page-banner .content {
    max-width: 600px;
    margin: auto;
    font-size: 18px;
}
@media screen and (max-width: 992px) {
    #main-page-banner .wrapper {
        padding: 60px 0;
    }
    #main-page-banner .wrapper h1 {
        font-weight: 700;
        font-size: 28px;
    }
    #main-page-banner .content {
        font-size: 16px;
        padding: 0 30px;
    }
}
/* 404 */
.row.page-404 {
    margin: 0;
    text-align: center;
    background: var(--blue);
    color: #fff;
    padding: 100px 0;
}
.page-404 h1 {
    color: #fff;
    font-size: 96px;
    padding: 0;
    font-weight: 700;
}
/* Cookie Consent */
#onetrust-consent-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: #FFFFFF !important;
}
#onetrust-consent-sdk #onetrust-pc-btn-handler, #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link {
    color: var(--red) !important;
    border-color: var(--red) !important;
    background-color: #FFFFFF !important;
}
#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn), #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: #FFFFFF !important;
}
#onetrust-pc-sdk .ot-pc-logo {
    background-image: url(https://www.simplex.com/scorpius/uploads/2022/07/Simplex-Nuvei-Logo.png) !important;
}

/* APM */
#page-apm {
    background: url(../images/blog-promo-bg.png);
    background-size: 100% 100%;
    background-position: 50% 200%;
    background-repeat: no-repeat;
}
.apm-index {
    padding: 60px 0;
}
.apm-item .wrapper {
    margin: 0;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
    padding-bottom: 60px;
}
.apm-item:hover .wrapper {
    box-shadow: 0 10px 10px rgb(0 0 0 / 50%);
}
.apm-item .txt {
    height: 100px;
}
.apm-item .img-wrp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.apm-item .img-wrp img {
    max-width: 100%;
}
.apm-item a {
    text-decoration: unset;
}
.apm-item .title {
    margin-bottom: 10px;
}
.apm-item .title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    padding: 10px 0;
}
.apm-item .desc {
    font-size: 14px;
    color: var(--dark-gray);
}
.apm-item .link {
    margin-top: 10px;
}
.apm-item .apm-url {
    margin: 15px 0;
    display: block;
    font-weight: 600;
    float: right;
    font-size: 14px;
    color: var(--red);
    padding: 0 15px;
    border-radius: 20px;
    line-height: 30px;
    border: 1px solid var(--red);
}
.apm-item .apm-url:hover {
    background: var(--red);
    color: #fff;
}
.apm-item .apm-url i {
    font-size: 10px;
}
.apm-post .post-header {
    height: 130px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.apm-post .page-container .main {
    padding-top: 30px;
    padding-bottom: 30px;
}
.apm-post .side-info {
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
    padding-bottom: 20px;
}
.apm-post .side-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.apm-post .apm-post-image .image-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
}
.apm-post .apm-post-image img {
    max-height: 100%;
    width: auto;
    height: auto;
}
.apm-post .main {
    border-right: 1px solid #ddd;
}
.apm-post .supported-countries-list {
    padding: 0;
}
.apm-post .supported-countries-list li {
    display: flex;
    margin-bottom: 10px;
}
.apm-post .supported-countries-list li .wrapper {
    display: inline-flex;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    background: var(--light-gray);
    border: 1px solid #ebebeb;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 10px;
}
.flag-icon {
    display: inline-block;
    width: 20px;
    margin-right: 5px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.supported-currencies-list {
    padding: 0;
}
.supported-currencies-list li {
    display: flex;
    margin-bottom: 10px;
}
.supported-currencies-list li .wrapper {
    display: inline-flex;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    background: var(--light-gray);
    border: 1px solid #ebebeb;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 10px;
}
.apm-post .is-style-wide.slim {
    border-bottom: 1px solid #ddd;
}
.apm-post .actions-row .desc {
    margin-bottom: 20px;
    min-height: 160px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.apm-post .actions-row .pane {
    padding-top: 30px;
    padding-bottom: 30px;
    border-right: 1px solid #ddd;
}
.apm-post .actions-row .pane:last-child {
    border: 0;
}
.back-button-row {
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
}
.back-button-row a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: unset;
}
.back-button-row a:hover {
    text-decoration: underline;
}
.instructions-sets .inst-pane .img-wrapper {
    margin-bottom: 20px;
}
.instructions-sets .inst-pane .img-wrapper img {
    max-width: 100%;
}
.instructions-sets .instructions-set h3 {
    margin: 30px 0;
}
.instructions-sets .instructions.row .inst-pane {
    text-align: center;
    margin-bottom: 60px;
}
.expander {
    cursor: pointer;
    color: var(--red);
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
}
.expander i {
    font-size: 11px;
}
.expander i.flipped {
    transform: rotate(180deg);
    transition: all 0.3s linear;
}
.expander:hover {
    text-decoration: underline;
}
.expander:hover i {
    transition: all 0.1s linear;
}
.expandable-box {
    max-height: 200px;
    overflow: hidden;
    transition: all 0.1s linear;
}
.expandable-box.expanded {
    max-height: 600px;
    transition: all 0.3s linear;
}

/* Buy Page */
.colorful-bg-2 #simplex-form {
    margin: 60px 0 180px;
}
.simplex-form {
    background-color: #fff;
    border-radius: 30px;
}

/* buy Page - iFrame #2 */
#sni-form {
    width: 100%;
    background: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: var(--black);
}
#simplex-quote-widget #sni-form iframe {
    background: #fff;
    border: unset;
}
#buy-crypto-form.sect-d .container {
    background: unset;
    padding-top: 30px;
}
#buy-crypto-form.sect-d #simplex-quote-widget {
    border: 0;
    background: #fff;
    max-width: 630px;
}
#buy-crypto-form.sect-d #simplex-quote-widget iframe {
    min-height: 480px;
}
@media screen and (max-width: 768px) {
    #page-buy .page-container {
        padding: 0;
    }
    #buy-crypto-form.sect-d #simplex-quote-widget iframe {
        min-height: 460px;
    }
}
#checkout-element {
    min-height: 480px;
    background: #fff;
}
#sni-form .form-footer p {
    margin-top: 20px;
    font-weight: 600;
}


.simplex-form {
    background-color: #fff;
}
.simplex-continue-button {
    background-color: #c800a1 !important;
    border-radius: 30px !important;
    width: 100%;
}
#fiat_amount,
#crypto_amount {
    border: 2px solid #bebebe !important;
    border-right: 0 !important;
    border-radius: 30px 0 0 30px !important;
    line-height: 40px !important;
    height: 40px;
    color: #081F2C !important;
    outline: 0 !important;
    box-shadow: unset !important;
}
input[data-toggle="dropdown"] {
    margin: 0;
    background-color: #505A62 !important;
    color: #fff !important;
    border-radius: 0 30px 30px 0;
    line-height: 40px;
    height: 40px;
    padding: 0;
}
#cryptoAddress {
    border-bottom: 2px solid #bebebe !important;
    box-shadow: unset !important;
    margin: 40px 0;
}