* {
    box-sizing: border-box;
}
html {
    margin: 0;
    padding:0;
}
body {
    font-size: 20px;
    line-height: 1.4em;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'inter', sans-serif;
    font-display: swap;
}
h1, h2, h3, h4 {
    line-height: 1.4em;
}
h1 {
    font-size: 20px;
    color: #D97704;
    text-align: center;
    text-transform: uppercase;
    animation: h1 0.5s linear forwards;
    margin: 0;
}
.info-title {
    height: 330px;
    padding: 45px;
}
h2 {
    font-size: 32px;
    text-transform: uppercase;
}
h3 {
    font-size: 24px;
}
a.menu {
	position: relative;
	color: #000;
	text-decoration: none;
}
a.menu::before {
	content: '';
	position: absolute;
	left: 0; top: 0px;
	width: 0;
	height: 2px;
	background-color: #D97704;
    transition: width 0.5s;
}
a.menu:hover:before {
	width: 100%;
}
.container {
    max-width: 1180px;
    margin: 0 auto;
}
#header-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.header-menu-wrapper {
    display: flex;
    flex-direction: row;
    -ms-flex-align: left;
    justify-content: space-between;
    align-items: center;
}
.menu-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}
.info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.bold {
    font-weight: 700;
}
.header-right {
    max-width: 370px;
}
.hamburger-menu {
    display: none;
}
#menu-toggle {
    opacity: 0;
}
.menu-btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 10px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
    background: #fff;
}
.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #616161;
}
.menu-btn > span::before {
    content: '';
    top: -8px;
}
.menu-btn > span::after {
    content: '';
    top: 8px;
}
.menu-box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 50px;
    left: -100%;
    width: 100px;
    margin: 0;
    padding: 30px 0;
    list-style: none;
    text-align: center;
    background-color: #fff;
    box-shadow: 1px 0px 6px #6D6666;
}
.menu-item {
    display: block;
    padding: 7px 7px;
    color: #000;
    font-size: 20px;
    text-decoration: none;
}
.menu-item:hover {
    background-color: #ccc;
}
#menu-toggle:checked ~ .menu-btn > span {
    transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-btn > span::before {
    top: 0;
    transform: rotate(0);
}
#menu-toggle:checked ~ .menu-btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu-toggle:checked ~ .menu-box {
    visibility: visible;
    left: 0;
}
.header-right-place {
    text-align: right;
    padding: 5px;
}
.header-right-wrapper {
    padding: 116px 20px 116px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
    background: #ccc;
    border-radius: 350px 0 0 350px;
    height: 100%;
    animation: header 3s 0.5s ease-in forwards;
}
.header-right-button {
    background-color: #fff;
    border: none;
    text-align: end;
    font-size: 20px;
    padding: 3px;
    transition: 0.3s linear;
}
.header-right-button:hover {
    box-shadow: 3px 3px 0 #fff;
}
.big-text {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}
.bold-text {
    font-weight: 700;
}
.enroll {
    background: #6D6666;
    padding: 7px;
    font-size: 20px;
    transition: 0.5s linear;
}
.enroll:hover {
    box-shadow: 2px 2px 5px #000;
    background: #D97704;
}
.button-text {
    color: #fff;
    text-decoration: none;
}
.wrapper-button {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 30px 0 0 0;
}
.button-button {
    width: 180px;
}
.marquee {
    font-size: 60px;
    margin: 0;
    color: #000;
    animation: marquee 2s infinite linear;
}
.marquee-registry {
    font-size: 60px;
    margin: 0;
    color: #000;
    animation: marquee-registry 2s infinite linear;
}
.marquee-right {
    font-size: 60px;
    margin: 0;
    color: #000;
    animation: marquee-right 2s infinite linear;
    animation-direction: reverse;
}
.way-right {
    align-items: center;
}
.way {
    align-items: center;
}
.white {
    color: #fff;
}
.header-right-mobile {
    display: none;
}
@keyframes h1 {
        from {font-size: 20px;}
        to {font-size: 60px;}
}
@keyframes header {
    from {background-color: #ccc;}
    to {background-color: #D97704;}
}
@keyframes marquee {
    0% {transform: translateX(0)}
    70% {transform: translateX(-100%)}
    100% {transform: translateX(-100%)}
}
@keyframes marquee-right {
    0% {transform: translateX(0)}
    30% {transform: translateX(0)}
    100% {transform: translateX(-100%)}
}
@keyframes marquee-registry {
    0% {transform: translateX(100%)}
    70% {transform: translateX(0%)}
    100% {transform: translateX(0%)}
}

.user-wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}
.user-style {
    display: flex;
    flex-direction: row;
    gap: 31px;
    justify-content: space-between;
    max-width: 100%;
}
.user-box {
    display: flex;
    flex-direction: column;
    width: calc( ( 100% - 62px ) / 3 );
}
.user-header {
    background: #ccc;
    font-weight: 700;
    text-align: center;
    border: 2px solid #000;
    height: 60px;
    padding: 3px;
}
.user-body {
    border: 2px solid #000;
    padding: 20px; 
    height: 100%;
}
.user-h2 {
    text-align: center;
}
.wrapper-button-user {
    display: flex;
    justify-content: end;
    padding-top: 35px;
    gap: 10px;
    align-items: center;
}
#trainer-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.trainer-foto {
    width: 150%;
    align-items: flex-end;
}
.trainer-foto:hover {
    background: url(img/kachura1.png) no-repeat;
}
.trainer-img {
    position: absolute;
    bottom: 0;
    left: -8%;
    transition: 1s;
}
.trainer-img:hover {
    transform: rotateY(90deg);
}
.trainer-info {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.trainer-practic {
    z-index: 1;
    background: #fff;
    padding: 10px;
}
.trainer-practic-add {
    background: #e9ebec;
    padding: 5px 0 5px 40px;
    cursor: pointer;
}
#trainer-text {
    margin: 0;
}
.trainer-practic-add:hover {
    background:#ccc;
}
#modal-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}
#modal-wrapper.active {
    display: block;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px;
    z-index: 1;
    background-color: gray;
    opacity: 0.5;
    display: none;
}
#overlay.active {
    display: block;
}
#modal-window {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%,-90%);
    width: 600px;
    z-index: 1;
    height: 400px;
    overflow: auto;
    border: 1px solid black;
    background-color: #ffffff;
    padding: 10px;
}
.modal-button {
    text-align: right;
}
#btn-close {
    margin: 0;
    font-size: 30px;
}
.content {
    display: none;
}
.content.active {
    display: block;
}
.trainer-1 {
    color:#D97704;
    font-size: 200px;
    margin-top: 100px;
}
.trainer-client {
    padding-top: 10px;
}
.review-wrapper {
    text-align: center;
    padding-top: 45px;
}
.review-title {
    color:#D97704;
}
.rewiew-wrapper-text {
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: stretch;
    gap: 15px;
}
.slide.active {
    display: block;
    border: 4px solid #ccc;
    padding: 20px;
    height: 100%;
    max-width: 600px;
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 18px;
}
.slide {
    display: none;
}
.video-container iframe,  
.video-container object,  
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-wrapper {
    width: 600px;
    height: 300px;
    max-width: 100%;
}
.rewiew-arrow {
    font-size: 200px;
    max-width: 100px;
    color:#ccc;
    cursor: pointer;
}
.rewiew-duble-arrow {
    margin: 0;
}
.review-video {
    max-width: 100%; 
}
.topics {
    text-align: center;
}
.topic {
    display: flex;
    gap: 15px;
    background: #D97704;
    padding: 15px;
    font-size: 18px;
}
.topic-topic {
    background: #fff;
    padding: 15px;
}
.topic-wrapper {
    display: flex;
    gap: 15px; 
}
.topic-img {
    border: 2px solid #D97704;
    width: 100px;
    margin: 0 auto;
    border-radius: 50px;
}
.topic-img > img {
    width: 80px;
    margin: 2px;
}
.topic-text-bold {
    text-align: center;
}
.program-title {
    text-align: center;
    padding-top: 40px;
}
.program-seminar {
    display: none;
}
.program-block {
    text-align: center;
}
.program-number {
    color:#D97704;
    font-size: 24px;
    font-weight: 700;
}
.program-accordion {
    background-color: #eee;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    transition: 0.5s;
}
.program-accordion:hover {
    background-color: #ccc; 
}
.program-panel {
    padding: 5px 0 5px 20px ;
    text-align: left;
    display: none;
    background-color: white;
    overflow: hidden;
}
.program-panel.act {
    display: block;
}
.registry-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-content: center;
}
#registry-enroll {
    text-align: center;
    padding: 10px;
}
#registry-button {
    background: #6D6666;
    padding: 7px;
    font-size: 20px;
    transition: 0.5s linear;
    color: #fff;
    font-weight: 700;
}
#registry-button:hover {
    box-shadow: 2px 2px 5px #000;
    background: #D97704;
}

.footer-contact {
    background: #ccc;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 9999;
    width: 40px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: #e9ebec;
    color: #444;
    cursor: pointer;
    display: none;
    font-size: 50px;
}
.back-to-top:hover {
    background: #ccc;
}
.back-to-top-show {
    display: block;
}
.registry-title {
    text-align: center;
    font-weight: 700;
    color:#D97704;
    font-size: 32px;
}
.registry-price {
    max-width: 400px;
    margin: 0 auto;
}


/* Responsive */

/* Large: 980px - 1100px */
@media (max-width: 1060px) {
    .container {
      max-width: 950px;
    }
    #header-wrapper  {
        flex-direction: column;
    }
    .header-right {
        display: none;
    }
    .info-wrapper {
        margin: 0 auto;
    }
    .trainer-img {
        width: 70%;
    }
    .topic {
        gap: 10px;
    }
    .topic-wrapper {
        gap: 10px;
    }
}
/* Medium: 770px - 979px */
@media (max-width: 979px) {
    .container {
      max-width: 739px;
    }
    .user-style {
        flex-direction: column;
    }
    .user-body {
        display: none;
    }
    .user-body.actively {
        display: block;
        border: none;
    }
    .user-box {
        width: 100%;
    }
    .user-header {
        background: #eee;
        border: none;
        cursor: pointer;
        padding: 18px;
    }
    .user-header:hover {
        background: #ccc;
    }
    .trainer-img {
        left: -25%;
    } 
    .topic {
        flex-direction: column;
    }
    .topic-text-hide {
        display: none;
    }
    .topic-text-hide.actives {
        display: block;
    }
    .topic-topic {
        width: calc(100% / 2);
    }
    .topic-text-bold {
        background: #e9ebec;
        cursor: pointer;
    }
    .topic-text-bold:hover {
        background: #ccc;

    }
}
/* Smoll: 576px - 769px */
@media (max-width: 767px) {
    .container {
      max-width: 540px;
    }
    .menu-wrapper {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    .info-title {
        height: 250px;
        padding: 45px 0;
    }
    #modal-window {
        width: 500px;
    }

    @keyframes h1 {
        from {font-size: 20px;}
        to {font-size: 45px;}
    }
    #trainer-wrapper {
        flex-direction: column;
    }
    .trainer-foto:hover {
        background: url(none);
    }
    .trainer-foto {
        margin-top: 10px;
            width: 100%;
    }
    .trainer-img {
        position: relative;
        width: 100%;
        left: 0;
    }
    .trainer-img:hover {
        transform: none;
    }
    .trainer-client {
        padding-top: 0px;
    }
    .trainer-practic {
        padding: 0;
    }
    .rewiew-wrapper-text {
        flex-direction: column;
        justify-content: space-between;
        align-items:center;
        gap: 20px;
    }
    .rewiew-arrow {
        font-size: 100px;
        max-width: 100px;
        color:#ccc;
        cursor: pointer;
        transform: rotate(90deg);
    }
    .video-wrapper {
        width: 500px;
        height: 250px;
    }
    h2 {
        font-size: 26px;
    }
}
/* Extra smoll: 0px (320px) - 575px */
@media (max-width: 575px) {
    .container {
      padding: 0, 15; 
    }
    body {
        padding: 20px auto;
    }
    .info-title {
        height: 150px;
    }
    @keyframes h1 {
        from {font-size: 20px;}
        to {font-size: 26px;}
    }
    @keyframes marquee {
        0% {transform: translateX(0)}
        70% {transform: translateX(-60%)}
        100% {transform: translateX(-60%)}
    }
    .user-header {
        height: 100%;
    }
    .trainer-foto {
        height: 50%;
        padding: 10px 0 0 0;
    }
    .trainer-sign {
        display: none;
    }
    .video-wrapper {
        width: 260px;
        height: 150px;
    }
    #modal-window {
        width: 300px;
        padding: 5px;
    }
    .info-text {
        padding-top: 25px;
    }
    .slide.active {
        padding: 5px;
    }
    h3 {
        font-size: 20px;
    }
    .back-to-top {
        bottom: 60px;
        right: 5px;
        width: 30px;
        height: 40px;
        font-size: 35px;
    }
    .program-title {
        padding-top: 20px;
    }
    .topic-wrapper {
        flex-direction: column;
    }
    .topic-topic {
        width: 100%;
}