@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Italianno&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Italianno&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--blue);
}

:root {
    --black: #000;
    --white: #fff;
    --yellow: #F2C15F;
    --blue: #30187C;
    --dark-blue: #180F32;
    --pink: #FF008F;
}

/* font-family: "DM Sans", sans-serif; */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1 {
    font-size: 80px;
    line-height: 100px;
    font-weight: 800;
}

h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gradiant_txt {
    background: linear-gradient(97.34deg, #FF008F 32.29%, #FFE100 81.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn_yellow {
    padding: 14px 24px;
    background-color: var(--yellow);
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    border: 1px solid var(--yellow);
    color: var(--blue);
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn_yellow:hover {
    background-color: transparent;
    color: var(--white);
    transition: 0.5s;
}

.btn_yellow:hover img {
    filter: brightness(222);
    transition: 0.5s;
}

.site_header {
    background-color: var(--blue);
    padding: 14px 0;
}

.logo_wrap img {
    width: 200px;
}

.banner-section {
    padding: 310px 0;
    background-image: url(../img/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.banner_txt {
    max-width: 700px;
}

.banner_txt h1 {
    color: var(--white);
    margin: 0 0 10px;
}

.banner_txt h3 {
    color: var(--white);
    max-width: 600px;
    margin: 0 0 55px;
    font-family: "DM Sans", sans-serif;
}

.banking_img {
    margin-top: 40px;
}

.banking_img ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.thousands_txt p,
.thousands_txt h2 {
    color: var(--white);
}
.thousands_txt h2 {
    margin: 0 0 20px;
}
.thousands_txt p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.thousands_txt {
    padding-right: 120px;
}

.thousands_section {
    padding: 90px 0;
}

.thousands_wrapper {
    background: linear-gradient(134.76deg, #A41063 23.77%, #7F136B 81.86%);
    padding: 24px;
    border-radius: 20px;
}

.thousands_wrapper img {
    width: 64px;
    height: 64px;
}

.thousands_wrapper h6 {
    color: var(--white);
    margin: 15px 0 0;
}

.pink_txt {
    color: var(--pink);
}

.slider_section {
    padding: 90px 0;
}

.slider_head {
    max-width: 760px;
    margin: 0 auto;
}

.slider_head h2 {
    color: var(--white);
    text-align: center;
}

.slider_head p {
    color: var(--white);
    margin: 20px 0 0;
    text-align: center;
}

.slider_img img {
    width: 100%;
    height: 100%;
}

.slider_main_wrap {
    margin-top: 70px;
}

.slider_btn {
    margin-top: 70px;
}

.logo_inner ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.logo_wrapper {
    margin-top: 70px;
}

.withdrwals_section {
    padding: 100px 0 90px;
    position: relative;
}

.withdrwals_section::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: 256px;
    height: 4px;
    background-color: #FFFFFF29;
    transform: translate(-50%, 0);
}

.withdrow_wrapper h2 {
    color: var(--white);
    text-align: center;
}

.withdrow_wrapper p {
    margin: 20px 0 0;
    text-align: center;
    color: var(--white);
}

.withdrwals_section .banking_img ul {
    justify-content: center;
}

.withdrwals_section .banking_img {
    margin-top: 60px;
}

.footer_section {
    background-color: var(--dark-blue);
    padding: 70px 0;
}

.footer_logo {
    text-align: center;
    padding-bottom: 80px;
    position: relative;
}

.footer_logo::before {
    content: "";
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFFFFF29;
}

.footer_logo img {
    width: 150px;
}


.copyright_txt p,
.footer_decription p {
    color: var(--white);
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
}

.copyright_txt {
    margin: 30px 0 0;
}

.social_icon ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social_icon ul li a img {
    width: 40px;
}

.social_icon {
    margin-top: 40px;
}
@media (max-width: 1600px) {
    .banner-section {
        padding: 200px 0;
    }
}

@media (max-width: 1440px) {
    .banner-section {
        padding: 180px 0;
    }
}
@media (max-width: 1366px) {
    .banner-section {
        padding: 140px 0;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1080px;
    }

    h1 {
        font-size: 70px;
        line-height: 90px;
        font-weight: 800;
    }

    h3 {
        font-size: 27px;
        line-height: 36px;
    }

    .btn_yellow {
        padding: 16px 19px;
        font-size: 16px;
        line-height: 24px;
    }

    .banner-section {
        padding: 130px 0;
    }

    h2 {
        font-size: 35px;
        line-height: 45px;
    }

    h6 {
        font-size: 14px;
        line-height: 21px;
    }

    .thousands_wrapper {
        padding: 20px;
    }

    .thousands_wrapper img {
        width: 54px;
        height: 54px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    .thousands_section {
        padding: 60px 0;
    }

    .slider_section {
        padding: 60px 0;
    }

    .social_icon ul li a img {
        width: 30px;
    }

    .withdrwals_section {
        padding: 80px 0 70px;
    }
}

@media (max-width: 1080px) {
    .container {
        max-width: 991px;
    }
    .thousands_txt {
        padding-right: 80px;
    }
    h1 {
        font-size: 60px;
        line-height: 80px;
    }
    .logo_wrap img {
        width: 180px;
    }
    .banner-section {
        padding: 120px 0;
        background-position-x: right;
    }
    h3 {
        font-size: 22px;
        line-height: 33px;
    }

    h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .thousands_wrapper {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 45px;
        line-height: 60px;
    }
    h3 {
        font-size: 20px;
        line-height: 31px;
    }
    h2 {
        font-size: 28px;
        line-height: 38px;
    }
    .thousands_txt p {
        margin: 10px 0 0;
    }
    p {
        font-size: 16px;
        line-height: 24px;
    }
    .banner_txt h3 {
        margin: 0 0 40px;
    }
    .btn_yellow {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 20px;
    }
    .btn_yellow img {
        width: 25px;
    }
    .logo_wrap img {
        width: 150px;
    }
    .thousands_txt {
        padding-right: 0;
    }
    .banner-section {
        padding: 60px 0;
        background-position-x: right;
    }
    .thousands_section {
        padding: 60px 0 30px;
    }
    .slider_main_wrap {
        margin-top: 40px;
    }
    .slider_btn {
        margin-top: 40px;
    }
    .logo_inner ul li{
        width: 33.333%;
    }
    .logo_img{
        text-align: center;
    }
    .logo_img img{
        height: 40px;
        width: 100%;
    }
    .slider_section {
        padding: 40px 0;
    }
    .withdrwals_section {
        padding: 50px 0 50px;
    }
    .withdrwals_section::before {
        top: 20px;
        width: 200px;
        height: 3px;
    }
    .withdrwals_section .banking_img {
        margin-top: 41px;
    }
    .footer_section {
        padding: 40px 0;
    }
    .footer_logo {
        padding-bottom: 60px;
    }
    .footer_logo::before {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 38px;
        line-height: 49px;
    }
    h3 {
        font-size: 18px;
        line-height: 27px;
    }
    .banner_txt h3 {
        margin: 0 0 20px;
    }
    h2 {
        font-size: 23px;
        line-height: 35px;
    }
    .btn_yellow {
        padding: 7px 8px;
        font-size: 12px;
        line-height: 18px;
    }
    .btn_yellow img {
        width: 22px;
    }
    .logo_wrap img {
        width: 130px;
    }
    .thousands_wrapper img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 380px) {
    .thousands_section {
        padding: 30px 0 30px;
    }
    h2 {
        font-size: 20px;
        line-height: 30px;
    }
    p {
        font-size: 14px;
        line-height: 21px;
    }
    h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .banking_img {
        margin-top: 20px;
    }
}