.banner-shape-wrap img:last-child {
    display: none;
}

.banner-shape-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

    .banner-shape-wrap img.img-one {
        top: 28%;
        left: -3%;
        animation: leftToRight 5s infinite linear;
        max-width: 169px;
    }

    .banner-shape-wrap img.img-two {
        left: auto;
        right: 8%;
        top: 20%;
        max-width: 66px;
    }

    .banner-shape-wrap img.img-three {
        left: auto;
        right: -2%;
        top: auto;
        bottom: 14%;
        animation: alltuchtopdown 3s infinite linear;
        max-width: 146px;
    }

.waves {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: -1;
}


/* Animation */

.parallax > use {
    animation: move-forever 15s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -4s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -6s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -8s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0px);
    }

    50% {
        transform: rotateX(0deg) translateY(-30px);
    }

    100% {
        transform: rotateX(0deg) translateY(0px);
    }
}

@keyframes leftToRight {
    0% {
        transform: rotateX(0deg) translateX(0px);
    }

    50% {
        transform: rotateX(0deg) translateX(50px);
    }

    100% {
        transform: rotateX(0deg) translateX(0px);
    }
}
/**/
.tdimension {
    width: 300px;
    height: 300px;
    margin: 20px auto 40px auto;
    perspective: 1000px;
}

    .tdimension a {
        display: block;
        width: 100%;
        height: 100%;
        background: url("../img/logo.png");
        background-size: cover;
        transform-style: preserve-3d;
        transform: rotateX(60deg);
        transition: all 0.8s;
        background-color: #6730ca;
    }

    .tdimension:hover a {
        transform: rotateX(20deg);
    }

    .tdimension a:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40px;
        background: linear-gradient(rgb(96 72 235), rgb(21 5 112));
        transform: rotateX(90deg);
        transform-origin: bottom;
    }

.p-light p {
    color: #fff;
}

.coin-parent {
    animation: up-down 4s linear infinite;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.work-card {
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(255 251 251 / 25%);
    box-shadow: 0px 0px 10px 0px rgb(255 251 251 / 25%);
    background: transparent;
    border-top: 2px solid #fff;
    margin: 15px 0;
}

.spn-circle {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 50px;
    height: 50px;
    background: #bbab11;
    z-index: -1;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.work-card:hover .spn-circle {
    transform: scale(1000%);
}

.work-card:hover {
    transform: translateY(-20px);
}

.work-card:before, .work-card:after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
    background: -webkit-linear-gradient(#fff, transparent);
    background: -o-linear-gradient(#fff, transparent);
    background: linear-gradient(#fff, transparent);
}

.work-card:before {
    left: 0;
}

.work-card:after {
    right: 0;
}
/*.work-card:before {
    content: '';
    position: absolute;
    left: -10px;
    top: -10px;
    width: 30px;
    height: 30px;
    background: #000;
    border-radius: 50%;
    z-index: -1;
    transition: all .3s ease-in-out;
}*/
/*.work-card:hover:before{
    width:110%;
    height:110%;
    border-radius:0;
}*/
.work-card img {
    height: 80px;
    width: 80px;
    margin-bottom: 10px;
    object-fit: contain;
    object-position: left;
}

.work-card h4 {
    color: #fff;
}

.work-card p {
    margin: 0;
}


.tm-about-img-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tm-about-img {
    position: relative;
    margin-top: 40px;
}

.tm-ethereum {
    position: absolute;
    left: 42.5%;
    top: -14%;
    -webkit-animation: tm-jumping-ethu 1s linear .6s infinite alternate;
    animation: tm-jumping-ethu 1s linear .6s infinite alternate;
}

@-webkit-keyframes tm-jumping-ethu {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }

    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px)
    }
}

@keyframes tm-jumping-ethu {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }

    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px)
    }
}

.tm-ethereum2 {
    position: absolute;
    top: 17.2%;
    left: 9.5%;
    -webkit-animation: tm-jumping-ethu2 .9s linear alternate infinite;
    animation: tm-jumping-ethu2 .9s linear alternate infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.tm-ethereum3 {
    position: absolute;
    top: 17.2%;
    right: 9%;
    -webkit-animation: tm-jumping-ethu2 .9s linear alternate infinite;
    animation: tm-jumping-ethu2 .9s linear alternate infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.tm-ethereum4 {
    position: absolute;
    bottom: 28%;
    left: 46.5%;
    -webkit-animation: tm-jumping-ethu2 .9s linear alternate infinite;
    animation: tm-jumping-ethu2 .9s linear alternate infinite;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

@-webkit-keyframes tm-jumping-ethu2 {
    0% {
        -webkit-transform: translate3d(0,0,0) scale3d(1,1,1);
        transform: translate3d(0,0,0) scale3d(1,1,1);
    }

    40% {
        -webkit-transform: translate3d(0,30%,0) scale3d(.7,1.5,1);
        transform: translate3d(0,30%,0) scale3d(.7,1.5,1);
    }

    100% {
        -webkit-transform: translate3d(0,100%,0) scale3d(1.5,.7,1);
        transform: translate3d(0,100%,0) scale3d(1.5,.7,1);
    }
}

@keyframes tm-jumping-ethu2 {
    0% {
        -webkit-transform: translate3d(0,0,0) scale3d(1,1,1);
        transform: translate3d(0,0,0) scale3d(1,1,1);
    }

    40% {
        -webkit-transform: translate3d(0,30%,0) scale3d(.7,1.5,1);
        transform: translate3d(0,30%,0) scale3d(.7,1.5,1);
    }

    100% {
        -webkit-transform: translate3d(0,100%,0) scale3d(1.5,.7,1);
        transform: translate3d(0,100%,0) scale3d(1.5,.7,1);
    }
}


@-webkit-keyframes pulse {
    0% {
        background: #f44336;
    }

    25% {
        background: #e91e63;
    }

    50% {
        background: #9c2780;
    }

    75% {
        background: #673ab7;
    }

    100% {
        background: #f44336;
    }
}

@keyframes pulse {
    0% {
        background: #f44336;
    }

    25% {
        background: #e91e63;
    }

    50% {
        background: #9c2780;
    }

    75% {
        background: #673ab7;
    }

    100% {
        background: #f44336;
    }
}

.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateZ(0);
    z-index: -1;
}

    .bubbles li {
        position: absolute;
        list-style: none;
        display: block;
        background-color: rgba(255, 255, 255, 0.15);
        bottom: -100px;
        animation: circle 15s infinite;
        transition-timing-function: linear;
    }

        .bubbles li:nth-child(1) {
            width: 40px;
            height: 40px;
            left: 20%;
        }

        .bubbles li:nth-child(2) {
            width: 60px;
            height: 60px;
            left: 40%;
            animation-delay: 2s;
            animation-duration: 16s;
        }

        .bubbles li:nth-child(3) {
            width: 30px;
            height: 30px;
            left: 60%;
            animation-delay: 4s;
            animation-duration: 13s;
        }

        .bubbles li:nth-child(4) {
            width: 80px;
            height: 80px;
            left: 80%;
            animation-delay: 1s;
            animation-duration: 19s;
        }

        .bubbles li:nth-child(5) {
            width: 50px;
            height: 50px;
            left: 50%;
            animation-delay: 5s;
            animation-duration: 12s;
        }

        .bubbles li:nth-child(6) {
            width: 25px;
            height: 25px;
            left: 10%;
            animation-delay: 3s;
            animation-duration: 11s;
        }

        .bubbles li:nth-child(7) {
            width: 55px;
            height: 55px;
            left: 70%;
            animation-delay: 2.5s;
            animation-duration: 11s;
        }

        .bubbles li:nth-child(8) {
            width: 75px;
            height: 75px;
            left: 30%;
            animation-delay: 3.5s;
            animation-duration: 11s;
        }

@keyframes circle {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-1080px) rotate(800deg);
        transform: translateY(-1080px) rotate(800deg);
    }
}

.how-work {
    background-image: url('../img/why.jpg');
    background-size: cover;
    padding: 50px 0 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .how-work p, .how-work h3 {
        color: #fff;
    }

    .how-work:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000000c7;
        z-index: -1;
    }

.gaming:before {
    content: none;
}

.new-d:after {
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: -1px;
    left: 0;
    background: #15057000;
    content: '';
    clip-path: polygon(0 69%, 0% 100%, 100% 100%);
}

#ytbg {
    z-index: -1 !important;
}

.contact-form input, .contact-form textarea {
    background: #e7e7e7;
    border-radius: 10px;
    resize: none;
    padding-left: 50px;
}

.input-parent {
    position: relative;
}

    .input-parent .c-icon {
        position: absolute;
        top: 20px;
        left: 19px;
        color: #000;
    }

.social-v {
    display: flex;
    list-style: none;
    padding: 0;
}

    .social-v li {
        flex: 1 auto;
    }

        .social-v li .social-v-icon {
            height: 100px;
        }

.contact_section {
    padding: 50px 0 50px;
}

.web-points {
    padding-left: 20px;
    color: #fff;
}

.crowdfunding_section {
    padding: 0 0 50px;
}

.crowdfunding_section {
    /*background-image:url('../img/crowd.jpg');
    background-size:cover;
    background-position:center center;*/
}

    .crowdfunding_section h3, .crowdfunding_section p {
    }

.video-fluid {
    width: 100%;
}

.meta-box {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#273498), color-stop(53%, #0074c2), to(#00abe7));
    background-image: linear-gradient(180deg, #273498, #005dcf 53%, #fc4682);
    /* -webkit-transform: translate(0px, -30px) rotate(-3deg); */
    -ms-transform: translate(0px, -30px) rotate(-3deg);
    /* transform: translate(0px, -30px) rotate(-3deg); */
    clip-path: polygon( 23% 0, 26% 0, 95% 0, 98% 5%, 98% 33%, 100% 36%, 100% 97%, 81% 97%, 78% 100%, 15% 100%, 0 74%, 0 0 );
    background: #0000;
    border: 5px solid #ffc62e;
    padding: 15px;
    box-shadow: inset 0 0 40px 5px #ffc62e;
}

    .meta-box img {
        width: 100%;
    }
/**/
.steps {
    display: flex;
    align-items: center;
}

.steps-content {
    width: calc(100% - 90px);
    float: left;
    padding: 0 15px;
}

.steps-icon {
    border-radius: 50%;
    border: 1px solid #ddd;
    width: 80px;
    height: 80px;
    line-height: 60px;
    text-align: center;
    padding: 10px;
    float: left;
    background: #ffffff70;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
}

    .steps-icon img {
        width: 100%;
    }

.steps-content h4 {
    margin-top: 10px;
    font-size: 24px;
    color: #f7a714;
}

.steps {
    margin-top: 70px;
}

    .steps:first-child {
        margin-top: 100px;
    }

.steps-left {
    text-align: right;
}

.mob-img {
    width: auto !important;
    max-width: unset !important;
    height: 500px !important;
    display: block;
    margin: 0 auto;
}

.scene {
    /* position: absolute; */
    width: 305px;
    height: 305px;
    perspective: 400px;
    margin: 10% auto auto;
}

.coin {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
    animation: spin 6s 0s linear infinite;
    /* animation: spin 3s 0s cubic-bezier(1,-0.75,.27,1.55) infinite; */
}

.coin-face {
    position: absolute;
    height: 100%;
    width: 100%;
    /* transform: rotateY(180deg); */
}

.coin-number {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: block;
    box-sizing: border-box;
    /* transform: rotateY(180deg); */
}


@keyframes spin {

    0% {
        transform: rotate3d(0, 1, 0, 0);
    }

    100% {
        transform: rotate3d(0, 1, 0, 360deg);
    }
}

:root {
    --striped-border-color1: #8dc4f3;
    --striped-border-color2: #6187a7;
}

.ultimate-coin {
    position: relative;
    padding-top: 125px;
    overflow: hidden;
}

.heading {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    left: 0;
    display: block;
    padding: 8px 32px 20px 32px;
    text-align: center;
    background-color: #c48918;
    clip-path: polygon( 0 0, 0 calc(100% - 16px), calc(50% - 16px) calc(100% - 16px), 50% 100%, calc(50% + 16px) calc(100% - 16px), 100% calc(100% - 16px), 100% 0, 0 0 );
}

    .heading h2 {
        font-size: 2rem;
        color: #fff;
    }
/**/
.signup-btn {
    margin-right: 20px;
}

.refer {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: url(../img/community.svg) no-repeat;
    background-position: right;
}

.refer-ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

    .refer-ul li {
        flex: 1 auto;
    }

        .refer-ul li video {
        }

        .refer-ul li video {
            height: 70px;
        }

.community-img {
    display: none;
    text-align: right;
    margin-top: 20px;
}

    .community-img img {
        height: 300px;
    }

.create-nft-box {
    background-color: #251b43;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    padding-top: 0px;
    margin-top: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: url(../img/bg.jpg) center;
    background-size: cover;
    border: 2px solid #e1d936;
    /* backdrop-filter: blur( 100px ); */
    -webkit-backdrop-filter: blur( 20px );
}

    .create-nft-box .icon-box {
        width: 74px;
        height: 74px;
        background: -webkit-gradient(linear, left top, right top, from(#0049d3), to(#009dea));
        background: linear-gradient(to right, #b21cea, #2496ea);
        border-radius: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        top: -37px;
        padding: 15px;
    }

    .create-nft-box .content-box {
        margin-top: -10px;
    }

        .create-nft-box .content-box .box-title {
            margin-bottom: 0;
            font-size: 20px;
            color: #fff;
        }

    .create-nft-box .icon-box img {
        width: 100%;
    }

    .create-nft-box:hover .icon-box {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }

.projects {
    background: #150570;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

    .projects:before {
        content: '';
        position: absolute;
        clip-path: polygon(0 0, 100% 26%, 100% 0);
        width: 100%;
        height: 200px;
        top: -1px;
        left: 0;
        background: #ffffff;
    }

.timeline-1 h6 {
    color: var(--white);
}

.timeline-1 {
    overflow: hidden;
    position: relative;
}

    .timeline-1:before {
        content: "";
        width: 3px;
        height: 100%;
        background: #e84e66;
        position: absolute;
        top: 0;
        left: 50%;
    }

    .timeline-1 .timeline-t {
        padding-right: 30px;
        position: relative;
        margin-top: 30px;
    }

        .timeline-1 .timeline-t:first-child {
            margin-top: 0;
        }

        .timeline-1 .timeline-t:before, .timeline-1 .timeline-t:after {
            content: "";
            display: block;
            width: 100%;
            clear: both;
        }

        .timeline-1 .timeline-t:first-child:before, .timeline-1 .timeline-t:last-child:before {
            content: "";
            width: 13px;
            height: 13px;
            border-radius: 50%;
            border: 2px solid var(--iq-gray);
            background: var(--iq-primary);
            margin: 0 auto;
            position: absolute;
            top: 0;
            left: 0;
            right: -3px;
        }

        .timeline-1 .timeline-t:last-child:before {
            top: auto;
            bottom: 0;
        }

    .timeline-1 .timeline-icon {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        background: #f9b707;
        border: 2px solid #131418;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: -4px;
    }

        .timeline-1 .timeline-icon:before {
            content: "";
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #2913a7;
            margin: auto;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }

    .timeline-1 .timeline-content p {
        color: #fff
    }

    .timeline-1 .year {
        display: inline-block;
        padding: 8px 20px;
        margin: 0;
        font-size: 14px;
        color: #fff;
        background: #131418;
        text-align: center;
        position: absolute;
        top: 50%;
        right: 35%;
        transform: translateY(-50%);
    }

        .timeline-1 .year:before {
            content: "";
            border-right: 18px solid #131418;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            position: absolute;
            top: 0;
            left: -18px;
        }

    .timeline-1 .timeline-content h5 {
        margin: 0;
    }

    .timeline-1 .timeline-content {
        border-radius: 3px;
        width: 46.5%;
        padding: 30px;
        margin: 0 20px 0 0;
        background: #131418;
        position: relative;
    }

        .timeline-1 .timeline-content:after {
            content: "";
            border-left: 20px solid #131418;
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
        }

    .timeline-1 .timeline-t:nth-child(2n) {
        padding: 0 0 0 30px;
    }

        .timeline-1 .timeline-t:nth-child(2n) .year {
            right: auto;
            left: 35%;
        }

            .timeline-1 .timeline-t:nth-child(2n) .year:before {
                border: 20px solid transparent;
                border-right: none;
                border-left: 18px solid #131418;
                left: auto;
                right: -18px;
            }

        .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
            float: right;
            margin: 0 0 0 20px;
        }

            .timeline-1 .timeline-t:nth-child(2n) .timeline-content:after {
                border-left: none;
                border-right: 20px solid #131418;
                right: auto;
                left: -20px;
            }

@media only screen and (max-width:1200px) {
    .timeline-1 .year {
        right: 30%;
    }

    .timeline-1 .timeline-t:nth-child(2n) .year {
        left: 30%;
    }
}

@media only screen and (max-width:990px) {
    .timeline-1 .year {
        right: 25%;
    }

    .timeline-1 .timeline-t:nth-child(2n) .year {
        left: 25%;
    }
}

@media only screen and (max-width:767px) {
    .timeline-1:before {
        left: 10px;
    }

    .timeline-1 .timeline-t {
        padding: 0 0 0 30px;
        margin-bottom: 20px;
    }

        .timeline-1 .timeline-t:last-child {
            margin-bottom: 0;
        }

            .timeline-1 .timeline-t:first-child:before, .timeline-1 .timeline-t:last-child:before {
                display: none;
            }

    .timeline-1 .timeline-icon {
        margin: 0;
        position: absolute;
        top: 7px;
        left: 0;
    }

    .timeline-1 .year, .timeline-1 .timeline-t:nth-child(2n) .year {
        display: block;
        font-weight: bold;
        margin: 0 0 32px 30px;
        z-index: 1;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }

        .timeline-1 .timeline-t:nth-child(2n) .year:before {
            border-left: none;
            border-right: 18px solid var(--iq-dark-border);
            right: auto;
            left: -18px;
        }

    .timeline-1 .timeline-content {
        padding: 20px;
    }

    .timeline-1 .timeline-content, .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
        width: auto;
        float: none;
        margin: 0 0 0 30px;
    }

        .timeline-1 .timeline-content:after, .timeline-1 .timeline-t:nth-child(2n) .timeline-content:after {
            border: none;
            border-bottom: 20px solid var(--iq-dark-border);
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            top: -20px;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
        }
}

@media only screen and (max-width:480px) {
    .timeline-1 .year, .timeline-1 .timeline-t:nth-child(2n) .year {
        margin-left: 20px;
    }

    .timeline-1 .timeline-content, .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
        margin-left: 10px;
    }
}

@media (max-width:767px) {
    .main-banner {
        height: 100vh;
    }

    .hero-banner {
        padding-top: 140px !important;
        padding-bottom: 100px !important;
    }

    .banner-img {
        margin-top: 90px;
        width: 250px !important;
    }

    .community-img {
        display: block;
    }

    .refer {
        background: none;
        padding-bottom: 0;
    }

    .refer-ul li video {
        height: 40px;
    }

    .ott-platform {
        padding: 50px 0;
    }

    .cy_achieve_img {
        margin-bottom: 40px;
    }

    .u-swap {
        padding: 50px 0;
    }

    .contact-form {
        margin-top: 50px;
    }

    .steps-left {
        flex-flow: row-reverse;
        text-align: left;
    }

    .mob-img {
        margin: 70px auto;
    }

    .steps:first-child {
        margin-top: 0;
    }

    .tm-first-img {
        width: 100%;
    }

    .tm-ethereum2 {
        top: 3.2%;
        left: 6.5%;
    }

    .tm-ethereum3 {
        top: 1%;
        right: 6%;
    }

    .tm-ethereum4 {
        bottom: 28%;
        left: 43.5%;
    }

    .tm-ethereum {
        left: 38%;
    }

    .main-banner:after {
        bottom: -4px;
    }

    .stars-bg:after {
        bottom: -4px;
    }
}