.sell-banner {
    padding: 160px 0 60px;
    background-image: url("../img/banner-stripes.svg");
    background-size: cover;
    background-position: right bottom;
}

.sell-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sell-content-title {
    font-family: Play, sans-serif;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
}

.sell-content-title span {
    font-weight: 700;
}

.sell-content-img {
    border-radius: 20px;
}

.sell-content-img img {
    max-width: 610px;
    width: 100%;
}

.sell-dealership {
    padding: 60px 0 110px;
}

.sell-dealership-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.blue {
    color: #1611FF
}

.sell-dealership-title {
    text-align: center;
    font-family: Play, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 40px;
}

.sell-dealership-form {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #7E808C;
    background: #EEF3F8;
}

.sell-dealership-form-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    text-align: center;
    margin-bottom: 20px;
}

.sell-dealership-form-dropzone {
    border-radius: 10px;
    border: 1px dashed #7E808C;
    background: #FFF;
    padding: 30px 10px;
    margin-bottom: 20px;
}

.sell-dealership-form-dropzone-icon {
    height: 40px;
    width: 40px;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #EEF3F8;
    margin: 0 auto 10px;
}

.sell-dealership-form-dropzone-text {
    color: #7E808C;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.sell-dealership-form-input {
    width: 100%;
    display: flex;
    padding: 12px;
    align-items: center;
    align-self: stretch;
    border: none;
    border-radius: 10px;
    background: #FFF;
    margin-bottom: 20px;
}

.sell-dealership-form-buttons {
    display: flex;
    align-items: center;
}

.sell-dealership-form-button {
    display: block;
    margin-left: auto;
}

.sell-card-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sell-card {
    padding: 20px;
    max-width: 450px;
    width: 100%;
}

.text-red {
    color: rgb(197, 12, 12) !important;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .sell-banner{
        padding: 80px 0 40px;
    }

    .sell-content {
        grid-template-columns: 1fr;
        gap: 20px
    }
    .sell-content-title{
        font-size: 42px;
    }
    .sell-dealership {
        padding: 10px 0 30px;
    }
    .sell-dealership-text {
        margin-top: 35px;
    }
}

@media screen and (max-width: 520px) {
    .sell-content-title{
        font-size: 38px;
    }
    .sell-dealership-text {
        margin-top: 35px;
    }
}


