@import url('../vars.css');

.doc-hero{
    display: flex;
    justify-content: flex-end;
    border-radius: 16px;
    background-color: var(--primary-brand-2);
    background-image: url('/wp-content/themes/neve/assets/img/doc/hero.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 420px;
    margin-bottom: 100px;
}
.doc-hero-info{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 64px 32px 64px;
    border-radius: 0 16px 16px 0;
    background: linear-gradient(90deg,rgba(51, 102, 204, 0) 0%, rgba(51, 102, 204, 1) 5%);
}
.doc-hero-title{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: #fff;
}
.doc-hero-cont{
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.doc-hero-tag{
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid #fff;
    font-family: var(--desktop-subtitle-font);
    font-size: var(--desktop-subtitle-size);
    font-weight: var(--desktop-subtitle-weight);
    color: #fff;
}

.doc-dates{
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
}
.doc-dates-cards{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.doc-date-card{
    border-radius: 16px;
    box-shadow: var(--drop-shadow-200);
    padding: 20px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: 136px;
    width: 560px;
}
.doc-date-card-title{
    color: var(--text);
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
}
.doc-date-card-value{
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
}
.blue-text{
    color: var(--primary-brand-2);
}
.red-text{
    color: var(--primary-brand-1);
}
.darr-blue-text{
    color: var(--secondary4);
}
.doc-dates-info{
    padding: 48px 59px;
    background-color: var(--secondary4);
    background-image: url('/wp-content/themes/neve/assets/img/doc/LooperGroup.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
}
.doc-dates-info-title{
    font-family: var(--desktop-accent-title-font);
    font-size: var(--desktop-accent-title-size);
    font-weight: var(--desktop-accent-title-weight);
    color: #fff;
}
.doc-dates-info-cont{
    padding: 44px;
    border-radius: 16px;
    background: #fff;
}
doc-dates-info-desc{
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
    color: var(--text);
}
.doc-dates-info-value{
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
    color: var(--secondary4);
}
.doc-dates-info-sub{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: var(--secondary4);
}

.doc-doc-info{
    display: flex;
    gap: 20px;
    margin-bottom: 100px;
}
.doc-doc-side{
    box-shadow: var(--drop-shadow-200);
    border-radius: 16px;
    padding: 20px 24px 24px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.doc-side-cont{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.doc-doc-title-cont{
    display: flex;
    gap: 16px;
}
.doc-doc-title-img{
    height: 48px;
    width: 48px;
    flex: 0 0 48px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blue-side .doc-doc-title-img{
    background: var(--primary-brand-2);
}
.red-side .doc-doc-title-img{
    background: var(--primary-brand-1);
}
.doc-doc-title-text{
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
}
.blue-side .doc-doc-title-text{
    color: var(--primary-brand-2);
}
.red-side .doc-doc-title-text{
    color: var(--primary-brand-1);
}
.doc-doc-row{
    display: flex;
    gap: 20px;
}
.doc-doc-col{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.doc-doc-feat{
    font-family: var(--desktop-body-font);
    font-size: var(--desktop-body-size);
    font-weight: var(--desktop-body-weight);
    display: flex;
    gap: 8px;
}
.doc-doc-feat::before{
    flex: 0 0 6px;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
}
.blue-side .doc-doc-feat::before{
    background: var(--primary-brand-2);
}
.red-side .doc-doc-feat::before{
    background: var(--primary-brand-1);
}
.doc-doc-btn{
    margin-top: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-family: var(--desktop-button-font);
    font-size: var(--desktop-button-size);
    font-weight: var(--desktop-button-weight);
    color: #fff;
    gap: 8px;
}
.doc-doc-btn:hover{
    color: #fff;
    box-shadow: var(--drop-shadow-200);
}
.doc-doc-btn:visited{
    color: #fff;
}
.doc-doc-btn:focus{
    color: #fff;
}
.blue-side .doc-doc-btn{
    background: var(--primary-brand-2);
}
.red-side .doc-doc-btn{
    background: var(--primary-brand-1);
}

.doc-price{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 1140px;
    margin-bottom: 100px;
}
.doc-price-title{
    margin-bottom: 8px;
    font-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
    color: var(--gray-300);
}
.doc-price-item{
    display: grid;
    gap: 40px;
    grid-template-columns: 3fr 4fr 2fr;
}
.doc-price-name{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    color: var(--text);
}
.doc-price-tag{
    font-family: var(--desktop-body2-font);
    font-size: var(--desktop-body2-size);
    font-weight: var(--desktop-body2-weight);
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
    height: fit-content;
}
.doc-price-item:nth-child(2) .doc-price-tag{
    background: var(--primary-brand-2);
    color: #fff;
}
.doc-price-item:nth-child(3) .doc-price-tag{
    background: var(--secondary-3);
    color: var(--primary-brand-2);
}
.doc-price-item:nth-child(4) .doc-price-tag{
    background: var(--primary-brand-1);
    color: #fff;
}
.doc-price-price{
    ont-family: var(--desktop-h5-font);
    font-size: var(--desktop-h5-size);
    font-weight: var(--desktop-h5-weight);
    color: var(--primary-brand-2);
}

.doc-bottom{
    display: flex;
    justify-content: space-between;
}
.doc-bottom .blue-border-pane{
    width: 45%;
}
.doc-bottom .doc-docs-cont{
    width: 45%;
}

@media screen and (max-width: 1800px) {
    .doc-hero-info{
        flex: 0 0 782px;
        width: 782px;
    }
}
@media screen and (max-width: 1280px) {
    .doc-hero{
        flex-direction: column;
        background-position: top;
        height: 700px;
    }
    .doc-hero-info{
        flex: none;
        gap: 20px;
        width: 100%;
        background: var(--primary-brand-2);
        border-radius: 0 0 16px 16px;
    }
    .doc-dates{
        flex-direction: column;
        align-items: flex-start;
    }
    .doc-dates-cards{
        flex: none;
        flex-direction: row;
        width: 100%;
    }
    .doc-date-card{
        width: 33%;
        padding: 24px;
        height: auto;
        justify-content: space-between;
    }
    .doc-dates-info{
        gap: 20px;
    }
    .doc-price{
        width: 100%;
    }
    .doc-doc-info{
        flex-direction: column;
    }
    .doc-bottom{
        flex-direction: column;
        gap: 32px;
    }
    .doc-bottom .blue-border-pane{
        width: 100%;
    }
    .doc-bottom .doc-docs-cont{
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .doc-dates-cards{
        flex-direction: column;
    }
    .doc-date-card{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .doc-price{
        margin-bottom: 32px;
        gap: 28px;
    }
    .doc-doc-info{
        margin-bottom: 32px;
    }
    .doc-dates{
        margin-bottom: 32px;
    }
    .doc-hero{
        margin-bottom: 32px;
        background-image: url('/wp-content/themes/neve/assets/img/doc/mob-hero.png');
    }
    .doc-dates-cards{
        flex-direction: column;
    }
    .doc-date-card{
        width: 100%;
    }
    .doc-dates-info{
        padding: 12px;
    }
    .doc-dates-info-cont{
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .doc-doc-row{
        flex-direction: column;
    }
    .doc-price-item{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .doc-doc-btn{
        padding: 8px;
    }
}
@media screen and (max-width: 480px){
    .doc-hero-info{
        padding: 12px;
    }
}
