@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
* {
  box-sizing: border-box; }

body {
  width: 100%;
  min-height: 100vh;
  font-family: OpenSansRegular; }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

a {
  text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0; }

button {
  border: none;
  background: none;
  cursor: pointer; }

.primaryBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  margin: 0 auto;
  padding: 20px 50px;
  color: #fff;
  font-size: 21px;
  font-family: OpenSansBold;
  text-transform: uppercase;
  background-color: #61cb46;
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer; }
  .primaryBtn:hover {
    background-color: #54a53f; }
  .primaryBtn:active {
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5); }
  .primaryBtn img,
  .primaryBtn svg {
    margin-right: 5px; }
  .primaryBtn.btn-show {
    margin-bottom: 15px;
    padding: 20px 34px; }
.lesson__content .primaryBtn {
  padding: 14px 20px;
  font-size: 15px;
}

.bg-white {
  background: url(../images/bg.png) left bottom no-repeat;
  background-color: #fff;
  background-size: cover; }

.bg-gray {
  background-color: #f7f7f7; }

.popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  z-index: 99; }
  .popup-wrap .btn-close-popup {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .popup-wrap .btn-close-popup svg {
      width: 20px;
      height: 20px; }
      .popup-wrap .btn-close-popup svg line {
        stroke-width: 2;
        stroke: #fff; }
    .popup-wrap .btn-close-popup:hover svg line {
      opacity: 0.8; }
    .popup-wrap .btn-close-popup:active svg line {
      stroke: #54a53f !important; }
    .popup-wrap .btn-close-popup.btn-close-black svg line {
      stroke: #000; }
  .popup-wrap .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 794px;
    min-width: 350px;
    min-height: 200px;
    border-radius: 8px; }

.new-order {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .new-order__title {
    width: 100%;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    background-color: #61cb46;
    border-radius: 8px 8px 0 0; }
  .new-order__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px; }
    @media screen and (max-width: 767px) {
      .new-order__content {
        padding: 20px; } }
    .new-order__content p {
      text-align: center;
      margin-bottom: 10px; }
      .new-order__content p span {
        font-family: OpenSansRegular; }
      .new-order__content p b {
        font-family: OpenSansBold; }
    .new-order__content .primaryBtn {
      margin: 20px auto; }

.order-success {
  padding: 20px; }
  .order-success__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px; }
    @media screen and (max-width: 767px) {
      .order-success__content {
        padding: 20px; } }
    .order-success__content svg {
      margin-bottom: 20px; }
    .order-success__content p {
      text-align: center;
      font-size: 21px;
      color: #61cb46;
      font-family: OpenSansBold;
      text-transform: uppercase; }

.order-error {
  padding: 20px; }
  .order-error__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px; }
    @media screen and (max-width: 767px) {
      .order-error__content {
        padding: 20px; } }
    .order-error__content svg {
      margin-bottom: 20px; }
    .order-error__content p {
      text-align: center;
      font-size: 21px;
      color: #cb5846;
      font-family: OpenSansBold;
      text-transform: uppercase; }

.hidden {
  display: none; }

.popup-registration .error, 
.popup-new-ticket .error, 
.settings-page .error {
  margin: 5px 0;
  color: #d13333;
  font-size: 16px;
  text-align: center; }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.layout {
  max-width: 1024px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-height: calc(100vh - 60px);
  padding-top: 60px; }

.header {
  box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.3);
  background-color: #61cb46;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98;
  font-size: 16px; }
  .header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1024px;
    margin: 0 auto;
	padding-left: 20px;
    height: 60px; }
	.header .nav .nav__logo svg {
	  -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .1));
      filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .1));
	}
    .header .nav__list {
      width: 100%;}
    .header .nav .nav__link {
      margin-left: 20px;
      color: #fff;
      text-transform: uppercase;
      position: relative; }
      .header .nav .nav__link:after {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #fff;
        transition: width 0.4s; }
      .header .nav .nav__link:hover:after {
        width: 100%; }
    .header .nav .active {
      font-family: OpenSansBold; }
      .header .nav .active::after {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff; }
    .header .nav .btn-login {
      border: solid 2px #fff;
      border-radius: 8px;
      color: #fff;
      padding: 5px 30px; }
      .header .nav .btn-login:hover {
        background: rgba(255, 255, 255, 0.1); }
      .header .nav .btn-login:active {
        box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3); }
  .header .nav-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 40px;
    position: relative;
    background-color: #61cb46; }
    .header .nav-mobile .visuallyHidden {
      position: absolute;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; }
    .header .nav-mobile .hamburger {
      margin: 0 auto;
      width: 30px;
      height: 30px;
      position: relative; }
      .header .nav-mobile .hamburger .bar {
        padding: 0;
        width: 30px;
        height: 2px;
        background-color: #fff;
        display: block;
        border-radius: 4px;
        transition: all 0.4s ease-in-out;
        position: absolute; }
      .header .nav-mobile .hamburger .bar1 {
        top: 0; }
      .header .nav-mobile .hamburger .bar2,
      .header .nav-mobile .hamburger .bar3 {
        top: 13.5px; }
      .header .nav-mobile .hamburger .bar3 {
        right: 0; }
      .header .nav-mobile .hamburger .bar4 {
        bottom: 0; }
    .header .nav-mobile .checkbox3:checked + label > .hamburger3 > .bar1 {
      transform: translateX(40px);
      background-color: transparent; }
    .header .nav-mobile .checkbox3:checked + label > .hamburger3 > .bar2 {
      transform: rotate(45deg); }
    .header .nav-mobile .checkbox3:checked + label > .hamburger3 > .bar3 {
      transform: rotate(-45deg); }
    .header .nav-mobile .checkbox3:checked + label > .hamburger3 > .bar4 {
      transform: translateX(-40px);
      background-color: transparent; }
    .header .nav-mobile__links {
      position: absolute;
      flex-direction: column;
      align-items: flex-start;
      padding: 0 40px 20px 40px;
      background-color: #61cb46;
      display: flex;
      top: -214px;
      left: 0;
      right: 0;
      z-index: -1;
      transition: top ease-out 0.4s; }
      .header .nav-mobile__links.open {
        top: 60px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
    .header .nav-mobile__link {
      color: #fff;
      text-transform: uppercase;
      margin: 10px 0; }
      .header .nav-mobile__link:hover {
        opacity: 0.6; }
    .header .nav-mobile__login {
      margin-right: 20px; }
    .header .nav-mobile .active {
      font-family: OpenSansBold;
      position: relative; }
      .header .nav-mobile .active::after {
        content: "";
        position: absolute;
        bottom: -7px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff; }
  @media screen and (max-width: 767px) {
    .header .nav {
      display: none; }
    .header .nav-mobile {
      display: flex;
      padding: 0 0 0 20px; } }
  .header .user-info {
    position: relative;
    height: 100%;
    display: flex; }
    .header .user-info__link {
      padding: 0 20px;
      display: flex;
      align-items: center;
      background-color: #61cb46;
      height: 100%;
      cursor: pointer; }
      .header .user-info__link img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover; }
      .header .user-info__link p {
        margin: 0 10px;
        color: #fff; }
    .header .user-info__menu {
      display: flex;
      color: #fff;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 19px;
      background-color: #54a53f;
      z-index: -1;
      transition: top ease-out 0.4s; }
    .header .user-info__menu-item {
      display: flex;
      align-items: center;
      color: #fff; }
      .header .user-info__menu-item svg {
        margin-right: 5px; }
      .header .user-info__menu-item:hover {
        opacity: 0.6; }
    .header .user-info .btn-open {
      cursor: pointer;
      transform: rotate(180deg); }
    @media screen and (min-width: 767px) {
      .header .user-info:hover .user-info__link {
        animation: bg-animation ease-out 0.4s;
        background-color: #54a53f; }
      @keyframes bg-animation {
        from {
          background-color: #61cb46; }
        to {
          background-color: #54a53f; } }
      .header .user-info:hover .user-info__menu {
        top: 60px; }
      .header .user-info:hover .btn-open {
        transform: rotate(0deg); } }
    .header .user-info.open .user-info__link {
      animation: bg-animation ease-out 0.4s;
      background-color: #54a53f; }
@keyframes bg-animation {
  from {
    background-color: #61cb46; }
  to {
    background-color: #54a53f; } }
    .header .user-info.open .user-info__menu {
      top: 60px; }
    .header .user-info.open .btn-open {
      transform: rotate(0deg); }

.footer {
  background-color: #61cb46;
  font-size: 14px; }
  .footer__layout {
    max-width: 1024px;
    margin: 0 auto;
	padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px; }
  .footer__links {
    display: flex;
    align-items: center;
    justify-content: space-around; }
  .footer__link {
    color: #fff;
    margin-right: 20px;
    position: relative; }
    .footer__link:after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background-color: #fff;
      transition: width 0.4s; }
    .footer__link:hover:after {
      width: 100%; }
  .footer__right-info {
    color: #fff;}
    .footer__right-info a {
      color: #fff;
      text-decoration: underline; }
  @media screen and (max-width: 767px) {
    .footer__layout {
      height: auto;
      flex-direction: column;
      padding: 20px 0; }
    .footer__links {
      flex-direction: column; }
    .footer__link {
      margin-bottom: 10px; } }

.sub-header {
  padding: 15px 50px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center; }
  .sub-header__item {
    display: flex;
    align-items: center;
    color: #666666;
    margin-right: 50px; }
    .sub-header__item svg {
      margin-right: 20px; }
    .sub-header__item:hover {
      color: #000; }
      .sub-header__item:hover svg rect,
      .sub-header__item:hover svg line,
      .sub-header__item:hover svg circle,
      .sub-header__item:hover svg path {
        stroke: #000 !important; }
  .sub-header .active {
    font-family: OpenSansBold;
    color: #000; }
    .sub-header .active svg rect,
    .sub-header .active svg line,
    .sub-header .active svg circle,
    .sub-header .active svg path {
      stroke: #000 !important; }
  @media screen and (max-width: 767px) {
    .sub-header {
      padding: 15px 20px;
      width: 100%;
      max-width: 100%;
      overflow-x: auto; }
      .sub-header__item {
        min-width: 150px;
        margin-right: 20px; }
        .sub-header__item svg {
          margin-right: 5px; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.home-page {
  padding: 50px 40px;
  max-width: 1024px;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    .home-page {
      padding: 50px 20px; } }
  .home-page .title {
    font-size: 36px;
    font-family: OpenSansBold;
    text-align: center;
    margin-bottom: 50px; }
    @media screen and (max-width: 767px) {
      .home-page .title {
        font-size: 21px;
        margin-bottom: 20px; } }
  .home-page .logo {
    display: flex;
    align-items: center;
    margin: 150px auto 50px; }
    .home-page .logo__img {
      width: 60%;
      max-width: 700px; }
    .home-page .logo__text-content {
      width: 40%;
      margin-left: 30px; }
      .home-page .logo__text-content p {
        margin-bottom: 10px;
        line-height: 1.4; }
      .home-page .logo__text-content span {
        font-family: OpenSansBold; }
    @media screen and (max-width: 767px) {
      .home-page .logo {
        flex-direction: column; }
        .home-page .logo__img {
          width: 100%;
          max-height: 200px; }
        .home-page .logo__text-content {
          width: 100%;
          margin: 10px 0 20px 0; } }
  .home-page .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; }
  .home-page .about__img {
    width: 100%; }
  .home-page .about__text-content p {
    margin-bottom: 10px;
    line-height: 1.8; }
  .home-page .about__text-content span {
    font-family: OpenSansBold; }
  @media screen and (max-width: 767px) {
    .home-page .about__content {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .home-page .about-video__wrap {
    width: 100%;
    padding: 40px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
    position: relative; }
    .home-page .about-video__wrap .video {
      width: 100%;
      height: 400px;
      background-color: #000; }
    .home-page .about-video__wrap .video-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer; }
  @media screen and (max-width: 767px) {
    .home-page .about-video__wrap {
      padding: 20px; }
    .home-page .about-video .video {
      height: 200px; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.login {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .login__title {
    width: 100%;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    background-color: #61cb46;
    border-radius: 8px 8px 0 0; }
  .login__form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    .login__form label {
      width: 100%;
      display: grid;
      grid-template-columns: 3fr 5fr 1fr;
      gap: 20px;
      align-items: center;
      margin-bottom: 20px;
      text-align: right;
      font-size: 16px; }
      .login__form label .input {
        position: relative; }
        .login__form label .input input {
          width: 100%;
          border: solid 1px #000;
          border-radius: 8px;
          padding: 10px 10px 10px 35px; }
          .login__form label .input input::placeholder {
            opacity: 0; }
        .login__form label .input svg,
        .login__form label .input img {
          position: absolute;
          top: 50%;
          left: 10px;
          transform: translateY(-50%);
          max-width: 20px; }
    .login__form button {
      margin: 20px 0; }
    .login__form .forgot-pass,
    .login__form .registration {
      margin: 0;
      margin-bottom: 10px;
      color: #000;
      text-decoration: underline; }
      .login__form .forgot-pass:hover,
      .login__form .registration:hover {
        opacity: 0.8; }
      .login__form .forgot-pass:active,
      .login__form .registration:active {
        opacity: 0.5; }
    @media screen and (max-width: 767px) {
      .login__form label {
        grid-template-columns: 1fr 10fr 1fr; }
        .login__form label p {
          display: none; }
        .login__form label .input {
          grid-column-start: 2; }
          .login__form label .input input::placeholder {
            opacity: 1; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.news-page .item {
  background: #f7f7f7;
  padding: 40px;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: 20px; }
  .news-page .item:last-child {
    margin-bottom: 0; }
  .news-page .item__time {
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
    background-color: #61cb46;
    border-radius: 8px; }
  .news-page .item__title {
    margin: 20px 0;
    text-transform: uppercase;
    color: #000; }
  .news-page .item__content {
    display: inline-block; }
    .news-page .item__content img {
      width: 50%;
      max-width: 468px;
      max-height: 262px;
      object-fit: cover;
      margin: 0 20px 20px 0;
      float: left; }
    .news-page .item__content p {
      margin-bottom: 10px;
      color: #666666;
      font-size: 16px;
      text-align: justify; }
@media screen and (max-width: 767px) {
  .news-page .item {
    padding: 20px; }
    .news-page .item__content img {
      width: 100%; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.reviews-page__title {
  display: inline-block;
  position: relative;
  margin: 20px 40px; }
  .reviews-page__title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #61cb46;
    position: absolute;
    bottom: -5px;
    left: 0; }
.reviews-page .error {
	color: #e31010;
	margin: 7px 40px; }
.reviews-page__form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }
  .reviews-page__form input,
  .reviews-page__form select,
  .reviews-page__form textarea {
    width: 100%;
    border: solid 1px #000;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px; }
  .reviews-page__form button {
    margin: 40px auto; }
.reviews-page__list .review-item {
  background-color: #f7f7f7;
  display: flex;
  padding: 20px 40px;
  margin-bottom: 20px; }
  .reviews-page__list .review-item:last-child {
    margin-bottom: 0; }
  .reviews-page__list .review-item__photo {
    margin-right: 20px; }
    .reviews-page__list .review-item__photo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover; }
  .reviews-page__list .review-item__content {
    color: #000; }
    .reviews-page__list .review-item__content .name {
      font-family: OpenSansBold;
      margin-bottom: 10px; }
    .reviews-page__list .review-item__content .course {
      margin-bottom: 20px; }
      .reviews-page__list .review-item__content .course a {
        color: #5eb6e1;
        text-decoration: underline; }
    .reviews-page__list .review-item__content .text {
      color: #666666; }
@media screen and (max-width: 767px) {
  .reviews-page__title {
    margin: 20px; }
  .reviews-page .error {
    margin: 7px 20px; }
  .reviews-page__form {
    padding: 20px; }
    .reviews-page__form button {
      width: 100%;
      margin: 20px auto; }
  .reviews-page__list .review-item {
    padding: 20px; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.contacts-page__title {
  display: inline-block;
  position: relative;
  margin: 20px 40px; }
  .contacts-page__title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #61cb46;
    position: absolute;
    bottom: -5px;
    left: 0; }
.contacts-page__list {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }
  @media screen and (max-width: 650px) {
    .contacts-page__title {
      margin: 20px;
	}
    .contacts-page__list {
      grid-template-columns: 1fr;
      padding: 20px; } }
.contacts-page__item {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .contacts-page__item .avatar {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px; }
  .contacts-page__item .name {
    font-size: 19px;
    margin-bottom: 15px; }
  .contacts-page__item .phone {
    margin-bottom: 20px; }
  .contacts-page__item .social {
    display: flex; }
    .contacts-page__item .social a {
      margin: 0 10px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .contacts-page__item .social a img {
        width: 40px;
        height: 40px; }
      .contacts-page__item .social a:hover img {
        width: 45px;
        height: 45px; }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.schools-page .schools-list {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px; }
.schools-page .school-item {
  position: relative;
  max-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .schools-page .school-item__background {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover; }
  .schools-page .school-item__content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)); */
	background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 8%; }
    .schools-page .school-item__content .title {
      color: #fff;
      font-size: 21px;
      text-transform: uppercase;
      max-width: 300px;
      text-align: center;
      margin-bottom: 20px; }
@media screen and (max-width: 767px) {
  .schools-page .schools-list {
    padding: 20px;
    grid-template-columns: 1fr; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.courses-page .courses__empty {
    width: 100%;
    text-align: center;
    font-size: 21px;
    color: #666666;
    text-transform: uppercase;
    margin: 40px 0; }
.courses-page .courses-list {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px; }
.courses-page .course-item {
  position: relative;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .courses-page .course-item__background {
    width: 100%;
    height: 360px;
    object-fit: cover; }
  .courses-page .course-item__content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)); */
	background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px; }
    .courses-page .course-item__content .icon-checked {
      margin-bottom: 20px; }
    .courses-page .course-item__content .title {
      color: #fff;
      text-transform: uppercase;
      max-width: 300px;
      text-align: center;
      margin-bottom: 20px; }
    .courses-page .course-item__content .description {
      color: #fff;
      margin-bottom: 20px; }
    .courses-page .course-item__content .link {
      color: #fff; }
      .courses-page .course-item__content .link:hover {
        opacity: 0.8; }
  .courses-page .course-item.checked .course-item__content {
    background: #61cb46; }
@media screen and (max-width: 767px) {
  .courses-page .courses-list {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.course-page .course {
  padding: 40px; }
  .course-page .course__image {
    width: 100%;
    /* max-height: 265px; */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px; }
  .course-page .course__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; }
  .course-page .course__content {
    margin-right: 20px; }
    .course-page .course__content h3 {
      text-transform: uppercase;
      margin-bottom: 10px; }
  .course-page .course__list .item {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 20px 20px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    color: #000; }
    .course-page .course__list .item:hover {
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); }
    .course-page .course__list .item:active {
      box-shadow: none; }
    .course-page .course__list .item__number {
      position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      border-radius: 0 0 100% 0;
      padding: 10px;
      color: #fff;
      background-color: #666666; }
      .course-page .course__list .item__number.active {
        background-color: #61cb46; }
    .course-page .course__list .item__content p {
      color: #666666;
      margin-top: 10px; }
  @media screen and (max-width: 767px) {
    .course-page .course {
      padding: 20px; }
      .course-page .course__info {
        flex-direction: column; }
      .course-page .course__content {
        margin-bottom: 20px; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.lesson-page .lesson {
  padding: 40px;
  position: relative; }
  .lesson-page .lesson__title {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    max-width: 70%; }
    .lesson-page .lesson__title::after {
      content: "";
      width: 150px;
      height: 2px;
      background-color: #61cb46;
      position: absolute;
      bottom: -5px;
      left: 0; }
  .lesson-page .lesson__status {
    position: absolute;
    right: 0;
    top: 40px;
    background-color: #666666;
    border-radius: 8px 0 0 8px;
    padding: 10px 20px;
    color: #fff;
    text-transform: uppercase; }
    .lesson-page .lesson__status.active {
      background-color: #61cb46; }
  .lesson-page .lesson__content {
    margin-top: 20px;
    display: block; }
    /* .lesson-page .lesson__content img {
      width: 50%;
      max-width: 468px;
      height: 262px;
      object-fit: cover;
      margin: 0 20px 15px 0;
      float: left; } */
    .lesson-page .lesson__content img {
      max-width: 100%; }
    .lesson-page .lesson__content p {
      margin-bottom: 10px;
      color: #666666;
      font-size: 16px;
      text-align: justify; }
    .lesson-page .lesson__content video {
      max-width: 670px;
      max-height: 380px;
      margin: 40px auto;
      display: block; }
  @media screen and (max-width: 767px) {
    .lesson-page .lesson {
      padding: 20px; }
      .lesson-page .lesson__status {
        position: static;
        margin-right: -20px;
        text-align: end;
        max-width: 250px;
        float: right; }
      .lesson-page .lesson__title {
        margin-top: 20px;
        max-width: 100%; }
      .lesson-page .lesson__content {
        display: flex;
        flex-direction: column; }
        .lesson-page .lesson__content img {
          width: 100%; }
        .lesson-page .lesson__content video {
          width: 100%; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.my-keys-page .my-keys {
  padding: 40px;
  min-height: calc(100vh - 180px); }
  .my-keys-page .my-keys__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; }
    .my-keys-page .my-keys__form input {
      border: solid 1px #000;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      margin-right: 20px; }
    .my-keys-page .my-keys__form button {
      margin: 0; }
  .my-keys-page .my-keys__list .item {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 20px 20px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px; }
    .my-keys-page .my-keys__list .item__number {
      position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      border-radius: 0 0 100% 0;
      padding: 10px;
      color: #fff;
      background-color: #666666; }
      .my-keys-page .my-keys__list .item__number.active {
        background-color: #61cb46; }
    .my-keys-page .my-keys__list .item__content p {
      color: #666666;
      margin-top: 10px; }
    .my-keys-page .my-keys__list .item__code {
      color: #666666; }
  @media screen and (max-width: 767px) {
    .my-keys-page .my-keys {
      padding: 20px; }
      .my-keys-page .my-keys__form {
        flex-direction: column; }
        .my-keys-page .my-keys__form input {
          margin: 0px 0px 20px 0px; }
        .my-keys-page .my-keys__form button {
          width: 100%; }
      .my-keys-page .my-keys__list .item {
        flex-direction: column; }
        .my-keys-page .my-keys__list .item__code {
          margin-top: 10px;
          width: 100%; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.feedback-page .feedback {
  padding: 40px;
  min-height: calc(100vh - 180px); }
  .feedback-page .feedback__empty {
    width: 100%;
    text-align: center;
    font-size: 21px;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 40px; }
  .feedback-page .feedback__list {
    margin-top: 40px; }
    .feedback-page .feedback__list .item,
    .feedback-page .feedback__list .item-head {
      display: grid;
      grid-template-columns: 0.5fr 4fr 2fr 2fr 2fr;
      gap: 10px;
      align-items: center;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      padding: 20px;
      margin-bottom: 20px; }
      .feedback-page .feedback__list .item__number, 
	  .feedback-page .feedback__list .item__answers, 
	  .feedback-page .feedback__list .item__date, 
	  .feedback-page .feedback__list .item__status,
      .feedback-page .feedback__list .item-head__number,
      .feedback-page .feedback__list .item-head__answers,
      .feedback-page .feedback__list .item-head__date,
      .feedback-page .feedback__list .item-head__status {
        text-align: center; }
      .feedback-page .feedback__list .item__theme a {
        text-decoration: underline;
        color: #000; }
      .feedback-page .feedback__list .item__date,
      .feedback-page .feedback__list .item-head__date {
        color: #666666; }
      .feedback-page .feedback__list .item .open,
      .feedback-page .feedback__list .item-head .open {
        color: #61cb46; }
      .feedback-page .feedback__list .item .close,
      .feedback-page .feedback__list .item-head .close {
        color: #cb5846; }
    .feedback-page .feedback__list .item-head {
      box-shadow: none;
      background-color: #f7f7f7; }
      .feedback-page .feedback__list .item-head__date {
        color: #000; }
  @media screen and (max-width: 767px) {
    .feedback-page .feedback {
      padding: 20px; }
      .feedback-page .feedback__list {
        margin-top: 20px; }
        .feedback-page .feedback__list .item,
        .feedback-page .feedback__list .item-head {
          gap: 5px;
          padding: 5px;
          font-size: 12px; } }

.feedback-popup,
.feedback-success-popup {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .feedback-popup__title,
  .feedback-success-popup__title {
    width: 100%;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    background-color: #61cb46;
    border-radius: 8px 8px 0 0; }
  .feedback-popup__content,
  .feedback-success-popup__content {
    width: 100%;
    min-width: 350px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .feedback-popup__content input,
    .feedback-popup__content textarea,
    .feedback-success-popup__content input,
    .feedback-success-popup__content textarea {
      width: 100%;
      border: solid 1px #000;
      border-radius: 8px;
      padding: 10px;
      margin-bottom: 20px; }
    .feedback-popup__content textarea,
    .feedback-success-popup__content textarea {
      min-height: 300px; }

.feedback-success-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }
  .feedback-success-popup__content {
    font-family: OpenSansBold; }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.chat-page .chat {
  padding: 40px; }
  @media screen and (max-width: 767px) {
    .chat-page .chat {
      padding: 20px; } }
  .chat-page .chat__title {
    display: inline-block;
    position: relative;
    margin-bottom: 20px; }
    .chat-page .chat__title::after {
      content: "";
      width: 150px;
      height: 2px;
      background-color: #61cb46;
      position: absolute;
      bottom: -5px;
      left: 0; }
  .chat-page .chat__place {
    flex: 1 0;
    border: solid 1px #000;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    max-height: 500px;
	overflow: auto;	}
    .chat-page .chat__place .msg {
      display: flex;
      margin-bottom: 20px;
      width: 100%; }
      .chat-page .chat__place .msg__avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover; }
      .chat-page .chat__place .msg__content {
        margin: 0 10px; }
        .chat-page .chat__place .msg__content .user-info {
          margin-bottom: 10px;
          width: 100%; }
          .chat-page .chat__place .msg__content .user-info .name {
            font-family: OpenSansBold; }
          .chat-page .chat__place .msg__content .user-info .date {
            color: #666666;
            font-size: 10px; }
        .chat-page .chat__place .msg__content .text {
          padding: 5px 10px;
          background-color: #f7f7f7;
          border-radius: 8px;
          color: #666666; }
    .chat-page .chat__place .msg-admin {
      justify-content: left; }
      .chat-page .chat__place .msg-admin .user-info {
        text-align: left; }
    .chat-page .chat__place .msg-user {
      justify-content: right; }
      .chat-page .chat__place .msg-user .user-info {
        text-align: right; }
  .chat-page .chat__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px; }
    .chat-page .chat__input input {
      border: solid 1px #000;
      border-radius: 8px;
      padding: 10px;
      width: 100%;
      margin-right: 20px; }
    .chat-page .chat__input button {
      margin: 0; }
    @media screen and (max-width: 767px) {
      .chat-page .chat__input {
        flex-direction: column; }
        .chat-page .chat__input input {
          margin: 0 0 20px 0; } }

@font-face {
  font-family: "OpenSansRegular";
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf"); }
@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf"); }
.settings-page .settings {
  padding: 40px; }
  .settings-page .settings__title {
    display: inline-block;
    position: relative;
    margin-bottom: 20px; }
    .settings-page .settings__title::after {
      content: "";
      width: 150px;
      height: 2px;
      background-color: #61cb46;
      position: absolute;
      bottom: -5px;
      left: 0; }
  .settings-page .settings__avatar {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .settings-page .settings__avatar .avatar-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background-color: #aeaeae;
      margin: 0 auto 20px;
      cursor: pointer; }
  .settings-page .settings__form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    .settings-page .settings__form label {
      width: 100%;
      display: grid;
      grid-template-columns: 3fr 5fr 1fr;
      gap: 20px;
      gap: 20px;
      align-items: center;
      margin-bottom: 20px;
      text-align: right;
      font-size: 16px; }
      .settings-page .settings__form label input {
        border: solid 1px #000;
        border-radius: 8px;
        padding: 10px; }
    .settings-page .settings__form button {
      margin: 20px 0; }
    .settings-page .settings__form .forgot-pass {
      margin-bottom: 20px;
      color: #0055e3;
      text-decoration: underline; }
      .settings-page .settings__form .forgot-pass:hover {
        opacity: 0.8; }
      .settings-page .settings__form .forgot-pass:active {
        opacity: 0.5; }
  @media screen and (max-width: 767px) {
    .settings-page .settings {
      padding: 20px; }
      .settings-page .settings__form label {
        grid-template-columns: 1fr; }
        .settings-page .settings__form label p {
          display: none; }
        .settings-page .settings__form label input::placeholder {
          opacity: 1; } }
