@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main: #0e1437;
    --yellow: #FCCE0B;
    --color1: #2F477D;


}

body {
    font-family: "Albert Sans", sans-serif;
    background-color: var(--main);
    color: #fff;



}
.preloader {
    z-index: 5000;
    background:var(--main);
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: hidden;
    height: 100vh;
    transition: all 1s ease-in-out;

  }
  .preloader.hidden {
    top:-100vh;
    overflow: hidden; /* Prevent overflow when hidden */

}

  @keyframes bg-scrolling-reverse {
    100% {
       transform: rotate(120deg);
        background-position: -50px -50px;
    }
  }
.preloader::before {
    content: '';
    background: url(../images/bg6.jpg);
    background-size: auto;
    /* Or remove this line completely */
    background-repeat: repeat;
    /* Repeats the image */
    background-position: top left;
    /* Optional, default position */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* To keep it behind content */
}
  .brand{
 transition: .6s;
 width: 200px;
  }
.preloader.hidden .brand {
    transform: scale(.6);
   
}

  .instruments-images, .section-title, .monthly-stats, .empowering-section, .main-footer > *, .accordion-section > *, .contact-page-section > *, .about-section > *{
    z-index: 9;
    position: relative;
  }


header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    transition: .3s;


}

.scroll-start header {
    backdrop-filter: blur(10px);
    background: #0e143594;
    border-bottom: 1px solid #f8ce0b21;
}

.logo img {
    max-width: 150px;
    width: 100%;
    display: block;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.container {
    clear: both;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;


    margin-left: auto;
    margin-right: auto;
}

.py-site {
    padding-top: 120px;
    padding-bottom: 120px;
}

.flex-align {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

header .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
}

.btn {
    padding: 9px 26px;
    border-radius: 30px;
    background: #323757;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 300;
    transition: background 0.3s, color 0.3s;
    position: relative;
    min-width: 110px;
    font-family: "Albert Sans", sans-serif;
    display: inline-block;
    text-decoration: none;


}

.btn span {
    letter-spacing: 1px;
}

.btn svg {
    position: absolute;
    bottom: -4.5px;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    object-fit: contain;
}

.btn:hover {
    /* border-color: var(--yellow); */
    background: var(--main);
    color: var(--yellow);
}

.btn:hover svg {
    animation: btn_hover 3s ease-in-out infinite;
    filter: sepia(1) saturate(10) hue-rotate(8deg) brightness(.8);

}


@keyframes btn_hover {
    0% {
        transform: translateX(-30%);

    }

    25% {
        transform: translateX(-70%);

    }

    50% {
        transform: translateX(-30%);

    }

    75% {
        transform: translateX(-70%);

    }

    100% {
        transform: translateX(-30%);

    }
}


.btn-signup svg {

    max-width: 90px;
}

main {
    /* background: url(../images/abstract.png);
    background-size: cover;
    background-position: center; */
    overflow: hidden;
    position: relative;

}

main::before {
    content: '';
    background: url(../images/bg6.jpg);
    background-size: auto;
    /* Or remove this line completely */
    background-repeat: repeat;
    /* Repeats the image */
    background-position: top left;
    /* Optional, default position */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* To keep it behind content */
}

.hero-section {
    overflow: hidden;
}

.hero {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
    background: url(../images/half-gobe1.png);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 9;
}

.hero .btn {
    background: var(--color1);
}

.hero .btn:hover {
    background: var(--main);
}

.hero-section .dots {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    transform: scale(1.5);
    width: 100%;
    max-height: 100px;

}

.hero-section .dots svg {
    max-height: 80px;

}



.half-globe2 {
    width: 100%;
    z-index: 999;
    position: relative;
}

.hero h1 {
    font-size: 60px;
    font-weight: 600;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    margin-top: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 200;
}

.hero .btn {
    margin-top: 20px;
}

.about-bg {
    background: url(../images/bg.png);
    padding-top: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.about-cards {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    padding-right: 40px;

}

.about-card {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    border-top: 2px solid #ffffff1f;
    border-bottom: 2px solid #ffffff1f;

    padding: 30px;
    border-radius: 40px;
    position: relative;
    min-height: 170px;
    background: #26408e26;
    backdrop-filter: blur(10px);
    cursor: pointer;

}

.about-card svg {
    top: -4px;
    position: absolute;
    height: 8px;
    left: 0;
    transition: .8s;
}

.about-card:nth-child(2) svg {
    left: auto;
    right: 0;
}

.about-card:nth-child(3) svg {
    left: 50%;
    transform: translateX(-50%);
}

.about-card:nth-child(4) svg {
    left: auto;
    right: 5%;
}

.about-card:hover svg {
    transform: translateX(70%);
}

.about-card:nth-child(2):hover svg {
    right: calc(100% - 100px);
}

.about-card:nth-child(3):hover svg {
    transform: translateX(-88%);
}

.about-card:nth-child(4):hover svg {
    transform: translateX(-65%);
}

.about-card h5 {
    font-size: 25px;
    line-height: 26px;
    font-weight: 200;
    max-width: 240px;
    letter-spacing: 1px;
}

.about-card:nth-child(even) h5 {
    margin-left: auto;
    text-align: right;
}

.about-card img {
    position: absolute;
    right: 30px;
    top: -40px;
    height: 100%;
    min-height: 170px;
    object-fit: contain;
    transition: .3s;
    z-index: 9;
}

.about-card:hover img {
    filter: brightness(1.2);
}



.about-card:nth-child(even) img {
    left: 30px;
    right: auto;
    top: -50px;
}

.about-card:nth-child(2) img {
    top: -10px;
    /* transform: scale(1.15); */
    min-height: 190px;

}

.about-card:nth-child(3) img {
    top: -25px;

}

.about-card:nth-child(4) img {
    top: -30px;
    /* transform: scale(1.4); */
    left: 0;
    min-height: 230px;


}


.profit {
    position: relative;
    z-index: 9;
    /* background overlay inherits from existing .profit styles */
}

.profit:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/bg3.png) bottom right / cover no-repeat;
    mask-image: linear-gradient(to bottom, transparent 5%, black 50%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 5%, black 50%);
}

.profit .profit-container {
    display: grid;
    grid-template-columns: 1fr 440px;
    /* Two equal columns for left & right */
    grid-template-rows: auto auto;
    /* Two rows: header + content */
    grid-template-areas:
        "profit-head profit-head"
        "left right";
    gap: 20px clamp(2rem, 5vw, 5rem);
    position: relative;
    align-items: center;
    z-index: 1;
}

.profit-container h2 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}

.profit-container h2 span {
    color: var(--yellow);
}

/* Assign grid areas */
.profit .profit-head {
    grid-area: profit-head;
}
.profit .profit-head .tabs{
    padding-top: 20px;
}
.profit .profit-head>* {
    max-width: 380px;
}

.profit-head h4 {
    font-size: 22px;
    margin: 15px 0;
    font-weight: 400;
}








.profit-button-containers{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;

}
.profit .tabs {
    margin: 0px 0 25px 0;
}

.profit .tab-group-plan2 .tab-button {
    color: #fff;
    padding: 5px 10px;
    margin: 0 10px 10px 0;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 200;
    transition: .3s;
    font-size: 14px;
    line-height: 1;
      border: none;
   border-bottom: 1px outset transparent;
    background-color: transparent;
  
}
.profi .tab-group-plan2 .tab-button:hover,
.profit .tab-group-plan2 .tab-button.active {
    border-bottom: 1px outset white;
}
.profit .tab-group-plan .tab-button {
    background: #223049;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 20px;
    padding: 8px 20px;
    margin: 0 10px 10px 0;
    cursor: pointer;
    letter-spacing: 1px;
    font-weight: 200;
    transition: .3s;
    font-size: 14px;
    line-height: 1;
}
.profi .tab-group-plan .tab-button:hover,
.profit .tab-group-plan .tab-button.active {
    background: #384C88;
}

.profit .description {
    margin-top: 30px;
}

.profit .description h4 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
}

.profit .description p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 200;
}

/* form rows */
.profit-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 5px;
}

.profit-row {
    width: 100%;
    position: relative;
}

.profit-row-values {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
}

.profit-row__label {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}

.profit-row__sliderwrap {
    width: 100%;

}

.profit-row__value {

    font-size: 20px;


}

/* range base */
.profit-row__range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;

    border-radius: 2px;
    outline: none;
    cursor: pointer;
    position: relative;
}

/* dynamic fill done inline (JS) via background gradient) */

/* webkit thumb */
.profit-row__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--main);
    box-shadow: 0 0 0px 4px var(--yellow);
    border: none;
    cursor: pointer;
    margin-top: 1px;
}

/* moz */
.profit-row__range::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--yellow);
    border: none;
    cursor: pointer;
}

.profit-row__range::-ms-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--yellow);
    border: none;
    cursor: pointer;
}

/* card */
.profit-card {
    width: 100%;
    padding: 3rem 2.5rem;
    background: rgba(34, 48, 73, .55);
    border-radius: 30px;
    background: url(../images/card-bg2.png) center bottom / 100% 100%;
    overflow: hidden;
    backdrop-filter: blur(5px);
    /* aspect-ratio: 1 / .6; */
    max-width: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
}

.profit-card__chart {
    margin-bottom: 2rem;
}

.profit-card__legend {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: .35rem;
}

.dot--invested {
    background: #C9BFE6;
}

.dot--return {
    background: #3B78C9;
}

.profit-card__barwrap {
    position: relative;
    width: 100%;
    height: 12px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.profit-card__bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #C9BFE6;
    transition: width .25s ease;
}

.profit-card__bar--return {
    background: #3B78C9;
}

.profit-card__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    font-size: 16px;
}

.profit-card__stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profit-card__stats span {
    font-weight: 200;
}

.profit-card__stats strong {
    font-weight: 600;
}

/* responsive */
@media (max-width:768px) {
    .profit .profit-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    grid-template-areas:
        "profit-head"
        "left"
        "right";

    }
.profit .profit-container  .right{
    margin-top: 30px;
}
    .profit-card {
        margin-right: auto;
  
    }
.profit .profit-head>* {
    max-width: 100%;
}
    .profit-row {
        grid-template-columns: 1fr;
    }

    .profit-row__label {
        margin-bottom: .25rem;
    }

    .profit-row__sliderwrap {
        grid-template-columns: 1fr auto;
    }
}

.partners {
    /* background: url(../images/bg2.png);
    background-size: cover;
    background-position: top; */
    position: relative;
    /* mask-image: linear-gradient(to bottom, transparent 5%, black 50%); */
}

.partners:before {
    background: url(../images/bg5.png);
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: -50%;
    left: 0;
    transform: scale(1.3);
}

.partners:after {
    background: url(../images/bg2.png);
    background-size: cover;
    background-position: top;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /* mask-image: linear-gradient(to top, transparent 5%, black 50%); */
    opacity: .25;
    filter: blur(50px) saturate(300%);
    mix-blend-mode: normal;
    max-height: 800px;
    position: absolute;
    top: 70%;
    right: 0;
    transform: translate(50%, -50%);
}

/* .partner-card-container{
     background: linear-gradient(351deg, #9498ac, #404054, #404054, #9498ac);
    border-radius: 40px;
    padding: 2px
} */
.partner-card {
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    /* border-left: 1px solid #fff;
    border-right: 1px solid #fff; */

    width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    backdrop-filter: blur(5px);
    outline-offset: 0px;
    background-color: #e0e0e012;
    outline: 3px #fff;
    z-index: 9;
    background: url(../images/card-bg.png);
    background-position: bottom;
    background-size: 100% 100%;
    overflow: hidden;

}

/* .partner-card::before{
    content: '';
    position: absolute;
    bottom: 70%;
    background: url(../images/partner-dot.png);
        width: 540px;
    height: 540px;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
} */
.partner-card h2 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1;
}

.partner-card>* {
    max-width: 900px;
    margin: 0 auto;
}

.partner-card p {
    font-weight: 200;
    max-width: 600px;

}

.partner-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.partners-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partner-points img {
    height: 30px;
}

.partners-container {
    position: relative;
    z-index: 9;
}

.partners-container .globe {
      max-height: 600px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.partner-card-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
}

.partners-container .globe img {
    height: 100%;
    width: 100%;
    animation: rotate 100s linear infinite;
    transform-origin: center center;
    /* optional: ensures smooth center rotation */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.partner-steps {
    text-align: center;
    margin: 0 auto;
}

.partner-steps h2 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 60px;
    line-height: 1;
}



.partner-steps h2 .highlight {
    color: var(--yellow);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 200;
    color: var(--yellow);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: -1px -1px 0px 0px #fff;
    background: var(--main);
}

.step-circle>div {
    background: #1A2441;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.step:nth-child(2) .step-circle {
    box-shadow: 0px -1px 0px 0px #fff;
}

.step:nth-child(3) .step-circle {
    box-shadow: 1px -1px 0px 0px #fff;
}

.step-text {
    font-size: 16px;
    font-weight: 500;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.5;
}

.step span {
    position: absolute;
    top: 34px;
    right: -40%;
    width: 70%;
    height: .1rem;
    background: #ccc;
    z-index: 1;

}

.step:last-child span::after {
    display: none;
}

.step span::before {
    content: "";
    position: absolute;
    top: -3px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    z-index: 3;
}

.step span::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -2px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    z-index: 3;
}

.step:last-child::before {
    display: none;
}

.form-section {
    position: relative;
    padding-bottom: 200px;
}

.form-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/bg4.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.form-card-container {
    width: 100%;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form {
    background: #2121374f;
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 60px;
    width: 100%;
    background: url(../images/card-bg.png);
    background-position: bottom;
    background-size: 100% 100%;
    overflow: hidden;
    width: 100%;
}

.form-container h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}

.form-container p {
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 200;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    margin-bottom: 20px;
}

.form-grid input,
.form-grid select {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background-color: #091632;
    color: white;
    font-size: 14px;
}

.form-grid input::placeholder {
    color: #888;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.form-submit button {
    min-width: 140px;
}

footer {
    background-color: #0F1638;
    padding: 80px 00px 30px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 25px;

}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.footer-column .email {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons a:hover svg {
    animation-name: jello;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
}

@keyframes jello {

    0%,
    100%,
    11.1% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.15deg) skewY(6.15deg);
        transform: skewX(6.15deg) skewY(6.15deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.115deg) skewY(-3.115deg);
        transform: skewX(-3.115deg) skewY(-3.115deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5615deg) skewY(1.5615deg);
        transform: skewX(1.5615deg) skewY(1.5615deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78115deg) skewY(-.78115deg);
        transform: skewX(-.78115deg) skewY(-.78115deg)
    }

    77.7% {
        -webkit-transform: skewX(.390615deg) skewY(.390615deg);
        transform: skewX(.390615deg) skewY(.390615deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953115deg) skewY(-.1953115deg);
        transform: skewX(-.1953115deg) skewY(-.1953115deg)
    }
}

.footer-bottom {
    margin-top: 40px;
}

.footer-bottom p {
    background-color: #182140;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 13px;
    width: 100%;
}

@media screen and (max-width: 990px) {
    .partner-card {
      padding: 40px;
        border-radius: 30px;
    }

    .partner-card h2 {
        font-size: 32px;
    }
    .partners-container .globe {
    max-height: 450px;
  
    max-width: 560px;

}


}

@media screen and (max-width: 768px) {



    .container {

        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .logo img {
        max-width: 100px;
    }

    .hero {
        background-size: 170% 100%;
    }

    .hero-section .dots svg {
        max-height: 60px;
    }

    .about-cards {
        padding-left: 20px;
        padding-right: 20px;

    }

    .about-card {
        flex-direction: column-reverse;
    }

    .about-card img {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        height: 100px;
        min-height: 100px !important;
        max-width: 100%;
    }

    .about-card h5 {
        text-align: center !important;
        margin-left: 0 !important;
        font-size: 18px;
    }

    .about-card svg {
        left: 50% !important;
        transform: translateX(-50%) !important;
        height: 6px !important;
    }

    .profit-container {

        grid-template-columns: 1fr;
    }

    .py-site {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .partner-card {
        padding: 30px;
        border-radius: 30px;
    }





    .partner-card h2,
    .profit-container h2,
    .partner-steps h2,
    .form-container h2 {
        font-size: 30px;
        line-height: 1;
    }

    .step span {
        display: none;

    }

    .form {

        border-radius: 30px;
        padding: 30px;

    }

    .form-grid {

        grid-template-columns: 1fr;

    }

    footer {

        padding: 40px 00px 30px;

    }

    .profit {
        padding-bottom: 100px;
        mask-image: linear-gradient(to top, transparent 5%, black 10%);
    }

    .partners {

        mask-image: none;
    }

    .partner-card {
        font-size: 14px;
    }

    .partner-points img {
        height: 24px;
    }

}

@media screen and (max-width: 580px) {
        .partner-card-container {

    bottom: -80px;

}
section.py-site.partners{
    padding-bottom: 100px;
}
.partner-card,
    .form {
        border: 1px solid rgba(255, 255, 255, 0.388);
        background: #e0e0e012;
    }
}
@media screen and (max-width: 420px) {
    


    
        .profit-card {
        padding: 30px;
        border-radius: 26px;
    }
            .partner-card-container {

    bottom: -200px;

}
    section.py-site.partners {
        padding-bottom: 250px;
    }
}