:root {
    --font-dm-mono: "DM Mono", monospace;
    --font-dm-sans: "DM Sans", sans-serif;
    --text-body: rgba(187, 187, 187, 1);
    --primary-color: #6D3030;
    --white: #fff;
    --dark-black: #020103;
    --black: #000;
    --bg-gradient: linear-gradient(0deg, rgba(255, 29, 172, 1) 0%, rgba(255, 159, 229, 1) 100%);
    --transition: all 400ms ease-in-out;
}
/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    -ms-overflow-style: scrollbar;
    box-sizing: border-box;
    /* font-size: 100%; */
    /* height: 100%; */
}
*,
:after,
:before {
    box-sizing: inherit;
}
.post, .page {
    margin: 0;
}
body {
    color: var(--white);
    font-family: var(--font-dm-sans);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    font-size: 16px;
    background-color: var(--dark-black);
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 173.333% */
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
a {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.16px;
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
a:visited{
    color: inherit;
}
a:focus {
    outline: none;
    text-decoration: none;
}
img {
    display: block;
}
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
label {
    font-weight: inherit;
}

ul,
ol{
    margin: 0 0 20px 20px;
}

p {
    font-family: var(--font-dm-sans);
    color: var(--white);
    margin-bottom: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    letter-spacing: 0.16px;
}
p b, p strong {
    font-weight: 600;
}

p:empty {
    display: none;
}

p:last-child {
    margin-bottom: 0;
}
input:-webkit-autofill:focus,
input:-webkit-autofill {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    box-shadow: 0 0 0 1000px var(--dark-black) inset !important;
    -webkit-text-fill-color: #FFF !important;
    transition: background-color 5000s ease-in-out 0s; /* Optional: delays autofill background */
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 880px;
} 
/* Reset Styles */
.site-header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    padding: 20px 0 0;
    transition: var(--transition);
}
.site-header.sticky{
    padding: 10px 0 0;
}

.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;

    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(0deg, rgba(255, 113, 223, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(17.200000762939453px);
}

.site-branding{
    width: 135px;
}

.btn:focus,
.btn:focus-visible,
.btn:focus-within,
a.btn:visited,
.btn{
    background-color: transparent;
    padding: 10px 20px;
    position: relative;
    display: inline-flex;
    transform: var(--transition);

    color: var(--white);
    text-align: center;
    font-family: var(--font-dm-mono);
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.55px;
    text-transform: uppercase;

    border-radius: 220px;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 300px;
    border: 2px solid transparent;
    background: var(--bg-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.btn:hover{
    /* background-color: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(17.200000762939453px); */
    color: var(--white);
    color: rgba(255, 29, 172, 1);
}
a.btn[href="#"] {
    pointer-events: none;
}


.hero_banner{
    position: relative;
    overflow: hidden;
    background-color: var(--dark-black);
}
.hero_banner_img{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.hero_banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_banner_img::before{
    position: absolute;
    content: "";
    z-index: 1;
    background-color: rgba(170, 167, 151, 0.8);
    background: linear-gradient(217deg, rgba(0, 0, 0, 0.00) 42.05%, #000 96.49%), linear-gradient(285deg, rgba(254, 59, 152, 0.00) 57.26%, #FE3B98 110.22%), linear-gradient(353deg, rgba(0, 0, 0, 0.00) 69.29%, #000 102.42%), linear-gradient(349deg, rgba(0, 0, 0, 0.00) 70.41%, rgba(0, 0, 0, 0.50) 109.48%), linear-gradient(204deg, rgba(0, 0, 0, 0.00) 46.56%, #000 111.67%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.hero_banner_content{
    display: flex;
    position: relative;
    padding: 215px 0 0;    
    z-index: 3;
    justify-content: space-between;
    align-items: flex-end;
}

.hero_banner_content .content_left{
    max-width: 370px;
    padding: 0 0 60px;
}
.hero_banner_content .content_left h1{
    color: var(--white);
    font-family: var(--font-dm-sans);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 30.8px */
    margin-bottom: 12px;
}
.hero_banner_content .content_left .small-label{
    color: var(--white);
    font-family: var(--font-dm-mono);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 5px; /* 41.667% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero_banner_content .content_left .coming_soon_text{
    color: var(--white);
    font-family: var(--font-dm-sans);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}
.hero_banner_content .content_left .btn-wrap{
    padding-top: 30px;
}
.hero_banner_content .img_right{
    max-width: 294px;
}

.hero_banner_content p{
    color: var(--white);
}
.hero_banner_content .btn-wrap{
    display: flex;
}

/* Pill Scrolling */
.pills_scrolling{
    padding: 50px 0;
    overflow: hidden;
}
.pills_scrolling .pills_wrap{
    display: flex;
    align-items: center;
}
.pills_scrolling .pills_wrap .scrolling-text{
    display: flex;
    align-items: center;
    -webkit-animation: scrollText 33s infinite linear;
    animation: scrollText 33s infinite linear;
}
/* .pills_scrolling .pills_wrap .scrolling-text:not(:last-child),
.pills_scrolling .pills_wrap .scrolling-text span:not(:last-child){
    margin-right: 26px;
} */
.pills_scrolling .pills_wrap .scrolling-text span{
    display: inline-block;
    padding: 14px 20px;
    white-space: nowrap;
    color: rgba(187, 187, 187, 0.73);
    text-align: center;
    font-family: var(--font-dm-mono);
    font-size: 12.992px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; /* 310% */
    letter-spacing: 0.65px;
    text-transform: uppercase;
    position: relative;
    margin: 0 13px;
}
.pills_scrolling .pills_wrap .scrolling-text span::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 300px;
    border: 2px solid transparent;
    background: linear-gradient(0deg, rgba(35, 35, 35, 1) 0%, rgba(165, 165, 165, 0.73) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

@-webkit-keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}
/* Pill Scrolling */

/* Connect With */
.connect_with{
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--dark-black);
}
.connect_with::before,
.connect_with::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 150px;
    z-index: 2;
    left: 0;
}
.connect_with::before{
    background: linear-gradient(0, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    top: 0;
}
.connect_with::after{
    bottom: 0;
    height: 238px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}
.connect_with .connect_with_img{
    position: absolute;
    width: 100%;
    height: calc(100% + 70px);
    left: 0;
    top: -70px;
    z-index: 1;
    overflow: hidden;
}
.connect_with .connect_with_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.connect_with .connect_with_content{
    text-align: center;
    margin: 320px auto;
    position: relative;
    z-index: 3;
    max-width: 468px;
}
.connect_with .connect_with_content *{
    position: relative;
    z-index: 5;
}
.connect_with .connect_with_content ul li,
.connect_with .connect_with_content ol li{
    max-width: max-content;
    margin: 0 auto;
}
.connect_with .connect_with_content h2{
    position: relative;
    z-index: 5;
    color: var(--white);
    font-family: var(--font-dm-sans);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 30.8px */
}
.connect_with .connect_with_content::before{
    position: absolute;
    content: "";
    width: calc(100% + 200px);
    height: calc(100% + 200px);
    flex-shrink: 0;
    z-index: 1;
    border-radius: 431px;
    background: #000;
    filter: blur(54.29999923706055px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* Connect With */

/* About Section */
.about_section{
    position: relative;
    overflow: hidden;
}
.about_content_wrap{
    padding: 170px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about_content_wrap .content_text_left{
    max-width: 332px;
}
.about_content_wrap .content_text_left .btn-wrap{
    padding-top: 15px;
    display: flex;
}
.about_content_wrap .content_text_left ul, 
.about_content_wrap .content_text_left ol,
.about_content_wrap .content_text_left p{
    margin-bottom: 15px;
    color: #BBB;
    font-family: var(--font-dm-sans);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 15.6px */
}



.about_content_wrap .content_text_left h6{
    color: var(--white);
    font-family: var(--font-dm-mono);
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 5px; /* 45.455% */
    letter-spacing: 0.55px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.about_content_wrap .content_text_left h2{
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--font-dm-sans);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 30.8px */
}
.about_content_wrap .content_text_left h2 span{
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about_content_wrap .img_right_wrap{
    max-width: 297px;
    height: 338px;
    position: relative;
    z-index: 1;
}
.about_content_wrap .img_right_wrap::before{
    pointer-events: none;
    position: absolute;
    content: "";
    width: 449px;
    height: 382px;
    flex-shrink: 0;
    z-index: 1;
    border-radius: 449px;
    opacity: 0.41;
    background-color: #FF1DAC;
    filter: blur(112px);
    left: -140px;
    top: -20px;
}
.about_content_wrap .img_right_wrap .candy_img{
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    position: absolute;
    bottom: -5px;
    right: -36px;
    z-index: 4;
}
.about_content_wrap .img_right_wrap .img-wrap{
    border-radius: 16px;
    width: 297px;
    height: 338px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.about_content_wrap .img_right_wrap .img-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.about_content_wrap .monthly_gains{
    padding: 11px;
    position: absolute;
    top: 16px;
    border-radius: 13.354px;
    border: 0.648px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(28deg, rgba(254, 59, 152, 0.00) 38.81%, #FE3B98 275.41%), rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(30.01209831237793px);
    left: -80px;
    z-index: 4;

}
.about_content_wrap .monthly_gains .small_label{
    color: var(--white);
    font-family: var(--font-dm-mono);
    font-size: 10.671px;
    font-style: normal;
    opacity: 0.5;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.64px;
    text-transform: uppercase;
}
.about_content_wrap .monthly_gains .number_Wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3px;
}
.about_content_wrap .monthly_gains .number_Wrap .big-number{
    color: var(--white);
    min-width: 100px;
    font-family: var(--font-dm-sans);
    font-size: 17.785px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.356px;
}
.about_content_wrap .monthly_gains .number_Wrap .percentage{
    color: #00AE4E;
    font-family: var(--font-dm-mono);
    font-size: 10.671px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 6px;
    background: #E5FFF1;
}
/* About Section */

/* Trusted Financial Services */
.trusted_financial_services{
    text-align: center;
    padding: 32px 0;
}
.trusted_financial_services .small-label{
    color: #7A7A7A;
    font-family: var(--font-dm-mono);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.financial_services_logos{
    display: flex;
    align-items: center;
    justify-content: center;
}
.financial_services_logos .financial_services_item:not(:last-child){
    margin-right: 36px;    
}
.financial_services_logos .financial_services_item img{
    height: 23px;
    object-fit: contain;
    width: auto;
    max-width: 70px;
}
.financial_services_logos .financial_services_item:first-child img{
    width: 42px;
}
/* Trusted Financial Services */

.site-footer{
    position: relative;
}

.footer_top{
    border-top: 1px solid #555;
    padding: 10px 0 0;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}
.footer_top .footer_logo{
    width: 167px;
    margin-right: 30px;
}
.footer_top .footer_logo img{
    width: 100%;
}
.footer_top .footer_social{
    display: flex;
}
.footer_top .footer_social a:not(:last-child){
    margin-right: 10px;
}
.footer_top .footer_social a{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer_top .footer_social a img{
    width: 20px;
    height: 20px;
}

.footer_top .footer_social a:hover{
    transform: translateY(-3px);
    opacity: 0.8;
}


.copyright-wrap{
    display: flex;
    border-top: 1px solid #555;
    margin-top: 75px;
    padding: 10px 0 50px;
}
.copyright-wrap p a,
.copyright-wrap p{
    color: #555;
    font-family: var(--font-dm-mono);
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.copyright-wrap .content_left{
    max-width: 250px;
    flex-shrink: 0;
    margin-right: 28px;
}
.copyright-wrap .content_right{
    flex-grow: 1;
}


.pop-up-content-wrap h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-form p > label{
    color: var(--white);
    font-family: var(--font-dm-mono);
    font-size: 14px;
    font-style: normal;
    opacity: 0.5;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    /* text-transform: uppercase; */
}
.popup-form p > label sup{
    font-style: normal;
    color: red;
}
.popup-form input[type="email"],
.popup-form input[type="text"]{
    width: 100%;
    background-color: transparent;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: rgba(255, 255, 255, 0.4);
    padding: 7px 0 10px;
}
.popup-form input[type="email"]::placeholder,
.popup-form input[type="text"]::placeholder,
.popup-form input[type="email"],
.popup-form input[type="text"]{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}
.popup-form .submit-btn p{
    position: relative;
    max-width: max-content;
}
.popup-form .submit-btn p .wpcf7-spinner{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    margin: 0;
    background-color: #FFF;
}
.popup-form .submit-btn p .wpcf7-spinner::before{
    background-color: rgba(255, 29, 172, 1);
}
.popup-form .submit-btn p::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 300px;
    border: 2px solid transparent;
    background: var(--bg-gradient) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.popup-form .submit-btn p .wpcf7-submit{
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    color: var(--white);
    padding: 13px 25px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-dm-sans);
    transition: var(--transition);
}
.popup-form .submit-btn p .wpcf7-submit:hover{
    color: rgba(255, 29, 172, 1);
}


.popup-form label .wpcf7-not-valid-tip {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    font-family: var(--font-dm-sans);
    font-weight: 500;
    text-transform: inherit;
    letter-spacing: 0;
}
.wpcf7 form .wpcf7-response-output {
    margin: 25px 0 0;
    padding: 10px 15px;
    font-size: 14px;
    border-width: 1px;
}
.popup-form label .wpcf7-not-valid-tip + .wpcf7-not-valid-tip{
    display: none;
}
/* Custom Model Popup */
.popup-open {
    overflow: hidden;
}
.custom-model-main {
    -webkit-overflow-scrolling: touch;
    bottom: 0;
    left: 0;
    opacity: 0;
    outline: 0;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s ease-out;
    z-index: -1;
}

.custom-model-main
  
.custom-model-inner {
    margin: 0 auto;
    max-width: 450px;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-out;
    width: 100%;
    opacity: 0;
    position: relative;
}

.custom-model-wrap {
    min-height: 100px;
    box-sizing: border-box;
    display: block;
    max-height: calc(100vh - 50px);
    outline: 0;
    overflow-y: auto;
    padding: 30px 20px;
    position: relative;
    width: 100%;
    border-radius: 10px;
    background-color: var(--dark-black);
    box-shadow: 0 0 70px 8px rgba(255,29,172,0.3);
    -webkit-box-shadow: 0 0 70px 8px rgba(255,29,172,0.3);
    -moz-box-shadow: 0 0 70px 8px rgba(255,29,172,0.3);
}
.model-open {
    opacity: 1;
    overflow: hidden;
    z-index: 99999;
}

.model-open .custom-model-inner {
    position: relative;
    z-index: 999;
    opacity: 1;
}

.bg-overlay,
.filter-overlay {
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.50);
    bottom: 0;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s ease-out;
    width: 100%;
    z-index: 0;
    backdrop-filter: blur(7px);
}
.model-open .bg-overlay {
    z-index: 99;
    opacity: 1;
}

.filter-overlay {
    opacity: 0;
    visibility: hidden;
}

.filter-overlay.active {
    opacity: 0.6;
    visibility: visible;
}

.close-btn {
    cursor: pointer;
    height: 35px;
    width: 35px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99;
    background: var(--bg-gradient);
    border-radius: 50%;
    background-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-btn img {
    height: 24px;
    width: 24px;
    margin-left: -2px;
}
.close-btn:hover{
    background-color: var(--small-title-color);
}
/* Custom Model Popup */

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

    
}
@media only screen and (max-width:767px) {

    .hero_banner_img::before {
        background: linear-gradient(217deg, rgba(0, 0, 0, 0.00) 42.05%, #000 96.49%), linear-gradient(285deg, rgba(254, 59, 152, 0.00) 57.26%, #FE3B98 172.22%), linear-gradient(353deg, rgba(0, 0, 0, 0.00) 169.29%, #000 102.42%), linear-gradient(349deg, rgba(0, 0, 0, 0.00) 70.41%, rgba(0, 0, 0, 0.50) 109.48%), linear-gradient(204deg, rgba(0, 0, 0, 0.00) 48.56%, #000 111.67%);
    }

    .hero_banner_content{
        padding: 150px 0 0;
        flex-direction: column;
        align-items: center;
    }
    .hero_banner_content .content_left{
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero_banner_img img {
        opacity: 0.5;
    }
    .hero_banner_content .img_right {
        max-width: 200px;
    }
    .hero_banner_content .btn-wrap{
        justify-content: center;
    }

    .pills_scrolling .pills_wrap .scrolling-text span {
        padding: 9px 15px;
        line-height: normal;
        margin: 0 7px;
    }
    /* .pills_scrolling .pills_wrap .scrolling-text:not(:last-child), 
    .pills_scrolling .pills_wrap .scrolling-text span:not(:last-child) {
        margin-right: 15px;
    } */

    .connect_with .connect_with_content {
        margin: 250px auto;
        max-width: 100%;
    }

    .about_content_wrap {
        padding: 70px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .about_content_wrap .content_text_left {
        max-width: 100%;
    }

    .about_content_wrap .img_right_wrap {
        max-width: calc(100% - 80px);
        margin: 40px auto 0;
        height: auto;
        width: calc(100% - 80px);
    }

    .about_content_wrap .img_right_wrap::before {
        left: -70px;
        top: -110px;
    }

    .about_content_wrap .img_right_wrap .img-wrap {
        width: 100%;
    }
    .about_content_wrap .monthly_gains {
        top: 25px;
        left: -40px;
    }
    .about_content_wrap .img_right_wrap .candy_img {
        width: 100px;
        height: 100px;
    }

    .financial_services_logos .financial_services_item:not(:last-child) {
        margin-right: 24px;
    }
    .trusted_financial_services {
        padding: 25px 0;
    }
    .footer_top {
        flex-direction: column;
        align-items: center;
    }
    .footer_top .footer_logo {
        margin-right: 0;
    }
    .footer_top .footer_social {
        margin-top: 10px;
    }
    .copyright-wrap {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
        padding: 10px 0 25px;
    }
    .copyright-wrap .content_right {
        margin-top: 25px;
    }

    .copyright-wrap .content_left {
        max-width: 100%;
        margin-right: 0;
    }

    .connect_with .connect_with_content h2 {
        font-size: 22px;
        line-height: normal;
    }

    .connect_with .connect_with_img {
        width: calc(100% + 200px);
        left: -100px;
    }
    .connect_with::before {
        height: 100px;
    }
    .connect_with::after {
        height: 100px;
    }
    
}
@media only screen and (max-width:360px) {
    .about_content_wrap .img_right_wrap {
        max-width: calc(100% - 30px);
        width: calc(100% - 30px);
    }
    .about_content_wrap .monthly_gains {
        left: -15px;
    }
    .about_content_wrap .img_right_wrap .candy_img {
        right: -15px;
    }
}