@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans:wght@400;500;600;700;800;900&display=swap");
/* GLobal */
html,
body {
  height: 100%;
  width: 100%;
  display: table;
}

body {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  background: #000;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: inherit;
}
a:focus {
  color: inherit;
}

.light-link {
  color: #ffffff;
}

.highlight-link {
  color: #ff4400;
}

.nohighlight-link {
  color: rgba(255, 255, 255, 0.5);
}

img {
  max-width: 100%;
}

main {
  overflow-y: hidden;
  height: calc(100% - 70px);
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  main {
    height: calc(100% - 20px);
    padding-bottom: 20px;
  }
}

.btn {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  min-height: 40px;
  min-width: 140px;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.btn:focus {
  box-shadow: none;
}
.btn-white {
  color: #ff4400;
  background: #ffffff;
}
.btn-white:hover {
  color: #ffffff;
  background: #ff4400;
}
.btn-white:focus, .btn-white:active {
  color: #ff4400;
  background: #ffffff;
}
.btn-orange {
  color: #ffffff;
  background: #ff4400;
}
.btn-orange:hover {
  color: #ff4400;
  background: #ffffff;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
}
.btn-orange:focus, .btn-orange:active {
  color: #ffffff;
  background: #ff4400;
}
.btn-white-outline {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover {
  color: #ff4400;
  background: #ffffff;
}
.btn-white-outline:focus, .btn-white-outline:active {
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
}
.btn-orange-outline {
  color: #ff4400;
  background: #ffffff;
  border: 1px solid #ff4400;
}
.btn-orange-outline:hover {
  color: #ffffff;
  background: #0b0b0b;
  border: 1px solid #0b0b0b;
}
.btn-orange-outline:focus, .btn-orange-outline:active {
  color: #ff4400;
  background: #ffffff;
  border: 1px solid #ff4400;
}
.btn-link {
  font-size: 16px;
  font-weight: 400;
  color: #ff4400;
  background-color: transparent;
  text-decoration: none;
  text-transform: none;
}
.btn-link:hover {
  color: #ff4400;
  text-decoration: underline;
}
.btn-link:focus, .btn-link:active {
  color: #ff4400;
  background-color: transparent;
}

/* Header */
header {
  background: rgba(11, 11, 11, 0.85);
  position: relative;
}

.navbar {
  position: static;
}
@media (max-width: 1199px) {
  .navbar {
    padding: 12px 0 10px 0;
  }
}

.navbar__logo {
  padding: 10px 0;
}
@media (max-width: 1199px) {
  .navbar__logo {
    padding: 0;
  }
}
.navbar__logo .logo-box {
  position: relative;
}
.navbar__logo .logo-box__text {
  width: 396px;
  height: 40px;
}

.navbar__toggle {
  display: none;
}
@media (max-width: 1199px) {
  .navbar__toggle {
    display: block;
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    background-image: url(../images/icons/menu-on.svg);
  }
  .navbar__toggle.off {
    background-image: url(../images/icons/menu-off.svg);
  }
}

.navbar__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .navbar__content {
    display: none;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 8px 36px 48px 36px;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #2f2f2f;
    z-index: 999;
  }
  .navbar__content.open {
    display: block;
  }
}

.navbar__menu {
  padding-left: 50px;
  margin-left: auto;
}
@media (max-width: 1440px) {
  .navbar__menu {
    padding-left: 16px;
  }
}
.navbar__menu .main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.navbar__menu .main-menu__item {
  display: inline-block;
  padding: 0 15px;
}
@media (max-width: 1440px) {
  .navbar__menu .main-menu__item {
    padding: 0 8px;
  }
}
@media (max-width: 1199px) {
  .navbar__menu .main-menu__item {
    display: block;
    padding: 12px 8px;
  }
}
.navbar__menu .main-menu__item a {
  color: #ffffff;
  display: block;
  padding: 2px 8px;
  position: relative;
}
.navbar__menu .main-menu__item a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.navbar__menu .main-menu__item a:hover:before {
  background: radial-gradient(86.83% 58.93% at 50% 55.36%, #6d00db 0%, #6d00db 100%);
  filter: blur(12px);
}
.navbar__menu .main-menu__item a span {
  position: relative;
}
@media (max-width: 1199px) {
  .navbar__menu .main-menu__item a:hover:before {
    background: transparent;
  }
}
@media (max-width: 1199px) {
  .navbar__menu .main-menu__item .dropdown-toggle {
    display: none;
  }
}
.navbar__menu .main-menu__item .dropdown-menu-dark {
  background-color: transparent;
  padding-left: 0;
}
@media (max-width: 1199px) {
  .navbar__menu .main-menu__item--account a {
    color: #ff4400;
  }
}

.dropdown-toggle:after {
  margin-left: 8px;
  vertical-align: baseline;
  border-top: 8px solid;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
  position: relative;
}

.dropdown-menu {
  min-width: 140px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  list-style: none;
  background-color: #0b0b0b !important;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
}
.dropdown-menu[data-bs-popper] {
  margin-top: 20px;
  left: initial;
  right: 25px;
}
.dropdown-menu .main-menu__item {
  width: 100%;
  text-align: right;
  padding: 0;
}
.dropdown-menu .main-menu__item a {
  padding: 15px 20px;
  line-height: 1;
}
.dropdown-menu .main-menu__item a:hover {
  font-weight: 400;
}
.dropdown-menu .main-menu__item a:hover:before {
  background: rgba(255, 255, 255, 0.1);
  filter: none;
}

.navbar__search {
  padding-left: 35px;
}
@media (max-width: 1440px) {
  .navbar__search {
    padding-left: 8px;
  }
}
@media (max-width: 1199px) {
  .navbar__search {
    max-width: 400px;
    margin: 0 auto;
    padding: 36px 0 50px 0;
  }
}

.form-search {
  position: relative;
}
.form-search .search-field {
  width: 100%;
  min-width: 300px;
  height: 40px;
  padding: 10px 12px 10px 48px;
  border: 1px solid #767676;
  color: #767676;
  border-radius: 30px;
  background-color: transparent;
  font-size: 13px;
  outline: none;
}
.form-search .search-field::-ms-clear, .form-search .search-field:-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.form-search .search-field::-webkit-search-decoration, .form-search .search-field::-webkit-search-cancel-button, .form-search .search-field::-webkit-search-results-button, .form-search .search-field::-webkit-search-results-decoration {
  display: none;
}
.form-search .search-field:focus {
  outline: none;
}
@media (max-width: 768px) {
  .form-search .search-field {
    min-width: 100%;
  }
}
.form-search .search-button {
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/search-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 12px;
  left: 20px;
}

.navbar__account {
  font-size: 14px;
  font-weight: 500;
  color: #ff4400;
  padding-left: 50px;
}
@media (max-width: 1440px) {
  .navbar__account {
    padding-left: 16px;
  }
}
@media (max-width: 1199px) {
  .navbar__account {
    padding-left: 0;
    background: transparent;
    -webkit-background-clip: none;
    -webkit-text-fill-color: #ffffff;
  }
}
.navbar__account a {
  color: #ff4400;
  border-bottom: 1px solid #ff4400;
}
.navbar__account a:hover {
  border-bottom: 0;
}
@media (max-width: 1199px) {
  .navbar__account a {
    color: #ffffff;
    background: #ff4400;
    border-radius: 5px;
    padding: 10px 64px;
  }
}

/* Breadcrumb */
.breadcrumb {
  padding: 40px 0 0 0;
  margin: 0;
}
.breadcrumb .breadcrumb-item {
  padding-right: 16px;
  position: relative;
}
.breadcrumb .breadcrumb-item::before {
  content: none;
}
.breadcrumb .breadcrumb-item::after {
  padding-left: 16px;
  color: #ffffff;
  content: "›";
}
.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb .breadcrumb-item.active {
  color: #ff4400;
}
.breadcrumb .breadcrumb-item.active:after {
  content: none;
}

/* Footer */
footer {
  display: table-row;
  height: 0;
  background: #0b0b0b;
}
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}
footer .footer-top {
  padding: 20px 0;
}
footer .footer-top__logo {
  margin-bottom: 40px;
}
footer .footer-bottom {
  padding: 0 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-bottom {
    display: block;
  }
}
footer .footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  footer .footer-menu {
    padding-bottom: 20px;
  }
}
footer .footer-menu__item {
  padding: 0 0 10px 0;
}
footer .footer-menu__item a {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}
footer .footer-menu__item a:hover {
  color: #ff4400;
}
@media (max-width: 768px) {
  footer .footer-menu__item a {
    font-size: 15px;
    font-weight: 800;
  }
}
footer .contact-address {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
footer .contact-tel {
  font-weight: 600;
}
footer .contact-email {
  padding-top: 15px;
  font-weight: 500;
}
footer .copyright {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  footer .copyright {
    padding: 20px 0;
  }
}
footer .card-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .card-list li {
  display: inline-block;
}
footer .card-list li img {
  max-width: 50px;
}

/* Form */
.form-subtext {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.form-row .form-col {
  padding: 0 15px 30px 15px;
}
.form-row .form-col--half {
  width: 50%;
}
@media (max-width: 768px) {
  .form-row .form-col--half {
    width: 100%;
  }
}
.form-row .form-col--full {
  width: 100%;
}
.form-row .form-col--btn {
  padding: 10px 15px 40px 15px;
  width: 100%;
  text-align: center;
}

.control-label {
  font-size: 13px;
  font-weight: 400;
}

.form-control {
  padding: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.form-control:focus {
  color: #ffffff;
  background-color: transparent;
  border-color: inherit;
  outline: 0;
  box-shadow: none;
}
.form-control::placeholder {
  color: #ffffff;
  opacity: 0.5;
}
.form-control.is-invalid {
  border-color: #ff4400;
  background-image: none;
  padding-right: 5px;
}
.form-control.is-invalid::placeholder {
  color: #ff4400;
  opacity: 0.5;
}
.form-control.is-invalid:focus {
  border-color: #ff4400;
  box-shadow: none;
}
.form-control:disabled, .form-control[readonly] {
  background-color: transparent;
}

.invalid-feedback {
  font-size: 13px;
  font-weight: 400;
  color: #ff4400;
}

.field-password__wrapper {
  position: relative;
}
.field-password__wrapper .toggle-password {
  width: 24px;
  height: 24px;
  background-image: url("../images/icons/pass-eye-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.field-password__wrapper .show-password ~ .toggle-password {
  background-image: url(../images/icons/pass-eye-remove-icon.svg);
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}

.select2-dropdown {
  background: #ffffff;
  border: none;
  border-radius: 5px !important;
  overflow: hidden;
  font-size: 18px;
  font-weight: 400;
  color: #0b0b0b;
}
.select2-dropdown.select2-dropdown--below {
  margin-top: 8px;
}
.select2-dropdown .select2-results__option {
  padding: 10px 20px;
}
.select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: rgba(255, 92, 0, 0.15);
  color: #0b0b0b;
}
.select2-dropdown .select2-results__option--selected {
  background-color: rgba(255, 92, 0, 0.15);
}

.form-check {
  margin-bottom: 10px;
}
.form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -26px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
}
.form-check .form-check-input:focus {
  box-shadow: none;
}
.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check .form-check-label {
  font-size: 14px;
  font-weight: 500;
}

/* Modal */
.modal-backdrop {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
}
.modal-backdrop.show {
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  border: none;
  border-radius: 10px;
}
.modal-content .modal-header {
  position: relative;
  justify-content: center;
  border-bottom: none;
  padding: 40px 40px 16px 40px;
  text-align: center;
}
.modal-content .modal-header .modal-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff4400;
}
.modal-content .modal-body {
  padding: 0 40px 40px 40px;
  color: #0b0b0b;
}
.modal-content.modal-content--bg {
  background-image: url(../images/notification-modal-bg.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.modal-content.modal-content--bg .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-content .modal-left-body {
  position: relative;
  background: #ff4400;
  width: calc(50% - 50px);
  min-width: 160px;
  padding: 88px 40px;
  margin: 0 0 0 auto;
  text-align: center;
}
.modal-content .modal-left-body:before {
  content: "";
  width: 50px;
  height: 100%;
  background-image: linear-gradient(to left top, #ff4400 0%, #ff4400 50%, transparent 50%);
  position: absolute;
  top: 0;
  left: -50px;
}
.modal-content .modal-left-body .modal-left-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.modal-content .modal-left-body .modal-left-box {
  margin-bottom: 20px;
}
.modal-content .modal-left-body .modal-left-link {
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal-content .modal-left-body {
    width: 100%;
  }
  .modal-content .modal-left-body:before {
    content: none;
  }
}

.modal-dialog-xl {
  max-width: 700px;
}

.modal-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
}
.modal-close:hover {
  background: transparent;
}
.modal-close:focus {
  outline: none;
  box-shadow: none;
}

.modal-button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.modal-contact-box {
  border: 1px solid #ff4400;
  border-radius: 5px;
  padding: 20px;
  margin-top: 36px;
}
.modal-contact-box p {
  margin: 0;
}

/* Page */
.row {
  margin-right: -10px;
  margin-left: -10px;
}
.row > * {
  padding-right: 10px;
  padding-left: 10px;
}

.title-section {
  padding: 80px 0 40px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .title-section {
    padding: 20px 0;
  }
}
.title-section__title {
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  display: inline;
}
.title-section__title span {
  font-size: 24px;
  font-weight: 900;
  position: absolute;
  right: 0;
  bottom: 8px;
  color: #ffffff;
  text-shadow: none;
}
@media (max-width: 768px) {
  .title-section__title {
    font-size: 35px;
    font-weight: 900;
    line-height: 1.3;
  }
  .title-section__title span {
    display: block;
    position: relative;
    bottom: unset;
  }
}
.title-section__title--highlight {
  color: #0b0b0b;
  text-shadow: 1px 1px 0 #ff5c00, -1px -1px 0 #ff5c00, 1px -1px 0 #ff5c00, -1px 1px 0 #ff5c00, 1px 1px 0 #ff5c00, 0px 0px 0 rgba(255, 92, 0, 0.8);
  letter-spacing: 1px;
  mix-blend-mode: screen;
}

.main-title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.container-xs {
  max-width: 440px;
  padding: 60px 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container-xs {
    padding: 30px 0;
  }
}

.container-md {
  max-width: 870px;
  padding: 0 0 60px 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container-md {
    padding: 0 0 30px 0;
  }
}

.container-xl {
  width: 100%;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .container-xl {
    padding: 30px 0;
  }
}

.bg-box {
  min-height: 140px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px 20px 0 20px;
  margin-bottom: 30px;
}

.bg-border-box {
  padding: 20px 20px 0 20px;
  border-radius: 10px;
  border: 1px solid var(--white, #fff);
  background: rgba(109, 0, 219, 0.7);
  backdrop-filter: blur(5px);
}

.logo-list__wrapper {
  margin-bottom: 30px;
}
.logo-list__wrapper .logo-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -8px;
  list-style: none;
}
.logo-list__wrapper .logo-list li img {
  max-height: 55px;
  max-width: 79px;
}
@media (max-width: 768px) {
  .logo-list__wrapper .logo-list {
    justify-content: flex-start;
  }
}
.logo-list__wrapper .logo-list li {
  padding: 0 8px 8px 8px;
}

.terms-text {
  font-size: 16px;
  font-weight: 400;
}
.terms-text a {
  color: #ffffff;
}

.terms-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  position: relative;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  text-align: center;
}

.fool-width__container {
  background: #0b0b0b;
  padding-top: 30px;
}

/* Video card */
.video-card {
  position: relative;
  padding-bottom: 85%;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  color: #ffffff;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.25));
  cursor: pointer;
}
.video-card a {
  color: #ffffff;
}
.video-card--style1 .video-card__img:after {
  background: linear-gradient(171.88deg, rgba(161, 0, 218, 0.75) 11.75%, rgba(255, 122, 0, 0.75) 114.36%);
}
.video-card--style2 .video-card__img:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.5) 100%);
}
.video-card--style3 .video-card__img:after {
  background: linear-gradient(298.78deg, rgba(109, 0, 219, 0.75) 21.46%, rgba(211, 0, 51, 0.75) 92.54%);
}
.video-card--style3 .video-card__level .label-level {
  display: none;
  opacity: 0;
}
.video-card--style3 .video-card__level .label-style {
  display: block;
  opacity: 1;
}
.video-card--style4 .video-card__play {
  opacity: 0;
}
.video-card--style4 .video-card__img:after {
  background: rgba(11, 11, 11, 0.2);
}
.video-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.video-card__img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}
.video-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.video-card__level {
  position: absolute;
  top: 10px;
  left: 20px;
  height: 20px;
  padding-left: 25px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .video-card__level {
    left: 10px;
  }
}
.video-card__level span {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.video-card__level:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.video-card__level.level-beginner:before {
  background-image: url("../images/icons/skill-level-beginner.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-card__level.level-intermediate:before {
  background-image: url("../images/icons/skill-level-intermediate.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-card__level.level-advanced:before {
  background-image: url("../images/icons/skill-level-advanced.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-card__tags {
  position: absolute;
  top: 10px;
  right: 20px;
  max-width: 50%;
}
@media (max-width: 768px) {
  .video-card__tags {
    right: 10px;
  }
}
.video-card__state {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 15px;
  max-width: 15px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 15px;
  padding: 0 7px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.video-card__state span {
  white-space: nowrap;
  transition: opacity 0.3s ease-out;
  opacity: 0;
}
.video-card__state.state-not-mastered {
  background: #6d00db;
}
.video-card__state.state-mastered {
  background: #21de5a;
}
.video-card__play {
  width: 45px;
  height: 45px;
  background-image: url("../images/icons/play-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.video-card__title {
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 9.93%, rgba(0, 0, 0, 0) 88.92%);
}
.video-card__title span {
  font-size: 16px;
  font-weight: 400;
  display: block;
}
@media (max-width: 768px) {
  .video-card__title {
    padding: 10px;
  }
}
.video-card:hover.video-card--style1 .video-card__img:after {
  opacity: 0;
}
.video-card:hover.video-card--style2 .video-card__img {
  overflow: hidden;
}
.video-card:hover.video-card--style2 .video-card__img img {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.video-card:hover.video-card--style2 .video-card__img:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.3) 100%);
}
.video-card:hover.video-card--style3 .video-card__img:after {
  opacity: 0;
}
.video-card:hover.video-card--style3 .video-card__level .label-level {
  display: block;
  opacity: 1;
}
.video-card:hover.video-card--style3 .video-card__level .label-style {
  display: none;
  opacity: 0;
}
.video-card:hover.video-card--style4 .video-card__play {
  opacity: 1;
}
.video-card:hover.video-card--style4 .video-card__img {
  overflow: hidden;
}
.video-card:hover.video-card--style4 .video-card__img img {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.video-card:hover.video-card--style4 .video-card__img:after {
  opacity: 0;
}
.video-card:hover .video-card__level span {
  opacity: 1;
}
.video-card:hover .video-card__state {
  overflow: visible;
  max-width: auto;
  max-width: 100%;
}
.video-card:hover .video-card__state span {
  opacity: 1;
}
.video-card:hover .video-card__play {
  width: 64px;
  height: 64px;
}

/* Load more */
.load-more {
  margin: 10px 0;
  position: relative;
}

/* Video card slider */
.video-card-swiper {
  margin-right: -8%;
}
.video-card-swiper:after {
  content: "";
  width: 8%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 11, 11, 0) 0%, rgb(11, 11, 11) 100%);
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 2;
}
@media (max-width: 991px) {
  .video-card-swiper:after {
    width: 4%;
  }
}
@media (max-width: 768px) {
  .video-card-swiper:after {
    width: 0;
  }
}
.video-card-swiper .video-card-slide {
  width: 22%;
}
@media (max-width: 991px) {
  .video-card-swiper .video-card-slide {
    width: 33%;
  }
}
@media (max-width: 768px) {
  .video-card-swiper .video-card-slide {
    width: 65%;
  }
}
@media (max-width: 1440px) {
  .video-card-swiper {
    margin-right: 0;
  }
}

/* Video page */
.single-video__container {
  background-color: #0b0b0b;
  padding-top: 1px;
}

.single-video {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-video {
    padding: 30px 0;
  }
}
.single-video__blur {
  background-size: cover;
  background-position: center;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.5);
}
.single-video__blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.05);
  backdrop-filter: blur(8px);
}
.single-video__box {
  position: relative;
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 768px) {
  .single-video__box {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-video .video-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .single-video .video-title {
    display: block;
  }
}
.single-video .video-title__name {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}
.single-video .video-title__tags {
  padding: 0 5px;
  margin: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .single-video .video-title__tags {
    padding: 8px 0 0 0;
    margin: 0 -15px;
  }
}
.single-video .video-title__tags li {
  display: inline-block;
  padding: 0 15px;
}
.single-video .video-title__state.not-mastered {
  position: relative;
  padding-right: 320px;
  padding-left: 20px;
}
.single-video .video-title__state.not-mastered .state-hint {
  position: absolute;
  right: 0;
  bottom: 0;
}
.single-video .video-title__state.mastered {
  padding-left: 20px;
}
.single-video .video-title__state .btn-state {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  padding: 5px 10px;
  border: none;
  border-radius: 20px;
  white-space: nowrap;
}
.single-video .video-title__state .btn-state--not-mastered {
  background: #6d00db;
}
.single-video .video-title__state .btn-state--mastered {
  background: #21de5a;
}
@media (max-width: 1199px) {
  .single-video .video-title__state.not-mastered {
    padding-right: 210px;
  }
  .single-video .video-title__state.not-mastered .state-hint {
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .single-video .video-title__state {
    display: inline-block;
  }
  .single-video .video-title__state.not-mastered {
    padding-left: 0;
    padding-top: 40px;
  }
  .single-video .video-title__state.mastered {
    padding-left: 0;
    padding-top: 10px;
  }
}

/* My progress page */
.custom-bg-box1 {
  background-color: transparent;
  position: relative;
  padding-bottom: 20px;
}

.custom-bg-box2 {
  background: transparent;
  position: relative;
}

/* Tabs */
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-item {
  width: 33.3%;
  text-align: center;
  padding: 0 0 30px 0;
}
.nav-tabs .nav-item:first-child {
  text-align: left;
}
.nav-tabs .nav-item:last-child {
  text-align: right;
}
@media (max-width: 991px) {
  .nav-tabs .nav-item {
    width: 100%;
    text-align: left;
  }
  .nav-tabs .nav-item:last-child {
    text-align: left;
  }
}
.nav-tabs .nav-link {
  display: inline;
  padding: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.5;
  border: none;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: transparent;
  opacity: 1;
}

.no-tab-content {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  padding: 80px 0 60px 0;
}

/* Songs */
.songs-swiper {
  margin-top: 70px;
  max-width: calc(100vw - 24px);
}
.songs-swiper .swiper-wrapper {
  flex-direction: row;
}
.songs-swiper .song-slide {
  padding: 0 50px;
}
.songs-swiper .swiper-button-prev:after,
.songs-swiper .swiper-button-next:after {
  color: #666;
}
.song-item {
  position: relative;
  padding: 5px 70px 5px 38px;
  margin-bottom: 5px;
  background: transparent;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.song-item:before {
  content: url(../images/icons/note-icon.svg);
  position: absolute;
  top: 8px;
  left: 10px;
}
.song-item .song-item__name {
  font-size: 13px;
  font-weight: 400;
}
.song-item .song-item__name span {
  display: block;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.song-item .song-item__btn {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #2fe38d;
  position: relative;
  padding-left: 20px;
  background-image: url(../images/icons/copy-icon.svg);
  background-repeat: no-repeat;
  background-position: center left;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  cursor: pointer;
  display: none;
}
.song-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.song-item:hover .song-item__btn {
  display: block;
}

/* Style dance */
.style-dance-card {
  filter: drop-shadow(0px 0px 30px rgba(255, 255, 255, 0.25));
  border-radius: 10px;
  position: relative;
  padding-bottom: 55%;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
}
.style-dance-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.style-dance-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.style-dance-card__img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.style-dance-card__meta {
  width: 100%;
  padding: 16px 20px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 9.93%, rgba(0, 0, 0, 0) 88.92%);
}
.style-dance-card__level {
  text-align: right;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.style-dance-card__level span {
  display: block;
  font-weight: 800;
}
.style-dance-card__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .style-dance-card__title {
    font-size: 25px;
  }
}
.style-dance-card__description {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80%;
  max-height: calc(100% - 110px);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .style-dance-card__description {
    -webkit-line-clamp: 3;
  }
}
.style-dance-card:hover .style-dance-card__img:after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.79) 0%, rgba(0, 0, 0, 0.79) 69.12%, rgba(145, 0, 113, 0.79) 100%);
  backdrop-filter: blur(6px);
}
.style-dance-card:hover .style-dance-card__level {
  opacity: 1;
}
.style-dance-card:hover .style-dance-card__description {
  opacity: 1;
}

/* Style radio */
.single-radio {
  margin-top: 100px;
  margin-bottom: 60px;
  position: relative;
}
.single-radio__img {
  position: absolute;
  bottom: -100px;
  max-width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .single-radio {
    margin-top: 50px;
  }
}

.tab-pane .player {
  box-shadow: none;
  background: transparent;
}

.radio-card {
  filter: drop-shadow(0px 0px 30px rgba(255, 255, 255, 0.25));
  border-radius: 10px;
  position: relative;
  padding-bottom: 55%;
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
}
.radio-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.radio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.radio-card__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
  padding: 16px 20px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 9.93%, rgba(0, 0, 0, 0) 88.92%);
}
@media (max-width: 991px) {
  .radio-card__title {
    font-size: 25px;
  }
}
.radio-card:hover .radio-card__img {
  overflow: hidden;
}
.radio-card:hover .radio-card__img img {
  transform: scale(1.2);
}

.select-style {
  margin-bottom: 80px;
  margin-left: 20px;
  max-width: calc(100vw - 24px);
}
@media (max-width: 1199px) {
  .select-style {
    margin-left: 0;
  }
}
.select-style .swiper-wrapper {
  justify-content: center;
}
@media (max-width: 1199px) {
  .select-style .swiper-wrapper {
    justify-content: flex-start;
  }
}
.select-style .swiper-slide {
  width: auto;
}
.select-style__item {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.5;
  text-transform: uppercase;
  cursor: pointer;
}
.select-style__item.current {
  opacity: 1;
}
@media (max-width: 768px) {
  .select-style__item {
    font-size: 16px;
  }
}

/* Main page */
.main-style .container {
  position: relative;
}
.main-style__decor {
  position: absolute;
  bottom: 100px;
  right: -220px;
}
@media (max-width: 1760px) {
  .main-style__decor {
    display: none;
  }
}
.main-style--bg {
  background-color: #ff4400;
}
@media (max-width: 991px) {
  .main-style--bg {
    background-color: transparent;
  }
}

.clip-box {
  position: relative;
  z-index: 3;
}

.clip-box2 {
  position: relative;
}

.clip-box__img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.clip-box__img--rounded {
  border-radius: 10px;
}

.clip-box__text {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
  margin-top: 16px;
  position: relative;
}
@media (max-width: 991px) {
  .clip-box__text {
    font-size: 27px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.clip-box__text span {
  margin: 0;
  color: #ff4400;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  letter-spacing: 1px;
  mix-blend-mode: screen;
  position: relative;
  display: inline;
}
@media (max-width: 991px) {
  .clip-box__text span {
    color: #0b0b0b;
    text-shadow: 1px 1px 0 #ff4400, -1px -1px 0 #ff4400, 1px -1px 0 #ff4400, -1px 1px 0 #ff4400, 1px 1px 0 #ff4400;
  }
}

.vertical-swiper1 {
  margin: 0 -10px;
}
.vertical-swiper1:after {
  content: " ";
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .vertical-swiper1:after {
    content: none;
  }
}
.vertical-swiper1:before {
  content: " ";
  width: 100%;
  height: 15%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .vertical-swiper1:before {
    content: none;
  }
}
.vertical-swiper1 .swiper-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
}
.vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide {
  width: 50%;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide {
    width: 100%;
    height: auto !important;
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
  }
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #0b0b0b 0%, rgba(11, 11, 11, 0.4) 10%, rgba(11, 11, 11, 0.4) 90%, #0b0b0b 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide .style-main-card {
    padding-bottom: 55%;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide .style-main-card {
    z-index: 1;
  }
}
.vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:nth-child(5n) {
  width: 100%;
}
.vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:nth-child(5n) .style-main-card {
  padding-bottom: 42%;
}
@media (max-width: 991px) {
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:nth-child(5n) .style-main-card {
    padding-bottom: 55%;
  }
}
.vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:nth-child(5n) .style-main-card .style-main-card__title {
  font-size: 42px;
  font-weight: 900;
}
@media (max-width: 991px) {
  .vertical-swiper1 .swiper-wrapper .vertical-swiper1-slide:nth-child(5n) .style-main-card .style-main-card__title {
    font-size: 25px;
  }
}

.main-style--bg .vertical-swiper1:after {
  content: " ";
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, rgba(255, 68, 0, 0.95) 0%, rgba(255, 68, 0, 0) 90%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .main-style--bg .vertical-swiper1:after {
    content: none;
  }
}
.main-style--bg .vertical-swiper1:before {
  content: " ";
  width: 100%;
  height: 15%;
  background: linear-gradient(0deg, rgb(255, 68, 0) 0%, rgba(255, 68, 0, 0.7) 60%, rgba(255, 68, 0, 0) 100%);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .main-style--bg .vertical-swiper1:before {
    content: none;
  }
}

.vertical-swiper2:after {
  content: " ";
  width: 100%;
  height: 15%;
  background: linear-gradient(0deg, rgb(255, 68, 0) 0%, rgba(255, 68, 0, 0.7) 60%, rgba(255, 68, 0, 0) 100%);
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .vertical-swiper2:after {
    content: none;
  }
}
.vertical-swiper2:before {
  content: " ";
  width: 100%;
  height: 15%;
  background: linear-gradient(180deg, rgb(255, 68, 0) 0%, rgba(255, 68, 0, 0.7) 60%, rgba(255, 68, 0, 0.1) 100%);
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .vertical-swiper2:before {
    content: none;
  }
}
@media (max-width: 991px) {
  .vertical-swiper2 .vertical-swiper2-slide {
    max-width: 65%;
  }
  .vertical-swiper2 .vertical-swiper2-slide .exercise-card__inner {
    padding-bottom: 70%;
    margin-bottom: 0;
  }
}

.vertical-swiper3 {
  margin: 0 -10px;
}
@media (max-width: 991px) {
  .vertical-swiper3 {
    margin: 0;
  }
}
.vertical-swiper3 .swiper-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .vertical-swiper3 .swiper-wrapper {
    flex-wrap: nowrap;
  }
}
.vertical-swiper3 .swiper-wrapper .vertical-swiper3-slide {
  width: 50%;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .vertical-swiper3 .swiper-wrapper .vertical-swiper3-slide {
    width: 65%;
    padding: 0;
  }
  .vertical-swiper3 .swiper-wrapper .vertical-swiper3-slide .video-card {
    padding-bottom: 70%;
    margin-bottom: 0;
    filter: none;
  }
}

.style-main-card {
  border-radius: 10px;
  position: relative;
  padding-bottom: 85%;
  overflow: hidden;
}
.style-main-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.style-main-card__img:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}
.style-main-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.style-main-card .video-card__play {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.style-main-card__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
  padding: 16px 20px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 9.93%, rgba(0, 0, 0, 0) 88.92%);
}
@media (max-width: 991px) {
  .style-main-card__title {
    font-size: 25px;
  }
}
.style-main-card:hover .style-main-card__img {
  overflow: hidden;
}
.style-main-card:hover .style-main-card__img img {
  transform: scale(1.2);
}
.style-main-card:hover .video-card__play {
  opacity: 1;
}

.icon-title-section {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .icon-title-section {
    margin-bottom: 40px;
    align-items: flex-start;
  }
}
.icon-title-section__icon {
  max-width: 106px;
}
@media (max-width: 991px) {
  .icon-title-section__icon {
    max-width: 32px;
    margin-top: 5px;
  }
}
.icon-title-section__title {
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  display: inline;
}
@media (max-width: 991px) {
  .icon-title-section__title {
    font-size: 35px;
    text-align: center;
  }
}
.icon-title-section__title span {
  font-size: 40px;
  font-weight: 900;
  position: absolute;
  right: 0;
  bottom: -46px;
  color: #ffffff;
  text-shadow: none;
}
@media (max-width: 991px) {
  .icon-title-section__title span {
    display: block;
    font-size: 25px;
    position: relative;
    right: 0;
    bottom: 0;
  }
}

.icon-title-section2 {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .icon-title-section2 {
    margin-bottom: 40px;
    align-items: flex-start;
  }
}
.icon-title-section2__icon {
  max-width: 106px;
}
@media (max-width: 991px) {
  .icon-title-section2__icon {
    max-width: 32px;
    margin-top: 5px;
  }
}
.icon-title-section2__title {
  margin: 0;
  font-size: 70px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  display: inline;
}
@media (max-width: 991px) {
  .icon-title-section2__title {
    font-size: 35px;
    text-align: center;
  }
}
.icon-title-section2__title span {
  font-size: 40px;
  font-weight: 900;
  position: absolute;
  right: -146px;
  bottom: -46px;
  color: #ffffff;
  text-shadow: none;
}
@media (max-width: 991px) {
  .icon-title-section2__title span {
    display: block;
    font-size: 25px;
    position: relative;
    right: 0;
    bottom: 0;
  }
}

.main-exercises__wrap .exercise-card__bg {
  display: none;
}
.main-exercises__wrap .exercise-card__inner {
  filter: none;
}
.main-exercises__wrap--bg {
  position: relative;
  z-index: 2;
}
.main-exercises__wrap--bg:before {
  content: " ";
  width: 100%;
  height: calc(100% + 300px);
  background: #f40;
  position: absolute;
  top: -100px;
  left: 0;
  transform: skewY(15deg);
}
@media (max-width: 991px) {
  .main-exercises__wrap--bg:before {
    content: none;
  }
}
.main-exercises__wrap--bg2 {
  position: relative;
}
.main-exercises__wrap--bg2:before {
  content: "";
  width: 100%;
  height: 70%;
  background-image: linear-gradient(to left bottom, #ff4400 0%, #ff4400 50%, transparent 50%);
  position: absolute;
  top: 0;
  left: 0;
}
.main-exercises__wrap--bg2:after {
  content: "";
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height: 140%;
  background-color: #1c1c1c;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
.main-exercises__wrap--bg2 .main-exercises__triangle {
  width: 100%;
  height: 50%;
  position: absolute;
  top: 140%;
  left: 0;
  background-color: #ff4400;
}
@media (max-width: 991px) {
  .main-exercises__wrap--bg2 {
    background-color: #ff4400;
  }
  .main-exercises__wrap--bg2:before {
    content: none;
  }
  .main-exercises__wrap--bg2::after {
    content: none;
  }
  .main-exercises__wrap--bg2 .main-exercises__triangle {
    display: none;
  }
}

.main-exercises {
  padding: 100px 0 100px 0;
  position: relative;
}
@media (max-width: 991px) {
  .main-exercises {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .main-exercises .main-exercises-slide {
    width: 65%;
  }
  .main-exercises .main-exercises-slide .exercise-card__inner {
    padding-bottom: 70%;
    margin-bottom: 0;
  }
}
.main-exercises .container {
  position: relative;
}
.main-exercises__decor {
  position: absolute;
  top: 100px;
  left: -220px;
}
@media (max-width: 1760px) {
  .main-exercises__decor {
    display: none;
  }
}
.main-exercises__img {
  position: absolute;
  top: 200px;
  left: -250px;
}
@media (max-width: 1199px) {
  .main-exercises__img {
    display: none;
  }
}

.exercise-card__bg {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transition: all 0.3s ease-in-out;
}
.exercise-card__inner {
  filter: drop-shadow(0px 0px 30px rgba(255, 255, 255, 0.25));
  border-radius: 10px;
  position: relative;
  padding-bottom: 55%;
  margin-bottom: 20px;
  overflow: hidden;
  z-index: 1;
}
.exercise-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.exercise-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}
.exercise-card__img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(11, 11, 11, 0.35);
  z-index: 1;
}
.exercise-card__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
  padding: 16px 20px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 9.93%, rgba(0, 0, 0, 0) 88.92%);
  z-index: 1;
}
@media (max-width: 768px) {
  .exercise-card__title {
    font-size: 14px;
  }
}
.exercise-card:hover .exercise-card__img {
  overflow: hidden;
}
.exercise-card:hover .exercise-card__img img {
  transform: scale(1.2);
}
.exercise-card:hover .exercise-card__bg {
  opacity: 1;
}

.main-exercises .card-grid__item:first-child .exercise-card__bg {
  opacity: 1;
}

.main-slider-section {
  height: 100%;
}
@media (max-width: 991px) {
  .main-slider-section {
    padding: 20px 12px;
    margin: 0 -12px;
  }
}

.main-collections {
  padding: 90px 0 90px 0;
  position: relative;
}
@media (max-width: 991px) {
  .main-collections {
    padding: 40px 0 60px 0;
    background: #0b0b0b;
  }
}
.main-collections:before {
  content: " ";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #0b0b0b 0%, rgba(11, 11, 11, 0) 20%, rgba(11, 11, 11, 0) 80%, rgb(11, 11, 11) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.main-collections-swiper {
  margin: 0 -4%;
}
@media (max-width: 991px) {
  .main-collections-swiper {
    margin: 0;
  }
}
.main-collections-swiper .swiper-wrapper {
  flex-direction: row;
}
.main-collections-swiper .swiper-wrapper .main-collections-slide {
  padding: 10px 4%;
}
@media (max-width: 991px) {
  .main-collections-swiper .swiper-wrapper .main-collections-slide {
    padding: 0;
    max-width: 65%;
  }
}
.main-collections-swiper .swiper-wrapper .main-collections-slide .video-card {
  margin: 0;
}
@media (max-width: 991px) {
  .main-collections-swiper .swiper-wrapper .main-collections-slide .video-card {
    padding-bottom: 70%;
    filter: none;
  }
}

.main-radio {
  padding: 0 0 160px 0;
  position: relative;
  z-index: 4;
}
.main-radio__img {
  position: absolute;
  top: -150px;
  max-width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
}
.main-radio__img2 {
  position: absolute;
  bottom: -70px;
  right: 0;
  max-width: 100%;
}
@media (max-width: 1199px) {
  .main-radio__img {
    top: 150px;
  }
}
@media (max-width: 991px) {
  .main-radio .clip-box__icon {
    max-width: 290px;
  }
  .main-radio--bg {
    background-color: #ff4400;
  }
  .main-radio__img2 {
    bottom: 0;
  }
}
@media (max-width: 540px) {
  .main-radio {
    overflow: hidden;
  }
  .main-radio__img {
    width: 200%;
    max-width: 200%;
  }
  .main-radio__img2 {
    width: 180%;
    max-width: 180%;
    right: none;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.trial-box {
  margin-bottom: 20px;
}
.trial-box h2 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 30px;
}