/* Course Page Specific Styles */

/* Hero Section */
.hero--course {
    padding-top: calc(var(--section-padding) + 100px);
    background: none;
    padding-bottom: 68px;
}

.hero--course .hero__row {
    display: flex;
    align-items: center;
    gap: 48px;
    grid-template-columns: none;
    margin-bottom: 0;
}

.hero__course-start {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero__course-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: #000;
    margin-bottom: 4px;
}

.hero__course-text {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
}


.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 24px;
    max-width: fit-content;
}

.hero__tag {
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 12px;
    line-height: 133%;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.hero__tag--blue {
    background: rgba(0, 120, 240, 0.1);
}

.hero__tag--green {
    background: rgba(0, 180, 80, 0.1);
}

.hero__tag--orange {
    background: rgba(240, 120, 0, 0.1);
}

.hero__tag--purple {
    background: rgba(120, 80, 240, 0.1);
}

.hero__experience {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 24px;
}

.hero__text {
    color: var(--text-color);
    margin-bottom: 8px;
}

.hero__free {
    /* Header 3 - Semi Bold 24 32 - Montserrat */
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
    background: var(--Gradient-Blue-RAO-45, linear-gradient(135deg, #60C0FF 0%, #3060A0 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero__visual {
    flex: 0 0 45%;
}

.hero__promo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media(max-width: 930px) {
    .hero--course {
        padding-top: calc(var(--section-padding) + 60px);
    }

    .hero__row {
        flex-direction: column;
    }

    .hero__tags {
        justify-content: center;
    }
}

@media (max-width: 682px) {
    .hero__visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin-top: 24px;
    }

    .hero__course-title {
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .hero__course-title {
        font-size: 24px;
    }
}

.reasons {
    background: var(--bg-color);
    color: var(--text-color);
}

.reasons__item {
    background: var(--Blue-RAO-Blue-RAO-Light-10);
}

.reasons__number {
    color: var(--Blue-RAO-Blue-RAO-Light-20);
}

.reasons__title {
    color: var(--primary-color);
}

.reasons__text {
    color: var(--text-color);
}

.audience {
    padding-bottom: 48px;
}

/* Program Section */
.program {
    position: relative;
    padding: var(--section-padding) 0;
    background: none;
}

.program__container {
    background: rgba(48, 96, 160, 0.1) url('../img/courses/program/bgslide.png') no-repeat center/cover;
    border-radius: 24px;
    padding: 24px 24px 0;
    margin-top: 40px;
    position: relative;
}

.program__navigation {
    position: relative;
    margin-bottom: 24px;
    padding: 0 40px;
}

.program__bullets-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(48, 96, 160, 0.3);
    z-index: 1;
}

.program__bullets {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
}

.program__bullet {
    background: rgba(48, 96, 160, 0.6);
    border-radius: 20px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    box-shadow: 0 0 0 5px #f6f8fb;
}

.program__bullet--active {
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: #3060a0;
    box-shadow: 0 0 0 5px #f6f8fb;
}

.program__bullet-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: none;
}

.program__bullet--active .program__bullet-text {
    display: block;
}

.program__slider-box {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.program__slider {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program__slide {
    height: 400px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-shrink: 0;
}

.program__slide-content {
    flex: 1;
    padding-top: 20px;
}

.program__slide-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #3060a0;
}

.program__slide-text {
    border-top: 1px solid rgba(48, 96, 160, 0.6);
    padding-top: 16px;
    list-style: none;
}

.program__slide-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 0;
}

.program__slide-image {
    flex: 0 0 40%;
    height: 100%;
    display: flex;
    align-items: end;

}

.program__slide-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.program__controls {
    position: absolute;
    right: 24px;
    top: 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 10;
}

.program__btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.program__btn:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .program__container {
        padding: 40px 24px 0;
    }

    .program__navigation {
        padding: 0;
        margin-bottom: 40px;
    }

    .program__bullets-line {
        left: 0;
        right: 0;
    }

    .program__slide {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .program__slider-box {
        height: 350px;
    }

    .program__slide {
        height: 350px;
        flex-direction: column;
        padding-bottom: 60px;
        overflow-y: auto;
        position: relative;
    }

    .program__slide-content {
        max-width: 80%;
        padding-top: 0;
    }

    .program__slide-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .program__slide-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 150px;
        height: auto;
    }

    .program__controls {
        flex-direction: row;
        right: 0;
        top: 0;
    }
}

@media (max-width: 545px) {
    .program__slide-text li {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .program__bullet-text {
        font-size: 10px;
    }

    .program__bullet--active {
        padding: 6px 10px;
    }
}

@media (max-width: 447px) {
    .program__slide-content {
        max-width: 100%;
    }

    .program__slide-title {
        font-size: 18px;
        margin-bottom: 8px;
        max-width: 80%;
    }

		.program__slide-text li:last-child {
			margin-right: 100px;
		}
}

@media (max-width: 390px) {
    .program__slide-image {
        /* display: none; */
        width: 120px;
    }

    .program__slide {
        padding-bottom: 0;
    }
}

.program__buttons {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.program__button {
    width: 320px;
}

.lecture__video {
	padding: 84px 74px;
	display: flex;		
	justify-content: space-between;
	border-radius: 12px;
	background-color: var(--Blue-RAO-Blue-RAO-Light-10);
	background-image: url("../img/courses/lecture/bglecture.png");
	background-repeat: no-repeat;
	background-position: right top;
	backdrop-filter: blur(32px);
	position: relative;
}

.lecture__text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;	
}
.lecture__logos {
	display: flex;
	gap: 48px;
	position: relative;
	width: fit-content;
}
.lecture__logos::before {
	content: "";
	width: 1px;
	height: calc(100% - 18px);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--Blue-RAO-Blue-RAO-Light-60);
}
.lecture__logo {
	height: 50px;
}
.lecture__subtitle {	
	font-size: 64px;
	font-style: normal;
	font-weight: 600;
	line-height: 80px; /* 125% */
	width: 443px;
}

.lecture__button {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background-color: var(--Blue-RAO-Blue-RAO-Light-60);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.015 5.89124L38.8201 19.7553C39.4214 20.1559 39.9805 20.5284 40.4102 20.8748C40.8588 21.2364 41.3906 21.7401 41.6969 22.4784C42.101 23.4525 42.101 24.5474 41.6969 25.5216C41.3906 26.2598 40.8588 26.7636 40.4102 27.1252C39.9805 27.4715 39.4215 27.844 38.8201 28.2447L17.9434 42.1565C17.2082 42.6464 16.5456 43.088 15.9831 43.3928C15.4201 43.6977 14.6434 44.0486 13.7355 43.9944C12.5764 43.9252 11.5054 43.3524 10.8046 42.4263C10.2556 41.7009 10.1167 40.8598 10.0583 40.2223C9.99989 39.5853 9.99994 38.7893 10 37.9061V10.0938C9.99994 9.2107 9.99989 8.41464 10.0583 7.77765C10.1167 7.14016 10.2556 6.29904 10.8046 5.57361C11.5054 4.64756 12.5764 4.07476 13.7355 4.00558C14.6434 3.9514 15.4201 4.30224 15.9831 4.60721C16.5456 4.91194 17.2799 5.40129 18.015 5.89124Z' fill='white'/%3E%3C/svg%3E");
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: all 0.6s ease;
}

.lecture__button:hover {
	background-color: var(--dark-bg);
}

@media(max-width: 1049px) {
	.lecture__video {
    padding: 24px 24px;
	}
	.lecture__text {
		flex: 1;
	}
	.lecture__image {
		flex: 1;
		max-width: 50%;
	}
	.lecture__subtitle {
		width: auto;
		font-size: 32px;
		line-height: 60px;
	}
}

@media(max-width: 768px) {
	.lecture__logos {
		gap: 24px;
	}
	.lecture__logo {
		height: 35px;
	}
	.lecture__button {
		width: 64px;
		height: 64px;	
		background-size: 24px 24px;	
	}
	.lecture__subtitle {
		font-size: 26px;
		line-height: 32px;
	}
}

@media(max-width: 540px) {
	.lecture__logos::before {
		display: none;
	}
}

@media(max-width: 420px) {
	.lecture__logo {
		height: 20px;
	}
	.lecture__subtitle {
		font-size: 20px;
		line-height: 26px;
	}
	.lecture__button {
		width: 32px;
		height: 32px;	
		background-size: 20px 20px;	
	}
	.program__button {
		width: 100%;
	}
}

.structure {
    padding-top: 48px;
}

.organizers {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 96px 0;
}

.organizers__title {
    color: var(--primary-color);
}

.organizers__text {
    color: var(--text-color);
}
@media(max-width: 768px) {
	.organizers {
		padding: 48px 0;
	}
}
.price {}

/* .price__block {
    display: flex;
    padding: 48px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    border-radius: 12px;
    background: var(--Blue-RAO-Blue-RAO-Light-10);
    backdrop-filter: blur(32px);
}

.price__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.price__title {
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.price__subtitle {
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.price__list {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    list-style: disc;
    margin-left: 20px;
}

.price__list li::marker {
    color: var(--primary-color);
}

.price__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.price__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.price__value {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.price__value-old {
    color: var(--Black-Black-60);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-decoration-line: line-through;
}

.price__value-free {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;    
    background: var(--Gradient-Blue-RAO-45, linear-gradient(135deg, #60C0FF 0%, #3060A0 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(max-width: 768px) {
    .price__block {
        flex-direction: column;
    }
}

@media(max-width: 521px) {
    .price__block {
        padding: 48px 24px;
    }
} */
.price__block {
    background: var(--primary-light);
    backdrop-filter: blur(64px);
    border-radius: 12px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.price__left {
    flex: 1;
}

.price__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    text-transform: none;
    margin-bottom: 8px;
		color: var(--text-color);
}

.price__value {
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: var(--primary-color);
}

.price__right {
    flex: 1;
}

.price__list {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
}

.price__list li {
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    font-size: 16px;
}

.price__list li::before {
    content: '•';
    font-size: 24px;
    line-height: 20px;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

@media(max-width: 768px) {
    .price__block {
        flex-direction: column;
    }
}

@media(max-width: 420px) {
    .price__block {
        padding: 24px;
        gap: 24px;
    }

    .price__value {
        font-size: 28px;
    }
}

.contacts__title {
    text-transform: none;
    color: var(--text-color);
}

.contacts__subtitle {
    color: var(--Black-Black-60);
}

.form__input {
    width: 100%;
    max-width: 100%;
}

@media(max-width: 1030px) {
    .form__input-group {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.schedule {
	padding-top: calc(var(--section-padding) + 144px);
}

.schedule__subtitle {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: rgba(48, 96, 160, 0.6);
    margin: -44px auto 48px;
}

.schedule__text {
	text-align: center;
}

@media (max-width: 1024px) {
  .schedule {
      padding-top: calc(var(--section-padding) + 64px);
			padding-bottom: 32px;
	}
}

@media(max-width: 420px) {
	.schedule__subtitle {
		margin-top: -30px;	
	}
}

.schedule__list {
    max-width: 800px;
    margin: 0 auto;
}

.schedule__item {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.schedule__item.active {
    box-shadow: var(--shadow-md);
}

.schedule__question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--transition);
}

.schedule__question:hover {
    color: var(--primary);
}

.schedule__icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: var(--transition);
}

.schedule__icon::before,
.schedule__icon::after {
    content: '';
    position: absolute;
    background: var(--dark-bg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.schedule__icon::before {
    width: 16px;
    height: 2px;
}

.schedule__icon::after {
    width: 2px;
    height: 16px;
    transition: var(--transition);
}

.schedule__item.active .schedule__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.schedule__answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.schedule__item.active .schedule__answer {
    padding: 0 30px 30px;
    max-height: 600px;
}

.schedule__answer p {    
    margin-bottom: 15px;
}

.schedule__answer ul {
    list-style: none;
    margin-bottom: 15px;    
}

.schedule__item:last-child .schedule__answer ul {
	padding-left: 20px;
}

.schedule__answer li {
    position: relative;
    margin-bottom: 5px;    
}

.schedule__item:last-child .schedule__answer li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--dark-bg);
		font-size: 20px;
		top: -5px;
}