/* fonts */

@import url('https://fonts.googleapis.com/css2?family=Sonsie+One&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,800&amp;display=swap');
.montserrat {
    font-family: 'Montserrat', sans-serif;
    font-size: small;
}

body {
    background-color: #212529 !important;
}

* {
    color: #A1A39E;
}

img {
    pointer-events: none !important;
}

.btn svg * {
    color: #ffffff !important;
}

.icon-color {
    --fa-primary-color: #FE413C;
    --fa-secondary-color: #F5F5F5;
    --fa-primary-opacity: 0.80;
    --fa-secondary-opacity: 0.80;
}

.i-mask {
    box-shadow: rgba(254, 60, 61, 0.05) 0px 0px 0px 8px;
    background: rgba(254, 60, 62, 0.15);
    display: inline-block;
    text-align: center;
    border-radius: 60px;
    padding: 0.5em 0.6em;
}

.i-mask-big {
    box-shadow: rgba(254, 60, 61, 0.05) 0px 0px 0px 8px;
    background: rgba(254, 60, 62, 0.15);
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    padding: 1.2em 1.4em;
}

.i-mask i {
    box-sizing: border-box !important;
}

.icon-accent {
    color: #FE413C !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    color: #FE413C !important;
    text-decoration: none !important;
}

a.btn:hover {
    text-decoration: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:hover {
    text-decoration: underline !important;
    color: #D84315;
}

#custom-loader {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(255, 255, 255, 1); */
    background-color: rgb(33, 37, 41);
    position: fixed;
    /* display: none; */
    /* visibility: hidden; */
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999999;
}

#app-loader-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    position: relative;
    height: 20vh;
    width: 80vw;
}

@media (min-width: 992px) {
    #app-loader-bg {
        height: 50vh;
        width: 50vw;
    }
}

#app-loader-bg::before {
    content: "";
    background-image: url('../img/map.png');
    background-size: cover;
    object-fit: fill;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.55;
}

.app-loader-child {
    display: inline-block;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #FE413C;
    border-right: 10px solid #FFBC2C;
    border-bottom: 10px solid #FFD986;
    border-left: 10px solid transparent;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 0.4s linear infinite;
    animation: spin 0.4s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.full-page-containter {
    min-height: 85vh;
}

.custom-nav-bg {
    background-color: #2A2E32;
    box-shadow: 0 5px 10px rgba(100, 100, 100, 0.03);
}

.nav-img {
    border-radius: 100%;
    width: 35px;
    height: 35px;
}

#app-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

#app-sidebar {
    min-width: 55%;
    max-width: 55%;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background-color: #272B2F;
    display: none;
    position: fixed;
    padding-bottom: 100px;
    overflow-x: scroll !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#app-sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

@media (min-width: 768px) {
    #app-sidebar {
        min-width: 20%;
        max-width: 20%;
        display: block !important;
    }
    #app-content {
        margin-left: 20%;
        min-width: 80%;
        max-width: 80%;
    }
}

@media (min-width: 992px) {
    #app-sidebar {
        min-width: 15%;
        max-width: 15%;
        display: block !important;
    }
    #app-content {
        margin-left: 15%;
        min-width: 85%;
        max-width: 85%;
    }
}

#app-sidebar.active {
    display: block;
    position: fixed;
    min-height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
}

#app-sidebar-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 1.5s ease-in-out;
}

#app-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

#app-content {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 100px;
    background-color: #212529;
}

#app-header-nav {
    /* background-color: #272B2F; */
    background-color: transparent;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.sidebar-header {
    padding: 15px;
    color: #BDBDBD !important;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    font-weight: 500;
}

.app-sidebar-links {
    margin-top: 30px;
}

.app-sidebar-link {
    padding: 15px;
    box-sizing: border-box;
    display: block;
    border-bottom: solid #212529 2px;
    color: #F5F5F5 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 2px;
}

.app-sidebar-link:hover {
    text-decoration: none;
    margin-top: 2px;
    background-color: #212529;
    border-bottom: none !important;
    border-bottom: solid #212529 2px !important;
    text-decoration: none !important;
}

.app-sidebar-link:last-child {
    border-bottom: none !important;
}

.app-sidebar-link.active-link {
    border-left: solid 2px #FE413C;
    background-color: #212529;
    border-bottom: none !important;
    color: #FBE9E7;
}

.sidebar-names {
    color: #f4f4f4;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: small;
}

.sidebar-sub {
    color: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
    font-size: x-small;
}

.sidebar-currency {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: medium;
    color: #00E676;
}

.sidebar-currency-btc * {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: medium;
    color: #FE413C !important;
}

.custom-container {
    /* background-color: #ffffff; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.custom-container-dark {
    background-color: rgba(255, 255, 255, 0.02);
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.05) 95%); */
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.custom-container-bg {
    /* background-color: #ffffff; */
    background-color: #FAFAFE;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: medium;
    /* color: #424242; */
}

.content-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: small;
    color: #616161;
}

.content-desc {
    font-family: 'Montserrat', sans-serif;
    /* font-weight: 800; */
    font-size: small;
    color: #757575;
}

.mapbg {
    position: relative;
    min-height: 450px;
}

.mapbg table {
    z-index: 9999 !important;
}

.mapbg:before {
    content: "";
    display: block;
    background-image: url('../img/mapbg.png');
    background-size: cover;
    background-position: 50% 0;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.15;
    z-index: 1;
    /* background-attachment: fixed; */
}

.btn-deposit {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #616161;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.copy-btn {
    height: calc(3.0rem + 2px);
    padding: 1rem 0.75rem;
}

.payment-container {
    border: solid #FE413C 1px;
}

.btn-deposit:focus {
    outline: none;
    color: #212121;
    border: solid #FE413C 1px;
}

.asterisk::before {
    content: "*";
    margin-right: 5px;
    color: #FE413C;
}

.mgname {
    font-family: 'Sonsie One', cursive;
}

.cta-block {
    background: #272B2F;
}


/* footer starts */

.footer-block {
    min-height: 400px;
    padding: 50px 0;
    background-color: ;
}

.foot-header {
    font-family: "Montserrat", Sans-serif;
    font-weight: 600 !important;
    font-size: 1rem;
    margin-bottom: 25px;
    color: #4A4A4A;
}

.foot {
    display: block;
    font-size: small;
    margin-bottom: 8px;
    font-family: "Montserrat", Sans-serif;
    color: #A1A39E !important;
}

.foot:hover {
    text-decoration: none !important;
    color: #FE413C !important;
}

.foot::before {
    content: "-";
    margin-right: 3px;
    color: #FE413C;
}

.footer-sub {
    color: #A1A39E;
    font-family: "Montserrat", Sans-serif;
    font-size: small;
}

.footer-credit {
    font-family: "Montserrat", Sans-serif;
    color: #FE413C;
    font-size: small;
}

.map-locations {
    position: relative;
}

.locs {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 14px;
    color: rgb(245, 245, 245);
    line-height: 1.6;
    width: 958px;
    height: 540px;
    background-image: url('../img/map.png');
    background-size: 100%;
    background-repeat: no-repeat;
    left: 50%;
    top: 0;
    position: relative;
    overflow-x: hidden !important;
    transform: scale(0.75) translateX(-66.6%) translateY(-17%);
}

@media only screen and (min-width: 0) and (max-width: 550px) {
    .locs {
        overflow: hidden !important;
        width: 100%;
        height: 340px;
    }
    .css-d3j112.mexico {
        top: 224px;
        left: 81px;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }
    .css-d3j112.mexico:after {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }
    .css-d3j112.brazil {
        top: 132px !important;
        left: 238px !important;
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }
    .css-d3j112.brazil:after {
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }
    .css-d3j112.south-africa {
        top: 40px !important;
        left: 10px !important;
        border-radius: 100%;
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }
    .css-d3j112.south-africa:after {
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }
    .css-d3j112.russia {
        top: 87px !important;
        left: 500px !important;
        border-radius: 100%;
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
    }
    .css-d3j112.russia:after {
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
    }
    .css-d3j112.united-arab-emirates {
        top: 129px !important;
        left: 452px !important;
        -webkit-animation-delay: 2.5s;
        animation-delay: 2.5s;
    }
    .css-d3j112.united-arab-emirates:after {
        -webkit-animation-delay: 1.5s;
        animation-delay: 1.5s;
    }
    .css-d3j112.india {
        top: 19px !important;
        left: 63px !important;
        -webkit-animation-delay: 4.5s;
        animation-delay: 4.5s;
    }
    .css-d3j112.india:after {
        -webkit-animation-delay: 3.5s;
        animation-delay: 3.5s;
    }
    .css-d3j112.thailand {
        top: 76px !important;
        left: 90px !important;
        -webkit-animation-delay: 2.8s;
        animation-delay: 2.8s;
    }
    .css-d3j112.thailand:after {
        -webkit-animation-delay: 1.8s;
        animation-delay: 1.8s;
    }
    .css-d3j112.china {
        top: 15px !important;
        left: 274px !important;
        -webkit-animation-delay: 3.6s;
        animation-delay: 3.6s;
    }
}

@media only screen and (min-width: 0) and (max-width: 1024px) {
    .locs {
        -webkit-transform: scale(0.75) translateX(-66.6%) translateY(-17%);
        -ms-transform: scale(0.75) translateX(-66.6%) translateY(-17%);
        transform: scale(0.75) translateX(-66.6%) translateY(-17%);
    }
}

.css-d3j112 {
    position: absolute;
    width: 24px;
    height: 24px;
    display: block;
    z-index: 2;
    border-radius: 100%;
    -webkit-animation-name: marker-animation;
    animation-name: marker-animation;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes marker-animation {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    2% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    6% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes marker-animation-waves {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        -webkit-transform: scale(2.5);
        -ms-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes marker-animation-waves {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        -webkit-transform: scale(2.5);
        -ms-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.css-d3j112:after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    position: absolute;
    top: -6px;
    left: -6px;
    -webkit-animation-name: marker-animation-waves;
    animation-name: marker-animation-waves;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}

.css-d3j112:before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    position: absolute;
    top: -6px;
    left: -6px;
}

.css-d3j112.red {
    background-color: rgba(254, 65, 60, 0.9);
}

.css-d3j112.red:after,
.css-d3j112.red:before {
    background-color: rgba(254, 65, 61, 0.4);
}

.css-d3j112.green {
    background-color: rgba(126, 211, 33, 0.9);
}

.css-d3j112.green:after,
.css-d3j112.green:before {
    background-color: rgba(126, 211, 33, 0.4);
}

.css-d3j112.blue {
    background-color: rgba(37, 158, 250, 0.9);
}

.css-d3j112.blue:after,
.css-d3j112.blue:before {
    background-color: rgba(37, 158, 250, 0.4);
}

.css-d3j112.mexico {
    top: 224px;
    left: 81px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.css-d3j112.mexico:after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.css-d3j112.brazil {
    top: 372px;
    left: 238px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.css-d3j112.brazil:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.css-d3j112.south-africa {
    top: 440px;
    left: 450px;
    border-radius: 100%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.css-d3j112.south-africa:after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.css-d3j112.russia {
    top: 87px;
    left: 500px;
    border-radius: 100%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.css-d3j112.russia:after {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.css-d3j112.united-arab-emirates {
    top: 209px;
    left: 552px;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.css-d3j112.united-arab-emirates:after {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.css-d3j112.india {
    top: 198px;
    left: 630px;
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
}

.css-d3j112.india:after {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.css-d3j112.thailand {
    top: 260px;
    left: 707px;
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s;
}

.css-d3j112.thailand:after {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.css-d3j112.china {
    top: 175px;
    left: 749px;
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s;
}

.css-d3j112.china:after {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}


/* .map-ex::before {
    content: "";
    background-image: url('../img/mapbg.png');
    background-size: cover;
    object-fit: fill;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
} */

.app-header {
    position: relative;
    padding-top: 150px;
    width: 100%;
    min-height: 50vh;
    /* background: linear-gradient(87deg, rgba(255, 87, 34, 0.3) 66%, rgba(233, 30, 99, 0.3) 100%), url('../img/rrrr.jpg'); */
    /* background-size: cover;
    background-repeat: no-repeat; */
}

.app-dash-wrapper {
    position: relative;
}

#app-dash-2 {
    position: absolute;
    right: 15px;
    bottom: -30%;
    width: 50%;
}

.app-dash-img {
    border-radius: 25px;
    border-right: solid 5px #FE413C;
    border-bottom: solid 5px #FE413C;
}

.page-container {
    margin-top: 100px;
}

#app-base-header {
    margin-bottom: 180px;
    position: relative;
}

#app-header-skew {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -999;
    width: 100%;
    height: 100%;
    /* background: #F33E39; */
    background: linear-gradient(87deg, rgb(254, 65, 60) 66%, rgb(255, 188, 44));
    /* background: linear-gradient(87deg, rgba(255, 87, 34, 0.3) 66%, rgba(233, 30, 99, 0.3) 100%), url('../img/rrrr.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    transform: skewY(-20deg);
    transform-origin: top left;
}

#app-header-skew-glass {
    position: absolute;
    /* top: 0; */
    bottom: -30%;
    right: 15px;
    left: 0;
    z-index: 1;
    /* width: 100%; */
    height: 65%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.05) 95%);
    backdrop-filter: blur(3px);
    /* background: linear-gradient(87deg, rgb(254, 65, 60) 66%, rgb(255, 188, 44)); */
    /* background: linear-gradient(87deg, rgba(255, 87, 34, 0.3) 66%, rgba(233, 30, 99, 0.3) 100%), url('../img/rrrr.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    transform: skewY(-20deg);
    transform-origin: top left;
    overflow: hidden;
}

@media (min-width: 992px) {
    .app-header {
        /* background: #F33E39; */
        /* top, transparent red, faked with gradient */
        /* linear-gradient(87deg, rgba(255, 87, 34, 0.7) 66%, rgba(233, 30, 99, 0.8) 100%), url('../img/rrr.jpg'); */
        min-height: 80vh;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.fixed-header {
    position: fixed !important;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-family: "Montserrat", Sans-serif;
    font-weight: 700 !important;
    color: #ffffff;
}

.hero-desc {
    font-size: x-large;
    color: #ffffff;
}

.nav-translucent {
    background: rgba(33, 37, 41, 0.9)
}

#app-content-float {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: -100px;
}

@media (min-width: 992px) {
    #app-content-float {
        bottom: -300px;
    }
    #app-base-header {
        margin-bottom: 350px;
    }
}

.custom-container-h {
    font-family: "Montserrat", Sans-serif;
    font-weight: 600;
}

.service-block {
    min-height: 400px;
}

.support-block {
    min-height: 400px;
    /* background-color: #FAFAFE; */
    /* background: linear-gradient(87deg, rgba(37, 37, 142, 0.7) 6%, rgba(102, 11, 195, 0.8) 100%), url('../img/test.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
}

.block-icon-container {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    /* line-height: -30px; */
    padding: 40px;
    text-align: center;
    /* background-color: #F0F8FF; */
    background-color: rgba(240, 248, 255, 0.26);
    border-right: #FE413C solid 2px;
}

.block-icon-container-big {
    width: 300px;
    height: 300px;
    border-radius: 100%;
    padding: 40px;
    text-align: center;
    /* background-color: rgba(240, 248, 255, 0.3); */
    position: relative;
    border-right: #FE413C solid 2px;
}

.bic-green::after {
    content: "";
    display: block;
    position: absolute;
    /* background: linear-gradient(200deg, rgba(255, 87, 34, 0.2) 66%, rgba(233, 30, 99, 0.5) 100%); */
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
    opacity: 0.2;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.bic-red::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(200deg, rgba(255, 87, 34, 0.2) 66%, rgba(233, 30, 99, 0.5) 100%);
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.bic-pink::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(90deg, #FC466B 0%, #3F5EFB 100%);
    opacity: 0.2;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}


/* 
.my-gradient {
    background: -webkit-linear-gradient(45deg, #25258E 36%, #660BC3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.my-gradient::before {
    content: "-";
    margin-right: 3px;
    background: #FFD986;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.my-dark {
    color: #A1A39E;
}

.my-300 {
    font-weight: 300 !important;
}

.my-600 {
    font-weight: 600 !important;
}

.my-montserrat {
    font-family: "Montserrat", Sans-serif;
}

.block-icon {
    color: #FE413C;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
    margin-left: 0;
    margin-right: 0;
}

.no-gutter>[class^="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.test-left {
    background: linear-gradient(87deg, rgba(37, 37, 142, 0.7) 66%, rgba(102, 11, 195, 0.8) 100%), url('http://bing.com/');
    background-size: cover;
    background-repeat: no-repeat;
    /* min-height: 20vh; */
}

.carousel-item img {
    min-height: 20rem !important;
    max-height: 20rem !important;
}

.carousel-item img::after {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(87deg, rgba(37, 37, 142, 0.7) 66%, rgba(102, 11, 195, 0.8) 100%);
}

.carousel-caption {
    padding: 15px;
}

@media (min-width: 992px) {
    .carousel-item img {
        min-height: 30rem !important;
        max-height: 30rem !important;
    }
}

.my-translucent-dark {
    background-color: rgba(0, 0, 0, 0.8);
}

.bl-yellow {
    border-left: solid #FFC107 4px !important;
}