*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 400;
}

body {
    position: relative;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    display: none;
}

body::-webkit-scrollbar-thumb {
    background: #335AFB;
}

a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

button {
    outline: none;
    border: none;
    background-color: unset;
}

input {
    outline: none;
    border: none;
}

img {
    max-width: 100%;
}

span {
    font: inherit;
    color: inherit;
}

main {
    overflow: hidden;
}

/* Reuseble styles */
.container {
    max-width: 1180px;
    margin: 0 auto;
}

.yellow-highlighted {
    color: #E6A01E;
}

.bold {
    font-weight: 700;
}

.btn {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50px;
    background: #E6A01E;
    box-shadow: 0px 0px 27px 0px rgba(224, 146, 47, 0.63);
    color: #FFF;
    text-align: center;
    font-family: Nunito Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.btn:hover {
    box-shadow: unset;
    color: rgba(255, 255, 255, 0.8);
}

/* protect */
.protect {
    width: 100%;
    position: absolute;
    top: 5px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.protect__item {
    font-weight: 300;
    font-size: 7px;
    line-height: 10px;
    color: #FFFFFF;
    opacity: 0.5;
}

/* act-now section */
.act-now {
    background: #335AFB;
    box-shadow: 0px 0px 27px #335AFB;
    padding: 15px 0 5px;
}

.act-now__text {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
}

.act-now__text #timer {
    display: contents;
    width: 60px;
}

/* firstScreen section */
.firstScreen {
    background: url(../images/bg1-min.jpg), #0D173F;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 30px 0 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 50px;
}

.header__logo {
    max-width: 188px;
    width: 100%;
}

.header__data {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.header__info {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.header__info-item {
    color: #FFF;
    font-size: 20px;
    line-height: normal;
}

.header__places {
    max-width: 210px;
    color: #E6A01E;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.firstScreen__title {
    max-width: 1048px;
    color: #FFFFFF;
    text-align: center;
    font-family: Orbitron;
    font-size: 50px;
    font-weight: 700;
    line-height: normal;

    margin: 0 auto 20px;
}

.firstScreen__subtitle {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    line-height: normal;

    margin-bottom: 40px;
}

.fistScreen__container {
    position: relative;
    box-shadow: 0px 0px 27px 0px #335AFB;
}

.fistScreen__attention {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    background: #335AFB;
    padding: 7px 0px;
}

.fistScreen__attention-icon {
    width: 30px;
    height: 30px;
}

.fistScreen__wrapper {
    display: flex;

}

.fistScreen__attention-text {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.firstScreen__video iframe {
    border: 3px solid #335AFB;
}

.fistScreen__form {
    max-width: 317px;
    width: 100%;
    flex-shrink: 0;
}

.fistScreen__bitcoin {
    position: absolute;
    top: -94px;
    left: -97px;
    width: 160px;
    height: 160px;
}

.fistScreen__etherium {
    position: absolute;
    bottom: -72px;
    right: -120px;
    width: 160px;
    height: 160px;
}

/* master-crypto section */
.master-crypto {
    background: url(../images/bg2-min.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 200px 0 150px;
}

.master-crypto__container {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
}

.master-crypto__left {
    max-width: 460px;
}

.master-crypto__title {
    color: #FFF;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 700;
    line-height: 115%;
    text-transform: uppercase;

    margin-bottom: 30px;
}

.master-crypto__button {
    max-width: 320px;
}

.master-crypto__button-mob {
    display: none;
}

.master-crypto__right {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.master-crypto__description {
    color: #FFF;
    font-size: 22px;
    line-height: normal;
}

/* calculator section */
.calculator {
    background: #0D173F;
    padding: 50px 0 100px;
}

.calculator__container {
    position: relative;
    border-radius: 20px;
    background: #335AFB;
    padding: 40px;
}

.calculator__title {
    color: #FFFFFF;
    text-align: center;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 700;
    line-height: 115%;
    text-transform: uppercase;

    margin-bottom: 40px;
}

.calculator__wrapper {
    display: flex;
    align-items: flex-end;
    column-gap: 35px;
}

.calculator__left {
    width: 100%;
}

.calculator__output {
    display: flex;
    align-items: flex-end;
    column-gap: 40px;

    margin-bottom: 17px;
}

.calculator__output:last-child {
    margin-bottom: 0;
}

.calculator__output-items {
    max-width: 180px;
    width: 100%;
    flex-shrink: 0;
}

.calculator__output-title {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
    font-size: 18px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 15px;
}

.calculator__output-subtitle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    border: 4px solid #FFF;
    background: #E6A01E;
    padding: 9px 0 6px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.calculator__input {
    width: 100%;
}

.calculator__input .irs-grid-pol {
    display: none;
}

.calculator__input .irs--round .irs-line {
    height: 8px !important;
    border-radius: 20px !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.20) !important;
}

.calculator__input .irs--round .irs-bar {
    height: 8px !important;
    border-radius: 20px !important;
    background-color: #E6A01E !important;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.20) !important;
}

.calculator__input .irs--round .irs-handle {
    width: 24px !important;
    height: 24px !important;
    border: 6px solid #E6A01E;
    cursor: pointer;
}

.calculator__input .irs--round .irs-grid-text {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    bottom: -5px;
}

.calculator__right {
    max-width: 340px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 4px solid #FFF;
    background: #5173FC;
    padding: 42px 10px 40px;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 10px;
}

.calculator__litecoin {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 140px;
    height: 140px;
}

.calculator__etherium {
    position: absolute;
    bottom: -80px;
    left: -90px;
    width: 160px;
    height: 160px;
}

/* reviews section */
.reviews {
    background: url(../images/bg3-min.png), radial-gradient(41.25% 43.11% at 50% 48.25%, rgba(13, 23, 63, 0) 0%, rgba(13, 23, 63, 0.26) 42.71%, #0D173F 100%),
        linear-gradient(0deg, #0D173F, #0D173F);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0 200px;
}

.reviews .container {
    position: relative;
}

.reviews__title {
    max-width: 925px;
    color: #FFF;
    text-align: center;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 700;
    line-height: 115%;
    text-transform: uppercase;

    margin: 0 auto 50px;
}

.reviews__slider-wrapper {
    align-items: stretch;
}

.reviews__item {
    transition: all 0.3s ease-in-out;
    max-width: 788px;
    width: 100%;
    height: unset !important;
    border-radius: 20px;
    opacity: 0.4;
    background: #0D173F;
    padding: 10px;
}

.reviews__item.swiper-slide-active {
    opacity: 1;
}

.reviews__item-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    border: 1px solid #335AFB;
    background: #0D173F;
    padding: 25px 40px;
}

.reviews__item-quote {
    width: 55px;
    height: 80px;

    margin-bottom: 10px;
}

.reviews__item-description {
    color: #FFF;
    font-size: 18px;
    line-height: normal;

    margin-bottom: auto;
}

.reviews__item-user {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 20px;

    margin-top: 30px;
}

.reviews__item-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.reviews__item-name {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 7px;
}

.reviews__item-info {
    color: #FFF;
    font-size: 18px;
    line-height: normal;
}

.reviews__slider-navigation {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;

    margin-top: 50px;
}

.reviews__slider-pagination {
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: relative !important;
    bottom: unset !important;
    width: fit-content !important;
}

.reviews__slider-prev,
.reviews__slider-next {
    cursor: pointer;
}

.reviews__slider-next {
    transform: rotate(180deg);
}

.reviews__slider-pagination .swiper-pagination-bullet {
    transition: all 0.3s ease-in-out;
    width: 16px !important;
    height: 16px !important;
    background: #FFFFFF;
    opacity: 0.5;
    border-radius: 50%;
    margin: 0 !important;
}

.reviews__slider-pagination .swiper-pagination-bullet-active {
    width: 24px !important;
    height: 24px !important;
    opacity: 1;
}

.reviews__monero {
    position: absolute;
    top: 80px;
    right: -177px;
    width: 63px;
    height: 63px;
}

/* trading-with section */
.trading-with {
    position: relative;
    background: #0D173F;
    padding: 0 0 100px;
}

.trading-with .container {
    position: relative;
    z-index: 3;
}

.trading-with__title {
    color: #FFF;
    text-align: center;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 700;
    line-height: 115%;
    text-transform: uppercase;

    margin-bottom: 24px;
}

.trading-with__subtitle {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    line-height: normal;

    margin-bottom: 50px;
}

.trading-with__container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #335AFB;
    background: #0D173F;

    margin-bottom: 50px;
}

.trading-with__item {
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}

.trading-with__item:nth-child(1) .trading-with__item-title,
.trading-with__item:nth-child(2) .trading-with__item-title {
    min-height: 75px;
}

.trading-with__item:nth-child(3) .trading-with__item-title,
.trading-with__item:nth-child(4) .trading-with__item-title {
    min-height: 50px;
}

.trading-with__item-icon {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.trading-with__item-title {
    color: #E6A01E;
    font-family: Orbitron;
    font-size: 22px;
    font-weight: 800;
    line-height: 115%;

    margin-bottom: 20px;
}

.trading-with__item-line {
    max-width: 140px;
    padding-top: 4px;
    border-top: 1px solid #335AFB;
    border-bottom: 1px solid #335AFB;

    margin-bottom: 30px;
}

.trading-with__item-description {
    color: #FFF;
    font-size: 16px;
    line-height: normal;
}

.trading-with__button {
    max-width: 320px;

    margin: 0 auto;
}

.trading-with__bitcoin {
    position: absolute;
    top: -64px;
    left: -55px;
    width: 95px;
    height: 95px;
}

.trading-with__litecoin {
    position: absolute;
    top: calc(50% - (160px / 2));
    left: calc(100% + 60px);
    width: 160px;
    height: 160px;
}

.trading-with__background {
    max-width: unset;
    position: absolute;
    z-index: 2;
    bottom: -7px;
    left: -523px;
    width: 1600px;
    height: 800px;
}

/* steps section */
.steps {
    position: relative;
    background: url(../images/bg5-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.steps .container {
    position: relative;
}

.steps__title {
    color: #FFFFFF;
    text-align: center;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    margin-bottom: 50px;
}

.steps__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    column-gap: 95px;
}

.steps__item {
    max-width: 330px;
    width: 100%;
    cursor: pointer;
}

.steps__item-content {
    transition: all 0.3s ease-in-out;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps__item:nth-child(1) .steps__item-content, .steps__item:nth-child(2) .steps__item-content {
    margin-top: 20px;
} 

.steps__item.active .steps__item-content {
    opacity: 1;
}

.steps__line {
    position: absolute;
    top: 62px;
    left: 0;
}

.steps__item-top {
    margin-bottom: 50px;
}

.steps__item-number {
    transition: all 0.3s ease-in-out;
    color: #335AFB;
    text-align: center;
    font-family: Orbitron;
    font-size: 28px;
    line-height: normal;

    margin-bottom: 21px;
}

.steps__item.active .steps__item-number {
    color: #E6A01E;
}

.steps__item-dot {
    position: relative;
    z-index: 2;
}

.steps__item-dot-item {
    transition: all 0.3s ease-in-out;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #335AFB;

    margin: 0 auto;
}

.steps__item.active .steps__item-dot-item {
    background: #E6A01E;
}

.steps__dots-line {
    display: none;
    position: absolute;
    z-index: -1;
    top: calc(50% - (2px / 2));
    left: 0;
}

.steps__item-illustration {
    margin-bottom: 30px;
}

.steps__item-title {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 115%;
    text-transform: uppercase;

    margin-bottom: 15px;
}

.steps__item-description {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    line-height: normal;
}

.steps__monero {
    position: absolute;
    top: -31px;
    left: -40px;
    width: 63px;
    height: 63px;
}

.steps__etherium {
    position: absolute;
    bottom: 6px;
    left: 140px;
}

/* faq section */
.faq {

    position: relative;
    padding: 100px 0;
    background: #0D173F;
}

.faq .container {
    position: relative;
}

.faq__title {
    z-index: 2;
    color: #FFFFFF;
    text-align: center;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;

    margin-bottom: 50px;
}

.faq__container {
    position: relative;
    z-index: 2;
}

.faq__item {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: flex-start;
    column-gap: 52px;
    padding: 52px 60px;
    background: #152255;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__item:last-child {
    border-bottom: 0;
    border-radius: 0px 0px 20px 20px;
}

.faq__item.active {
    background: #335AFB;
}

.faq__item:first-child {
    border-radius: 20px 20px 0px 0px;
}

.faq__item-number {
    color: #E6A01E;
    font-family: Orbitron;
    font-size: 44px;
    font-weight: 700;
    line-height: 115%;
}

.faq__item-content {
    width: 100%;
}

.faq__item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
}

.faq__item-title {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 115%;
}

.faq__item-description {
    display: none;
    color: #FFF;
    font-size: 18px;
    line-height: normal;
    padding-top: 24px;
}

.faq__item-close {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.faq__item-close-icon {
    transition: all 0.3s ease-in-out;
}

.faq__item .faq__item-close-icon {
    transform: rotate(45deg);
}

.faq__item.active .faq__item-close-icon {
    transform: rotate(0deg);
}

.faq__background {
    max-width: unset;
    position: absolute;
    bottom: 11px;
    right: -917px;
    width: 1600px;
    height: 800px;
}

.faq__monero {
    position: absolute;
    top: 138px;
    left: calc(100% + 78px);
    width: 90px;
    height: 90px;
}

.faq__bitcoin {
    position: absolute;
    z-index: 3;
    bottom: -78px;
    left: -85px;
    width: 135px;
    height: 135px;
}

/* opportunity section */
.opportunity {
    background: #0D173F;
    padding: 100px 0;
}

.opportunity__background {
    background: url(../images/bg7-min.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
}

.opportunity__container {
    display: flex;
    align-items: center;
    column-gap: 51px;
}

.opportunity__title {
    color: #E6A01E;
    font-family: Orbitron;
    font-size: 50px;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.opportunity__subtitle {
    color: #FFF;
    font-family: Orbitron;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;

    margin-bottom: 30px;
}

.opportunity__description {
    color: #FFF;
    font-size: 22px;
    line-height: normal;
}

.opportunity__arrow {
    animation: bounceRight 1.5s infinite;
}

.opportunity__right {
    max-width: 317px;
    flex-shrink: 0;
    box-shadow: 0px 0px 27px 0px #335AFB;
}

/* footer */
.footer {
    background: #0D173F;
    padding: 100px 0 150px;
}

.foooter__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    padding-bottom: 30px;

    margin-bottom: 30px;
}

.footer__logo {
    max-width: 188px;
    width: 100%;
}

.footer__list {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.footer__list-item {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    opacity: 0.5;
}

.footer__disclaimer {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: normal;
}

@keyframes bounceRight {
    from {
        transform: translateX(-10px);
    }

    to {
        transform: translateX(10px);
        opacity: 0;
    }
}

@-webkit-keyframes bounceRight {
    from {
        -webkit-transform: translateX(-10px);
    }

    to {
        -webkit-transform: translateX(10px);
    }
}

@-moz-keyframes bounceRight {
    from {
        -moz-transform: translateX(-10px);
    }

    to {
        -moz-transform: translateX(10px);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 19px;
    }

    .act-now__text {
        font-size: 18px;
    }

    .header__container {
        flex-direction: column;
        row-gap: 30px;

        margin-bottom: 40px;
    }

    .header__info-item {
        font-size: 18px;
    }

    .header__places {
        font-size: 18px;
    }

    .firstScreen {
        background-size: auto;
    }

    .firstScreen__title {
        font-size: 48px;
    }

    .firstScreen__subtitle {
        font-size: 20px;
    }

    .fistScreen__container {
        box-shadow: unset;
    }

    .fistScreen__attention {
        box-shadow: 0px 0px 27px 0px #335AFB;
        padding: 7px 20px;
    }

    .fistScreen__attention-text {
        font-size: 18px;
    }

    .fistScreen__wrapper {
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }

    .firstScreen__video {
        width: 100%;
        box-shadow: 0px 0px 27px 0px #335AFB;
    }

    .fistScreen__form {
        box-shadow: 0px 0px 27px 0px #335AFB;
    }

    .fistScreen__bitcoin {
        top: unset;
        bottom: 348px;
        left: 14px;
    }

    .fistScreen__etherium {
        bottom: -69px;
        right: -81px;
    }

    .master-crypto {
        padding: 120px 0 60px;
    }

    .master-crypto__left {
        max-width: 360px;
        flex-shrink: 0;
    }

    .master-crypto__title {
        font-size: 42px;
    }

    .master-crypto__description {
        font-size: 20px;
    }

    .calculator {
        padding: 60px 0 60px;
    }

    .calculator__container {
        padding: 40px 20px;
    }

    .calculator__title {
        font-size: 42px;
    }

    .calculator__litecoin {
        top: -84px;
        right: -71px;
    }

    .calculator__etherium {
        bottom: -79px;
        left: -59px;
    }

    .calculator__wrapper {
        flex-direction: column;
        align-items: center;
        row-gap: 50px;
    }

    .calculator__output {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .reviews {
        background-size: cover;
        padding: 60px 0 120px;
    }

    .reviews__title {
        font-size: 42px;
    }

    .reviews__monero {
        top: 116px;
        right: -19px;
    }

    .trading-with {
        padding: 0;
    }

    .trading-with__title {
        font-size: 42px;

        margin-bottom: 20px;
    }

    .trading-with__subtitle {
        font-size: 20px;

        margin-bottom: 40px;
    }

    .trading-with__container {
        grid-template-columns: repeat(1, 1fr);
        padding: 40px 20px;

        margin-bottom: 40px;
    }

    .trading-with__item:nth-child(1) .trading-with__item-title,
    .trading-with__item:nth-child(2) .trading-with__item-title {
        min-height: unset;
    }

    .trading-with__item:nth-child(3) .trading-with__item-title,
    .trading-with__item:nth-child(4) .trading-with__item-title {
        min-height: unset;
    }

    .trading-with__item-title {
        font-size: 20px;

        margin-bottom: 15px;
    }

    .trading-with__item-line {
        margin-bottom: 20px;
    }

    .trading-with__bitcoin {
        top: unset;
        bottom: calc(100% + 47px);
        left: 144px;
    }

    .trading-with__litecoin {
        top: -68px;
        left: unset;
        right: -76px;
    }

    .trading-with__background {
        bottom: -244px;
        right: -960px;
    }

    .steps {
        background: url(../images/bg5-min.jpg), #0D173F;
        background-repeat: no-repeat;
        background-size: auto;
        background-position: center top;
        padding: 120px 0 60px;
    }

    .steps__title {
        font-size: 42px;

        margin-bottom: 40px;
    }

    .steps__container {
        flex-direction: column;
        row-gap: 40px;
    }

    .steps__line {
        display: none;
    }

    .steps__item {
        max-width: 100%;
    }

    .steps__item-number {
        color: #E6A01E;

        margin-bottom: 15px;
    }

    .steps__item-dot-item {
        background: #E6A01E;
    }

    .steps__dots-line {
        display: block;
    }

    .steps__item-content {
        max-width: 330px;
        opacity: 1;

        margin: 0 auto;
    }

    .steps__item-title {
        font-size: 20px;
    }

    .steps__item-description {
        font-size: 16px;
    }

    .steps__monero {
        top: unset;
        bottom: calc(100% + 20px);
        left: 150px;
    }

    .steps__etherium {
        bottom: unset;
        top: 700px;
        left: -79px;
    }

    .faq {
        padding: 60px 0 0;
    }

    .faq__title {
        font-size: 42px;

        margin-bottom: 40px;
    }

    .faq__item {
        padding: 40px 20px;
    }

    .faq__item-title {
        font-size: 24px;
    }

    .faq__item-description {
        font-size: 16px;
        padding-top: 20px;
        padding-right: 48px;
    }

    .faq__monero {
        top: unset;
        bottom: calc(100% + 30px);
        left: unset;
        right: 70px;
    }

    .faq__bitcoin {
        left: -65px;
        bottom: -90px;
    }

    .faq__background {
        top: -60px;
        right: -1121px;
    }

    .opportunity {
        padding: 0 0 60px;
    }

    .opportunity__background {
        padding: 120px 0 0;
    }

    .opportunity__container {
        flex-direction: column;
        row-gap: 40px;
    }

    .opportunity__title {
        font-size: 48px;
        text-align: center;
    }

    .opportunity__subtitle {
        font-size: 20px;
        text-align: center;
    }

    .opportunity__description {
        font-size: 20px;
        text-align: center;
    }

    .opportunity__arrow {
        display: none;
    }

    .footer {
        padding: 60px 0 120px;
    }
}

@media (max-width: 788px) {
    .reviews {
        padding: 60px 19px 120px;
    }

    .reviews .container {
        padding: 0 !important;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 10px;
    }

    .act-now__text {
        font-size: 14px;
        line-height: normal;
    }

    .header__container {
        row-gap: 20px;

        margin-bottom: 30px;
    }

    .header__data {
        column-gap: 20x;
    }

    .header__info {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 10px;
    }

    .header__info-item {
        font-size: 14px;
    }

    .header__places {
        max-width: 147px;
        font-size: 14px;
    }

    .firstScreen__title {
        font-size: 30px;

        margin-bottom: 15px;
    }

    .firstScreen__subtitle {
        font-size: 18px;

        margin-bottom: 30px;
    }

    .fistScreen__attention-text {
        font-size: 14px;
    }

    .fistScreen__wrapper {
        row-gap: 30px;
    }

    .fistScreen__bitcoin {
        display: none;
    }

    .fistScreen__etherium {
        display: none;
    }

    .master-crypto {
        padding: 100px 0 50px;
    }

    .master-crypto__container {
        flex-direction: column;
        row-gap: 30px;
    }

    .master-crypto__title {
        font-size: 26px;
        text-align: center;

        margin-bottom: 0;
    }

    .master-crypto__button {
        margin: 0 auto;
    }

    .master-crypto__button-desk {
        display: none;
    }

    .master-crypto__button-mob {
        display: flex;
    }

    .master-crypto__right {
        row-gap: 15px;
    }

    .master-crypto__description {
        font-size: 16px;
    }

    .calculator {
        padding: 50px 0;
    }

    .calculator__container {
        padding: 30px 15px;
    }

    .calculator__title {
        font-size: 26px;
        line-height: 115%;

        margin-bottom: 30px;
    }

    .calculator__wrapper {
        row-gap: 30px;
    }

    .calculator__right {
        font-size: 30px;
        padding: 29px 10px 28px;
    }

    .calculator__litecoin {
        display: none;
    }

    .calculator__etherium {
        display: none;
    }

    .reviews {
        padding: 50px 10px 100px;
    }

    .reviews__title {
        font-size: 26px;
        line-height: 115%;

        margin-bottom: 30px;
    }

    .reviews__monero {
        display: none;
    }

    .reviews__item-container {
        padding: 20px;
    }

    .reviews__item-quote {
        margin-bottom: 0;
    }

    .reviews__item-description {
        font-size: 16px;
    }

    .reviews__item-user {
        margin-top: 20px;
    }

    .reviews__item-name {
        font-size: 20px;
    }

    .reviews__item-info {
        font-size: 16px;
    }

    .reviews__slider-navigation {
        margin-top: 30px;
    }

    .trading-with__title {
        font-size: 26px;
        line-height: 115%;

        margin-bottom: 15px;
    }

    .trading-with__subtitle {
        font-size: 18px;

        margin-bottom: 30px;
    }

    .trading-with__container {
        padding: 30px 15px;

        margin-bottom: 30px;
    }

    .trading-with__item-icon {
        width: 50px;
        height: 50px;
    }

    .trading-with__item-title {
        font-size: 18px;
        line-height: 115%;
    }

    .trading-with__item-description {
        font-size: 16px;
    }

    .trading-with__litecoin {
        display: none;
    }

    .trading-with__bitcoin {
        display: none;
    }

    .trading-with__background {
        bottom: -98px;
        right: -120px;
    }

    .steps {
        padding: 100px 0 50px;
    }

    .steps__title {
        font-size: 26px;

        margin-bottom: 30px;
    }

    .steps__container {
        row-gap: 30px;
    }

    .steps__item-number {
        font-size: 20px;
    }

    .steps__item-title {
        font-size: 18px;
        line-height: 115%;
    }

    .steps__item-description {
        font-size: 16px;
    }

    .steps__monero {
        display: none;
    }

    .steps__etherium {
        display: none;
    }

    .faq {
        padding: 50px 0 0;
    }

    .faq__title {
        font-size: 28px;

        margin-bottom: 30px;
    }

    .faq__item {
        column-gap: 15px;
        padding: 30px 15px;
    }

    .faq__item-number {
        font-size: 26px;
        line-height: 115%;
    }

    .faq__item-top {
        column-gap: 10px;
    }

    .faq__item-title {
        font-size: 22px;
        line-height: 115%;
    }

    .faq__item-description {
        font-size: 16px;
        padding-top: 15px;
        padding-right: 0;
    }

    .faq__monero {
        display: none;
    }

    .faq__bitcoin {
        display: none;
    }

    .faq__background {
        top: -435px;
        right: -1329px;
    }

    .opportunity {
        padding: 0 0 50px;
    }

    .opportunity__background {
        background-position: 10% top;
        background-size: auto;
        padding: 100px 0 0;
    }

    .opportunity__title {
        font-size: 26px;
    }

    .opportunity__subtitle {
        font-size: 18px;
    }

    .opportunity__description {
        font-size: 18px;
    }

    .footer {
        padding: 50px 0 100px;
    }

    .foooter__top {
        flex-direction: column;
        row-gap: 30px;
    }

    .footer__list-item {
        font-size: 12px;
    }

    .footer__disclaimer {
        font-size: 12px;
    }
}