/* start: Navbar */
.navbar {
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.navbar-right>.btn-outline-primary {
    background-color: #f7f7f7e5;
}

.navbar-right>.btn-outline-primary:hover {
    background-color: var(--black);
}

/* end: Navbar */

/* start: Hero */
.hero-section {
    overflow: hidden;
    background-color: #f7f7f7e5;
    position: relative;
    margin-top: -110px;
}

.hero-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    min-height: 50vh;
}



.hero-left {
    padding: 174px 0 64px;
}

.hero-top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: var(--text-sm);
    font-weight: 400;
    padding: 8px 16px;
    border-radius: var(--rounded-lg);
    background-color: var(--secondary);
    margin-right: 16px;
}

.hero-reg {
    font-weight: 600;
    color: var(--logo);
    text-underline-offset: 4px;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 48px;
    max-width: 635px;
}

.hero-title-underline {
    background-image: url(/img/underline-warning.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.hero-title-color {
    color: var(--logo);
}

.hero-registration-title {
    font-weight: 500;
    margin-bottom: 12px;
}

.hero-registration-form-box {
    display: none;
}

.hero-registration-form-box.active {
    display: block;
}

.hero-registration-form {
    display: flex;
}

.hero-registration-form-group {
    position: relative;
}

.hero-registration-form-control {
    text-align: center;
    height: 56px;
    width: 280px;
    padding: 0 16px;
    font-size: var(--text-base);
    border: 2px solid var(--primary);
    border-radius: var(--rounded-md) 0 0 var(--rounded-md);
    font-weight: 700;
    text-transform: uppercase;
    outline: none;
    border-right: none;
    background-color: var(--white);
}

.hero-registration-form-group.invalid .hero-registration-form-control {
    border-color: red;
}

.hero-registration-form-invalid-feedback {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    white-space: nowrap;
    border-radius: var(--rounded-md);
    opacity: 0;
    z-index: 10;
    visibility: hidden;
    transition-property: opacity, visibility, top;
    transition-duration: var(--duration-300);
}

.hero-registration-form-group.invalid .hero-registration-form-invalid-feedback {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 16px);
}

.hero-registration-form-invalid-feedback> :first-child {
    margin-right: 8px;
    color: red;
}

.hero-registration-form-invalid-feedback::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid;
    border-color: transparent transparent var(--white) transparent;
}

.hero-registration-form-submit {
    height: 56px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary);
    color: var(--black);
    font-size: var(--text-base);
    border: 2px solid var(--primary);
    outline: none;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
    transition-property: background-color, color, border-color;
    transition-duration: var(--duration-150);
}

.hero-registration-form-submit:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.hero-registration-form-submit> :first-child {
    margin-right: 8px;
}

.hero-right-image {
    display: none;
}

.hero-image {
    position: absolute;
    left: calc(50% + 96px);
    width: calc(50% - 96px);
    top: 50%;
    transform: translateY(-50%);
}

.hero-feature {
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 1fr;
    column-gap: 32px;
    row-gap: 24px;
    margin-top: 32px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    position: relative;
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    height: 32px;
    width: 0;
    border-left: 1px solid #d2d0d0;
}

.hero-feature-item:last-child::before {
    display: none;
}

.hero-feature-item-image {
    width: 24px;
    flex-shrink: 0;
    margin-right: 12px;
}

.hero-feature-item-text {
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.5;
    color: #4b4444;
}

/* end: Hero */

/* start: Trader */
.trader-section {
    padding: 128px 0 64px;
}

.trader-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    border: 4px solid var(--logo);
}

.trader-wrapper .section-title,
.trader-wrapper .section-description {
    text-align: left;
}

.trader-wrapper .section-title {
    margin-bottom: 24px;
}

.trader-wrapper .section-title .section-title-underline-primary {
    background-size: 100% 24px;
}

.trader-wrapper .section-description {
    margin-bottom: 48px;
}

.trader-decoration {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.trader-decoration-top {
    top: -2px;
}

.trader-decoration-bottom {
    bottom: -2px;
}

.trader-decoration::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    left: -12px;
}

.trader-decoration::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    right: -12px;
}

.trader-left {
    padding: 48px 96px;
}

.trader-right {
    padding: 48px;
}

.trader-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.trader-cta {
    position: relative;
}

.trader-cta::before {
    content: '';
    position: absolute;
    left: calc(100% + 8px);
    top: -12px;
    width: 110px;
    height: 96px;
    background-image: url(/img/arrow-to-button.png);
    background-size: contain;
    transform: rotateZ(10deg);
    pointer-events: none;
}

/* end: Trader */

/* start: How It Works */
.how-section {
    padding: 128px 0 64px;
}

.how-wrapper {
    display: flex;
    margin-top: 48px;
}

.how-item {
    width: 100%;
    border: 4px solid var(--logo);
    position: relative;
}

.hero-item-image {
    width: 100%;
}

.how-item-decoration {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.how-item-decoration-top {
    top: -2px;
}

.how-item-decoration-bottom {
    bottom: -2px;
}

.how-item-decoration::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    left: -12px;
}

.how-item-decoration::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    right: -12px;
}

.hero-item-body {
    padding: 24px;
}

.hero-item-title {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-item-description {
    line-height: 1.5;
    color: var(--text-color);
}

.how-divider {
    flex-shrink: 0;
    width: 64px;
    height: auto;
    align-self: center;
    position: relative;
    left: -2px;
}

/* end: How It Works */

/* start: Feature */
.feature-section {
    padding: 64px 0;
}

.feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 48px;
    gap: 24px;
}

.feature-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--rounded-2xl);
    grid-row: span 2;
}

.feature-item {
    padding: 16px;
    border-radius: var(--rounded-lg);
    background-color: #f7f7f7;
}

.feature-item-title {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 8px;
}

.feature-item-description {
    line-height: 1.5;
    color: var(--text-color);
}

/* end: Feature */

/* start: FAQ */
.faq-section {
    padding: 64px 0 128px;
}

.faq-box {
    padding: 32px;
    border-radius: var(--rounded-2xl);
    border: 1px solid var(--border-color);
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item-icon {
    flex-shrink: 0;
    margin-right: 16px;
    margin-top: 16px;
    color: var(--text-color);
    transition-property: transform;
    transition-duration: var(--duration-300);
}

.faq-item.active .faq-item-icon {
    transform: rotateZ(45deg);
}

.faq-item-content {
    width: 100%;
    min-width: 0;
}

.faq-item-toggle {
    border: none;
    outline: none;
    text-align: left;
    width: calc(100% + 48px);
    font-size: var(--text-xl);
    font-weight: 500;
    padding: 16px 0;
    padding-left: 48px;
    position: relative;
    left: -48px;
    background-color: transparent;
    cursor: pointer;
    transition-property: color;
    transition-duration: var(--duration-300);
}

.faq-item.active .faq-item-toggle {
    color: var(--logo);
}

.faq-item-body {
    display: grid;
    grid-template-rows: 0fr;
    color: var(--text-color);
    margin-bottom: 0;
    transition-property: grid-template-rows, margin-bottom;
    transition-duration: var(--duration-300);
}

.faq-item-box {
    overflow: hidden;
}

.faq-item.active .faq-item-body {
    grid-template-rows: 1fr;
    margin-bottom: 16px;
    line-height: 1.5;
}

.faq-item-box>p {
    margin-bottom: 16px;
    line-height: 1.5;
}

.faq-item-box>ul>li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-item-box>ul>li:last-child,
.faq-item-box> :last-child {
    margin-bottom: 0;
}

.faq-item-list-numbered>li {
    display: flex;
}

.faq-item-list-numbered>li> :first-child {
    margin-right: 8px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* end: FAQ */

/* start: Breakpoints */
@media screen and (max-width: 1200px) {
    .trader-left {
        padding: 48px;
    }
}

@media screen and (max-width: 991px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding-top: 142px;
        padding-bottom: 0;
    }

    .hero-right-image {
        display: block;
        max-width: 100%;
        width: 100%;
    }

    .hero-image {
        display: none;
    }

    .trader-wrapper {
        grid-template-columns: 1fr;
    }

    .trader-left,
    .trader-right {
        padding: 24px;
    }

    .trader-image {
        max-width: unset;
        margin-left: 0;
    }

    .how-wrapper {
        display: block;
    }

    .how-item {
        max-width: 540px;
        margin: 0 auto;
        margin-bottom: 48px;
    }

    .how-item:last-child {
        margin-bottom: 0;
    }

    .how-divider {
        display: none;
    }

    .feature-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .feature-item-image {
        grid-row: auto;
        grid-column: span 2;
        height: 300px;
    }

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

    .faq-box {
        padding: 24px;
    }
}

@media screen and (max-width: 767px) {

    .hero-title,
    .seller-text,
    .trader-text {
        font-size: var(--text-4xl);
    }
}

@media screen and (max-width: 575px) {
    .hero-top {
        display: block;
    }

    .hero-subtitle {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .hero-registration-form {
        display: block;
    }

    .hero-registration-form-control {
        width: 100%;
        border-right: 2px solid var(--primary);
        border-radius: var(--rounded-md) var(--rounded-md) 0 0;
    }

    .hero-registration-form-submit {
        width: 100%;
        border-radius: 0 0 var(--rounded-md) var(--rounded-md);
    }

    .hero-feature {
        grid-template-columns: 1fr;
    }

    .hero-feature-item::before {
        display: none;
    }

    .feature-wrapper {
        grid-template-columns: 1fr;
    }

    .feature-item-image {
        grid-column: auto;
    }

    .faq-box {
        padding: 16px;
    }

    .faq-item-toggle {
        font-size: var(--text-lg);
    }
}

/* start: Breakpoints */
.seller-section {
    padding: 128px 0 64px;
}

.trader-wrapperr {
    position: relative;
    border: 4px solid #42cbb2;
}

.trader-decorationn-top {
    top: -2px;
}

.trader-decorationn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.trader-decorationn-bottom {
    bottom: -2px;
}

.trader-decorationn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.trader-decorationn::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    left: -12px;
}

.trader-decorationn::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    right: -12px;
}

.trader-decorationn::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 4px solid var(--logo);
    background-color: var(--white);
    position: absolute;
    left: -12px;
}

.trader-left {
    padding: 66px 57px;
    border-right: 3.85px solid #42cbb2;
}

.seller-text {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    line-height: 56.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #1e1515;
}

.selling-img {
    background-image: url(/img/Vector-3.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 31px;
}

.text {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #7a7a7a;
    height: fit-content;
}

.cta-btn {
    /* border: 1px solid #a6a6a6; */
    padding: 0;
}

.cta-btn img {
    max-width: 100%;
    max-height: 100%;
}

.webiste-name {
    font-family: Poppins;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #1e1515;
}

.trader-text {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    line-height: 56.2px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #1e1515;
}

.img-under-txt {
    background-image: url(/img/Group-1000009468.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: 30px;
}

.right-left {
    padding: 66px 57px;
    height: 100%;
}

.seller-section img {
    max-width: 100%;
    max-height: 100%;
}

.text-wrapper {
    width: 95%;
    margin-bottom: 40px;
}

.links a:hover {
    color: #42cbb2;
}

.faq-item .faq-item-content button:hover {
    color: #42cbb2;
}

@media (max-width: 992px) {
    .trader-left {
        border-bottom: 3.85px solid #42cbb2;
        border-right: 0;
        padding: 24px;
    }

    .right-left {
        padding: 24px;
    }
}

@media (max-width: 529px) {
    .cta-btn-1 {
        margin-bottom: 15px;
    }
}

.cta-btn {
    border: none;
}

@media screen and (max-width: 767px) {

    .seller-text,
    .trader-text {
        font-size: 24px;
    }
}

@media (max-width: 430px) {
    .phone-wrapper {
        width: 200px;
        height: 140px;
    }
}

/* .hero-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-section .hero-left {
    padding: 0 16px;
  } */