html,
body {
    overflow-x: hidden;
    background: var(--Black, #12141A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 0 80px 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.card__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    min-width: 1120px;
}

.card {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 80px 40px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: visible;
}

.card--market::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -130px;
    width: 600px;
    height: 293px;
    background: url("../images/market.png") no-repeat;
    background-size: 600px 293px;
    z-index: 0;
}

.card--configurator::before {
    content: "";
    position: absolute;
    left: -95px;
    top: 20px;
    width: 560px;
    height: 293px;
    background: url("../images/car.png") no-repeat;
    background-size: 510px 270px;
    z-index: 0;
}

.card__text-block,
.card__buttons {
    position: relative;
    z-index: 1;
}


.card__text-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 38%;
}

.card__title {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.card__text {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.text--market {
    width: 78%;
    align-self: center;
}

.card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 26%;
}

.card__button {
    display: flex;
    height: 48px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 16px;
    text-decoration: none;

    transition: all 0.2s ease-in-out;
}


.button--website {
    background: linear-gradient(90deg, #3853FF 0%, #6194FF 100%);
}

.button--whatsapp {
    background: linear-gradient(90deg, #00983D 0%, #00C71E 100%);
}

.button--website:hover {
    box-shadow: 0 4px 12px rgba(56, 83, 255, 0.4),
        0 2px 4px rgba(97, 148, 255, 0.3);
}

.button--whatsapp:hover {
    box-shadow: 0 4px 12px rgba(0, 152, 61, 0.4),
        0 2px 4px rgba(0, 199, 30, 0.3);
}


.button--app {
    background: rgba(255, 255, 255, 0.10);
}

.button--app:hover {
    opacity: 0.7;
}


.button__text {
    color: var(--New-Main-White-Primary, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
}

.header__button {
    position: relative;
    display: flex;
    padding: 4px;
    gap: 4px;
    border-radius: 1000px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.header__lang {
    position: relative;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    color: #85868B;
    font-family: Montserrat;
    font-weight: 700;
    cursor: pointer;
    z-index: 1;
    font-size: 14px;
    transition: color .3s;
}

.header__lang.is-active {
    color: #FFF;
}

.choosed {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1000px;
    transition: left .2s ease, width .2s ease;
    z-index: 0;
}


.header__logo {
    height: 30px;
    align-self: center;
}