.ads-intro {
    margin-bottom: 30px;
}

.ads-intro__text {
    padding-left: 25px;
}

.ads-intro h2 {
    font-weight: 500;
    font-size: 29px;
    color: #000;
    line-height: 50px;
}

.ads-intro p {
    font-weight: 300;
    font-size: 15px;
    line-height: 30px;
    color: #000;
}

.ads-video video {
    width: 100%;
    border-radius: 15px;
}

.ads-user__box {
    border-radius: 15px;
    background: #fff;
    border: 1px solid #d9d9d9;
    box-shadow: 0px 5px 20px rgba(1, 48, 109, 0.1);
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.ads-user__box__title {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 8px 18px;
    border-radius: 100px;
}

.ads-user__golden .ads-user__box__title {
    background: #fff2d2;
    border: 2px solid #f8b64c;
    font-weight: 600;
    font-size: 14px;
    color: #ff7058;
}

.ads-user__silver .ads-user__box__title {
    background: #e8e8e8;
    border: 2px solid #aeaeae;
    font-size: 14px;
    color: #717070;
}

.ads-user {
    margin-bottom: 20px;
}

.ads-user .ad-user__read-more {
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #373636;
    text-align: center;
}

.ads-user__golden .ads-user__box {
    border: 2px solid #fabd50;
    box-shadow: 0px 5px 20px rgba(1, 48, 109, 0.1);
}

.ads-user__silver .ads-user__box {
    background: #fff;
    border: 2px solid #a7a7a7;
    box-shadow: 0px 5px 20px rgba(1, 48, 109, 0.1);
}

.ads-user__golden .ad-user__read-more {
    background: linear-gradient(to left, #f8b64c 0%, #ffd15c 100%);
}

.ads-user__silver .ad-user__read-more {
    background: linear-gradient(to left, #cdcfcf 0%, #e4e7e7 100%);
}

.ads-user__normal .ad-user__read-more {
    background: transparent;
    border: 1px solid #c5c5c5;
}

.ads-intro__form {
    margin-top: 10px;
}

.ads-intro__form h4 {
    font-weight: 500;
    font-size: 17px;
    line-height: 40px;
    color: #000;
}

.ads-intro__form select {
    border-radius: 10px;
    background: #b1b1b120;
    font-size: 15px;
    color: #9a9a9a;
    border: none;
    font-family: KalamehWeb;
    max-width: 100%;
    padding: 10px 15px;
    outline: none;
}

.ads-intro__form a {
    border-radius: 10px;
    background: #f8011d;
    padding: 12px;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    max-width: 100%;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.ads-user__avatar img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.ads-user__name {
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    color: #000;
}

.ads-user__category,
.ads-user__price {
    line-height: 30px;
    margin-bottom: 10px;
}

.ads-user__category span:first-child,
.ads-user__price span:first-child {
    font-size: 15px;
}

.ads-user__category span:last-child,
.ads-user__price span:last-child {
    font-size: 14px;
}

.ads-user__category span:last-child,
.ads-user__price span:last-child {
    color: #6e6e6e;
}

.ads-user__popup {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    background: transparent;
    backdrop-filter: blur(5px);
    --webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.25);
    visibility: hidden;
    display: flex;
    opacity: 0;
    transition-duration: .2s;
    overflow-x: scroll;
}

.ads-user__popup.active {
    opacity: 1;
    visibility: visible;
}

.ads-user__popup__box {
    margin-top: 3em;
    background-color: #fff;
    height: max-content;
    padding: 15px;
    border-radius: 15px;
}

.ads-user__popup-avatar {
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.ads-user__popup-avatar::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #00000096, transparent);
    position: absolute;
    left: 0;
    top: 0;
}

.ads-user__popup-name {
    position: absolute;
    bottom: 2em;
    right: 0.5em;
    font-weight: 600;
    font-size: 29px;
    color: #fff;
    z-index: 1;
}

.ads-user__popup__price {
    position: absolute;
    bottom: 1em;
    right: 0.5em;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    z-index: 1;
}

.ads-user__popup__price span:last-child {
    font-weight: 300;
    font-size: 19px;
}

.ads-user__popup-category {
    margin: 15px 0;
}

.ads-user__popup-category span {
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
}

.ads-user__popup-category span:first-child {
    background: #f8011d;
}

.ads-user__popup-category span:not(:first-child) {
    background: rgba(246, 2, 39, 0.09);
    border: 2px solid #fff;
    color: #f60227;
}

.ads-user__popup-category span:last-child {
    margin-left: 0;
}

.ads-user__popup-text {
    margin-bottom: 15px;
}

.ads-user__popup-text span:first-child {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    display: block;
    line-height: 40px;
}

.ads-user__popup-text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #000;
}

.ads-user__accept {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.ads-user__accept a {
    color: var(--main-color);
}

.ads-user__accept {
    cursor: pointer;
}

.ads-user__accept span {
    width: 12px;
    height: 12px;
    border: 1px solid #f5022a;
    border-radius: 100px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}

.ads-user__accept span.active::after {
    content: '';
    width: 75%;
    height: 75%;
    border-radius: 100px;
    background-color: var(--main-color);
    position: absolute;
    top: 1.5px;
    left: 1.5px;
}

.ads-user__accept__show-contact button {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border-radius: 10px;
    padding: 13px 20px;
}

.ads-user__accept__show-contact button::disabled {
    opacity: 0.7;
}

.ads-user__popup__contact {
    padding: 15px;
    background-color: #f6f6f6;
    border-radius: 20px;
    margin-top: 25px;
}

.ads-user__popup__contact__box {
    margin-bottom: 20px;
}

.ads-user__popup__contact__box__title {
    font-weight: 600;
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
}

.ads-user__popup__contact__box__content {
    font-size: 15px;
    color: #4b4b4b;
}

.ads-user__popup__contact__box__content a.social {
    margin: 0 15px;
}

.ads-user__popup__contact__box__content a.social:first-child {
    margin: 0 0 0 15px;
}

/*Responsive*/
@media screen and (max-width: 992px) {
    .ads-intro .row {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 768px) {
    .ads-intro__form {
        margin-bottom: 40px;
    }

    .ads-intro__form select {
        margin-bottom: 20px;
        width: 100%;
    }
}