@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@300;400;500;600;700&display=swap');

* {
    transition: all 0.5s linear;
    font-family: 'Bai Jamjuree',
    sans-serif;
    font-weight: 400;
}

html, body {
    scroll-behavior: smooth;
    font-size: 100%;
}

@media (max-width: 1199.98px) {
    .container {
        max-width: 100% !important;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    background: #D0A44A linear-gradient(90deg, #D0A44A 29%, #DEBC6A 35%,  #C09A4B 83%, #9E6B2B 100%);
}

.loader img {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}

@keyframes anim-360 {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 2rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    font-size: 16px;
}

.navbar-toggler {
    outline: 0 !important;
    color: rgba(172, 123, 52, 1);
    font-size: 25px;
    font-weight: 700;
}

@media (min-width: 1200px) { 
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 3.75rem;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 3.5rem;
    }

    .navbar-nav .nav-item:nth-of-type(1) .nav-link,
    .navbar-nav .nav-item:nth-of-type(2) .nav-link {
        color: rgba(10, 10, 10, 1);
    }
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(204, 160, 72, 0.75);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        color: #000000;
    }
}

.navbar.scrolled {
    background: rgba(204, 160, 72, 0.75);
    padding-top: 0.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    position: relative;
}

header .right {
    background: url(../images/header-right-bg.png) no-repeat center;
    background-size: 100% 100%;
    border-bottom-left-radius: 30px;
    overflow: hidden;
}

.roy-text-img {
    position: absolute;
    top: 12.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    mix-blend-mode: luminosity;
}

.globe-wrapper {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.globe-wrapper > div {
    position: relative;
}

.roy-globe-img {
    animation: anim-360 10s cubic-bezier(0.6, -0.28, 0.735, 0.045) infinite;
}

.globe-wrapper>div::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/ring_o-of-roy.png) no-repeat center;
    background-size: 60% 60%;
    position: absolute;
    top: 0;
    left: 0;
    animation: anim-360 6s linear infinite;
}

@media (min-width: 992px) {

    header .left,
    header .right {
        height: 55rem;
    }

    header .content-wrapper {
        position: absolute;
        top: 19rem;
        left: 0;
        width: 100%;
    }

    header .content-wrapper p {
        width: 370px;
    }

    .content-button {
        position: absolute;
        top: 42rem;
        left: 0;
        width: 100%;
        z-index: 5;
    }
}

header .content-wrapper h1 {
    color: #966422;
    font-weight: 700;
    font-size: 37px;
    line-height: 46px;
}

@media (max-width: 576px) {
    header .content-wrapper h1 {
        font-size: 32px;
        line-height: 43px;
    }
}

header .content-wrapper h1 span {
    color: #000000;
    font-weight: 700;
}

header .content-wrapper p {
    font-size: 16px;
    line-height: 20px;
    color: #0F0F0F;
    margin-top: 2rem;
}

.content-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content-button a {
    width: 320px;
    height: 57px;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 57px; 
    margin-top: 0.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.content-button a span {
    font-weight: 600;
    position: relative;
    z-index: 3;
}

.content-button a:hover {
    text-decoration: none;
}

.content-button .login-btn {
    background: url(../images/login-btn.svg) no-repeat;
    color: #FFFFFF;
    position: relative;
}

.content-button .login-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/login-btn.svg) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.content-button .login-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/login-btn-edge.svg) no-repeat 100% center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition-duration: 0.7s;
}

.content-button .login-btn:hover::before {
    background: url(../images/login-btn-edge.svg) no-repeat 92% center;
}

.content-button .login-btn:hover {
    color: #DCA92C;
}

.content-button .signup-btn {
    background: url(../images/sign-up-btn.svg) no-repeat 100% center;
    color: #161616;
    position: relative;
}

.content-button .signup-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/sign-up-btn.svg) no-repeat 100% center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.content-button .signup-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/sign-up-btn-edge.svg) no-repeat 0% center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition-duration: 0.7s;
}

.content-button .signup-btn:hover::before {
    background: url(../images/sign-up-btn-edge.svg) no-repeat 8% center;
}

.content-button .signup-btn:hover {
    color: #DCA92C;
}

@media (max-width: 991.98px) {
    header {
        padding: 10rem 0 5rem;
    }
}

/* Other */
.one-bg {
    background: url(../images/one-bg.png) no-repeat;
    background-size: 100% 100%;
    padding-bottom: 10rem;
    position: relative;
}

@media (max-width: 991.98px) {
    .one-bg {
        background-size: cover;
    }
}

.slider-arrows {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    padding: 2rem 1rem 0 15rem;
}

#plan-carousel {
    background: url(../images/platinum-plan-bg.png) no-repeat;
    background-size: cover;
}

.plan-wrapper {
    padding: 4rem 0rem 8rem 15rem;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5); */
    /* border-top-left-radius: 20px; */
    position: relative;
    z-index: 200;
}

.slider-arrows img {
    width: 45px;
    cursor: pointer;
    outline: 0 !important;
}

.slider-arrows img.next {
    margin-left: -0.3rem;
}

.plan-wrapper .title {
    color: #666666;
    font-size: 25px;
    line-height: 44px;
    font-weight: 300;
}

.plan-wrapper .profit-percentage {
    color: #966422;
    font-weight: 700;
    font-size: 80px;
}

.plan-wrapper .profit-percentage span {
    font-weight: 700;
    font-size: 53px;
}

.plan-wrapper .profit-duration {
    width: 358px;
    height: 57px;
    background: transparent linear-gradient(90deg, rgba(225, 192, 64, 0.5) 0%, rgba(234, 204, 87, 0.5) 17%, rgba(241, 214, 104, 0.5) 35%, rgba(244, 218, 111, 0.5) 48%, rgba(241, 215, 105, 0.5) 60%, rgba(234, 206, 89, 0.5) 76%, rgba(223, 192, 63, 0.5) 94%, rgba(219, 187, 52, 0.5) 100%) 0% 0% no-repeat padding-box;
    color: #333333;
    letter-spacing: -0.6px;
    font-size: 24px;
    font-weight: 600;
    line-height: 52px;
}

.plan-wrapper .profit-duration span {
    font-weight: 700;
    font-size: 31px;
}

.investment-amount,
.referral-commission,
.principal-included {
    background: rgba(128, 128, 128, 0.15);
    color: #BA8B3E;
    font-weight: 600;
    height: 55px;
    margin-right: 10px;
    padding-top: 5px;
    margin-top: 10px;
}

.investment-amount>div,
.referral-commission>div,
.principal-included>div {
    color: #333333;
    font-size: 12px;
    font-weight: 600;
}

.investment-amount {
    width: 178px;
    font-size: 18px;
}

.referral-commission {
    width: 150px;
    font-size: 22px;
}

.principal-included {
    width: 100px;
}

.make-deposit-btn {
    width: 13.25em;
    height: 2.625em;
    border-radius: 0.313em;
    background: url(../images/make-deposit-btn.svg) no-repeat center;
    background-size: 100% 100%;
    text-align: center;
    letter-spacing: 0.022em;
    color: #333333;
    font-weight: 600;
    font-size: 0.875em;
    line-height: 2.625em;
}

.make-deposit-btn:hover {
    color: #333;
    text-decoration: none;
    box-shadow: 1px 3px 5px #ffc952;
}

.plan-img-wrapper {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.plan-img-wrapper>div {
    position: relative;
    text-align: center;
}

.plan-img-wrapper>div::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/slider-img-bg-ring.png) no-repeat center;
    background-size: 180px;
    position: absolute;
    top: 0;
    left: 0;
    animation: anim-360 7s linear infinite;
    z-index: -1;
}

.plan-img {
    max-width: 100%;
}

@media (max-width: 1199.98px) {
    .plan-img-wrapper {
        top: 1rem;
        left: unset;
        right: 5rem;
        transform: unset;
    }
}

@media (max-width: 991.98px) {
    .plan-img-wrapper {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .plan-img-wrapper>div::before {
        background-size: 140px;
    }
}

.slider {
    transform: scale(-1, 1);
    width: 100%;
    z-index: 5;
}

.slider .swiper-slide {
    width: 375px;
    position: relative;
    text-align: center;
    position: relative;
    opacity: 0.5;
}

.slider .swiper-slide::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/slider-plans-bg.png) no-repeat center;
    background-size: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: anim-360 7s linear infinite;
}

.slider .swiper-slide img {
    width: 160px;
}

.slider .swiper-slide span {
    position: absolute;
    top: 35%;
    left: 20px;
    transform: scale(-1, 1) rotate(90deg);
    color: rgba(0, 0, 0, 0.2);
    font-weight: 700;
    font-size: 40px;
}

.swiper-container {
    padding: 4rem 0;
}

.slider .swiper-slide-active {
    margin-top: -3rem;
    opacity: 1;
}

.slider .swiper-slide-active img {
    width: 220px;
    opacity: 1;
}

.slider .swiper-slide-active::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/slider-img-bg-ring.png) no-repeat center;
    background-size: 180px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: anim-360 4s linear infinite;
}

.slider .swiper-slide-active span {
    color: rgba(0, 0, 0, 1);
}

@media (max-width: 1199.98px) {
    .plan-wrapper {
        padding: 3rem 0 3rem 10rem;
    }

    .slider-arrows {
        padding: 1.5rem 0 3rem 10rem;
    }
}

@media (max-width: 991.98px) {
    .plan-wrapper {
        padding: 3rem 3rem;
    }

    .slider-arrows {
        padding: 1.5rem 3rem;
    }
}

@media (max-width: 767.98px) {
    .plan-wrapper .profit-percentage {
        font-size: 50px;
    }

    .plan-wrapper .profit-percentage span {
        font-size: 33px;
    }

    .plan-wrapper .profit-duration {
        width: 250px;
        height: 48px;
        font-size: 18px;
        line-height: 46px;
    }

    .plan-wrapper .profit-duration span {
        font-size: 24px;
    }

    .plan-img {
        width: 150px;
        background-size: 150px;
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 576.98px) {
    .plan-wrapper {
        padding: 3rem 1rem;
    }

    .slider-arrows {
        padding: 1.5rem 1rem;
    }
}


@media (max-width: 480px) {
    .plan-img {
        top: 0rem;
        right: 0.5rem;
    }
}

.section-2 {
    width: 900px;
    margin: -5rem auto 0;
    background: url(../images/revenue-calculation-section-bg.png) no-repeat center;
    background-size: 100% 100%;
    padding: 8rem 2rem 6rem;
    position: relative;
    z-index: 10;
}

.label-1,
.label-2 {
    letter-spacing: -0.38px;
    color: #E6E6E6;
    font-weight: 600;
}

.input-value-1,
.input-value-2 {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #707070;
    border-radius: 5px;
    background: transparent;
    color: #707070;
    text-align: center;
    font-weight: 700;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.label-2,
.input-value-2 {
    color: #DCA92C;
}

.section-2 .title {
    text-align: center;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 0.25;
    font-weight: 700;
}

.range-values {
    letter-spacing: -0.33px;
    color: #DCA92C;
    font-weight: 600;
    font-size: 13px;
}

.slidecontainer {
    width: 100%;
}

.range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: transparent linear-gradient(90deg, #B17A1B 0%, #DEAC31 45%, #FFDE7B 70%, #F2CD6D 100%) 0% 0% no-repeat padding-box;
    outline: none;
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 31px;
    height: 31px;
    background: url(../images/slider-move-btn.png) no-repeat center;
    background-size: 100% 100%;
    cursor: pointer;
}

.range::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 31px;
    height: 31px;
    background: url(../images/slider-move-btn.png) no-repeat center;
    background-size: 100% 100%;
    cursor: pointer;
}

@media (max-width: 910px) {
    .section-2 {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .section-2 {
        margin: 0rem auto 0;
        background-size: 200% 200%;
        padding: 3rem 2rem 3rem;
    }
}

.about-us {
    margin-top: 6rem;
}

.about-us .title {
    letter-spacing: -0.75px;
    color: #000000;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
}

.about-us .heading {
    letter-spacing: -0.88px;
    color: #966422;
    font-size: 35px;
    font-weight: 700;
}

.about-us .text {
    color: #0F0F0F;
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
}

.video-label {
    position: relative;
    cursor: pointer;
}

.video-label .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.border-one {
    position: relative;
}

.border-one::before {
    content: "";
    width: 2px;
    height: 100%;
    background: radial-gradient(closest-side at 50% 50%, #6666664D 0%, #5B5B5C31 52%, #5253541A 84%, #52535400 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.counter-content {
    text-align: center;
    position: relative;
    padding: 3rem 0;
}

.counter-content::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/counter-cicles.png) no-repeat center;
    background-size: 150px;
    position: absolute;
    top: 0;
    left: 0;
    animation: anim-360 7s linear infinite;
}

.counter-content.one::before {
    animation-duration: 5s;
}

.counter-content.three::before {
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.counter-content.five::before {
    animation-duration: 9s;
}

.counter-content > span {
    letter-spacing: -0.3px;
    color: #333333;
    font-size: 12px;
    line-height: 17px;
    font-weight: 600;
}

.counter-content > div {
    letter-spacing: -0.51px;
    color: #BA8B3E;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.company-registeration {
    background: url(../images/company-regisration-bg.png) no-repeat center;
    background-size: cover;
    padding: 0rem 0;
    margin-top: -2.5rem;
    height: 190px;
}

@media (max-width: 991.98px) {
    .company-registeration {
        padding: 3rem 0 1rem;
        margin-top: 0;
        height: auto;
    }
}

.company-registeration .title {
    color: #333333;
    font-size: 20px;
    font-weight: 500;
}

.company-registeration .span {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 40px;
}

.company-registeration .buttons {
    display: block;
    width: 250px;
    height: 34px;
    margin-top: 1rem;
    font-size: 10px;
    line-height: 34px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.company-registeration .buttons:hover {
    color: #DEAC31;
    text-decoration: none;
} 

.company-registeration .buttons span {
    position: relative;
    z-index: 3;
}

.company-registeration .buttons:nth-of-type(1) {
    background: url(../images/check-location-map-btn.svg) no-repeat center;
    margin-right: 1rem;
}

.company-registeration .buttons:nth-of-type(1)::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/check-location-map-btn.svg) no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.company-registeration .buttons:nth-of-type(1)::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/check-location-map-btn-edge.svg) no-repeat 100% center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition-duration: 0.7s;
}

.company-registeration .buttons:nth-of-type(1):hover::after {
    background: url(../images/check-location-map-btn-edge.svg) no-repeat 96% center;
}

.company-registeration .buttons:nth-of-type(2) {
    background: url(../images/check-certificate-btn.svg) no-repeat 100% center;
}

.company-registeration .buttons:nth-of-type(2)::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/check-certificate-btn.svg) no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.company-registeration .buttons:nth-of-type(2)::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/check-certificate-btn-edge.svg) no-repeat 0% center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transition-duration: 0.7s;
}

.company-registeration .buttons:nth-of-type(2):hover::after {
    background: url(../images/check-certificate-btn-edge.svg) no-repeat 4% center;
}

@media (max-width: 530px) {
    .company-registeration .buttons:nth-of-type(1) {
        margin-right: 0rem;
    }
}

.img-badge {
    position: relative;
    z-index: 10;
}

.features {
    font-size: 100%;
    position: relative;
}

.features::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/features-bg.png) no-repeat center;
    background-size: 48em;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.features::after {
    content: "";
    width: 0.1875em;
    height: 100%;
    background: transparent radial-gradient(closest-side at 50% 50%, #FFF287 1%, #FFF3B3 23%, #D0A44A 58%, #CCA048 72%, #C29541 84%, #B28237 96%, #AC7B34 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.features .left {
    background: transparent linear-gradient(90deg, #19150E 0%, #211E17 100%) 0% 0% no-repeat padding-box;
    height: 62.5em;
}

.features .right {
    background: #EEEEEE 0% 0% no-repeat padding-box;
    height: 62.5em;
}

.icon-1,
.icon-2,
.icon-3,
.icon-4 {
    width: 8em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.icon-1 {
    top: 10em;
}

.icon-2 {
    top: 20em;
}

.icon-3 {
    top: 30em;
}

.icon-4 {
    top: 40em;
}

.icon-1>div,
.icon-2>div,
.icon-3>div,
.icon-4>div {
    position: relative;
    text-align: center;
}

.icon-1>div::before,
.icon-2>div::before,
.icon-3>div::before,
.icon-4>div::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/features-icons-ring.png) no-repeat center;
    background-size: 7.20em;
    position: absolute;
    top: 0;
    left: 0;
    animation: anim-360 7s linear infinite;
}

.icon-2>div::before {
    animation-duration: 5s;
}

.icon-3>div::before {
    animation-duration: 9s;
}

.icon-1 img,
.icon-2 img,
.icon-3 img,
.icon-4 img {
    width: 5.5em;
}

.feature-content-right {
    width: 24em;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 12em;
    right: 6em;
    z-index: 4;
    padding: 1em;
}

.feature-content-right-1 {
    top: 32em;
}

.feature-content-right h4 {
    letter-spacing: -0.0375em;
    color: #BA8B3E;
    font-size: 1.375em;
    line-height: 1.125em;
    font-weight: 700;
}

.feature-content-right p {
    color: #FFFFFF;
    font-size: 0.875em;
    line-height: 1.125em;
    font-weight: 300;
}

.feature-content-left {
    width: 26em;
    background: rgba(255, 255, 255, 0.55);
    position: absolute;
    top: 22em;
    left: 6em;
    z-index: 4;
    padding: 1em;
}

@media (max-width: 1070px) {
    .feature-content-right {
        right: 4em;
    }

    .feature-content-left {
        left: 4em;
    }
}

.feature-content-left h4 {
    letter-spacing: -0.0375em;
    color: #966422;
    font-size: 1.375em;
    line-height: 1.125em;
    font-weight: 700;
}

.feature-content-left p {
    color: #FFFFFF;
    font-size: 0.875em;
    line-height: 1.125em;
    font-weight: 300;
    color: #000000;
}

.feature-content-left-1 {
    top: 42em;
}

@media (max-width: 991.98px) {
    .icon-1 img,
    .icon-2 img,
    .icon-3 img,
    .icon-4 img {
        width: 4em;
    }

    .icon-1>div::before,
    .icon-2>div::before,
    .icon-3>div::before,
    .icon-4>div::before {
        background-size: 5em;
    }

    .feature-content-right,
    .feature-content-left {
        width: auto;
    }

    .feature-content-right h4,
    .feature-content-left h4 {
        font-size: 1em;
    }

    .feature-content-right p,
    .feature-content-left p {
        font-size: 0.7em;
        line-height: 1.3em;
    }
}

@media (max-width: 767.98px) {
    .features::after {
        width: 0;
        display: none;
    }

    .features .left {
        height: 60em;
    }

    .features .right {
        height: 0em;
    }

    .icon-1,
    .icon-2,
    .icon-3,
    .icon-4 {
        width: 5em;
    }

    .icon-1>div::before,
    .icon-2>div::before,
    .icon-3>div::before,
    .icon-4>div::before {
        background-size: 5em;
    }

    .icon-1 img,
    .icon-2 img,
    .icon-3 img,
    .icon-4 img {
        width: 4em;
    }

    .icon-1 {
        left: unset;
        transform: unset;
        right: 0;
    }

    .feature-content-right,
    .feature-content-left {
        width: 280px;
    }

    .feature-content-right {
        right: unset;
        left: 50%;
        top: 7em;
        transform: translateX(-50%);
    }

    .feature-content-right-1 {
        right: unset;
        left: 50%;
        top: 31em;
        transform: translateX(-50%);
    }

    .feature-content-left {
        top: -42em;
        left: 50%;
        transform: translateX(-50%);
        z-index: 500000000;
        background: rgba(255, 255, 255, 0.8);
    }

    .feature-content-left-1 {
        top: -18em;
        left: 50%;
        transform: translateX(-50%);
        z-index: 500000000;
    }

    .icon-1 {
        left: calc(50% + 190px);
        transform: translateX(-50%);
        right: unset;
        top: 8.5em;
    }

    .icon-2 {
        left: calc(50% - 190px);
        transform: translateX(-50%);
        right: unset;
    }

    .icon-3 {
        left: calc(50% + 190px);
        transform: translateX(-50%);
        right: unset;
        top: 32.5em;
    }

    .icon-4 {
        left: calc(50% - 190px);
        transform: translateX(-50%);
        right: unset;
        top: 43.5em;
    }
}

@media (max-width: 480px) {
    .features .left {
        height: 70em;
    }

    .icon-1 {
        left: calc(50%);
        top: 5em;
    }

    .icon-2 {
        left: calc(50%);
        top: 20em;
    }

    .icon-3 {
        left: calc(50%);
        top: 36em;
    }

    .icon-4 {
        left: calc(50%);
        top: 51em;
    }

    .feature-content-right {
        top: 10em;
    }

    .feature-content-right-1 {
        top: 41em;
    }

    .feature-content-left {
        top: -45em;
    }

    .feature-content-left-1 {
        top: -14em;
    }
}

.table-area {
    background: url(../images/table-area-bg.png) no-repeat center;
    background-size: cover;
    padding-bottom: 8rem;
}

.affiliate-opportunity {
    width: 900px;
    height: 284px;
    margin: -8rem auto 0;
    background: transparent linear-gradient(0deg, #1A1711 0%, #1C1811 12%, #17130D 21%, #14110C 71%, #19150E 81%, #201D16 88%, #211E17 89%, #19150E 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 15px #000000BF;
    border-radius: 15px;
    position: relative;
    z-index: 10;
    padding-left: 12rem;
    padding-top: 3rem;
}

.affiliate-img {
    position: absolute;
    top: -3rem;
    left: -6rem;
}

.affiliate-opportunity .right-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 100%;
    background: transparent linear-gradient(90deg, #D0A44A 29%, #DEBC6A 35%, #FFF3B3 48%, #FFF287 56%, #C09A4B 83%, #9E6B2B 100%) 0% 0% no-repeat padding-box;
    border-radius: 0 15px 15px 0;
}

.affiliate-opportunity .title {
    letter-spacing: -0.88px;
    color: #BA8B3E;
    font-size: 35px;
    line-height: 18px;
    font-weight: 700;
}

.affiliate-opportunity .text {
    color: #F2F2F2;
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    width: 90%;
}

.more-details-btn {
    width: 240px;
    height: 34px;
    background: url(../images/click-for-more-details-btn.svg) no-repeat center;
    text-align: center;
    letter-spacing: 0px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 10px;
    line-height: 34px;
    position: relative;
}

.more-details-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/click-for-more-details-btn-edge-left.svg) no-repeat 2% center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition-duration: 0.7s;
}

.more-details-btn:hover::before {
    background: url(../images/click-for-more-details-btn-edge-left.svg) no-repeat 6% center;
}

.more-details-btn::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/click-for-more-details-btn-edge-right.svg) no-repeat 98% center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transition-duration: 0.7s;
}

.more-details-btn:hover::after {
    background: url(../images/click-for-more-details-btn-edge-right.svg) no-repeat 94% center;
}

.more-details-btn:hover {
    color: #DEAC31;
    text-decoration: none;
}

.affiliate-percentages-img {
    position: absolute;
    bottom: -2rem;
    right: 2.5rem;
}

@media (max-width: 991.98px) {
    .affiliate-opportunity {
        width: 100%;
        height: 284px;
        margin: -2rem auto 0;
        padding-left: 3rem;
        padding-top: 3rem;
    }

    .affiliate-img {
        display: none;
    }

    .affiliate-percentages-img {
        max-width: 80%;
    }
}

@media (max-width: 767.98px) {
    .affiliate-opportunity .title {
        font-size: 30px;
        line-height: 30px;
    }

    .affiliate-opportunity .right-border {
        width: 15px;
    }

    .affiliate-opportunity {
        width: 100%;
        height: 400px;
        margin: -2rem auto 0;
        padding-left: 1.5rem;
        padding-top: 3rem;
    }

    .affiliate-img {
        display: none;
    }

    .affiliate-percentages-img {
        max-width: 80%;
    }

    .affiliate-percentages-img {
        position: absolute;
        bottom: -2rem;
        right: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}

.tables-wrapper {
    margin-top: 8rem;
}

.tables-wrapper .left {
    padding: 1rem 0;
    box-shadow: 0px 11px 9px rgba(0, 0, 0, 0.5);
    border-radius: 15px 0 0 15px;
    position: relative;
    overflow: hidden;
}

.tables-wrapper .left::before {
    content: "";
    width: 100%;
    height: 100%;
    mix-blend-mode: color-burn;
    background: transparent linear-gradient(180deg, rgba(225, 192, 112, 0.5) 0%, rgba(245, 226, 156, 0.5) 9%, rgba(225, 192, 112, 0.5) 15%, rgba(223, 189, 109, 0.5) 17%, rgba(207, 168, 87, 0.5) 29%, rgba(196, 153, 72, 0.5) 43%, rgba(190, 144, 62, 0.5) 58%, rgba(188, 142, 60, 0.5) 80%, rgba(208, 164, 74, 0.5) 91%, rgba(177, 130, 53, 0.5) 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.tables-wrapper .left * {
    position: relative;
    z-index: 2;
}

.tables-wrapper .left .title {
    letter-spacing: -0.65px;
    color: rgba(186, 139, 62, 1);
    font-size: 26px;
    line-height: 43px;
    font-weight: 700; 
}

.tables-wrapper .left .table-striped tbody tr:nth-of-type(odd) {
    background: transparent linear-gradient(90deg, rgba(223, 165, 77, 0.3) 0%, rgba(141, 89, 36, 0.3) 16%, rgba(234, 190, 105, 0.3) 36%, rgba(249, 242, 144, 0.3) 46%, rgba(174, 121, 54, 0.3) 65%, rgba(218, 192, 107, 0.3) 70%, rgba(167, 124, 47, 0.3) 92%, rgba(103, 66, 32, 0.3) 100%) 0% 0% no-repeat padding-box;
}

.tables-wrapper .left .table td {
    vertical-align: middle;
    border: none;
}

.tables-wrapper .left .table tr td:nth-of-type(2) {
    letter-spacing: -0.36px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.tables-wrapper .left .table tr td:nth-of-type(3) span {
    width: 122px;
    height: 27px;
    background: #19150E 0% 0% no-repeat padding-box;
    border-radius: 12px;
    text-align: center;
    letter-spacing: 0px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 13px;
    line-height: 27px;
    display: block;
}

.tables-wrapper .left .table tr td:nth-of-type(4) {
    letter-spacing: -0.4px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

.tables-wrapper .left .table tr td:nth-of-type(5) img {
    width: 35px;
}

/*  */
.tables-wrapper .right {
    padding: 1rem 0;
    box-shadow: 0px 11px 9px rgba(0, 0, 0, 0.5);
    border-radius: 0 15px 15px 0;
    position: relative;
    overflow: hidden;
}

.tables-wrapper .right::before {
    content: "";
    width: 100%;
    height: 100%;
    mix-blend-mode: color-burn;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.tables-wrapper .right * {
    position: relative;
    z-index: 2;
}

.tables-wrapper .right .title {
    letter-spacing: -0.65px;
    color: #966422;
    font-size: 26px;
    line-height: 43px;
    font-weight: 700;
}

.tables-wrapper .right .table-striped tbody tr:nth-of-type(odd) {
    background: transparent linear-gradient(90deg, rgba(223, 165, 77, 0.3) 0%, rgba(141, 89, 36, 0.3) 16%, rgba(234, 190, 105, 0.3) 36%, rgba(249, 242, 144, 0.3) 46%, rgba(174, 121, 54, 0.3) 65%, rgba(218, 192, 107, 0.3) 70%, rgba(167, 124, 47, 0.3) 92%, rgba(103, 66, 32, 0.3) 100%) 0% 0% no-repeat padding-box;
}

.tables-wrapper .right .table td {
    vertical-align: middle;
    border: none;
}

.tables-wrapper .right .table tr td:nth-of-type(2) {
    letter-spacing: -0.36px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.tables-wrapper .right .table tr td:nth-of-type(3) span {
    width: 122px;
    height: 27px;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 12px;
    text-align: center;
    letter-spacing: 0px;
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    line-height: 27px;
    display: block;
}

.tables-wrapper .right .table tr td:nth-of-type(4) {
    letter-spacing: -0.4px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.tables-wrapper .right .table tr td:nth-of-type(5) img {
    width: 35px;
}

.currencies-accepted {
    background: url(../images/currencies-section-bg.png) no-repeat center;
    background-size: cover;
    padding: 2rem 0;
}

.currencies-accepted .title {
    text-align: center;
    letter-spacing: -0.7px;
    color: #333333;
    font-size: 28px;
    font-weight: 700;
    background: transparent radial-gradient(closest-side at 50% 50%, rgba(255, 240, 194, 0.3) 46%, rgba(253, 237, 188, 0.3) 53%, rgba(249, 231, 172, 0.3) 63%, rgba(242, 222, 145, 0.3) 74%, rgba(233, 208, 108, 0.3) 85%, rgba(221, 190, 62, 0.3) 98%, rgba(219, 187, 52, 0.3) 100%) 0% 0% no-repeat padding-box;
    padding: 0.75rem 0;
}

footer {
    position: relative;
}

footer .left {
    background: #000;
    padding: 8rem 1rem 3rem 10%;
}

.footer-social-links a {
    margin-right: 1.5rem;
    opacity: 0.3;
}

.footer-social-links a:hover {
    text-decoration: none;
    opacity: 1;
}

.copyright-text {
    letter-spacing: -0.4px;
    color: rgba(255, 255, 255, 1);
    opacity: 0.5;
    font-weight: 500;
}

footer .right {
    background: rgba(233, 233, 233, 1);
    padding: 8rem 1rem 3rem 10%;
}

@media (max-width: 991.98px) {
    footer .right {
        padding: 3rem 1rem 3rem 10%;
    }
}

footer .right img {
    margin-right: 1rem;
}

footer .right .d-flex div {
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
}

.half-globe-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

@media (max-width: 767.98px) {
    * {
        animation: none !important;
    }
}