

/* Start:/local/templates/.default/components/bitrix/catalog.element/academy-course-detail_en/style.css?174954748011553*/
:root {
    --black-main: #222222;
    --black-light: #767676;
    --blue-main: #275ec7;
    --blue-dark: #0d2451;
    --blue-light: #3893ff;
    --blue-ghost: #e3eeff;
    --blue-extra-light: #98c1ff;
}


body {
    overflow-x: hidden;
}

h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 110%;
    color: #fff;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

/* Course page - header */
header {
    height: auto;
    padding-top: 0;
}

.header {
    display: flex;
    align-items: center;
    margin-top: 130px;
    padding: 60px;
    background-color: var(--blue-dark);
    border-radius: 8px;
}

.header__content {
    display: flex;
    flex-direction: column;
}

.header__content .tags {
    display: flex;
    gap: 12px;
}

.tags__item {
    padding: 4px 16px 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #fff;
    border: 1px #fff solid;
    border-radius: 8px;
}

.tags__item.accent {
    color:  var(--blue-dark);
    background-color: #fff;
}

.header__title {
    max-width: 893px;
}

.header__descr {
    color: #fff;
    max-width: 893px;
}

.header__content .btn-primary {
    width: fit-content;
}

.header__image img {
	/* margin-right: -60px; */
}
/* END header */

/* program component */
.program__title-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program__title-tags {
    display: flex;
    gap: 10px;
    position: relative;
    top: 8px;
}

.program__title-tags-item {
    padding: 4px 16px 6px;
    color: var(--blue-dark);
    border: 1px var(--blue-dark) solid;
    border-radius: 8px;
}

.program .btn-primary {
    display: flex;
    gap: 8px;
}

.program .btn-primary p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 1px;
}
/* END program */


/* Accordion component */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* accordion element */
.accordion {
    padding: 24px 24px 0;
    background-color: #fff;
    box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04), 0px 0px 4px 0px rgba(34, 34, 34, 0.08);
    border-radius: 8px;
    transition: all .2s ease;
    cursor: pointer;
}

.title-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hide-show-btn {
    background-color: var(--blue-main);
    border-radius: 20px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateZ(-45deg);
    transition: all .2s ease;
    cursor: pointer;
    user-select: none;
}

.hide-show-btn:hover {
    background-color: var(--blue-light);
}

.accordion-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    overflow-y: hidden;
    transition: max-height .2s ease-out;
}

.accordion-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 24px;
}

.accordion-content li::before {
    content: "";
    display: flex;
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    border-radius: 50%;
    background-color: var(--blue-main);
}

.accordion-content li ul{

}
.accordion-content p b {
	font-weight: 600;
}
.accordion-content p b a {
	font-weight: 600;
}

.accordion.active {
    padding: 24px;
}

.accordion.active .hide-show-btn {
    transform: rotateZ(0);
}
/* END Accordion */

/* Teachers component */
.teachers {
    width: 100%;
}

.teachers .swiper-buttons{
    display: none;
}

.teachers__list .swiper-wrapper {
    display: flex;
    gap: 16px;
}

.teacher-card__wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
}

.teacher-card__wrapper>img {
    height: 100%;
}

.teacher-card__wrapper button, .teacher-close-btn_mobile {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .2s ease;
}

.teacher-card__wrapper button:hover {
    background-color: var(--blue-ghost);
}

.teacher-card__info {   
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px;
    background-color: #fff;
    transform: translateY(100%);
    transition: transform .2s ease;
}

.teacher-card__info.active {
    transform: translateY(0);
}

.teacher-card__info button {
    background-color: var(--blue-main);
    transition: background-color .2s ease;
}

.teacher-card__info button:hover {
    background-color: var(--blue-light);
}

.teacher-card__info-photo {
    max-height: 138px;
    max-width: 118px;
    border-radius: 8px;
}

.teacher-card__info p {
    margin-top: 16px;
    flex: 1;
}

.teacher-card__info a {
    width: fit-content;
    color: var(--blue-main);
    font-size: 20px;
    font-weight: 600;
    transition: color .2s ease;
}

.teacher-card__info a:hover {
    color: var(--blue-light);
}

.teacher-card__name {
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
}

.teacher-card__job-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-light);
}
/* END Teachers component */

/* Group application component */
.group-application {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 200px 50px;
    background-color: var(--blue-extra-light);
    border-radius: 8px;
}

.group-application__content {
    max-width: 612px;
}

.group-application__content .title {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height: 110%;
}

.group-application__content .text{
    color: #fff;
    font-weight: 500;
}

.group-application .btn-primary {
    height: fit-content;
    z-index: 0;
}
/* END Group application */

/* Certificate component */
.certificate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 40px 60px 50px;
    background-color: var(--blue-dark);
    border-radius: 8px;
}

.certificate .title {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height: 110%;
}

.certificate .text{
    color: #fff;
    font-weight: 500;
}

.certificate img {
    width: 100%;
}
/* END Certificate */

/* Course bottom cards */
.cards {
    display: flex;
    gap: 16px;
}

.cards__registration {
    display: flex;
    flex-direction: column;
    padding: 40px 50px 50px;
    background-color: var(--blue-dark);
    border-radius: 8px;
}

.cards__partners {
    display: flex;
    flex-direction: column;
    padding: 40px 50px 50px;
    background-color: var(--blue-extra-light);
    border-radius: 8px;
}

.cards .title {
    font-size: 60px;
    font-weight: 600;
    line-height: 110%;
    color: #fff;
}

.cards p {
    font-weight: 500;
    color: #fff;
}
/* END Course bottom cards */


/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
    .group-application {
        padding: 40px 148px 50px;
    }
}

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

    .header__image {
        display: none;
    }

    .group-application, .certificate {
        padding: 40px 40px 50px;
    }

    .teacher-card__info a {
        font-size: 18px;
    }

    .teacher-card__info a:last-of-type {
        margin-top: 4px;
    }

    .certificate {
        gap: 0;
    }

    .certificate img {
        width: 50%;
    }
	.requirements-list br {
		display: none;
	}
	.accordion-content li br{
		display: none;
	}
}

@media screen and (min-width: 993px) {
    .teacher-card__info_mobile {
        display: none;
    }
}

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

    nav.container {
        background-color: var(--blue-dark);
    }

    .header {
        width: 100vw;
        margin-left: -40px;
        margin-top: 0;
        padding: 40px 40px 60px; 
        border-radius: 0;
    }

    .header__title {
        font-size: 60px;
    }

    .program__title-line {
        flex-direction: column;
        align-items: start;
        gap: 16px;
    }

    .swiper {
        overflow-x: visible !important;
    }

    .teachers__list .swiper-wrapper {
        gap: 0;
    }

    .teachers__title {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .teachers__title h2 {
        width: min-content
    }

    .teachers .swiper-buttons {
        display: flex;
    }
	.teachers__list-item p  {
		font-size: 24px;
	}

    .group-application {
        padding: 40px;
        flex-direction: column;
    }

    .program__title-tags {
        position: static;
        top: none;
    }

    .certificate {
        padding: 40px;
        flex-direction: column;
        gap: 24px;
    }

    .certificate img {
        width: 100%;
    }

    .cards {
        flex-direction: column;
        gap: 0;
    }

    .cards>div {
        padding: 40px;
    }
}

@media  screen and (max-width: 480px) {
    nav.container {
        background-color: var(--blue-dark);
    }

    .header {
        margin-left: -16px;
        padding: 40px 16px 60px; 
    }

    .header__title {
        font-size: 40px;
    }

    .program__title-line {
        gap: 0;
    }

    .program .btn-primary {
        width: fit-content;
    }

    .accordion {
        padding: 16px 16px 0;
    }

    .accordion.active {
        padding: 16px;  
    }
    
    .accordion .title{
        font-size: 16px;
    }

    .teachers {
        overflow-x: visible !important;
        width: 100%;
    }

    .teachers .swiper-buttons {
        height: 32px;
        width: 72px;
        margin-bottom: -6px;
    }

    .teachers__list .swiper-wrapper {
        gap: 0;
    }

    .teacher-card__wrapper>img {
        height: auto;
        width: 100%;
    }

    .teacher-card__info_web {
        display: none;
    }

    .teacher-card__info_mobile {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        position: absolute;
        z-index: -10;
        opacity: 0;
    }

    .teacher-card__info_mobile.active {
        position: fixed;
        z-index: 99;
        opacity: 1;
    }

    .teacher-card__info_mobile .background-info {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .5);
        position: absolute;
    }

    .teacher-card__info_mobile .content {
        height: fit-content;
        background-color: #fff;
        position: absolute;
        bottom: 0;
        padding: 32px;
        border-radius: 8px 8px 0 0;
        transform: translateY(100%);
        transition: transform .25s ease;
    }

    .teacher-card__info_mobile.active .background-info {
        z-index: 99;
    }

    .teacher-card__info_mobile.active .content {
        transform: translateY(0);
        z-index: 100;
    }

    .teacher-close-btn_mobile {
        background-color: var(--blue-main);
    }

    .teacher-card__name {
        font-size: 24px;
    }

    .teacher-card__job-title {
        font-size: 16px;
    }

    .teacher-card__info-mail, .teacher-card__info-phone {
        font-weight: 500;
        color: var(--blue-main);
        font-size: 18px;
    }

    .group-application {
        padding: 24px;
    }

    .group-application__content .title, .certificate .title {
        font-size: 32px;
    }

    .certificate {
        padding: 24px;
    }

    .cards>div {
        padding: 24px;
    }

    .cards>div .title{
        font-size: 32px;
    }
}




/* End */
/* /local/templates/.default/components/bitrix/catalog.element/academy-course-detail_en/style.css?174954748011553 */
