html {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    color: white;
}

body {
    margin: 0;
    overflow-x: hidden;
}

b {
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
}

header {
    background-color: rgba(25, 29, 32, 1);
    background-image: url('header-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    overflow: hidden;
    position: relative;

    @media (max-width:1455px) {
        background-size: cover;
    }
}

@media (max-width:1024px) {
    .index-page header {
        background-position: -430px;
    }
}

.contact-page header {
    background-image: url('header-bg-contact.png');
    background-size: cover;
}

.contact-page .main-text {
    color: rgba(247, 158, 27, 1);
    margin-bottom: 30px;
}

.contact-page .left p {
    line-height: 28px;
    text-align: start;
}

.left .icon {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-page .right {
    align-self: flex-end;
}

.header-about {
    background-image: url('header-bg-about.png');
    background-size: cover;
    background-position: center;
}

.header-about .main-text {
    color: rgba(247, 158, 27, 1);
}

.header-about .left {
    padding: 20px;
}

header {
    --grid-color: rgba(255, 255, 255, 0.08);
}

.cer {
    width: 300px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}

nav {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-around;

    @media (max-width: 940px) {
        gap: 20px;
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;

    @media (max-width:1024px) {
        font-size: 14px;
    }
}

.nav-links a.active {
    color: rgba(247, 158, 27, 1);
}

.nav-info {
    background-color: rgba(28, 133, 251, 1);
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: bold;
    color: white;
    font-size: 16px;

    @media (max-width:905px) {
        font-size: 14px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: white;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

.columns {
    display: flex;
    position: relative;
    align-items: center;
}

.left,
.right {
    width: 50%;
}

.main-text {
    color: white;
    font-weight: 900;
    font-size: clamp(30px, 2vw + 14px, 60px);
}

.main-text span {
    display: block;
    color: rgba(247, 158, 27, 1);
    font-size: clamp(36px, 2.8vw + 20px, 88px);
}

.sub-text {
    gap: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.left h2 {
    font-size: 24px;
    font-weight: 900;
}

.crypto {
    background-color: black;
    border-radius: 9999px;
    padding: 6px 15px 6px 6px;
    display: flex;
    gap: 4px;
}

.crypto img:not(:last-child) {
    width: 35px;
}

.left {
    padding: 70px 0;
}

.left p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 18px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.rating span {
    font-size: 16px;
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);

    b {
        color: white;
    }
}

.right {
    margin-left: auto;
    max-width: 490px;
    margin-right: 0;
}

.form-bg {
    position: absolute;
    z-index: -1;
    top: -60px;
    right: 0;
    width: 100%;
}

.relative {
    position: relative;
}

.leadform {
    z-index: 2;
}

.form-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.input-wrapper {
    padding-top: 20px;
}

.form-logo {
    width: 34px;
    height: 41px;
}

.form-title {
    font-size: 24px;
    font-weight: 900;
}

.leadform input {
    display: block;
    width: 70%;
    padding: 12px;
    margin: 16px auto;
    border-radius: 6px;
    border: none;
    font-family: "Montserrat", sans-serif;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: black;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08), 0 6px 24px rgba(0, 0, 0, .18);
}

.leadform input::placeholder {
    color: rgba(107, 114, 128, 1);
}

.leadform .cta {
    width: 70%;
    margin-top: 18px;
    padding: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 6px;
    background: linear-gradient(180deg, #FFA51E 0%, #F39C12 100%);
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
}

.testimonials {
    background: #fff;
    padding: 50px 0 0 0;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    border: 1px solid gainsboro;
    border-radius: 16px;
    padding: 10px 40px 40px 40px;
    margin-bottom: 120px;
    overflow: visible;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-content {
    flex: 1;
    position: relative;
}

.testimonial-content-reverse {
    flex: 1;
    position: relative;
}

.testimonial-name {
    font-size: 24px;
    font-weight: 900;
    color: #2D3748;
    margin: 0 0 8px 0;
}

.testimonial-title {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(84, 104, 128, 1);
    margin: 0;
}

.testimonial-photo {
    display: block;
    margin-left: auto;
    margin-right: -40px;
    margin-bottom: -40px;
    transform: translateY(40px);
}

.testimonial-photo-reverse {
    display: block;
    margin-right: auto;
    margin-left: -40px;
    margin-top: -40px;
    transform: translateY(-40px);
}

.testimonial-photo-reverse img {
    width: 350px;
    height: 250px;
    border-radius: 12px 12px 12px 0;
    object-fit: cover;
    display: block;
}

.testimonial-photo img {
    width: 350px;
    height: 250px;
    border-radius: 12px 12px 12px 0;
    object-fit: cover;
    display: block;
}

.step-desc {
    font-weight: 400;
    font-size: 18px;
    color: rgba(84, 104, 128, 1);
    line-height: 1.8;
}

.market {
    padding: 40px 0 20px 0;
    overflow: hidden;
}

.step-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 24px;
}

.step {
    display: block;
    color: rgba(84, 104, 128, 1);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 14px;
}

.step-title {
    color: rgba(13, 18, 16, 1);
    margin: 8px 0 0 0;
    font-weight: 900;
    font-size: 24px;
    line-height: 1.2;
}

.cta-secondary {
    background: linear-gradient(180deg, #FFA51E 0%, #F39C12 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    z-index: 2;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    width: 100%;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
}

.market-panel {
    background: rgba(42, 44, 52, 1);
    border-radius: 12px;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 24px;
}

.coin-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coin-row {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 5px 20px;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.coin-icon {
    width: 36px;
    height: 36px;
}

.coin-meta {
    color: #cbd5e1;
}

.coin-name {
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}

.coin-sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

.coin-price {
    margin-left: auto;
    font-weight: 800;
    color: rgba(105, 210, 25, 1);
    font-size: 18px;
}

.phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.phone-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: .2;
    left: -60%;
    background: radial-gradient(50% 50% at 50% 50%, #533BE0 0%, rgba(61, 28, 251, 0) 100%);
    filter: blur(2px);
}

.phone-img {
    position: relative;
    width: 340px;
    max-width: 100%;
    transform: scale(1.6);
}

.reviews-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.review {
    height: 360px;
    background-color: rgba(246, 246, 246, 1);
    border-radius: 8px;
    padding: 28px;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review .stars {
    width: 95px;
}

.review hr {
    opacity: .2;
}

.review h3 {
    font-size: 18px;
    font-weight: 900;
    color: rgba(13, 18, 16, 1);
    margin-bottom: 10px;
}

.review span {
    background: rgba(28, 133, 251, 1);
    border-radius: 4px;
    padding: 4px 16px;
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.review .info {
    display: flex;
    align-items: center;
}

.review p {
    font-size: 16px;
    height: inherit;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(84, 104, 128, 1);
}

.advantage {
    padding-top: 40px;
    margin-top: 50px;
    padding-bottom: 40px;
    background-image: url('advantage-bg.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.step-head.container {
    padding: 0 20px;
    margin-bottom: 0;
}

.about-page .advantage {
    margin-top: 0;
    background-image: url('advantage-bg-about.png');
    background-color: black;
}

.bg-black {
    margin-top: 40px;
    margin-bottom: 40px;
    background: rgba(3, 4, 8, 1);
}

.orange-text {
    font-weight: 800;
    font-size: 36px;
    color: rgba(255, 95, 0, 1);
    margin-bottom: 10px;
}

.about-page .cta-secondary {
    display: block;
    max-width: 500px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

.bg-black .right p {
    font-weight: 200;
    font-size: 36px;
    color: rgba(255, 255, 255, 1);
}

.bg-black .right {
    margin-left: 0;
    max-width: none;
    margin-right: 0;
}

.bg-black .container {
    display: flex;
    align-items: center;
}

.advantage .step-head .step {
    color: rgba(28, 133, 251, 1);
}

.advantage .step-head .step-title {
    color: white;
}

.advantage .step-head .step-desc {
    color: rgba(28, 133, 251, 1);
}

.advantage-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    max-width: 60%;
}

.advantage-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.advantage-item {
    padding: 20px 0 20px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: -webkit-fill-available;
}

.advantage-item .info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-banner {
    background-color: rgba(28, 133, 251, 1);
}

.highlight-banner h2 {
    font-size: 24;
    line-height: 1.4;
    text-align: center;
    padding: 25px 65px;
}

.highlight-banner span {
    color: rgba(147, 255, 9, 1);
}

.about {
    margin-top: 30px;
}

.about-image {
    border-radius: 12px;
}

.about p {
    color: rgba(84, 104, 128, 1);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 20px;
}

.about .cta-secondary {
    margin-top: 30px;
    display: block;
    max-width: 600px;
    margin-left: 10%;
}

.about .img-wrapper {
    position: relative;
}

.about .crypto {
    border-radius: 12px;
    background: rgba(246, 246, 246, 0.9);
    position: absolute;
    bottom: -5px;
    padding: 15px;
    /* z-index: -1; */
    left: -270px;
}

.about .crypto .arrow {
    margin-left: 20px;
}

.about .crypto.mobile {
    display: none;
}

.second-reviews {
    background: rgba(42, 44, 52, 1);
    padding-top: 20px;
    padding-bottom: 20px;
}

.comment.gray {
    background-color: rgba(246, 246, 246, 1);
}

.comment .info h3 {
    color: rgba(13, 18, 16, 1);
    font-size: 18px;
    font-weight: 800;
}

.comment .info {
    width: 100%;
    max-width: 450px;
}

.comment .info a {
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid rgba(84, 104, 128, 1);
    color: rgba(84, 104, 128, 1);
    font-size: 16px;
    font-weight: 400;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    height: 30px;
    gap: 5px;
    transition: all 0.3s ease;
}

.comment .info a:hover {
    background-color: rgba(84, 104, 128, 0.1);
    border-color: rgba(28, 133, 251, 1);
    color: rgba(28, 133, 251, 1);
}

.column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comment .actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.actions a img {
    width: 15px;
}

.comment p {
    color: rgba(84, 104, 128, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.comment .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pre-footer .activity-banner {
    margin-top: 20px;
}

.activity-banner {
    background-color: rgba(28, 133, 251, 1);
    color: white;
    font-size: 24px;
    font-weight: 900;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 28px;
    padding-bottom: 28px;
}

.trust-section__content h2 {
    color: rgba(13, 18, 16, 1);
    font-size: clamp(24px, 1.5vw + 8px, 36px);
    font-weight: 900;
    margin-bottom: 20px;
}

.trust-section__content p b {
    font-weight: 400;
}

.trust-section__content p {
    color: rgba(84, 104, 128, 1);
    font-size: clamp(24px, 1.5vw + 8px, 36px);
    font-weight: 300;
}

.trust-section .container {
    display: flex;
    align-items: center;
}

.trust-section {
    overflow: visible;
    background-color: rgba(246, 246, 246, 1);
}

.trust-section .container {
    gap: 40px;
}

.trust-section__image {
    /* width: 30%; */
    flex: 0 0 50%;
    margin-left: -15%;
}

@media (min-width: 1920px) {
    .trust-section__image {
        margin-left: -30%;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .trust-section__image {
        margin-left: -25%;
    }
}

@media (min-width: 1241px) and (max-width: 1599px) {
    .trust-section__image {
        margin-left: -20%;
    }
}

.trust-section__image img {
    display: block;
    width: 100%;
    height: auto;
}

.trust-section__content {
    flex: 1;
}

.faq-section {
    background: #fff;
    padding: 60px 0;
}

.faq-item {
    margin-top: -20px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-bottom: none;
    border-radius: 12px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 30px 24px 40px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-number {
    font-weight: 900;
    font-size: 24px;
    color: rgba(13, 18, 16, 1);
    margin-right: 100px;
    margin-left: 50px;
    min-width: 30px;
}

.faq-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: rgba(84, 104, 128, 1);
    line-height: 1.4;
}

.faq-arrow {
    font-size: 20px;
    font-weight: bold;
    color: #2d3748;
    transition: transform 0.3s ease;
    margin-left: 16px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 24px 24px 44px 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    color: #4a5568;
}

.site-footer {
    background: #2A2C34;
    color: #cbd5e1;
}

.site-footer .container {
    padding-top: 28px;
    padding-bottom: 28px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 44px;
    height: 44px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 1);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: #e2e8f0;
    text-align: center;
    text-decoration: none;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    font-weight: 400;
    padding-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    color: white;
    text-align: center;
    padding: 16px 0;
}

.about-page .step-desc {
    width: 35%;
}

.about-page .step-head {
    align-items: flex-start;
}

.step-head-advantage .step {
    color: rgba(28, 133, 251, 1);
}

.img-mobile {
    display: none;
}

.other-page .content h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgba(26, 26, 26, 1);
}

.other-page .content p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
    line-height: 32px;
}

.other-page .content .error {
    font-weight: 900;
    font-size: 128px;
    color: rgba(247, 158, 27, 1);
}

.gotoform {
    cursor: pointer;
    text-decoration: none;
}

.other-page .content .plsh {
    border-radius: 8px;
    padding: 15px;
    border: 1px solid gainsboro;
    display: block;
}

.other-page .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    max-width: 900px;
    padding: 100px 20px;
}

.other-page .cta {
    display: block;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
}

.copyright-page header,
.other-page header {
    background-image: none;
}

.copyright-page .content .name {
    font-size: 14px;
    font-weight: 800;
    color: rgba(84, 104, 128, 1);
    margin-bottom: 10px;
    margin-top: 30px;
    text-transform: uppercase;
}

.copyright-page .content .sub {
    font-size: 24px;
    font-weight: 800;
    color: rgba(13, 18, 16, 1);
    line-height: 32px;
    margin-bottom: 30px;
}

.copyright-page .content a {
    color: rgba(247, 158, 27, 1);
    text-decoration: none;
}

.copyright-page .content a:hover {
    color: rgba(28, 133, 251, 1);
}

.copyright-page .content .date {
    font-size: 18px;
    font-weight: 300;
    color: rgba(84, 104, 128, 1);
    line-height: 28px;
    margin-bottom: 15px;
}

.copyright-page .content .point {
    font-size: 20px;
    font-weight: 800;
    color: rgba(84, 104, 128, 1);
    line-height: 28px;
    margin-bottom: 15px;
}

.copyright-page .content .point-text {
    font-size: 18px;
    font-weight: 300;
    color: rgba(84, 104, 128, 1);
    line-height: 28px;
    margin-bottom: 15px;
}

.crypto-wrapper {
    position: relative;
}

@media (max-width: 1315px) {
    .info {
        gap: 5px;
    }

    .info img {
        width: 60px;
    }

    .review {
        height: -webkit-fill-available;
    }
}

@media (max-width: 1155px) {
    .about .cta-secondary {
        margin-left: 0;
    }

    .about .crypto {
        left: -330px;
    }

    .about-page .step-desc {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1055px) {
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 20px;
    }
}

@media (max-width: 1055px) {
    .about .crypto {
        bottom: 8px;
    }

    .faq-number {
        margin-right: 30px;
        margin-left: 30px;
    }

    .market .step-head {
        flex-direction: column;
        gap: 20px;
    }

    .about-page .step-desc {
        width: 100%;
    }
}

@media (max-width: 875px) {
    .comment .info a {
        font-size: 14px;
        padding: 5px 5px;
    }

    .comment .info {
        width: 130%;
    }

    .nav-info {
        padding: 10px;
        text-align: center;
        width: 40%;
    }

    nav {
        gap: 10px;
    }

    .comment .info {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .step-title {
        font-size: 22px;
    }

    .step-head {
        flex-direction: column;
        /* align-items: flex-start; */
    }

    .market-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .phone-img {
        width: 180px;
    }

    .phone-glow {
        width: 360px;
        height: 360px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-links {
        order: 3;
        margin-bottom: 20px;
    }

    .logo {
        order: 2;
    }

    .rating {
        gap: 10px;
        margin-bottom: 40px;
    }

    .rating span {
        font-size: 11px;
    }

    .logo-link {
        order: 2
    }

    .nav-info {
        width: 110%;
        text-align: center;
        border-radius: 0;
        margin-top: -20px;
    }

    .container {
        padding: 16px 16px;
    }

    .left p {
        font-size: 16px;
        text-align: center;
    }

    .columns {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    .left {
        padding: 28px 0 60px;
    }

    .main-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .left h2 {
        font-size: 16px;
    }

    .crypto img:not(:last-child) {
        width: 25px;
    }

    .sub-text {
        gap: 12px;
        margin-bottom: 24px;
        justify-content: center;
    }

    .rating {
        margin-top: 24px;
        justify-content: center;
    }

    .right {
        margin: 0 auto;
        max-width: 360px;
    }

    .leadform {
        padding: 12px 0;
    }

    .input-wrapper {
        padding-top: 18px;
    }

    .form-bg {
        left: 50%;
        transform: translateX(-50%);
        top: -50px;
        width: 380px;
    }

    .leadform input {
        width: 100%;
        font-size: 14px;
        max-width: 260px;
        padding: 14px;
        margin: 12px auto;
    }

    .leadform .cta {
        width: 100%;
        max-width: 260px;
        padding: 14px;
        font-size: 18px;
    }

    .cer {
        width: 260px;
    }

    header {
        overflow: hidden;
        background-image: none;
    }

    .testimonials {
        padding: 40px 0 20px;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 0 20px 20px 20px;
        gap: 20px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .testimonial-photo,
    .testimonial-photo-reverse {
        width: 100%;
        transform: none !important;
        margin: 0;
    }

    .testimonial-photo img,
    .testimonial-photo-reverse img {
        
        height: auto;
        border-radius: 0 0 12px 12px;
        
    }

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

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

    .quote-icon {
        width: 48px;
    }

    .info {
        gap: 8px;
    }

    .testimonial-content,
    .testimonial-content-reverse {
        order: 2;
        text-align: start;
    }

    .step {
        font-size: 14px;
    }

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

    .step-head {
        gap: 10px;
    }

    .phone-wrap {
        order: 3;
        transform: translateY(30px);
    }

    .reviews-wrapper {
        flex-direction: column;
    }

    .review {
        width: 100%;
    }

    .info img {
        width: 64px;
    }

    .advantage-wrapper {
        flex-direction: column;
    }

    .advantage-item h3 {
        max-width: 100%;
        text-transform: uppercase;
    }

    .highlight-banner {
        margin-top: 30px;
    }

    .highlight-banner h2 {
        font-size: 20px;
    }

    .about-image {
        width: 100%;
    }

    .about .cta.cta-secondary {
        margin-left: auto;
        margin-right: auto;
    }

    .about .crypto.mobile {
        display: block;
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        display: block;
    }

    .about .crypto.mobile .arrow {
        transform: rotate(90deg);
        float: right;
        width: 50px;
        margin-top: 20px;
        margin-left: 0;
    }

    .about .crypto.mobile img:not(:last-child) {
        width: 48px;
    }

    .trust-section__image {
        margin-left: 0;
        width: 110%;
    }

    .trust-section .container {
        gap: 16px;
        flex-direction: column;
    }

    .comment .info {
        width: 100%;
    }

    .comment .container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .comment .info a img {
        width: 18px;
    }

    .comment .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .trust-section__content h2 {
        text-align: center;
    }

    .trust-section__content p {
        text-align: center;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 16px 20px 35px;
    }

    .faq-number {
        font-size: 24px;
        margin-right: 16px;
        margin-left: 0;
        min-width: 25px;
    }

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

    .faq-arrow {
        font-size: 18px;
        margin-left: 12px;
    }

    .faq-answer p {
        padding: 0 20px 30px 20px;
        font-size: 14px;
    }

    .footer-top {
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .header-about .main-text {
        text-align: start;
        padding-top: 40px;
    }

    .header-about .left {
        padding: 0;
    }

    .about-page .step-desc {
        width: 100%;
    }

    .step-head-advantage .step {
        margin-bottom: 20px;
    }

    .about-page .advantage {
        background-position: center;
    }

    .bg-black .container {
        flex-direction: column;
    }

    .bg-black .right p {
        font-size: 22px;
    }

    .bg-black .right {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .bg-black .right .cta {
        font-size: 14px;
    }

    .pre-footer {
        margin-top: 20px;
    }

    .bg-black .left {
        display: none;
    }

    .orange-text {
        font-size: 26px;
    }

    .img-mobile {
        display: block;
    }

    .contact-page .main-text {
        font-size: 38px;
    }

    .copyright-page header,
    .other-page header {
        padding-bottom: 20px;
    }

    .market {
        padding: 0px 0 20px 0;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .contact-page .activity-banner {
        margin-top: 10px;
        margin-bottom: 30px;
    }
}

@media (min-width:425px) and (max-width:768px) {
    .testimonial-card {
        align-items: flex-start;
    }

    /* .testimonial-photo-reverse img,
    .testimonial-photo img {
        border-radius: 0 0 12px 0;
    } */
    .right {
        margin: 0 auto;
        max-width: 560px;
    }

    .form-bg {
        width: 480px;
    }

    .leadform input {
        font-size: 16px;
        max-width: 340px;
    }

    .leadform .cta {
        max-width: 340px;
        font-size: 20px;
    }

    .main-text {
        font-size: 40px;
    }

    .main-text span {
        font-size: 50px;
    }

    .left h2 {
        font-size: 26px;
    }

    .left p {
        font-size: 26px;
        text-align: center;
    }

    .rating span {
        font-size: 21px;
    }
    .testimonial-photo img,
    .testimonial-photo-reverse img {
        
        max-width: 70%;
        margin: 0 auto;
    }
   
}
@media (max-width:425px) {
    .testimonial-photo,
    .testimonial-photo-reverse{
        width: 115%;
        
    }
    .testimonial-photo img,
    .testimonial-photo-reverse img {
        width: 100%;
        
    }
}