html {
    font-size: calc(100vw / 1920 * 10);
}
body {
    font-family: 'Rubik';
    font-weight: 400;
    transition: all .2s linear !important;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #000;
    background: #F7F7F7;
}
a, h1, h2, h3, h4, h5, p, span, button, ul, li {
    padding: 0;
    margin: 0;
    background: transparent;
    text-decoration: none;
    border: none;
    transition: all .2s linear;
}
input, textarea, select {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    outline: none;
	transition: all .2s linear;
}
.container {
    max-width: 176rem;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
div {
    transition: all .2s linear;
}
path, rect, circle {
    transition: all .2s linear;
}

/* header */

header {
    padding-top: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.logo {
    display: flex;
}
.logo img {
    width: 27.7rem;
    object-fit: cover;
}
.menu {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 87rem;
}
.menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7.5rem;
    justify-content: center;
}
.menu li {
    display: flex;
    list-style: none;
}
.menu a {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	text-transform: lowercase;
}
.menu a.active, .menu a:hover {
    color: #FEC400;
}
.header-main {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.header-contacts {
    display: flex;
    align-items: center;
}
.header-contacts a {
    display: flex;
}
.header-contacts a img {
    width: 4.7rem;
}
.header-contacts a:hover {
    opacity: .5;
}
.header-phone {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1rem 2rem;
    border-radius: 2rem;
    background: #FEC400;
	box-shadow: -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset, 2px 3px 10px 0px rgba(61, 60, 60, 0.50);
}
.header-phone:hover {
    background: #FFF;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
}
header.top {
    transform: translateY(-100%);
    background: linear-gradient(180deg, #F7F7F7 0%, rgba(247, 247, 247, 0.50) 62.5%, rgba(247, 247, 247, 0.00) 100%);
    transition: .3s all;
    padding: 2rem 0;
}
header.fixed {
    transform: translateY(0);
    transition: .3s all;
    position: fixed;
}
header.top .logo img {
    height: 4rem;
}
.mobiler-header {
    display: none;
}
.mobile-menu {
    display: none;
}
.mobile-menu__fon {
    display: none;
}
.trp-language-switcher > div {
	padding: 0;
    background-color: transparent;
    border: none;
    width: auto !important;
    padding-right: 2rem;
	color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    -webkit-appearance: none;
    background-image: url('/wp-content/uploads/2024/09/select.svg');
    background-position: center right;
    background-size: 0.8rem;
    background-repeat: no-repeat;
    padding-right: 1.3rem;
    cursor: pointer;
}
.trp-language-switcher > div > a {
	color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	padding: 0;
}
.trp-language-switcher {
    height: auto;
    width: auto;
}
.trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language {
    padding: 0;
    left: 0;
    top: 0;
}
.trp-language-switcher > div > a:hover {
    background: transparent;
}

@media screen and (max-width: 992px) {
    html {
        font-size: calc(100vw / 375 * 10);
    }
    .container {
        max-width: 34.3rem;
    }
    header {
        padding: 1.6rem 0;
    }
    .header-container {
        align-items: center;
    }
    .logo img {
        width: 12.5rem;
    }
    .menu {
        display: none;
    }
    .header-main {
        display: none;
    }
    header.top {
        padding: 1.6rem 0;
    }
    header.top .logo img {
        width: 12.5rem;
        height: auto;
    }
    .burger-open {
		display: flex;
		flex-direction: column;
        align-items: flex-end;
        gap: 0.8rem;
		z-index: 99999;
    }
    .bar {
        width: 2.8rem;
		height: 0.2rem;
		background-color: #313131;
		transition: 0.4s;
	}
    .bar:nth-child(2) {
        width: 2.2rem;
    }
    .change .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-0.8rem, 0.5rem);
    }
    .change .bar:nth-child(2) {
        opacity: 0;
    }
    .change .bar:nth-child(3) {
        transform: rotate(45deg) translate(-0.8rem, -0.6rem);
    }
    .mobiler-header {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    .mobile-menu {
        display: flex;
        transform: translateX(100%);
        position: fixed;
        top: 6.8rem;
        right: 0;
        width: 100%;
        max-width: 27.1rem;
        height: calc(100% - 6.8rem);
        overflow-y: auto;
        z-index: 8;
        background: #BBB;
        flex-direction: column;
        justify-content: space-between;
        gap: 4rem;
        padding: 4.5rem 1.6rem 4rem 1.6rem;
    }
    body.hidden {
        overflow: hidden;
    }
    .mobile-menu.active {
        transform: translateX(0);
    }
    .mobile-menu__fon.active {
        background: rgba(0, 0, 0, 0.20);
        width: 100%;
        position: fixed;
        z-index: 8;
        left: 0;
        height: 100%;
        top: 0;
        display: block;
    }
    header.active {
        background: #F7F7F7;
    }
    .mobile-menu nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .mobile-menu nav ul li {
        display: flex;
        list-style: none;
    }
    .mobile-menu nav ul li a {
        color: #000;
        text-align: center;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .mobile-menu nav ul li a:hover {
        color: #1D5CA3;
    }
    .mobile-menu .header-main {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .header-phone {
        width: 100%;
        text-align: center;
    }
}


/* banner */

.banner {
    position: relative;
}
.banner::before {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 76.12%, rgba(247, 247, 247, 0.80) 85.71%, #F7F7F7 96.83%), linear-gradient(180deg, #F7F7F7 4.18%, rgba(0, 0, 0, 0.00) 47%), linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    height: 100%;
    width: 100%;
    z-index: 2;
    position: absolute;
	top: -15rem;
}
.banner-fon {
    height: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
    object-fit: cover;
	top: -25rem;
}
.banner-container {
    position: relative;
    z-index: 3;
    padding-top: 32rem;
    padding-bottom: 7rem;
    display: flex;
    flex-direction: column;
    gap: 54rem;
}
.slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 9rem;
    left: 0;
}
.slogan svg {
	width: 49rem;
    height: auto;
    position: absolute;
    right: -1rem;
    bottom: -5.2rem;
    z-index: -1;
}
.slogan-title {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.slogan-subtitle {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.banner-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.banner-title {
    color: #FFF;
    text-align: center;
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    letter-spacing: 0.128rem;
}
.banner-button {
	border-radius: 3rem;
	background: #FEC400;
	box-shadow: -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset, 2px 3px 10px 0px rgba(61, 60, 60, 0.50);
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    padding: 1.8rem 3.2rem;
}
.banner-button:hover {
    background: #FFF;
    color: #000;
}
.banner-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.banner-advantages__item {
    display: flex;
    flex-direction: column;
	padding: 2.4rem 3.2rem;
    gap: 1rem;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	border-radius: 3rem;
	position: relative;
}
.banner-advantages__item::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
    border-radius: 3rem;
}
.banner-advantages__item-description {
    color: #FFF;
	font-size: 2rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	position: relative;
	z-index: 2;
}
.banner-advantages__item-description-2 {
	color: #FFF;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 992px) {
    .banner-container {
        padding-top: 22.6rem;
        padding-bottom: 0;
        gap: 22.6rem;
    }
	.banner-fon{
		top: 0;
	}
	.banner::before{
		top: 0;
	}
    .slogan {
        top: 5.9rem;
    }
    .slogan-title {
        font-size: 1.4rem;
    }
    .slogan-subtitle {
        font-size: 0.8rem;
    }
    .banner-main {
        gap: 1rem;
    }
    .banner-title {
        font-size: 2.2rem;
        letter-spacing: 0.044rem;
    }
    .banner-button {
        font-size: 1.2rem;
        padding: 1.4rem 3.3rem;
    }
    .banner-advantages {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    .banner-advantages__item {
        gap: 1rem;
		padding: 2rem 1.6rem;
    }
    .banner-advantages__item-description {
        font-size: 1.6rem;
    }
	.banner-advantages__item-description-2 {
        font-size: 1.4rem;
    }
    .banner-fon {
        height: 55.3rem;
    }
    .banner::before {
        height: 55.3rem;
    }
}

/* catagories */

.catagories {
    margin: 12rem 0;
}
.catagories-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.catagories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.catagories-item {
    border-radius: 3rem;
    background: #D9D9D9;
    box-shadow: 0.1rem 0.1rem 0.78rem rgba(0, 0, 0, 0.39);
    overflow: hidden;
    position: relative;
    padding: 2rem 2.9rem;
    min-height: 39.9rem;
}
.catagories-item::before {
    content: '';
	background: linear-gradient(180deg, #313131 3.5%, rgba(49, 49, 49, 0.00) 100%), linear-gradient(0deg, rgba(112, 159, 212, 0.00) 0%, rgba(112, 159, 212, 0.00) 100%);
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.catagories-item__img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
.catagories-item__title {
    color: #FFF;
    position: relative;
    z-index: 3;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.catagories-main {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0.1rem 0.1rem 0.78rem rgba(0, 0, 0, 0.39);
    overflow: hidden;
    border-radius: 3rem;
    padding: 4rem 4rem 2rem 4rem;
}
.catagories-main__img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.catagories-main__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catagories-main__img::before {
    content: '';
    background: linear-gradient(0deg, rgba(49, 49, 49, 0.80) 0%, rgba(49, 49, 49, 0.80) 100%);
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.catagories-main__title {
    position: relative;
    z-index: 3;
    color: #FFF;
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 66.4rem;
    margin-bottom: 2rem;
}
.catagories-main__description {
    position: relative;
    z-index: 3;
    color: #FFF;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 63.2rem;
    margin-bottom: 1.5rem;
}
.catagories-main__row {
    position: relative;
    z-index: 3;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
    max-width: 74.6rem;
}
.catagories-main__item {
	color: #FFF;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    border-radius: 3rem;
    border: 0.2rem solid #FFF;
    padding: 1.5rem 3.2rem;
}
.catagories-main__link {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    margin-top: auto;
    border-radius: 3rem;
    background: #F7F7F7;
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    padding: 1.8rem;
}

@media screen and (max-width: 992px) {
    .catagories {
        margin: 6rem 0;
    }
    .catagories-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
    .catagories-grid {
        gap: 1rem;
    }
    .catagories-item {
        padding: 1.5rem;
        min-height: 15.3rem;
    }
    .catagories-item__title {
        font-size: 1.6rem;
    }
    .catagories-main {
        padding: 1.5rem;
    }
    .catagories-main__title {
        font-size: 1.6rem;
        max-width: 21.5rem;
        margin-bottom: 1.5rem;
    }
    .catagories-main__description {
        font-size: 1.2rem;
        max-width: 31.3rem;
        margin-bottom: 1rem;
    }
    .catagories-main__row {
        margin-top: 0.5rem;
        gap: 1rem 0.5rem;
        max-width: 31.6rem;
    }
    .catagories-main__item {
        font-size: 1.2rem;
        padding: 1.2rem 1.8rem;
    }
    .catagories-main__link {
        margin-top: 3rem;
        font-size: 1.2rem;
        padding: 1.4rem;
    }
}

/* courses */

.courses {
    margin-bottom: 12rem;
}
.courses-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.courses-title {
	color: #000;
	font-size: 6.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: 105%;
	letter-spacing: 0.128rem;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.courses-title span {
    border-radius: 5rem;
    border: 0.2rem solid #FEC400;
    padding: 0 0.5rem 0.5rem 0.5rem;
}
.courses-title svg {
    width: 15.3rem;
    height: auto;
    position: absolute;
    top: 0;
    right: -15.3rem;
}
.courses-main {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.courses-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.courses-item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border-radius: 3rem;
    background: #313131;
    box-shadow: 0.1rem 0.1rem 0.78rem 0.1rem rgba(0, 0, 0, 0.39);
    padding: 4rem;
}
.courses-item__img {
    width: 100%;
    height: 46.1rem;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
}
.courses-item__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.courses-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.courses-item__name {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.courses-item__title {
    color: #FFF;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}
.courses-item__description {
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.courses-item__submit {
    border-radius: 3rem;
	background: #FFF;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
    margin: auto auto 0 auto;
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    padding: 1.8rem 3.2rem;
}
.courses-item__submit:hover {
    background: #FEC400;
}
.courses-more {
	border-radius: 3rem;
	background: #FEC400;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
    margin: 0 auto;
    padding: 1.8rem 7.8rem;
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    border: 0.1rem solid transparent;
}
.courses-more:hover {
    background: #FFF;
    color: #000;
    border-color: #000;
}

@media screen and (max-width: 992px) {
    .courses {
        margin-bottom: 6rem;
    }
    .courses-container {
        gap: 2.4rem;
    }
    .courses-title {
        font-size: 2.2rem;
    }
    .courses-title svg {
        width: 6.9rem;
        top: auto;
        right: 3.8rem;
        bottom: -0.4rem;
    }
    .courses-main {
        gap: 2rem;
    }
    .courses-row {
        grid-template-columns: repeat(1, 1fr);
    }
    .courses-item {
        gap: 2rem;
        padding: 1.5rem;
    }
    .courses-item__img {
        height: 29.3rem;
    }
    .courses-item__name {
        gap: 1rem;
    }
    .courses-item__title {
        font-size: 1.6rem;
    }
    .courses-item__description {
        font-size: 1.2rem;
    }
    .courses-item__submit {
        font-size: 1.2rem;
    }
    .courses-more {
        padding: 1.3rem 5.3rem;
        font-size: 1.2rem;
    }
}

/* teachers */

.teachers {
    margin-bottom: 12rem;
}
.teachers-container {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}
.teachers-title {
	color: #000;
	font-size: 6.4rem;
	font-style: normal;
	font-weight: 500;
	line-height: 105%;
	letter-spacing: 0.128rem;
    margin: 0 auto;
    text-align: center;
}
.teachers-title span {
    border-radius: 5rem;
    border: 0.2rem solid #FEC400;
    padding: 0 1rem;
}
.teachers-slider {
    display: flex;
    flex-direction: column;
    gap: 7.2rem;
}
.teachers-swiper {
    width: 100%;
}
.teachers-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.2rem;
}
.teachers-item__img {
    position: relative;
}
.teachers-item__img svg {
    width: 31.9rem;
    height: auto;
    position: absolute;
    left: -2.2rem;
    top: -2.2rem;
}
.teachers-item__img img {
    width: 59rem;
    min-width: 59rem;
    border-radius: 100%;
    object-fit: cover;
    height: 59rem;
}
.teachers-item__main {
    display: flex;
    flex-direction: column;
    max-width: 55.3rem;
    align-items: flex-start;
}
.teachers-item__title {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1.5rem;
}
.teachers-item__description {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4rem;
}
.teachers-item__experience {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2.4rem;
}
.teachers-item__directions {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4rem;
}
.teachers-item__button {
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
    border-radius: 3rem;
    background: #FEC400;
    padding: 1.8rem 3.2rem;
    border: 0.1rem solid transparent;
	box-shadow: -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset, 2px 3px 10px 0px rgba(61, 60, 60, 0.50);
}
.teachers-item__button:hover {
    background: #FFF;
    border-color: #000;
    color: #000;
}
.teachers-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.teachers-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    opacity: 1;
    width: 12.8rem;
    height: 0.4rem;
    background: #BBB;
    border-radius: 0;
}
.teachers-pagination .swiper-pagination-bullet-active {
    background: #FEC400;
}

@media screen and (max-width: 992px) {
    .teachers {
        margin-bottom: 6rem;
    }
    .teachers-container {
        gap: 3rem;
    }
    .teachers-title {
        font-size: 2.2rem;
    }
    .teachers-slider {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .teachers-item {
        flex-direction: column;
        gap: 2.5rem;
    }
    .teachers-item__img svg {
        width: 17.3rem;
        left: -1.2rem;
        top: -1.2rem;
    }
    .teachers-item__img img {
        width: 32rem;
        min-width: 32rem;
        height: 32rem;
    }
    .teachers-item__main {
        max-width: 34.3rem;
        align-items: center;
    }
    .teachers-item__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .teachers-item__description {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .teachers-item__experience {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .teachers-item__directions {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .teachers-item__button {
        font-size: 1.2rem;
        padding: 1.3rem 3.3rem;
    }
    .teachers-pagination .swiper-pagination-bullet {
        width: 3.6rem;
        border-radius: 5rem;
    }
}

/* reviews */

.reviews {
    margin-bottom: 12rem;
}
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.reviews-title {
    color: #000;
    font-size: 6.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 105%;
    margin: 0 auto;
	letter-spacing: 0.128rem;
    text-align: center;
}
.reviews-title span {
    border-radius: 5rem;
    background: #FEC400;
    padding: 0 1rem;
}
.reviews-main {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.reviews-swiper {
    width: 100%;
}
.reviews-swiper .swiper-slide {
    height: auto;
}
.reviews-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem;
    border-radius: 3rem;
    border: 0.2rem solid #313131;
    height: 100%;
}
.reviews-item__main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.reviews-item__img {
    width: 10rem;
    height: 10rem;
    border-radius: 100%;
    object-fit: cover;
}
.reviews-item__name {
    display: flex;
    flex-direction: column;
}
.reviews-item__title {
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.reviews-item__program {
	color: #BBB;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.reviews-item__description {
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.reviews-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.reviews-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    opacity: 1;
    width: 12.8rem;
    height: 0.4rem;
    background: #BBB;
    border-radius: 0;
}
.reviews-pagination .swiper-pagination-bullet-active {
    background: #FEC400;
}

@media screen and (max-width: 992px) {
    .reviews {
        margin-bottom: 5rem;
    }
    .reviews-container {
        gap: 2rem;
    }
    .reviews-title {
        font-size: 2.2rem;
    }
    .reviews-main {
        gap: 3rem;
    }
    .reviews-item {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .reviews-item__main {
        gap: 1rem;
    }
    .reviews-item__img {
        width: 8.2rem;
        height: 8.2rem;
    }
    .reviews-item__title {
        font-size: 1.6rem;
    }
    .reviews-item__program {
        font-size: 1.2rem;
    }
    .reviews-item__description {
        font-size: 1.2rem;
    }
    .reviews-pagination .swiper-pagination-bullet {
        width: 3.6rem;
        border-radius: 5rem;
    }
}

/* footer */

footer {
    background: #313131;
    padding: 4rem 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
}
.footer-main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.footer-column {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}
.footer-logo {
    display: flex;
}
.footer-logo img {
    width: 33rem;
}
.footer-privacy {
	color: #FEC400;
	font-family: 'Manrope';
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.footer-title {
	color: #FFF;
	font-size: 4.8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 105%;
	letter-spacing: 0.096rem;
	text-transform: uppercase;
}
.footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 131rem;
}
.footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-item > a {
    min-width: 7rem;
    width: 7rem;
    height: 7rem;
    border-radius: 100%;
    overflow: hidden;
}
.footer-item > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-item__description {
	color: #FFF;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.footer-item__description a {
    color: #FFF;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    footer {
        padding: 1.6rem 0;
    }
    .footer-container {
        flex-direction: column;
        gap: 4rem;
        align-items: center;
    }
    .footer-main {
        gap: 3rem;
        width: 100%;
    }
    .footer-column {
        align-items: center;
        gap: 2rem;
    }
    .footer-logo img {
        width: 16.7rem;
    }
    .footer-privacy {
        font-size: 1.2rem;
    }
    .footer-title {
        font-size: 2.2rem;
        letter-spacing: 0.044rem;
        max-width: 25.5rem;
    }
    .footer-row {
        align-items: center;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .footer-item {
        flex-direction: column;
        gap: 1rem;
        max-width: 17rem;
        margin: 0 auto;
    }
    .footer-item > a {
        min-width: 4.6rem;
        width: 4.6rem;
        height: 4.6rem;
    }
    .footer-item__description {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* banner-page */

.banner-page {
    position: relative;
    height: 66rem;
    display: flex;
}
.banner-page::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 60rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 68.5%, rgba(247, 247, 247, 0.50) 90.5%, #F7F7F7 100%), linear-gradient(180deg, #F7F7F7 7.96%, rgba(247, 247, 247, 0.50) 29.08%, rgba(0, 0, 0, 0.00) 58.5%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.banner-page__img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 60rem;
    object-fit: cover;
}
.banner-page__container  {
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 3;
    justify-content: center;
}
.banner-page__title {
    padding: 2.5rem 13.4rem;
    border-radius: 3rem;
    background: #313131;
	color: #FFF;
	font-size: 4.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

@media screen and (max-width: 992px) {
    .banner-page {
        height: 15.7rem;
        margin-top: 5rem;
    }
    .banner-page::before {
        height: 11.7rem;
    }
    .banner-page__img {
        height: 11.7rem;
    }
    .banner-page__title {
        padding: 1.8rem 3.2rem;
        text-align: center;
        font-size: 1.6rem;
        max-width: 28.3rem;
    }
}

/* about-school */

.about-school {
    margin: 8rem 0 11rem 0;
}
.about-school__container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-school__title {
    color: #000;
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.about-school__row {
    display: flex;
    justify-content: space-between;
}
.about-school__subtitle {
    position: relative;
    max-width: 72.1rem;
    color: #000;
	font-size: 3.6rem;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.about-school__subtitle span {
    border-radius: 5rem;
    border: 0.2rem solid #FEC400;
    padding: 0 1rem;
}
.about-school__subtitle svg {
    width: 24.4rem;
    height: auto;
    position: absolute;
    top: -0.4rem;
    right: -15.6rem;
}
.about-school__description-row {
	display: grid;
    max-width: 86.8rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.about-school__description {
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.about-school__subtitle svg.mob {
    display: none;
}

@media screen and (max-width: 992px) {
    .about-school {
        margin: 2rem 0 6rem 0;
    }
    .about-school__container {
        gap: 1rem;
    }
    .about-school__title {
        font-size: 2.2rem;
        text-align: center;
    }
    .about-school__row {
        flex-direction: column;
        gap: 2rem;
    }
    .about-school__subtitle {
        text-align: center;
        font-size: 1.6rem;
    }
    .about-school__subtitle span {
        padding: 0 0.5rem;
    }
    .about-school__subtitle svg {
        width: 3.5rem;
        top: 2rem;
        right: 0.3rem;
        display: none;
    }
    .about-school__subtitle svg.mob {
        display: block;
    }
    .about-school__description {
        font-size: 1.2rem;
        max-width: 72.1rem;
    }
}

/* why */

.why {
    margin-bottom: 12rem;
}
.why-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.why-title {
    color: #000;
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.why-title span {
    border-radius: 5rem;
    background: #FEC400;
    padding: 0 1.2rem;
}
.why-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.why-item {
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 1px 1px 7.8px 1px rgba(0, 0, 0, 0.39);
    position: relative;
    height: 49.2rem;
    padding: 4rem;
}
.why-item::before {
    content: '';
    background: linear-gradient(180deg, #313131 25.08%, rgba(49, 49, 49, 0.00) 60%), linear-gradient(0deg, rgba(112, 159, 212, 0.00) 0%, rgba(112, 159, 212, 0.00) 100%);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.why-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.why-item__text {
    color: #FFF;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 992px) {
    .why {
        margin-bottom: 6rem;
    }
    .why-container {
        gap: 2rem;
    }
    .why-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .why-title span {
        padding: 0 0.5rem;
    }
    .why-main {
        grid-template-columns: repeat(1, 1fr);
    }
    .why-item {
        height: 31.5rem;
        padding: 3rem;
    }
    .why-item__text {
        font-size: 2.2rem;
    }
}

/* values */

.values {
    margin-bottom: 12rem;
}
.values-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.values-title {
    color: #000;
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.values-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.values-description-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	max-width: 87rem;
}
.values-description {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.values-grid {
    max-width: 74rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
}
.values-text {
    border-radius: 3rem;
    border: 0.2rem solid #FEC400;
    padding: 1.8rem 3.2rem;
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width: 992px) {
    .values {
        margin-bottom: 6rem;
    }
    .values-container {
        gap: 2rem;
    }
    .values-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .values-row {
        flex-direction: column;
        gap: 2rem;
    }
    .values-description {
        font-size: 1.2rem;
    }
    .values-grid {
        gap: 1rem;
    }
    .values-text {
        padding: 0.6rem 1.8rem;
        font-size: 1.2rem;
    }
	.about-school__description-row {
		grid-template-columns: repeat(1, 1fr);
		gap: 1rem;
	}
	.values-description-row {
		grid-template-columns: repeat(1, 1fr);
		gap: 1rem;
	}
}

/* contacts */

.contacts {
    margin: 9rem 0 12rem 0;
}
.contacts-container {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    max-width: 146.4rem;
}
.contacts-map {
    display: flex;
    flex-direction: column;
    gap: 2.7rem;
}
.contacts-map__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contacts-map__text p {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contacts-map__text span {
    color: #313131;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contacts-map__block {
    width: 100%;
    height: 64rem;
    border-radius: 3rem;
}
.contacts-map__block iframe {
    width: 100%;
    height: 100%;
    border-radius: 3rem;
}
.contacts-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts-main__column {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.contacts-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contacts-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contacts-row img {
    width: 3.2rem;
    height: 3.2rem;
}
.contacts-row p {
    color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contacts-row a {
    color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contacts-column.contacts-social .contacts-row a {
    color: #313131;
    text-decoration-line: underline;
}
.contacts-column.contacts-social .contacts-row img {
	width: 4.6rem;
    height: 4.6rem;
	margin-left: -0.5rem;
}
.contacts-form__block {
    position: relative;
    width: 100%;
    max-width: 57.3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contacts-form__block > svg {
    width: 12rem;
    height: auto;
    position: absolute;
    top: 2rem;
    left: -12rem;
}
.contacts-form__title {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.contacts-form__title span {
    border-radius: 5rem;
    border: 0.2rem solid #FEC400;
    padding: 0 1rem;
}
.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contacts-form > input {
    color: #000;
    width: 100%;
    padding: 1.7rem 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 3rem;
    border: 0.1rem solid #313131;
    background: #FFF;
} 
.contacts-form > input::placeholder {
    color: #313131;
}
.contacts-form__submit {
    border-radius: 3rem;
    background: #FEC400;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
    border: 0.1rem solid transparent;
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1.8rem 3.2rem;
    margin: 0 auto;
}
.contacts-form__submit:hover {
    border-color: #000;
    color: #000;
    background: #FFF;
}
.contacts-form__row {
    display: flex;
    align-items: center;
}
.contacts-form__row input[type=checkbox]:before {
    content:"";
    display:inline-block;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 100%;
    border: 0.1rem solid #313131;
    position: absolute;
    margin-top: -1.2rem;
	cursor: pointer;
}
.contacts-form__row input[type=checkbox]:checked:before {
    background:transparent;
    background-image: url('/wp-content/uploads/2024/11/checkbox-checked-svgrepo-com-5.svg');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
	border-color: #FEC400;
	background-size: 4rem;
}
.contacts-form__row input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}
.contacts-form__row input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
}
.contacts-form__row input[type="checkbox"]:checked {
    background-image: none;
}
.contacts-form__row label {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 3.3rem;
}
.contacts-form__row label a {
    color: #FEC400;
}
.contacts-form__title svg {
    display: none;
}

@media screen and (max-width: 992px) {
    .contacts {
        margin: 3rem 0 6rem 0;
    }
    .contacts-container {
        gap: 6rem;
        max-width: 34.3rem;
    }
    .contacts-map {
        gap: 1.5rem;
    }
    .contacts-map__text {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .contacts-map__text p {
        font-size: 1.6rem;
        max-width: 20.5rem;
    }
    .contacts-map__text span {
        font-size: 1.6rem;
    }
    .contacts-map__block {
        height: 14.9rem;
    }
    .contacts-main {
        flex-direction: column;
        gap: 6rem;
    }
    .contacts-main__column {
        gap: 1rem;
    }
    .contacts-column {
        gap: 1rem;
    }
    .contacts-row {
        gap: 0.5rem;
    }
    .contacts-row img {
        width: 2.4rem;
        height: 2.4rem;
    }
	.contacts-column.contacts-social .contacts-row img {
		width: 4rem;
		height: 4rem;
		margin-left: -0.6rem;
	}
    .contacts-row p {
        font-size: 1.2rem;
    }
    .contacts-row a {
        font-size: 1.6rem;
    }
    .contacts-form__block {
        gap: 1rem;
    }
    .contacts-form__block > svg {
        display: none;
    }
    .contacts-form__title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        position: relative;
        margin-right: auto;
    }
    .contacts-form__title svg {
        display: block;
        position: absolute;
        width: 13.1rem;
        height: auto;
        bottom: 0.4rem;
        right: -4.25rem;
    }
    .contacts-form__title span {
        padding: 0 0.5rem;
    }
    .contacts-form {
        gap: 1.5rem;
    }
    .contacts-form > input {
        padding: 1.4rem 1.5rem;
        font-size: 1.2rem;
    }
    .contacts-form__submit {
        font-size: 1.2rem;
        padding: 1.3rem 3.2rem;
    }
    .contacts-form__row input[type=checkbox]:before {
        width: 1.8rem;
        height: 1.8rem;
        margin-top: -0.9rem;
    }
    .contacts-form__row label {
        font-size: 1.2rem;
        padding-left: 2.3rem;
    }
}

/* article */

.article {
    margin: 8rem 0 12rem 0;
}
.article-row {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.article-main {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.article-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    width: 100%;
    max-width: 101.8rem;
}
.article-content img {
    width: 100%;
    border-radius: 3rem;
    object-fit: cover;
}
.article-content h3 {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.article-content p {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.article-content h2 {
    color: #000;
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 5rem;
    background: #FEC400;
    padding: 0 1rem;
}
.article-share {
    border-radius: 3rem;
    border: 0.1rem solid #313131;
    background: #FFF;
    padding: 2.2rem 2.2rem 2.2rem 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-share__name {
    color: #313131;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.article-share__row {
    display: flex;
    align-items: center;
    gap: 0;
}
.article-share__row a {
    display: flex;
}
.article-share__row a img {
    width: 4.7rem;
}
.article-aside {
    position: relative;
    width: 100%;
    max-width: 57.3rem;
}
.article-comment {
    position: sticky;
    top: 9rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.article-comment__title {
    color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.article-comment__main {
    border-radius: 3rem;
    border: 0.1rem solid #313131;
    background: linear-gradient(180deg, #BBB 0%, #FFF 69%);
	box-shadow: 1px 1px 7.8px 1px rgba(0, 0, 0, 0.39);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    overflow-y: auto;
    height: 95.3rem;
    gap: 1.5rem;
}
.article-comment__block {
    border-radius: 3rem;
    background: #FEC400;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 43.5rem;
    width: 100%;
}
.article-comment__block-name {
    color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.article-comment__block-text {
    color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.article-comment__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.article-comment__form > input {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 1.6rem 2rem;
    border-radius: 3rem;
    border: 0.1rem solid #313131;
    background: #FFF;
}
.article-comment__form > input::placeholder {
    color: #000;
}
.article-comment__form > textarea {
    height: 9.3rem;
    min-height: 9.3rem;
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 1.6rem 2rem;
    border-radius: 3rem;
    border: 0.1rem solid #313131;
    background: #FFF;
}
.article-comment__form > textarea::placeholder {
    color: #000;
}

@media screen and (max-width: 992px) {
    .article {
        margin: 3rem 0 6rem 0;
    }
    .article-row {
        flex-direction: column;
        gap: 3rem;
    }
    .article-main {
        gap: 3rem;
    }
    .article-content {
        gap: 1.5rem;
    }
    .article-content h3 {
        font-size: 1.6rem;
    }
    .article-content p {
        font-size: 1.2rem;
    }
    .article-content h2 {
        font-size: 2.2rem;
        padding: 0 0.5rem;
    }
    .article-share {
        padding: 0.7rem 0.7rem 0.7rem 1rem;
    }
    .article-share__name {
        font-size: 1.2rem;
    }
    .article-share__row {
        gap: 1rem;
    }
    .article-share__row a img {
        width: 2.4rem;
        height: 2.4rem;
    }
    .article-comment {
        position: relative;
        top: auto;
        gap: 1.5rem;
    }
    .article-comment__title {
        font-size: 2.2rem;
    }
    .article-comment__main {
        padding: 1.5rem;
        height: 36.2rem;
        gap: 1rem;
    }
    .article-comment__block {
        padding: 1.5rem;
        gap: 0.5rem;
        max-width: 24.3rem;
    }
    .article-comment__block-name {
        font-size: 1.6rem;
    }
    .article-comment__block-text {
        font-size: 1.2rem;
    }
    .article-comment__form {
        gap: 1rem;
        margin-top: 0;
    }
    .article-comment__form > input {
        font-size: 1.2rem;
        padding: 1.4rem 1.5rem;
    }
    .article-comment__form > textarea {
        font-size: 1.2rem;
        padding: 1.4rem 1.5rem;
    }
}

/* courses-page */

.courses-page {
    margin: 6rem 0 12rem 0;
}
.courses-page__container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.courses-page__tabs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.courses-page__tabs-block {
    display: flex;
    align-items: flex-end;
    gap: 4rem;
}
.courses-page__tabs-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.courses-page__tabs-name svg {
    width: 6.5rem;
    height: auto;
}
.courses-page__tabs-name p {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.courses-page__tabs-row {
    display: flex;
    align-items: center;
    gap: 2rem;
	max-width: 73rem;
	flex-wrap: wrap;
}
.courses-page__tab {
    border-radius: 3rem;
    border: 0.1rem solid #000;
    background: #FFF;
    padding: 0.6rem;
    width: 23rem;
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
}
.courses-page__tab.active {
    background: #FEC400;
    border-color: #FEC400;
}
.courses-page__tabs-block:first-child .courses-page__tabs-name svg {
    right: -5rem;
    top: -3.2rem;
    position: absolute;
}
.courses-page__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.cours {
    padding: 4rem;
    border-radius: 3rem;
    border: 0.2rem solid #313131;
    background: #FFF;
    box-shadow: 1px 1px 7.8px 1px rgba(0, 0, 0, 0.39);
}
.cours-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cours-img {
    border-radius: 3rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 28.7rem;
}
.cours-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cours-img::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.cours-main {
    display: flex;
    flex-direction: column;
}
.cours-name {
    display: flex;
    flex-direction: column;
}
.cours-adv {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.cours-adv p {
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.cours-description-full {
    display: none;
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 53.6rem;
}
.cours-grid {
    display: none;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
	margin-bottom: 3rem;
}
.cours-item {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 3rem;
    border: 0.2rem solid #000;
    padding: 1.8rem 3.2rem;
}
.cours-title {
    color: #000;
    font-size: 4.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}
.cours-description {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 49.3rem;
}
.cours-buttons {
    display: flex;
    gap: 2rem;
    margin-top: auto;
}
.cours-start {
    padding: 1.8rem 3.2rem;
    border-radius: 3rem;
	background: #FEC400;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.cours-start:hover {
    opacity: .7;
}
.cours-more {
    padding: 1.8rem 3.2rem;
	border-radius: 3rem;
	background: #313131;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
	color: #FFF;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.cours-more:hover {
    opacity: .7;
}
.cours.active {
    background: #FEC400;
    border-color: transparent;
    box-shadow: none;
}
.cours.active .cours-title {
    margin-bottom: 2rem;
}
.cours.active .cours-description {
    display: none;
}
.cours.active .cours-img {
    height: 71.1rem;
}
.cours.active .cours-adv {
    display: flex;
}
.cours.active .cours-description-full {
    display: block;
}
.cours.active .cours-grid {
    display: flex;
}
.cours.active .cours-start {
    background: #FFF;
    color: #000;
}

@media screen and (max-width: 992px) {
    .courses-page {
        margin: 3rem 0 6rem 0;
    }
    .courses-page__container {
        gap: 3rem;
    }
    .courses-page__tabs {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .courses-page__tabs-name {
        display: none;
    }
    .courses-page__tabs-row {
        overflow-x: auto;
        width: 100%;
        min-width: 100vw;
        margin-left: -1.6rem;
        padding: 0 1.6rem;
        gap: 1rem;
    }
    .courses-page__tab {
        padding: 0.5rem;
        width: 13rem;
        font-size: 1.2rem;
    }
    .cours {
        padding: 1.5rem;
    }
    .cours-row {
        display: flex;
        flex-direction: column-reverse;
        gap: 1.5rem;
    }
    .cours-img {
        height: 10.7rem;
    }
    .cours-adv {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .cours-adv p {
        font-size: 1.2rem;
    }
    .cours-description-full {
        font-size: 1.2rem;
    }
    .cours-grid {
        margin-top: 1.5rem;
    }
    .cours-item {
        font-size: 1.2rem;
        padding: 0.6rem 1.4rem;
    }
    .cours-title {
        font-size: 1.6rem;
        max-width: 25.5rem;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 1rem;
    }
    .cours-description {
        font-size: 1.2rem;
        width: 100%;
        max-width: 25.5rem;
        margin: 0 auto;
        text-align: center;
    }
    .cours-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 3rem;
    }
    .cours-start {
        padding: 1.4rem 3.2rem;
        font-size: 1.2rem;
    }
    .cours-more {
        padding: 1.4rem 3.2rem;
        font-size: 1.2rem;
    }
    .cours.active .cours-title {
        margin-left: 0;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    .cours.active .cours-img {
        height: 10.7rem;
    }
    .cours.active .cours-adv {
        display: flex;
    }
}

/* teachers-page */

.teachers-page .cours.active .cours-description {
    display: block;
}
.teachers-page .cours-description-full {
	margin-bottom: 2rem;
	font-weight: 600;
}
.teachers-reviews {
	display: none;
}
.teachers-page .cours.active .teachers-reviews {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 59rem;
	padding: 0 2rem;
	margin-top: 4rem;
	margin-bottom: 4.5rem;
}
.teachers-page .cours.active .teachers-reviews > button {
	width: 4rem;
	height: 4rem;
	border-radius: 100%;
	background: #313131;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 3;
}
.teachers-page .cours.active .teachers-reviews > button svg {
	width: 1.1rem;
	height: auto;
}
.teachers-page .cours.active .teachers-reviews > button:nth-child(2) {
	left: 0;
}
.teachers-page .cours.active .teachers-reviews > button:nth-child(3) {
	right: 0;
}
.teachers-reviews__slide {
	border-radius: 3rem;
    border: 1px solid #313131;
    height: 100%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.teachers-reviews__slide > p {
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.teachers-reviews__slide-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.teachers-reviews__slide-row > img {
	width: 10rem;
	height: 10rem;
	min-width: 10rem;
	border-radius: 100%;
	object-fit: cover;
}
.teachers-reviews__slide-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}
.teachers-reviews__slide-column p {
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.teachers-reviews__slide-column span {
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.teachers-reviews .swiper-slide {
	height: auto;
}


@media screen and (max-width: 992px) {
    .teachers-reviews__slide {
		padding: 1.5rem 2rem 2.5rem 1.5rem;
		gap: 1rem;
	}
	.teachers-reviews__slide > p {
		font-size: 1.2rem;
	}
	.teachers-reviews__slide-row {
		gap: 1rem;
	}
	.teachers-reviews__slide-row > img {
		width: 8.2rem;
		height: 8.2rem;
		min-width: 8.2rem;
	}
	.teachers-reviews__slide-column {
		gap: 0.9rem;
	}
	.teachers-reviews__slide-column p {
		font-size: 1.6rem;
	}
	.teachers-reviews__slide-column span {
		font-size: 1.2rem;
	}
	.teachers-page .cours.active .cours-description {
		max-width: none;
		margin: 0;
		text-align: left;
	}
	.teachers-page .cours-description-full {
		margin-bottom: 1rem;
	}
	.teachers-page .cours.active .teachers-reviews {
		max-width: none;
		padding: 0;
		margin-top: 4rem;
		margin-bottom: 0;
	}
	.teachers-page .cours.active .teachers-reviews > button {
		width: 2.4rem;
		height: 2.4rem;
	}
	.teachers-page .cours.active .teachers-reviews > button svg {
    	width: 0.7rem;
	}
	.teachers-page .cours.active .teachers-reviews > button:nth-child(2) {
		left: -1.2rem;
	}
	.teachers-page .cours.active .teachers-reviews > button:nth-child(3) {
		right: -1.2rem;
	}
}

/* blog-page */

.blog-page {
	margin: 8rem 0 16rem 0;
}
.blog-page__grid {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 2rem;
}
.blog-item {
	display: flex;
    flex-direction: column;
    gap: 2rem;
}
.blog-item__img {
	position: relative;
    width: 100%;
    height: 38.3rem;
    border-radius: 3rem;
    overflow: hidden;
}
.blog-item__img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.blog-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-item__content {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.blog-item__name {
	color: #000;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.blog-item__desc {
	color: #000;
	font-size: 2rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.blog-item__more {
	border-radius: 3rem;
	background: #FEC400;
	box-shadow: 2px 3px 10px 0px rgba(61, 60, 60, 0.50), -3px -3px 4px 0px rgba(0, 0, 0, 0.25) inset, 2px 2px 7.2px 0px rgba(255, 255, 255, 0.29) inset;
	color: #000;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 1.8rem 2.3rem;
}

@media screen and (max-width: 992px) {
    .blog-page {
		margin: 3rem 0 6rem 0;
	}
	.blog-page__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem;
	}
	.blog-item {
		gap: 1.5rem;
	}
	.blog-item__img {
		height: 31.5rem;
	}
	.blog-item__content {
		align-items: center;
		gap: 1rem;
	}
	.blog-item__name {
		font-size: 1.6rem;
		text-align: center;
	}
	.blog-item__desc {
		font-size: 1.2rem;
		text-align: center;
	}
	.blog-item__more {
		font-size: 1.2rem;
	}
}

/*  */

.container-index {
	padding-top: 10rem;
    padding-bottom: 10rem;
}











@media screen and (max-width: 992px) {
    .container-index {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

/*  */




.popup-cookie {
	display: none;
    position: fixed;
    z-index: 999;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 176rem;
    padding: 4rem;
    background: #FEC400;
    justify-content: space-between;
    align-items: center;
}
.popup-cookie p {
	font-size: 1.8rem;
    font-weight: 400;
    color: #000;
}
.popup-cookie p a {
	color: #000;
    text-decoration: underline;
    font-weight: 600;
}
.popup-cookie__close {
	text-align: center;
    border-radius: 3rem;
    background: #F7F7F7;
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1.8rem 10.8rem;
}

@media screen and (max-width: 992px) {
	.mobiler-header > a {
		display: flex;
	}
	.mobiler-header > a svg {
		width: 2.4rem;
    	height: auto;
	}
	
	.popup-cookie {
		max-width: 34.3rem;
		padding: 2rem;
		flex-direction: column;
		gap: 2rem;
	}
	.popup-cookie p {
		font-size: 1.6rem;
	}
	.popup-cookie__close {
		font-size: 1.6rem;
		width: 100%;
		padding: 1.6rem;
	}
}