.header__logo a {
    width: 100%;
    display: flex;
}

.header__logo img {
    height: 80px;
    float: left;
}

.header__logo a img:nth-child(2) {
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flip-card {
    perspective: 1000px;
    cursor: pointer;
    position: relative;
}

    .flip-card .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s;
        transform-style: preserve-3d;
        box-shadow: 0px 0px 10px 1px #000 0;
        border-radius: 10px;
    }

        .flip-card .flip-card-inner .flip-card-front,
        .flip-card .flip-card-inner .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            /* Safari */
            backface-visibility: hidden;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flip-card .flip-card-inner .flip-card-front {
            background: #2546C7;
        }

        .flip-card .flip-card-inner .flip-card-back {
            transform: rotateY(180deg);
            background: #2546C7;
            display: flex;
            align-items: center;
        }

            .flip-card .flip-card-inner .flip-card-back p {
                color: white;
            }

        .flip-card .flip-card-inner .page-corner {
            color: white;
            position: absolute;
            bottom: 0%;
            right: 0%;
            width: 57px;
            height: 57px;
            border-top: 57px #45969b;
            border-right: 57px solid transparent;
            border-radius: 10px 0px 0px 0px;
            background: #1e38a0;
        }

            .flip-card .flip-card-inner .page-corner i {
                top: 0;
                left: 50%;
                margin-top: 10px;
                position: absolute;
                margin-left: 10px;
                font-size: 16px;
                opacity: 0.7;
            }

        .flip-card .flip-card-inner .flip-card-front:after {
            content: "";
            position: absolute;
            bottom: 0%;
            right: 0%;
            width: 0px;
            height: 0px;
            border-bottom: 78px solid #1f2641;
            border-left: 78px solid transparent;
            margin-bottom: -10px;
            margin-right: -10px;
        }

    .flip-card.active .flip-card-inner {
        transform: rotateY(180deg);
    }

    .flip-card:hover .flip-card-front {
        background: #2546C7;
    }

h1 {
    font-size: 30px;
    font-family: 'Shrikhand', cursive;
    color: #f8f8f8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0px 0px 30px 0px;
    color: #50b6bb;
    text-align: center;
}

.steps {
    display: flex;
    max-width: 700px;
    margin: auto;
}

    .steps .steps_one,
    .steps .steps_two {
        display: grid;
        grid-template-rows: repeat(6, 2fr);
        flex: 1 0 auto;
    }

        .steps .steps_one .step,
        .steps .steps_two .step {
            grid-row: span 2;
            margin: 15px 0px;
            height: 190px;
        }

        .steps .steps_one h4,
        .steps .steps_two h4 {
            margin: 0px;
            line-height: 100%;
            font-family: 'Shrikhand', cursive;
            color: #f8f8f8;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 25px;
        }

        .steps .steps_one p,
        .steps .steps_two p {
            margin-bottom: 0;
            font-size: font-size('small');
        }

        .steps .steps_one img,
        .steps .steps_two img {
            width: auto;
            margin: auto auto 15px auto;
            max-height: 95px;
            max-width: 40%;
        }

    .steps .steps_one {
        border-right: 2px solid #ceb912;
        padding: 1em 2em 1em 0em;
    }

        .steps .steps_one .step_number {
            left: 100%;
            margin-left: 21px;
        }

    .steps .steps_two {
        padding: 1em 0em 1em 2em;
    }

        .steps .steps_two #second {
            grid-row-start: 2;
            grid-row-end: 4;
        }

        .steps .steps_two #fourth {
            grid-row-start: 4;
            grid-row-end: 6;
        }

        .steps .steps_two .step_number {
            right: 100%;
            margin-right: 21px;
        }

.step_number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    background: #50b6bb;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: #f8f8f8 7px solid;
    box-shadow: 0px 0px 1px 1px #ceb912;
}

.flip-card:hover .step_number {
    border: #50b6bb 7px solid;
    background: #f8f8f8;
}

body {
    background-color: #1f2641;
}


/* faq start */

@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");

* {
    font-family: Lato, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.faq_section_main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
}

.wrapper {
    width: 60%;
    margin: auto;
}

h1 {
    margin-bottom: 20px;
}

.faq_section {
    background-color: #fff;
    color: #1F2641;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .question::after {
        content: "\002B";
        font-size: 2.2rem;
        position: absolute;
        right: 20px;
        transition: 0.2s;
    }

    .question.active::after {
        transform: rotate(45deg);
    }

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

.question.active + .answercont {
}
.menu-btn{
    display:none;
}
@media screen and (max-width: 790px) {
    html {
        font-size: 14px;
    }

    .wrapper {
        width: 80%;
    }
}

.mobile_view {
    display: none;
}

@media screen and (max-width: 767px) {
    .menu-btn{
        display:block;
    }
    .header__nav__menu{
        display:block;
    }
    .header__nav__option {
        background: #110104;
        padding: 20px;
    }
    .header__nav__menu ul li {
        width: 100%;
        text-align: left;
        margin-bottom:20px;
    }
    select.goog-te-combo{
        width:100%;
    }
    .steps_box_new {
        display: none;
    }

    .mobile_view {
        display: block;
    }
}


/* contact us start */

.contact-area .section-title_1 {
    padding-bottom: 35px;
}

.section-title_1 span {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffc50c;
    position: relative;
}

    .section-title_1 span::before {
        position: absolute;
        content: '';
        left: -58px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 2px;
        width: 48px;
        background: #ffc50c;
    }

    .section-title_1 span::after {
        position: absolute;
        content: '';
        right: -58px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 2px;
        width: 48px;
        background: #ffc50c;
    }

.section-title_1 .title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    padding: 8px 10px 19px;
    color: #fff;
}

.contact-area .section-title_1 p {
    font-size: 18px;
    color: #ffffff;
    padding-top: 22px;
    padding-bottom: 40px;
}

.contact-area .section-title_1 ul {
    position: relative;
}

.contact-area .contact-box {
    margin: 0 10px;
}

.contact-area .section-title_1 ul li a img {
    padding-right: 5px;
}

.contact-area .contact-box .input-box {
    margin-left: -10px;
    margin-right: -10px;
}

    .contact-area .contact-box .input-box input {
        width: 100%;
        line-height: 55px;
        padding-left: 30px;
        background-color: rgba(8, 8, 8, 0.6);
        border-radius: 4px;
        border: 0;
        color: #ada2c3;
    }

.contact-area .contact-box .input-box {
    margin-left: -10px;
    margin-right: -10px;
}

.mt-10 {
    margin-top: 10px;
}

.contact-area .contact-box .input-box textarea {
    width: 100%;
    height: 150px;
    resize: none;
    padding-top: 15px;
    padding-left: 30px;
    background-color: rgba(8, 8, 8, 0.6);
    border-radius: 4px;
    border: 0;
    color: #ada2c3;
}

.contact-area .contact-box .input-box button {
    margin-top: 20px;
    -webkit-box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 10%), inset 0px -1px 0px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 10%), inset 0px -1px 0px 0px rgb(0 0 0 / 20%);
    border-bottom: 0;
    border-radius: 4px;
    padding: 0 56px;
    line-height: 55px;
}

.contact-area .section-title_1 ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.contact-area .section-title_1 ul li {
    display: inline-block;
    margin-right: 5px;
}

    .contact-area .section-title_1 ul li img {
        width: 40px;
    }

.main-btn {
    color: #ffffff;
    background: #00bfe7;
    font-size: 15px;
    font-weight: 700;
    font-family: "Play", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    padding: 14px 32px 12px;
}


/* token statrt */

.tokenomics {
    padding-top: 100px;
    padding-bottom: 100px;
}

    .tokenomics img {
        padding-bottom: 25px;
    }

.chart_bg {
    background: url("../img/new/chart-bg.html");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tokenomics_title li {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    font: 16px;
    list-style: none;
    font-weight: 600;
    border-radius: 15px;
    color: #fff;
}

.tokenomics_title .red {
    background-color: red;
}

.tokenomics_title .blue {
    background-color: blue;
}

.tokenomics_title .green {
    background-color: green;
}

.tokenomics_title .orange {
    background-color: orange;
}

.tokenomics_title .skyblue {
    background-color: skyblue;
}

.main_header {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 70px;
}

.our-video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.main_header_para {
    padding-top: 30%;
}

.blur_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.main_header_para h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 22px;
}


/* user start */


/* .services{
    background: url("../img/new/abstract_background_13.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

} */

.glass_1 {
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px;
    padding-bottom: 60px;
}

.glass {
    background: rgba(255, 255, 255, .1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px;
}

.services__item {
    color: #555;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 25px 20px;
    margin: 0 -5px;
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.services__item {
    background-color: transparent;
    border: 2px solid #16C5E9;
    border-radius: 20px 20px 20px 20px;
    box-shadow: none;
    left: 0;
    top: 30%;
    right: 0;
    bottom: 0;
}


    /* border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 10px;
    background: linear-gradient(90deg, rgba(31,109,251,1) 0%, rgba(0,212,255,1) 100%);
    box-shadow: rgb(50 50 93 / 25%) 0px 50px 100px -20px, rgb(0 0 0 / 30%) 0px 30px 60px -30px, rgb(10 37 64 / 35%) 0px -2px 6px 0px inset; */

    .services__item:before,
    .services__item:after {
        content: '';
        border-radius: 20px;
        position: absolute;
        left: 15px;
        top: 0;
        right: 15px;
        bottom: 10px;
        z-index: -1;
    }

    .services__item p {
        font-size: 18px;
        line-height: 23px;
        margin: 0 10px;
        color: #00bfe7;
        font-size: 20px;
    }


/* user end */


/* joining start */

.joining {
    background: url("../img/new/joining.png");
    padding: 40px 0;
}

    .joining h4 {
        color: #fff;
    }

    .joining table {
        background: #3e2441;
    }

.table td,
.table th {
    color: #fff;
    border: 0;
}

.table th {
    border-bottom: 1px solid #34167e;
    background: linear-gradient(to top, #6d49c5, #34167e);
}

.joining table {
}

.section-heading .subtitle {
    color: #40c4ff;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.invest input {
    border: 1px solid #ccc;
}

input,
.form-control {
    border: var(--border-lighter);
    border-radius: 7px;
    background-color: #fff;
    color: var(--color-text-dark);
    padding: 15px 20px;
    width: 100%;
}

.matic-ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

    .matic-ul li {
        flex: 1 1 auto;
        margin: 15px 0px 15px 0;
    }

        .matic-ul li a {
            /* padding: 15px 20px;
    background: #09577a;
    display: block;
    cursor: pointer;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    line-height: 1.5;
    transition: all .3s ease-in-out; */
            background: linear-gradient(to top, #6d49c5, #34167e);
            border-radius: 4px;
            border: 0;
            box-shadow: rgba(1, 60, 136, .5) 0 -1px 3px 0 inset, rgba(0, 44, 97, .1) 0 3px 6px 0;
            box-sizing: border-box;
            color: #fff !important;
            cursor: pointer;
            display: inherit;
            font-family: "Space Grotesk", -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            font-size: 18px;
            font-weight: 700;
            line-height: 24px;
            margin: 0;
            min-height: 56px;
            min-width: 120px;
            padding: 16px 20px;
            position: relative;
            text-align: center;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            vertical-align: baseline;
            transition: all .2s cubic-bezier(.22, .61, .36, 1);
        }

            .matic-ul li a:hover {
                background-color: #065dd8;
                transform: translateY(-2px);
            }

@media (min-width: 768px) {
    .matic-ul li a {
        padding: 16px 44px;
        min-width: 150px;
    }
}

.get-started-btn {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    display: block;
    cursor: pointer;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
    line-height: 1.5;
    width: 270px;
    margin: auto;
    transition: all .3s ease-in-out;
}

.section-heading {
    margin-bottom: 50px;
}


/* joining end */


/* income start */

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.joining .counterup-progress {
    padding: 40px 20px 60px;
}


/* income end */


/* withdrawal start */


/* .section{
background: url("../img/new/abstract_background_13.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
} */

.width_main {
    position: relative;
    z-index: 1;
    padding: 40px;
    /* padding-top: 200px; */
    /* height: 800px; */
    margin-bottom: 30px;
    background: #c9973f;
    border-radius: 20px;
    border: 10px solid ;
}

.widthdrawal_bg {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 110%;
    right: 0;
    margin: auto;
    z-index: -1;
    display: none;
}


/* .Withdrawal{
    background: url("../img/new/widthdrawal_background.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
} */

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

#withdrawal input {
    border: 1px solid #ccc;
}

input,
.form-control {
    border: var(--border-lighter);
    border-radius: 7px;
    padding: 15px 20px;
    width: 100%;
}

font-18 {
    font-size: 18px;
}


/* withdrawal end */

@media screen and (max-width: 991px) {
    .right,
    .left {
        display: none;
    }

    .main_header_para {
        padding-top: 40%;
    }

    .matic-ul {
        display: block;
    }

        .matic-ul li {
            margin-bottom: 10px;
        }

    .header__logo {
        padding: 5px 0;
        text-align: center;
    }

        .header__logo a {
            width: 50%;
        }
}

.contact-area {
    background-image: url("../img/new/pattern.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* example start */

.level-items {
    position: relative;
}

.level-item {
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    filter: none;
}

.level-item_max {
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
}

.level-item:nth-child(3) .level-item__title {
    margin-bottom: 70px;
}

.level-item:nth-child(2) .bordered__icon--left {
    top: 50%;
}

.level-item:nth-child(2) .bordered__icon--right {
    bottom: 0;
    top: 25%;
}

.level-item:nth-child(3) .bordered__icon--left {
    top: unset;
    bottom: 25%;
}

.level-item:nth-child(3) .bordered__icon--right {
    bottom: 15%;
}

.level-item:after {
    content: '';
    position: absolute;
    max-width: 170px;
    width: 100%;
    height: 4px;
    margin: auto;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #ff3b05, #ff9500);
    box-shadow: 0px 0px 3px rgb(0 0 0 / 60%), 0px 0px 32px #ffaf00, 0px 0px 11px #ffaf00;
    border-radius: 10px;
}

.level-item__title {
    padding: 14px 0 10px 30px;
    margin-bottom: 50px;
}

.level-item__img {
    max-width: 95px;
    margin-bottom: 35px;
}

.level-item__digit {
    font-size: 18px;
    line-height: 1;
    word-break: break-all;
    padding-left: 20px;
    padding-right: 20px;
}

    .level-item__digit span {
        font-size: 50px;
        line-height: 1;
    }

title {
    font-family: 'Grand', sans-serif;
}

.level-item__subtitle {
    margin-bottom: 15px;
}

.level-item__info {
    max-width: 300px;
    font-size: 15px;
    line-height: 30px;
    margin: auto;
}

    .level-item__info ul {
        list-style: square;
        padding-left: 10px;
    }

    .level-item__info li::marker {
        color: #80b976;
    }

.level .bordered--double_angled:before {
    height: 56px;
    border-width: 1px 2px 0;
    transform: skew(51deg);
}

.level .bordered--double_angled:after {
    left: 35px;
}

.level .bordered--double_angled .bordered__border--right {
    height: calc(100% - 57px);
}

.level .bordered__icon--left {
    top: 25%;
    left: -2.5%;
}

.level .bordered__icon--right {
    right: -2.5%;
}

.bordered__inner {
    border-image: linear-gradient(to right, #00bcb0, #f7d542);
    border-image-slice: 1;
    color: #fff;
    font-size: 20px;
    line-height: 35px;
    overflow: visible;
    position: relative;
}

.bordered__icon {
    max-width: 20px;
    position: absolute;
}

.bordered__icon--left {
    left: -1%;
    top: 10%;
}

.bordered__icon {
    max-width: 20px;
    position: absolute;
}

.bordered__icon--right {
    right: -1%;
    bottom: 25%;
}

.bordered--single_angled:after,
.bordered--double_angled:after {
    height: 35px;
    bottom: 0;
    left: 35px;
    border: 1px solid;
    border-image: linear-gradient(to right, #00bcb0, #f7d542);
    border-image-slice: 1;
    border-width: 0 0 1px 2px;
    transform: skew(45deg);
    transform-origin: left bottom;
    /* content: ''; */
    position: absolute;
    width: 100%;
}

.bordered--double_angled:after {
    left: 35px;
}

.bordered--double_angled:before {
    height: 35px;
    top: 0;
    right: 0;
    border: 1px solid;
    border-image: linear-gradient(to right, #00bcb0, #f7d542);
    border-image-slice: 1;
    border-width: 1px 1.8px 0 0;
    transform: skew(45deg);
    transform-origin: left bottom;
    /* content: ''; */
    position: absolute;
    width: 100%;
}
/*.bordered--double_angled:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    background-color: skyblue;
    top: 0px;
    right: 0px;
    border-bottom: 20px solid #006767;
    border-left: 20px solid #006767;
    border-right: 20px solid yellow;
    border-top: 20px solid yellow;
    position: absolute;
    filter: drop-shadow(-5px 5px 3px rgba(0, 0, 0, 0.5));
}*/

.bordered--double_angled .bordered__border--left {
    left: 0;
    top: 0;
    border-left: 1px solid;
}

.bordered--double_angled .bordered__border {
    position: absolute;
    height: calc(100% - 35px);
    border-image: linear-gradient(to right, #00bcb0, #f7d542);
    border-image-slice: 1;
}

.bordered--double_angled .bordered__border--right {
    bottom: 0;
    right: 0;
    border-right: 1px solid;
}

.bordered--double_angled .bordered__border {
    position: absolute;
    height: calc(100% - 35px);
    border-image: linear-gradient(to right, #00bcb0, #f7d542);
    border-image-slice: 1;
    display: none;
}

.level-item__title {
    padding: 14px 0 10px 30px;
}

.title--grad {
    background: -webkit-linear-gradient(#ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    line-height: 35px;
    font-weight: bold;
}

.refreral_section {
    background: url("../img/new/referal.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-title {
    position: relative;
}

    .section-title h2:after {
        content: '';
        position: absolute;
        max-width: 170px;
        width: 100px;
        height: 4px;
        margin: auto;
        left: 0;
        right: 0;
        background: linear-gradient(to right, #ff3b05, #ff9500);
        box-shadow: 0px 0px 3px rgb(110 22 22 / 60%), 0px 0px 32px #601a05, 0px 0px 11px #511502;
        bottom: 15px;
        border-radius: 20px;
    }

    .section-title h2.left-left:after {
        right: auto;
    }

.faq_design {
    padding-left: 15%;
}


/* example :end */

@media screen and (max-width: 767px) {
    .Withdrawal {
        background: none;
    }
}

@media screen and (max-width: 450px) {
    .width_main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group p {
        font-size: 14px;
    }
}

@media screen and (max-width: 450px) {
    input,
    .form-control {
        padding: 10px 5px;
    }

    .width_main .callto__text a {
        padding: 5px;
    }

    input,
    .form-control {
        padding: 5px 5px;
    }

    .width_main {
        padding-top: 270px;
    }
}

@media screen and (max-width: 420px) {
    .width_main .callto__text a {
        padding: 5px;
    }

    input,
    .form-control {
        padding: 5px 5px;
    }

    .width_main {
        padding-top: 270px;
    }
}

.img-p {
    position: relative;
}

.right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 37%;
    transform: translate(20%, 10%);
}

.left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 37%;
    transform: translate(-20%, 10%);
}

.skiptranslate {
    box-shadow: none !important;
}

.skiptranslate {
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    box-sizing: border-box;
}

.goog-te-gadget {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    height: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: -12px;
}

select.goog-te-combo {
    padding: 7px 15px;
    border-radius: 40px;
    border: 2px solid #5b5b5b;
    background: #2b2e33;
    color: #ffff;
}

.goog-te-banner-frame {
    display: none;
}

body {
    top: 0 !important;
    /* background: url(../img/bg.jpg) !important; */
    background-color: #0d023c;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

html {
    scroll-behavior: smooth;
}

section {
    overflow: hidden;
}

.c-btn {
    background: linear-gradient(to top, #6d49c5, #34167e);
    padding: 5px 10px !important;
    border: 0;
}

    .c-btn:hover, .c-btn:active {
        background: linear-gradient(to right, #ff3b05, #ff9500);
        outline: 0;
        border-color: transparent !important;
        color: #fff;
    }

    .c-btn:focus, .c-btn:active {
        box-shadow: none !important;
        background: linear-gradient(to right, #ff3b05, #ff9500) !important;
    }

.div-collapse {
    /*display: none;*/
}

.div-collapse-btn {
    position: absolute;
    right: 0;
    top: 10px;
    color: #fff;
    background: #d5a845;
    display: inline-block;
    padding: 0px 5px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    display: none;
}

    .div-collapse-btn.active {
        transform: rotate(180deg);
    }



.header__nav__menu ul li a.c-btn:after {
    content: none;
}

span.crl-aft {
    display: inline-block;
    padding-left: 30px;
    position: relative;
}

    span.crl-aft:after {
        content: '';
    }

    span.crl-aft:before {
        content: '';
        width: 20px;
        height: 20px;
        background: #1f2641;
        position: absolute;
        top: -22px;
        left: 0;
        border-radius: 100px;
        /* mix-blend-mode: multiply; */
        display: none;
    }

    span.crl-aft:after {
        content: '';
        width: 20px;
        height: 20px;
        background: #1f2641;
        position: absolute;
        bottom: -22px;
        left: 0;
        border-radius: 100px;
        /* mix-blend-mode: multiply; */
        display: none;
    }

@media (min-width: 977px) {
    #mobile-menu-wrap {
        display: none !important;
    }
}

.earthanimate {
    animation: earthAnimation 20s ease-out forwards 3s;
}

.rocketanimate {
    animation: rocketAnimation 30s alternate ease-in-out infinite;
}

.hoverup {
    transition: all 1s ease;
}

    .hoverup:hover {
        transform: translateY(-50px);
    }

@keyframes earthAnimation {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(360deg) scale(2);
    }
}

@keyframes rocketAnimation {
    0% {
        transform: translateY(200px) scale(1.3);
    }

    100% {
        transform: translateY(-200px) scale(0.5);
    }
}

.faq-telegram {
    color: #d9bc1a;
    font-weight: bold;
}

    .faq-telegram:hover {
        color: #d9bc1a;
        font-weight: bold;
    }

.upgrade-ul li {
    float: left;
    width: 20%;
    padding: 5px;
    margin: 0;
}

.footer {
    margin-top: 50px;
}

@media (max-width: 574px) {
    .contact-area .section-title_1 ul li {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .slicknav_nav ul {
        margin: 0;
    }

    .slicknav_nav li {
        margin: 10px 0;
    }

    .upgrade-ul li {
        width: 100%;
        float: none;
    }

    #invest {
        padding: 10px;
    }
}


.bordered__inner {
    background: linear-gradient(to right, #cb3c5a, #6a82fb);
    clip-path: polygon(0 6%, 8% 15%, 3% 0, 96% 0, 90% 13%, 100% 6%, 100% 91%, 91% 86%, 96% 100%, 5% 100%, 8% 85%, 0 90%);
    /* box-shadow: inset 0 0px 10px 10px #d5a845; */
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #1f2641;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9;
    background: url(../img/bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.slicknav_menu {
    padding: 0;
}

.slicknav_btn {
    position: absolute;
    top: 30px;
    right: 10px;
}

.menu-btn {
    color: #fff;
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 40px;
}
