

/* Start:/local/templates/milana2024/components/bitrix/news.detail/promotions/style.css?17380843953844*/
.promotion{
    display: flex;
    flex-direction: column;
    row-gap: 60px;

}

.promotion__item{
    display: flex;
}

.promotion__item:nth-child(2n){
    flex-direction: row-reverse;
}

.promotion__img{
    position: relative;
    display: block;

    height: 400px;
    width: 100%;

    background-size: cover;
    background-position: center;
}

.promotion__detail-text{
    margin-bottom: 30px;
    text-align: justify;
}

.promotion__detail-tags{
    padding: 5px 10px;
    background-color: black;

    color: white;

    width: fit-content;

    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    margin-bottom: 60px;
}

.promotion__desc{
    max-height: 400px;
    width: 600px;
    min-width: 600px;
    background-color: rgba(37, 37, 37, 0.03);
    overflow: hidden;

    padding: 60px 40px;

    transition: var(--transition);

    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    justify-content: space-between;
}

.promotion__name{
    display: -webkit-box;
    -webkit-line-clamp: 2   ;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

    font-size: 28px;
    font-weight: 700;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.promotion__video{
    margin-bottom: 30px;
}

.promotion__date{
    font-size: 14px;

    position: absolute;

    bottom: 10px;
    right: 10px;

    background-color: black;
    color: white;

    padding: 5px 10px;
}

.promotion__item:nth-child(2n) .promotion__date{
    left: 10px;
    right: unset;
}

.promotion__text{
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;

    text-align: justify;
}

.promotion__detail{
    margin-bottom: 120px;
}

.promotion__detail-img{
    position: relative;
    height: 450px;

    background-size: cover;
    background-position: center;

    width: 100%;

    margin-bottom: 30px;
}

.promotion__detail-img:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.promotion__detail-name{
    position: absolute;

    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;

    top: 40%;
    left: 30px;

    transform: translateY(-50%);

    z-index: 3;
    color: white;
}

.promotion__badge{
    position: absolute;

    top: 58%;
    left: 30px;

    transform: translateY(-50%);

    font-size: 16px;
    text-transform: uppercase;

    background-color: black;
    padding: 5px 10px;

    width: fit-content;

    color: white;
}

.promotion__link{
    position: absolute;

    bottom: 30px;
    right: 30px;

}

.promotion__link svg{
    transition: var(--transition);
}

.promotion__link:hover svg{
    transform: translateX(5px);
}

@media(max-width: 1199px){
    .promotion__desc {
        width: 400px;
        min-width: 400px;
    }
}

@media(max-width: 991px){
    .promotion__item{
        flex-direction: column;
    }

    .promotion__item:nth-child(2n){
        flex-direction: column;
    }

    .promotion__desc {
        width: 100%;
        height: 100%;
        min-width: unset;
    }
}

@media(max-width: 767px){
    .promotion__detail-name{
        font-size: 24px;
    }

    .promotion__img{
        height: 350px;
    }
}

@media(max-width: 575px){

    .promotion__img{
        height: 200px;
    }

    .promotion__date{
        font-size: 10px;
    }

    .promotion__desc {
        padding: 30px 20px 60px;
    }

    .promotion__name {
        font-size: 20px;
    }
}
/* End */


/* Start:/local/components/milana/staff/templates/.default/style.css?17477175313130*/
.contact-us-new{
    display: flex;
    min-height: 375px;

    margin-bottom: 60px;
}
.contact-us-new--double.contact-us-new{
    height: fit-content;
}

.contact-us-new__left{
    width: 30%;

    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 375px;
}
.contact-us-new__right{
    width: 70%;

    display: flex;
    align-items: center;
    gap: 35px;

    background-color: var(--color-background-white);

    padding-left: 100px;
}

.contact-us-new--double .contact-us-new__right{
    flex-direction: column;
    align-items: start;

    padding: 100px 0px 100px 100px;
}

.contact-us-new__subtitle{
    padding-bottom: 55px;
}

.contact-us-new__text {
    font-size: 14px;
    line-height: 27px;
    text-transform: none;
    max-width: 344px;
}

.contact-us-new__title{
    font-weight: 700;
    font-size: 33px;
    text-transform: uppercase;
    margin-bottom: 45px;
    line-height: 1.3;
    text-align: center;
}

.contact-us-new__name{
    display: flex;
    align-items: center;
    gap: 30px;

    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;

    margin-bottom: 5px;
    padding-right: 10px;
}

.contact-us-new__contacts{
    display: flex;
    flex-direction: column;
}

.contact-us-new__position{
    margin-bottom: 20px;
}

.contact-us-new__email{
    margin-top: 10px;
}

.contact-us-new__socials{
    display: flex;
    gap: 10px;
}

.contact-us-new__block{
    display: flex;
    gap: 30px;
}

.contact-us-new__container{

}

.contact-us-new__items{
    width: 70%;
}

.contact-us-new__items .contact-us-new__right{
    width: 100%;
    min-height: 375px;
}


@media (max-width: 1199px){
    .contact-us-new__title{
        font-size: 28px;
        max-width: 190px;
    }

}

@media (max-width: 991px){
    .contact-us-new__title{
        font-size: 21px;
        max-width: 190px;
    }

    .contact-us-new__right{
        padding-left: 60px;
    }
}

@media (max-width: 767px){
    .contact-us-new{
        flex-direction: column;
        height: fit-content;
    }

    .contact-us-new--double .contact-us-new__right{
        padding: 0px;
    }

    .contact-us-new__left,.contact-us-new__right{
        width: 100%;
        align-items: start;
        justify-content: start;
        flex-wrap: wrap;

        background-color: unset;
        padding: 0;
    }

    .contact-us-new__title{
        font-size: 20px;
        max-width: unset;

        margin-bottom: 20px;
    }

    .contact-us-new__block{
        flex-direction: column;
        height: fit-content;
    }

    .contact-us-new__items{
        width: 100%;
    }

    .contact-us-new__items .contact-us-new__right, .contact-us-new{
        min-height: unset;
    }

    .contact-us-new__container{
        display: flex;
        flex-direction: column;
        row-gap: 60px;
    }

    .contact-us-new__items{
        display: flex;
        flex-direction: column;
        row-gap: 30px;
    }
}
/* End */
/* /local/templates/milana2024/components/bitrix/news.detail/promotions/style.css?17380843953844 */
/* /local/components/milana/staff/templates/.default/style.css?17477175313130 */
