body {
    margin: 0;
    overflow-x: hidden;
}


.menu {
    display: none;
}

.raper {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

header img {
    color: red;
}

section {
    width: 100%;
    float: left;
}

header {
    padding: 20px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* mobile menu start */
.menu ul {
    background-color: rgba(127, 255, 212, 0.239);
    padding: 15px;
}

.menu li {
    list-style: none;
}

.menu a {
    display: flex;
    padding: 5px;
    position: relative;
    color: black;
    font-family: sans-serif;
    font-size: 20px;
    cursor: pointer;
    transition: .4s all ease;
    margin-right: 20px;
    margin-left: 20px;
    text-decoration: none;
}

.menu a:hover {
    color: black;
    transition: .4s all ease;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 80px;
    transform: scaleX(0);
    height: 2px;
    bottom: -0px;
    left: 0;
    background-color: aqua;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.menu a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* mobile menu end */



.flex {
    display: flex;
    justify-content: center;
}

.site_logo {
    width: 10%;
}

.mobile_icon {
    height: 40px;
    width: 50px;
    display: none;
    cursor: pointer;
}

.ok {
    width: 65%;
    float: left;
}

.list {
    display: flex;
    gap: 50px;
}

.ok li {
    list-style: none;
}

.ok a {
    display: inline-block;
    position: relative;
    color: black;
    font-family: sans-serif;
    font-size: 20px;
    cursor: pointer;
    transition: .4s all ease;
    padding: 5px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: .4s all ease;
}

.ok a:hover {
    color: black;
    border-bottom: 2px solid aqua;
}

.header_btn {
    width: 20%;
    text-align: right;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.header_btn button {
    font-family: sans-serif;
    font-weight: bold;
    color: white;
    padding: 10px 20px;
    background-color: aqua;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.section_1 {
    width: 80%;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section_1 h1 {
    font-size: 55px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: rgb(6, 44, 71);
    margin: 0;
}

.sec_1_h1 {
    font-size: 70px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, #008993 15%, #3BC14F 31.25%, #FFAA2D 69.79%, #FF3100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sec_1_p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: rgb(69, 56, 56);
}

.btn_1 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: white;
    border: solid;
    cursor: pointer;
    background: linear-gradient(92.66deg, #37B34A 4.38%, #F5AB2F 68.13%, #FF531D 100%);
    border-image: linear-gradient(92.66deg, #37B34A 4.38%, #F5AB2F 68.13%, #FF531D 100%)2;
    height: 56px;
    width: 240px;
    left: 0px;
    top: 0px;
    padding: 16px 52px 16px 52px;
    margin: 0px 1px;

}

.btn_1:hover {
    opacity: .9;
}

.btn_2 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: white;
    border: solid 2px;
    cursor: pointer;
    border-image: linear-gradient(to right, rgb(112, 243, 112), rgb(255, 255, 0), red)2;
    background: -webkit-linear-gradient(0deg, rgb(112, 243, 112), rgb(255, 255, 0), red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 56px;
    width: 240px;
    left: 0px;
    top: 0px;
    padding: 16px 52px 16px 52px;
}

.section_2 {
    position: relative;
    width: 80%;
    padding: 50px 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(250deg,
            rgba(130, 225, 221, 0.751),
            rgba(255, 0, 0, 0) 70.71%), linear-gradient(127deg, rgba(135, 230, 146, 0.996), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(244, 149, 7, 0.991), rgba(0, 0, 255, 0) 70.71%);
}

.bg-animate::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    background: linear-gradient(45deg, #ff0000, #0000ff, #ffff00, #008000, #ff6600, #00b3ff, #62ff00, #ea05b5, #63ff03, #ff9d00,
            #a200ff, #2022ab, #ffff00, #008000, #00b3ff, #0000ff, #ff009d, #0000ff, #ffff00, #008000);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    border-radius: 10px;
    animation: animate 20s linear infinite;
    filter: blur(10px);
}

@keyframes animate {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.section_2 h1 {
    font-size: 32px;
    font-family: sans-serif;
    font-weight: 900;
    color: rgb(31, 32, 65);
}

.sec_2_sub_div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sec_2_sub_div div {
    background-color: whitesmoke;
    width: 25%;
    margin: 10px;
    text-align: left;
    padding: 25px;
    border-radius: 10px;
}

.sec_2_sub_div div h1 {
    text-align: left;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    color: rgb(6, 44, 71);
    margin: 0;
}

.sec_2_sub_div div p {
    color: rgb(6, 44, 71);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    margin: 0;
    text-align: left;
    text-transform: none;
}

.section_3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 100px;

}

.section_3 h1 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    line-height: 27px;
    color: rgb(6, 44, 71);
    font-weight: normal;
}

.section_3 span {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    margin: 0;
    line-height: 27px;
    color: rgb(6, 44, 71);
}

.brand {
    width: 100%;
    height: 57px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0px;
}

.section_3 h2 {
    line-height: 100px;
    font-size: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(90deg, #008993 0%, #3BC14F 31.25%, #FFAA2D 69.79%, #FF3100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section_3 h3 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgb(6, 44, 71);
}


.section_4 {
    width: 80%;
    padding: 50px 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}



.section_4 div {
    background-color: rgba(44, 170, 178, 0.1);
    width: 25%;
    margin: 10px;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

.section_4 div h1 {
    text-align: center;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 800;
    color: rgb(6, 44, 71);
}

.section_4 div p {
    text-align: center;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    line-height: 20px;
    color: rgb(6, 44, 71);
}

.sec_4_sub_div {
    text-align: center;
}

.sec_4_sub_div h1 {
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    color: rgb(6, 44, 71);
}

.btn_3 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: white;
    border: solid 2px;
    cursor: pointer;
    border-image: linear-gradient(to right, rgb(112, 243, 112), rgb(255, 255, 0), red)2;
    background: -webkit-linear-gradient(0deg, rgb(112, 243, 112), rgb(255, 255, 0), red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 56px;
    width: 240px;
    left: 0px;
    top: 0px;
    padding: 16px 52px 16px 52px;

}

.section_5 {
    padding: 50px 0px;
    text-align: center;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}

.sec_5_heading {
    font-size: 60px;
    font-family: sans-serif;
    font-weight: bold;
    color: black;
    background: linear-gradient(90deg, #008993 0%, #3BC14F 31.25%, #FFAA2D 69.79%, #FF3100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.sec_5_sub_div {
    display: flex;
}


.sec_5_left {
    width: 30%;
    margin: 0px 40px;
}


.sec_5_h1 {
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: rgba(6, 44, 71, 1);
    text-align: center;
}

.sec_5_p {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: rgba(6, 44, 71, 1);
    text-align: center;
    line-height: 27px;
}


/* .img_1{
    z-index: 1;
    position: relative;
}

.img_2{
    margin-top: -40px;
    z-index: 0;
    position: relative;
} */

.section_6 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}



.sec_6_sub_div {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}


.sec_6_left {
    width: 100%;
    margin: 0px 10px;
    border: 1px solid gray;
    border-radius: 20px;

}

.sec_6_mid {
    width: 100%;
    height: 300px;
    margin: 0px 10px;
    background-color: rgb(179, 224, 89);
}

.section_6 h1 {
    font-size: 60px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: black;
    text-align: center;
    margin: 0;
    background: linear-gradient(90deg, #008993 0%, #3BC14F 31.25%, #FFAA2D 69.79%, #FF3100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.section_6 h2 {
    font-size: 32px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    color: rgb(51, 51, 51);
}



.prize_table {
    display: flex;
    flex-direction: column;
}

.prize_table li {
    list-style: none;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: rgb(6, 44, 71);
    line-height: 28px;
}

.prize_table strong {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 24px;
    display: inline-block;
}

.prize_table span {
    color: gray;
    background-color: transparent;
    width: 20px;
    height: 20px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.color {
    color: rgba(240, 90, 40, 1) !important;
}

.xtra {
    display: flex;


}

.btn_4 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: white;
    border: 1px;
    cursor: pointer;
    background: linear-gradient(92.66deg, #37B34A 4.38%, #F5AB2F 68.13%, #FF531D 100%);
    border-radius: 42px;
    padding: 16px 52px 16px 52px;
    margin-bottom: 20px;
}

.btn_4:hover {
    opacity: .7;
}

.section_7 {
    position: relative;
    width: 100%;
    padding: 50px 0px;
    background: linear-gradient(250deg,
            rgba(130, 225, 221, 0.751),
            rgba(255, 0, 0, 0) 70.71%), linear-gradient(127deg, rgba(135, 230, 146, 0.996), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(244, 149, 7, 0.991), rgba(0, 0, 255, 0) 70.71%);
}

.sec_7_sub_div {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.sec_7_left {
    width: 50%;
}

.sec_7_right {
    width: 30%;
}

.sec_7_left h1 {
    font-size: 40px;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    color: white;
    margin: 0;
}

.sec_7_left p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: white;
    margin: 0;
}

.btn_5 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #062C47;
    border: 1px;
    cursor: pointer;
    height: 56px;
    width: 240px;
    left: 0px;
    top: 0px;
    border-radius: 42px;
    padding: 16px 52px 16px 52px;
    margin-bottom: 20px;
    float: right;
}

.btn_5:hover {
    columns: #062C47;
    background-color: rgb(255, 226, 226);
}

.section_8 {
    width: 80%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0px;


}

.sec_8_sub_div {
    width: 24.5%;
    margin: 2px;
    flex: 2 2 250px;
}

.sec_8_sub_div h1 {

    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 21px;
    color: #062C47;
}

.sec_8_sub_div ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-left: 0;
}

.sec_8_sub_div a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    color: rgba(6, 44, 71, 1);
}

.sec_8_sub_div a:hover {
    font-weight: bold;
}

.img_2 {
    max-width: 100%;
}




@media only screen and (max-width: 950px) {
    .sec_6_sub_div {
        flex-wrap: wrap;
    }

    .sec_6_left {
        flex: 1 1 300px;
        justify-content: center;
        margin: 5px;
    }

    .section_8 {
        flex-wrap: wrap;
    }

    .sec_8_sub_div {
        flex: 2 2 250px;
    }

    .mobile_icon {
        display: block;
    }

    header {
        justify-content: space-between;
    }

    header img {
        padding: 0px 20px;
    }

    .ok {
        display: none;
    }

    .header_btn button {
        display: none;
    }

    .section_1 h1 {
        font-size: 38px;
    }


    .section_2 {
        width: 100%;
    }

    .section_4 {
        width: 100%;
    }

    .sec_5_left {
        flex: content;
        width: auto;
        margin: 0;
    }

    .sec_5_sub_div {
        flex-wrap: wrap;
    }

    .list {
        flex-direction: column;
        gap: 20px;
    }
}





























@media only screen and (max-width: 650px) {
    .section_2 h1 {
        font-size: 26px;
    }

    .sec_4_sub_div h1 {
        font-size: 26px;
    }

    .sec_5_heading {
        font-size: 40px;
    }

    .section_6 h1 {
        font-size: 40px;
    }

    .section_3 h2 {
        font-size: 60px;
    }

    .brand {
        display: none;
    }

    .sec_7_left {
        width: 100%;
    }

    .section_1 h1 {
        font-size: 25px;
    }

    .sec_7_sub_div {
        flex-direction: column;
    }

    .btn_5 {
        float: none;
        margin: 10px 0px;
    }

    .section_4 {
        flex-wrap: wrap;
    }

    .section_4 div {
        flex: content;
    }
}

@media only screen and (max-width: 480px) {
    .sec_5_heading {
        font-size: 40px;
    }

    .btn_1,
    .btn_2 {
        padding: 10px 40px;
        height: 46px;
    }

    .btn_3 {
        padding: 10px 40px;
    }

    .section_2 h1 {
        font-size: 20px;
    }

    .sec_2_sub_div div {
        width: 75%;
    }

    .section_4 div {
        background-color: rgba(44, 170, 178, 0.1);
        width: 75%;
        margin: 10px;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
    }

    .sec_4_sub_div h1 {
        font-size: 25px;
    }

    .btn_4 {
        font-size: 14px;
        padding: 10px 32px;
    }
}