@import 'style.css';

.title__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 7;
}

.title-text-detail {
    color: #2F2F2F;
    font-weight: 500;
    font-size: 28px;
}

.title-date {
    color: #7B7B7B;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
}

.container__main-middle {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 100px;
}

.container__main-wide {
    max-width: 1750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
}

.container__page {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 50px;
    margin: 0 auto;
    gap: 30px;
    background-color: #FFFFFF;
}

.container__invitation {
    padding: 50px;
}

.cards__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 30px;
}

.container__card {
    display: flex;
    flex-direction: column;
    width: fit-content;
    max-width: 555px;
    border: 1px solid #E4ECF9;
    border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    padding: 20px;
    gap: 20px;
}

.card__picture {
    width: 515px;
    height: 157.45px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.card__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card__title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card__title-text {
    color: #2F2F2F;
    font-weight: 500;
    font-size: 21px;
    max-width: 375px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card_title-date {
    color: #7B7B7B;
    font-weight: 400;
    font-size: 14px;
}

.card__link {
    text-decoration: none;
}

.container__card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.container__card:hover .card__title-text {
    color: #0066cc;
    transition: color 0.3s ease;
}

.detail__picture {
    width: 100%;
    max-width: 1140px;
    aspect-ratio: 1140 / 348.53;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.detail__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail__description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #2F2F2F;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
}

ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 20px;
}

hr {
    margin: 0;
}

.back_link {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #0033A3;
    font-weight: 500;
    font-size: 14px;
}

.promo-button button {
    border: 1px solid #0033A3;
    border-radius: 10px;
    padding: 12px 30px;
    color: #0033A3;
    font-weight: 500;
    font-size: 14px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.promo-button button:hover {
    background-color: #0033A3;
    color: #FFFFFF;
    border-color: #0033A3;
    cursor: pointer;
}

.promo-button {
    flex: 1;
    justify-content: flex-end;
}

.title-button__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15%;
}

.reset {
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit;
    font-weight: inherit;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
    gap: 15px;
}

ol li:not(:last-of-type) {
    margin-bottom: 20px;
}

ul li:not(:last-of-type) {
    margin-bottom: 4px;
}

.doc-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    line-height: 1.3;
    font-weight: 400;
    font-size: 14px;
}

.bold {
    font-weight: 600;
}

.page-title {
    color: #000000;
    font-weight: 500;
    font-size: 28px;
}

.text__16 {
    font-weight: 400;
    font-size: 16px;
}

.text__14 {
    font-weight: 400;
    font-size: 14px;
}

.title_21 {
    font-weight: 500;
    font-size: 21px;
}

.provider_info-card__wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.provider_info-card {
    display: flex;
    width: 100%;
    max-width: 555px;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 0 5px 0 #98BFFF;
    align-items: center;
}

.provider_info-card__text {
    color: #0033A3;
    font-weight: 400;
    font-size: 21px;
}

.provider_info-instruction__wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.provider_info-instruction__container {
    background-color: #ffffff;
    width: 100%;
    flex: 1;
    padding: 50px;
    margin: 50px 0;
    border-radius: 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.contract_info {
    width: 100%;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.contract_info-subsection__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contract_info-contacts_subsection__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contract_info-contacts_subsection__wrapper .row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contract_info-contacts_subsection__wrapper .row .ico {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contract_info-contacts_subsection__wrapper .row .ico svg{
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contract_info-contacts_subsection__wrapper .row .name {
    color: #2F2F2F;
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 0;
}

.contract_info-contacts_subsection__wrapper .row .value {
    color: #2F2F2F;
    font-weight: 400;
    font-size: 14px;
}

.contract_info-contacts_subsection__subtitle {
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}

.orange_link {
    color: #F57E20;
}

.orange_link:hover {
    color: #D66A10;
}

.form__input-100 {
    width: 100%;
    flex: none;
}

.map__provider-info {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 5.1%;
    left: 50%;
    background-color: #FFFFFFC4;
    color: #2F2F2F;
}

.map__provider-info .no-mobile {
    display: inherit;
}

.map__provider-info .map-info--row {
    grid-template-columns: 24px 0.7fr 2.6fr;
}

.provider_info-feedback_form__wrapper {
    margin-top: 30px;
}

.steps__wrapper {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    background-color: #E4ECF9;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

.step-number {
    width: 50px;
    height: 50px;
    color: #0033A3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-title {
    font-size: 21px;
    font-weight: 500;
    color: #0033A3;
    margin-top: 10px;
}

.step-description {
    font-size: 18px;
    font-weight: 400;
    color: #2F2F2F;
    text-align: left;
    line-height: 1.2;
    margin-top: 20px;
}

.step-description span {
    color: #224089;
}

.page-subtitle {
    font-weight: 500;
    font-size: 24px;
    color: #2F2F2F;
}

.payment-cards__wrapper,
.delivery-cards__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;


}

.payment-card,
.delivery-card {
    flex: 1;
    box-shadow: 0 0 4px rgba(34, 64, 137, 0.2);
    border: solid 3px rgba(34, 64, 137, 0.1);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
}

.payment-card__ico {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.payment-card__ico svg {
    width: 100%;
    height: 100%;
    max-width: 60px;
    max-height: 60px;
}

.payment-card__title {
    font-weight: 500;
    font-size: 21px;
    margin-top: 20px;
    color: #7B7B7B;
}

.delivery-card__title {
    font-weight: 500;
    font-size: 21px;
    color: #224089;

}

.delivery-card__description {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #2F2F2F;
    line-height: 1.2;
    text-align: left;
}

.map-container__payment_delivery {
    max-width: 1720px;
    width: 100%;
    height: auto;
    /*aspect-ratio: 1140 / 378;*/
    aspect-ratio: 1140 / 490;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #00000033;
    overflow: hidden;
    position: relative;
}

.font-14 {
    font-weight: 400;
    font-size: 14px;
}

.contract_info-contacts_subsection__list ol li {
    font-size: 14px;
}

.brands_title-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brands-title__wrapper {
    width: 100%;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 40%;
}

.search-field input {
    padding: 4px 8px;
    font-weight: 400;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: 52px;
    background-color: rgba(54, 94, 220, 0.22);;
}

.search-field input[type="search"]::placeholder {
    color: #888;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 1;
    animation: none !important;
    transition: none !important;
}

.brands_search-ico {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 8px;
    background-color: #ffffff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 42px;
    padding: 15px;
}

.brands_search-ico svg {
    width: 12px;
    height: 12px;
}

.brands_buttons-search__container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.brands_buttons-search__button button{
    padding: 13px 20px;
    border-radius: 5px;
    border: 1px solid #224089;
    background-color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    color: #224089;
    height: 44px;
    box-shadow: 0 0 4px rgba(34, 64, 137, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.brands_buttons-search__button button:hover {
    background-color: #6B88C9;
    color: #ffffff;
}

.brands_buttons-search__button.active button {
    color: #ffffff;
    background-color: #224089;
}

.brand-search__letter {
    color: #000000;
    font-family: 'DockerOne', sans-serif;
    /*font-weight: 600;*/
    font-size: 48px;
}

.brands-logos__wrapper {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.brand-logo__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #E4ECF9;
    box-shadow: 0 0 10px rgba(34, 64, 137, 0.5);
    border-radius: 20px;
    padding: 20px 50px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #224089;
    transition: background-color 0.6s ease, color 0.6s ease;
}

.brand-logo__card:hover {
    background-color: #6B88C9;
    color: #ffffff;
}

.brand-logo__title {
    font-weight: 400;
    font-size: 17px;
}

.brand-logo__img {
    width: 163px;
    height: 96px;
    flex-shrink: 0;
}

.brand-logo__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand_title-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand_detail-logo__img {
    height: 50px;
    width: auto;
    display: inline-block;
}

.brand_detail-logo__img img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}


.about-banner__bg {
    position: relative;
    background-image: url('/dev/pages/images/banner_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 709px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-3D_logo {
    height: 560px;
    width: auto;
}


.about-3D_logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.map_warehouse_pic {
    height: 600px;
    width: auto;
}

.map_warehouse_pic img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.skewed-middle__img {
    flex: 1;
    height: 360px;
    width: auto;
}

.skewed-middle__img img {
    height: 100%;
    width: auto;
    object-fit: contain;
}


@media (max-width: 640px) {

    .brand_detail-logo__img {
        height: 34px;
    }

    .brands_title-search {
        flex-direction: column;
    }

    .search-field {
        width: 100%;
    }

    .no-mobile {
        display: none;
    }

    .container__main-middle {
        padding: 10px;
    }

    .mob-pad__6px {
        padding: 6px;
    }

    .container__page {
        padding: 20px;
    }

    .container__card {
        padding: 10px;
        border-radius: 5px;
    }

    .cards__wrapper {
        justify-content: center;
    }

    .card__picture {
        width: 260px;
        height: 79.49px;
    }

    .card__title-text {
        font-size: 16px;
        max-width: 175px;
    }

    .title-text {
        font-size: 21px;
    }

    .mob-font__28px {
        font-size: 28px;
    }

    .mob-gap__20px {
        gap: 20px;
    }

    .provider_info-card__text {
        font-size: 16px;
    }

    .provider_info-instruction__container {
        margin: 0;
        padding: 20px;
    }

    .provider_info-instruction__wrapper {
        margin: 20px 0;
        gap: 20px;
    }

    .contract_info-contacts_subsection__list ol li {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .mop-gap__10px {
        gap: 10px;
    }

    .contract_info {
        gap: 20px;
    }

    .provider_info-feedback_form__wrapper {
        margin-top: 20px;
    }

    .title-text-detail {
        font-size: 16px;
    }

    .title-date {
        font-size: 10px;
        white-space: nowrap;
    }

    .title-button__wrapper {
        flex-direction: column;
        row-gap: 10px;
    }

    .promo-button {
        width: 100%;
    }

    .promo-button button {
        width: 100%;
    }

    .steps__wrapper {
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }

    .step-card {
        padding: 20px 10px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        margin-top: 10px;
        font-size: 14px;
    }

    .payment-card {
        padding: 20px 30px;
        border-radius: 5px;
    }

    .payment-card__ico {
        width: 40px;
        height: 40px;
    }

    .payment-card__ico svg {
        width: 100%;
        height: 100%;
        max-width: 40px;
        max-height: 40px;
    }

    .payment-card__title {
        margin-top: 10px;
    }

    .delivery-card {
        padding: 20px 10px;
        border-radius: 5px;
    }

    .delivery-card__description {
        margin-top: 10px;
    }

    .map-container__payment_delivery {
        aspect-ratio: 280 / 378;
    }

    .map-info--row {
        grid-template-columns: 24px 1fr 1fr;
        gap: 15px;
    }

}