

/* Start:/local/templates/neverland/components/bitrix/news.detail/team/style.css?17607005046130*/
.contacts-detailed__section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 100px
}

.contacts-detailed__images {
    flex: 0 0 50%;
    position: relative;
    height: 444px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.contacts-detailed__img {
    min-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    position: absolute;
    object-fit: cover;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contacts-detailed__name {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #c16547
}

.contacts-detailed__anons {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #00091c
}

.contacts-detailed__anons p {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #00091c
}

.contacts-detailed__anons:has(p) {
    margin: 16px 0px
}

.contacts-detailed__anons:not(:has(p)) {
    margin: 16px 0
}

.accordion-detailed {
    overflow: hidden
}

.accordion-detailed__item {
    border-bottom: 1px solid rgba(193, 101, 71, .2)
}

.accordion-detailed__item:last-child {
    border: none
}

.accordion-detailed__header {
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    color: #306ae0;
    padding: 16px 36px 16px 0px;
    cursor: pointer;
    transition: background-color .3s;
    position: relative
}

.accordion-detailed__header:after {
    content: "";
    width: 19px;
    height: 19px;
    background-image: url(/local/templates/neverland/components/bitrix/news.detail/team/images/accordion-detailed__arrow.png);
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 10px
}

.accordion-detailed__item_active .accordion-detailed__header:after {
    transform: rotate(180deg)
}

.accordion-detailed__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #00091c
}

.accordion-detailed__content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #00091c;
    margin: 4px 0 20px
}

.accordion-detailed__item_active .accordion-detailed__content:not(:has(p)) {
    margin-bottom: 20px;
}

.contacts-detailed__button {
    font-size: 18px;
    color: #306ae0;
    font-weight: 500;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .2509803922);
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all .3s linear;
    cursor: pointer;
}

.contacts-detailed__button:after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background-image: url(/local/templates/neverland/components/bitrix/news.detail/team/images/contacts-detailed__button.svg)
}

.contacts-detailed__button:hover {
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, .2509803922)
}

.contacts-detailed__button:hover::after {
    animation-name: videoIconAnimate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes videoIconAnimate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }


    100% {
        transform: scale(1);
    }
}

.modal-video {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1000;
}

.modal-video__content {
    background-color: rgba(0, 0, 0, 0);
    margin: 10% auto;
    width: 80%;
    max-height: 540px;
    max-width: 960px;
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.modal-video__video {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.modal-video__close {
    width: 30px;
    height: 30px;
    background-image: url(/local/templates/neverland/components/bitrix/news.detail/team/images/modal-video__close.svg);
    background-size: contain;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100
}

.modal-video__close:hover,
.modal-video__close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.modal-video__content iframe {
    background: rgba(0, 0, 0, .3);
    border-radius: 10px;
}

@media screen and (max-width: 960px) {
    .contacts-detailed__section {
        flex-direction: column;
        gap: 30px
    }

    .contacts-detailed__images {
        width: 100%
    }

    .contacts-detailed__img {
        display: block;
        margin: 0 auto;
        height: auto;
        position: relative;
        max-width: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .contacts-detailed__name {
        font-size: 38px;
    }

    .contacts-detailed__anons {
        font-size: 18px;
        line-height: 36px
    }

    .contacts-detailed__anons p {
        font-size: 18px;
        line-height: 36px
    }

    .contacts-detailed__anons:has(p) {
        margin: 12px 0px
    }

    .contacts-detailed__anons:not(:has(p)) {
        margin: 12px 0
    }

    .accordion-detailed__header {
        font-size: 24px;
        line-height: 36px
    }

    .accordion-detailed__content {
        font-size: 18px;
        line-height: 32px
    }

    .accordion-detailed__content p {
        font-size: 18px;
        line-height: 32px
    }

}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 640px) {
    .container {
        padding: 0 20px
    }

    .contacts-detailed__button {
        top: initial;
        right: 0;
        left: 0;
        margin: auto;
        bottom: 20px;
        width: 211px;
        height: 50px;
        justify-content: center;
        padding: 10px 12px;
    }

    .contacts-detailed__images {
        height: 423px;
        flex: auto;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }

    .contacts-detailed__img {
        object-fit: cover;
        position: absolute;
        height: 423px;
        min-height: 423px;
    }

    .contacts-detailed__section {
        margin: 0 0 50px;
    }
}
/* End */
/* /local/templates/neverland/components/bitrix/news.detail/team/style.css?17607005046130 */
