/*
|--------------------------------------------------
| MAIN STYLES SITE
|--------------------------------------------------
|
*/
@import url('ws-grid-011.css');

body {
	font-family: var(--ws-font-family);
  background-color: var(--ws-bg-body);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ws-font-family-title);
	font-weight: 700;
}
h1 {
  font-size: 72px;
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
a {
	color: var(--ws-link-color);
	text-decoration: underline;
}

/* LAYOUT */
.wrapper {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important; 
  padding-left: max(24px, calc((100% - 1800px) / 2 + 60px)) !important;
  padding-right: max(24px, calc((100% - 1800px) / 2 + 60px)) !important;
}
.wrapper::before, .wrapper::after {
  box-sizing: border-box !important;
}
.container-spacer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding-left: max(24px, calc((100% - 1800px) / 2 + 60px));
  padding-right: max(24px, calc((100% - 1800px) / 2 + 60px));
}

/* HEADER */
.ws-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--ws-bg-nav);
  width: 100%;
  height: 70px;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.ws-header__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 70px;
  width: 100%;
  box-sizing: border-box;
}
.ws-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ws-header__logo .logo-picture {
	height: 32px;
}
.ws-header__logo .logo-picture .figure_top {
  stroke: var(--ws-logo-stroke-light);
}
.ws-header__logo .logo-picture .figure_bottom {
  stroke: var(--ws-logo-stroke-dark);
}
.ws-header__logo .logo-text {
	height: 26px;
}
.ws-header__logo .logo-text .text {
  fill: var(--ws-logo-stroke-light);
}
.ws-header__menu-link {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--ws-text-body-color);
	transition: opacity 0.2s ease;
	padding: 0 4px;
}
@media (min-width: 992px) {
  .ws-header__nav { 
    display: flex !important;
    align-items: stretch !important;
    height: 100%;
  }
  .ws-header__menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 32px;
    height: 100%;
  }
  .ws-header__menu > li {
    position: static;
    display: flex !important;
    align-items: stretch !important;
    height: 100%;
  }
  .ws-header__menu > li.ws-header__menu-item-dropdown {
    position: relative !important;
  }
  .ws-header__menu-link {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    font-weight: 500;
  }
  .ws-mega-menu.collapse,
  .ws-header__dropdown-menu.collapse {
    display: inherit; 
  }
  .ws-mega-menu__list.collapse {
    display: block !important;
  }
  .ws-mega-menu__accordion-trigger {
    pointer-events: none; 
  }
}

.ws-header__menu-link:hover, .ws-header__menu-link--active {
  opacity: 1 !important;
}
.ws-header__actions { 
  display: flex !important; 
  align-items: center !important; 
  gap: 24px; 
}
.ws-header__action-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  color: currentColor !important;
  opacity: 0.8;
  font-size: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ws-header__action-btn:hover { 
  opacity: 1; 
  transform: scale(1.05); 
}
.dropdown-toggle-no-caret::after { 
  display: none !important; 
}
.ws-header__actions .dropdown-menu { 
  margin-top: 12px !important; 
}
.ws-header__burger-box {
  display: none; 
  align-items: center; 
  justify-content: center;
  width: 56px;
  height: 44px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}
.ws-header__burger-box:hover { 
/*  background-color: var(--ws-color-dark-50); */
}
.dark-custom-theme .ws-header__burger-box:hover { 
  background-color: rgba(255, 255, 255, 0.05); 
}

.ws-header__burger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
}
.ws-header__burger .line {
  position: absolute; 
  display: block; 
  width: 100%; 
  height: 3px; 
  background-color: var(--ws-text-body-color);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease, top 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.ws-header__burger .line-1 { top: 4px; }
.ws-header__burger .line-2 { display:none;top: 9px; width: 80%; align-self: flex-end; }
.ws-header__burger .line-3 { top: 12px; }

.ws-header__burger:hover .line-2 { width: 100%; }
.ws-header__burger--active .line-1 { top: 9px; transform: rotate(45deg); }
.ws-header__burger--active .line-2 { opacity: 0; transform: scaleX(0); }
.ws-header__burger--active .line-3 { top: 9px; transform: rotate(-45deg); }
.ws-header__menu > li { position: static; }
.ws-mega-menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--ws-bg-nav) !important; border-bottom: 1px solid rgba(0, 0, 0, 0.05); padding-top: 40px; padding-bottom: 50px; z-index: 999; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03); box-sizing: border-box; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.ws-mega-menu__grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 40px; width: 100%; box-sizing: border-box; }
.ws-mega-menu__title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: var(--ws-space-12);
	opacity: 0.4;
}
.ws-mega-menu__list { display: flex !important; flex-direction: column !important; list-style: none !important; margin: 0 !important; padding: 0 !important; gap: 12px; }
.ws-mega-menu__list a {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: var(--ws-space-8);
	text-decoration: underline;
	color: var(--ws-text-body-color);
	transition: opacity 0.2s ease, transform 0.2s ease;
	display: inline-block;
}
.ws-mega-menu__list a:hover {
  opacity: 1;
  transform: translateX(4px);
}
.ws-header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background-color: var(--ws-bg-nav);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: var(--ws-space-16) 0;
  z-index: 999;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.ws-header__dropdown-list {
	display: flex !important;
	flex-direction: column !important;
	list-style: none !important;
	margin: 0 !important;
	padding: var(--ws-space-8) 0;
	gap: 12px;
}
.ws-header__dropdown-list a {
	display: block;
	padding: 0px 24px;
	font-size: 16px;
	font-weight: 400;
	text-decoration: underline;
	color: var(--ws-text-body-color);
	transition: transform 0.2s ease;
}
.ws-header__dropdown-list a:hover {
  opacity: 1;
  transform: translateX(4px);
}
.ws-transition-enter {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ws-transition-leave {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ws-transition-start {
  opacity: 0;
  transform: translateY(-10px);
}
.ws-transition-end {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .ws-mega-menu__accordion-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 6px 0;
  }
  .ws-megamenu_ul {
    width: 100%;
    list-style: none;
    padding-left: var(--ws-space-16);
    padding-right: var(--ws-space-16);
  }
  .ws-header__dropdown-menu li .ws-mega-menu__plus-icon {
    display: block !important;
    width: 14px !important;
    height: 14px !important;
    opacity: 0.6;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    cursor: pointer;
    z-index: 9 !important;
    pointer-events: auto !important;
  }
  .ws-header__dropdown-menu li .ws-mega-menu__accordion-trigger[aria-expanded="true"] .ws-mega-menu__plus-icon {
    transform: rotate(180deg);
  }
  .ws-header__dropdown-menu li .ws-mega-menu__accordion-trigger[aria-expanded="true"] .ws-mega-menu__plus-icon::after {
    transform: scaleY(0);
  }
  .ws-header__dropdown-menu li .ws-mega-menu__plus-icon::before {
    content: ''; position: absolute; top: 6px; left: 0; width: 100%; height: 2px; background-color: currentColor; border-radius: 2px;
  }
  .ws-header__dropdown-menu li .ws-mega-menu__plus-icon::after {
    content: ''; position: absolute; top: 0; left: 6px; width: 2px; height: 100%; background-color: currentColor; border-radius: 2px; transition: transform 0.3s ease;
  }
}
@media (max-width: 991px) {
  .ws-header__burger-box { display: flex !important; }
/*  .ws-header__actions { display: none !important; }*/
  .ws-header__nav {
    display: none !important; position: fixed !important; top: 70px; left: 0; width: 100%; height: calc(100vh - 70px); background-color: var(--ws-bg-body) !important; z-index: 998; overflow-y: auto; padding: 30px 0 50px 0; box-sizing: border-box;
  }
  .ws-header__nav--mobile-open { display: block !important; }
  .container-spacer { padding:0 }
  .ws-header__menu {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding-left: max(24px, calc((100% - 1800px) / 2 + 60px)) !important;
    padding-right: max(24px, calc((100% - 1800px) / 2 + 60px)) !important;
    gap: 12px !important;
  }
  .ws-mega-menu__col ul {
    margin-bottom: 0;
  }
  .ws-mega-menu__col ul li {
    margin-bottom: var(--ws-space-8);
  }
  .ws-header__menu .ws-header__menu-link {
    display: inline-block !important;
    height: auto !important;
    padding: 0 !important;
  }
  .ws-header__nav .ws-mega-menu {
    position: relative !important; top: 0 !important; width: 100% !important; box-shadow: none !important; border-bottom: none !important; padding: 0 !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background-color: transparent !important;
  }
  .ws-header__nav .ws-mega-menu__grid { 
    display: flex !important; flex-direction: column !important; gap: 0px !important; padding-left: 0px; margin-top: 10px;
  }
  .ws-header__nav .ws-mega-menu__list { 
    list-style: none !important; padding-left: 16px !important; margin: 12px 0 0 0 !important; gap: 14px; 
  }
  .ws-header__nav .ws-header__dropdown-menu {
    position: relative !important; top: 0 !important; left: 0 !important; width: 100% !important; border: none !important; box-shadow: none !important; padding: 0 !important; background-color: transparent !important;
  }
  .ws-header__nav .ws-header__dropdown-list {
    list-style: none !important; padding-left: 16px !important; margin: 12px 0 0 0 !important; gap: 14px !important;
  }
  .ws-mega-menu.collapse:not(.show),
  .ws-header__dropdown-menu.collapse:not(.show),
  .ws-mega-menu__list.collapse:not(.show) {
    display: none !important;
  }
  .collapsing {
    position: relative; height: 0; overflow: hidden; transition: height 0.35s ease;
  }
  .ws-header__menu > li > .ws-mega-menu__accordion-trigger,
  .ws-mega-menu__accordion-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    cursor: pointer;
    box-sizing: border-box;
    padding: 6px 0;
  }
  .ws-header__nav .ws-mega-menu__title {
    margin-bottom: 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    opacity: 0.7 !important;
  }
  .ws-mega-menu__plus-icon {
    display: block !important;
    position: relative;
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: transform 0.3s ease;
  }
  .ws-mega-menu__plus-icon::before {
    content: ''; position: absolute; top: 6px; left: 0; width: 100%; height: 2px; background-color: currentColor; border-radius: 2px;
  }
  .ws-mega-menu__plus-icon::after {
    content: ''; position: absolute; top: 0; left: 6px; width: 2px; height: 100%; background-color: currentColor; border-radius: 2px; transition: transform 0.3s ease;
  }
  .ws-mega-menu__accordion-trigger[aria-expanded="true"] .ws-mega-menu__plus-icon::after {
    transform: scaleY(0); 
  }
  .ws-mega-menu__accordion-trigger[aria-expanded="true"] .ws-mega-menu__plus-icon {
    transform: rotate(180deg); 
  }
}
.ws-icon-cart:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 200 200'%3E%3Cg%3E%3Cpath d='M50.9,178.5c-3.8,0-7.4-1.5-10.1-4.3-2.7-2.8-4.1-6.4-3.9-10.2l3.2-99.4c.2-7.6,6.4-13.6,14-13.6h91.9c7.6,0,13.8,6,14,13.6l3.2,99.4c.1,3.8-1.3,7.5-4,10.2-2.7,2.8-6.2,4.3-10.1,4.3H50.9Z' fill='none' stroke-width='0'/%3E%3Cpath d='M145.9,56c4.9,0,8.9,3.8,9,8.8l3.2,99.4c0,2.5-.8,4.8-2.5,6.6-1.7,1.8-4,2.8-6.5,2.8H50.9c-2.5,0-4.8-1-6.5-2.8-1.7-1.8-2.6-4.1-2.5-6.6l3.2-99.4c.2-4.9,4.1-8.8,9-8.8h91.9M145.9,46H54.1c-10.3,0-18.7,8.2-19,18.4l-3.2,99.4c-.3,10.7,8.3,19.6,19,19.6h98.2c10.8,0,19.4-8.9,19-19.6l-3.2-99.4c-.3-10.3-8.8-18.4-19-18.4h0Z' fill='%23000' stroke-width='0'/%3E%3C/g%3E%3Cpath d='M68.9,69v-29.5c.6-15,14.5-27,31.5-27s30.9,12,31.5,27v29.5' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='10'/%3E%3C/svg%3E");
}
[data-bs-theme="dark"] .ws-icon-cart:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 200 200'%3E%3Cg%3E%3Cpath d='M50.9,178.5c-3.8,0-7.4-1.5-10.1-4.3-2.7-2.8-4.1-6.4-3.9-10.2l3.2-99.4c.2-7.6,6.4-13.6,14-13.6h91.9c7.6,0,13.8,6,14,13.6l3.2,99.4c.1,3.8-1.3,7.5-4,10.2-2.7,2.8-6.2,4.3-10.1,4.3H50.9Z' fill='none' stroke-width='0'/%3E%3Cpath d='M145.9,56c4.9,0,8.9,3.8,9,8.8l3.2,99.4c0,2.5-.8,4.8-2.5,6.6-1.7,1.8-4,2.8-6.5,2.8H50.9c-2.5,0-4.8-1-6.5-2.8-1.7-1.8-2.6-4.1-2.5-6.6l3.2-99.4c.2-4.9,4.1-8.8,9-8.8h91.9M145.9,46H54.1c-10.3,0-18.7,8.2-19,18.4l-3.2,99.4c-.3,10.7,8.3,19.6,19,19.6h98.2c10.8,0,19.4-8.9,19-19.6l-3.2-99.4c-.3-10.3-8.8-18.4-19-18.4h0Z' fill='%23eee' stroke-width='0'/%3E%3C/g%3E%3Cpath d='M68.9,69v-29.5c.6-15,14.5-27,31.5-27s30.9,12,31.5,27v29.5' fill='none' stroke='%23eee' stroke-miterlimit='10' stroke-width='10'/%3E%3C/svg%3E");
}
.ws-icon-user:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='56.5' r='38.5' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='10'/%3E%3Cpath d='M191.9,177c-14.2-28.7-50-49-91.9-49s-77.7,20.3-91.9,49' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='10'/%3E%3C/svg%3E");
}
[data-bs-theme="dark"] .ws-icon-user:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='56.5' r='38.5' fill='none' stroke='%23eee' stroke-miterlimit='10' stroke-width='10'/%3E%3Cpath d='M191.9,177c-14.2-28.7-50-49-91.9-49s-77.7,20.3-91.9,49' fill='none' stroke='%23eee' stroke-miterlimit='10' stroke-width='10'/%3E%3C/svg%3E");
}
.ws-icon-theme:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 200 200'%3E%3Cpath d='M91.8,108.7c-13.9-29.9-6.1-64.3,16.9-85.5,3.2-3,1-8.3-3.4-8-10.2.7-20.4,3.2-30.2,7.8C31.2,43.4,13,96.6,36,139.9c20.8,39.2,69,55.7,109.5,37.7,10.6-4.7,19.7-11.3,27.2-19.2,3-3.2.3-8.3-4-7.8-31.2,4.3-62.9-11.9-76.9-42Z' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='10'/%3E%3C/svg%3E");
  
}
[data-bs-theme="dark"] .ws-icon-theme:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='38.5' fill='none' stroke='%23eee' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='100' y1='39.9' x2='100' y2='20' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='100' y1='180' x2='100' y2='160.1' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='39.9' y1='100' x2='20' y2='100' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='180' y1='100' x2='160.1' y2='100' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='57.5' y1='57.5' x2='43.4' y2='43.4' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='156.6' y1='156.6' x2='142.5' y2='142.5' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='57.5' y1='142.5' x2='43.4' y2='156.6' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3Cline x1='156.6' y1='43.4' x2='142.5' y2='57.5' fill='none' stroke='%23eee' stroke-linecap='round' stroke-miterlimit='10' stroke-width='10'/%3E%3C/svg%3E");
}

/* BREADCRUMBS */
.ws-breadcrumb-wrap {
  display: flex;
}
.ws-breadcrumb {
  padding-left: 0;
  text-align: left;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .ws-breadcrumb-wrap {
    
  }
}
@media (min-width: 1400px) {
  .ws-breadcrumb-wrap {
    
  }
}
.ws-breadcrumb li {
  list-style: none;
  display: inline-block;
  font-size: 20px;
  padding: 0 var(--ws-space-4);
}
.ws-breadcrumb li.active {
  color: var(--ws-text-light-color);
  display: inline;
}
.ws-breadcrumb li a {
  color: var(--ws-text-secondary-color);
}
.ws-breadcrumb-item+.ws-breadcrumb-item:before {
  padding-right: var(--ws-space-8);
  color: var(--ws-text-light-color);
  content: var(--bs-breadcrumb-divider, "/");
}
@media (max-width: 767.98px) {
  .ws-breadcrumb {
    margin-bottom: 16px;
  }
  .ws-breadcrumb li {
    font-size: 20px;
  }
}

/* PAGE */
.page-content {
  max-width: 100%;
  padding-top: var(--ws-space-64);
  margin-bottom: var(--ws-space-64);
  overflow-x: hidden;
  min-height: calc(100vh - 59px);
}
.page-content .page-title {
  padding: var(--ws-space-24) 0 var(--ws-space-48);
  font-size: 32px;
  text-transform: uppercase;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.page-content .page-section {
  padding: var(--ws-space-16) 0;
}
.page-content.info-page-content .swiper .swiper-slide {
  padding: 8px;
  width: auto;
  max-width: 100%;
}
.page-content.info-page-content .swiper .swiper-slide .wrap {
  height: 100%;
  display: flex;
  border-radius: 8px;
  align-items: center;
}
.page-content.info-page-content .swiper .swiper-slide .wrap img {
  max-width: 100%;
}
.page-content.info-page-content video,
.page-content.info-page-content img {
  max-width: 100%;
}
@media (min-width: 576px) {
  .page-content .page-title {
    font-size: 42px;
  }
}
@media (min-width: 768px) {
  .page-content .page-title {
    font-size: 72px;
  }
}

/* MODULE CoursES */
.module-course-categories {
  background-color: transparent;
  padding-top: var(--ws-space-48);
  padding-bottom: var(--ws-space-32);
  max-width: 100%;
  box-sizing: border-box;
}
.module-course-categories .title {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: var(--ws-space-32);
  font-weight: 400;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.module-course-categories .subdescription {
  font-size: 20px;
  color: var(--ws-text-secondary-color);
  margin-bottom: var(--ws-space-32);
}
.module-course-categories .course-categories-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.module-course-categories .courses-category-item {
  background: var(--ws-bg-body);
  border: 1px solid;
  border-radius: var(--ws-space-8);
  padding: 24px;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.module-course-categories .courses-category-item .course-category-title {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: var(--ws-space-12);
  font-weight: 500;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.module-course-categories .course-category-description {
  font-size: 20px;
}
.module-course-categories .courses-category-item.style1 {
  background: var(--ws-bg-light-subtle-color);
}
.module-course-categories .courses-category-item.style2 {
  background: var(--ws-bg-dark-thin-color);
  color: var(--ws-color-white);
}
.module-course-categories .courses-category-item.style3 {
  background: var(--ws-bg-dark-color);
  color: var(--ws-color-white);
}
.module-course-categories .courses-category-item.style4 {
  background: var(--ws-bg-primary-color);
  color: var(--ws-color-white);
}
.module-course-categories .courses-category-item.style5 {
  background: var(--ws-bg-warning-heavy-color);
  color: var(--ws-color-white);
}
.module-course-categories .courses-category-item.style6 {
  background: var(--ws-bg-danger-color);
  color: var(--ws-color-white);
}
.module-course-categories .course-style-one-thumb {
  
  margin-bottom: var(--ws-space-32);
}
@media (min-width: 576px) {
  .module-course-categories {
    padding-top: var(--ws-space-96);
    padding-bottom: var(--ws-space-64);
  }
  .module-course-categories .title {
    font-size: 52px;
  }
  .module-course-categories .courses-category-item {
    padding: 32px;
  }
  .module-course-categories .courses-category-item .course-category-title {
    font-size: 28px;
    margin-bottom: var(--ws-space-24);
  }
}

/* MODULE FAQ */
.module-faq {
  padding: var(--ws-space-32) 0;
  margin-top: 0;
  font-size: 20px;
}
.module-faq .section-title {
  font-size: 32px;
  margin-bottom: var(--ws-space-48);
  text-transform: uppercase;
  margin-bottom: var(--ws-space-32);
  font-weight: 400;
  clear: both;
}
.module-faq .heading {
  border-top: 1px solid;
  padding-top: var(--ws-space-64);
}
@media (min-width: 576px) {
  .module-faq .section-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .module-faq .section-title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .module-faq {
    margin-top: var(--ws-space-120);
  }
  .module-faq .section-title {
    font-size: 52px;
  }
}

/* WS ACCORDION */
.faq-accordian-area {
  background: transparent;
}
.faq-accordion-item {
  
}
.faq-accordion-button {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  font-family: var(--ws-font-family);
  font-size: 24px;
  font-weight: 400;
  color: var(--ws-text-body-color);
  background: transparent;
  border: 1px solid;
  border-radius: 8px;
  padding: 16px 48px 16px 16px;
  margin-bottom: 12px;
  outline: none;
  transition: background .4s;
}
.faq-accordion-button.collapsed {
  background: transparent;
}
.faq-accordion-button:hover {
  background: var(--ws-btn-bg-dark-color-hover);
}
.faq-accordion-button:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cline x1='71.9' y1='9.4' x2='71.9' y2='134.6' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='16'/%3E%3Cline x1='9.3' y1='72' x2='134.4' y2='72' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
  top: 20px;
  position: absolute;
  right: 16px;
  rotate: 0deg; 
  transition: transform .4s;
}
.faq-accordion-button.collapsed:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cline x1='71.9' y1='9.4' x2='71.9' y2='134.6' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='16'/%3E%3Cline x1='9.3' y1='72' x2='134.4' y2='72' fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='16'/%3E%3C/svg%3E");
}
[data-bs-theme="dark"] .faq-accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cline x1='71.9' y1='9.4' x2='71.9' y2='134.6' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='16'/%3E%3Cline x1='9.3' y1='72' x2='134.4' y2='72' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='16'/%3E%3C/svg%3E");
}
.faq-accordion-button.collapsed:hover {
  background: var(--ws-bg-light-color);
}
.faq-accordion-button[aria-expanded=true] {
  background: var(--ws-bg-light-color);
}
.faq-accordion-button[aria-expanded=true]:after {
/*  color: var(--ws-link-color);*/
}
.faq-accordion-button:not(.collapsed):after {
  rotate: -225deg;
}
.faq-accordion-body {
  color: var(--ws-text-body-color);
  padding: 16px 24px;
}
@media (max-width: 991.98px) {
  .faq-accordion-button {
    font-size: 20px;
  }
}

/* HOME */
.home-banner {
  padding-top: 0;
  padding-bottom: var(--ws-space-64);
  border-bottom: 1px solid;
}
.home-banner .title {
  font-size: 72px;
  font-weight: 800;
}
.home-banner .info-text {
  font-size: 24px;
  font-weight: 400;
}
@media (min-width: 576px) {
  .home-banner {
    padding-top: var(--ws-space-24);
  }
  .home-banner .title {
    font-size: 120px;
  }
}

/* ERROR */
.error-title {
  font-size: 280px;
  text-align: center;
  color: var(--ws-bg-light-color);
  font-family: var(--ws-font-family);
  font-weight: 900;
}
@media (max-width: 768px) {
  .error-title {
    font-size: 100px;
  }
}

/* ICONS */
.ws-icon-instagram {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #833ab4;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  text-align: center;
  border-radius: 4px;
}
.ws-icon-instagram:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Ccircle cx='72.2' cy='71.3' r='25.1' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='12'/%3E%3Crect x='19.4' y='18.5' width='106.1' height='105.6' rx='27.1' ry='27.1' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='12'/%3E%3Ccircle cx='103.4' cy='39.6' r='2.6' fill='%23fff' stroke='%23fff' stroke-miterlimit='10' stroke-width='12'/%3E%3C/svg%3E");
}
.ws-icon-telegram {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #0088cc;
  text-align: center;
  border-radius: 4px;
}
.ws-icon-telegram:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -5px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cpath d='M35.7,75.6c22.9,18.5,47,18.5,72.2,0' display='none' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Ccircle cx='72' cy='41.3' r='22.1' display='none' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Cline x1='49.1' y1='130.4' x2='68.7' y2='88.7' display='none' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Cline x1='75.2' y1='88.7' x2='94.9' y2='130.4' display='none' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Cpolygon points='91.2 53.5 42.9 83.2 15.6 73.3 108.5 31.2 117.2 34.9 101.1 116.7 59 89.4 91.2 53.5' fill='%23fff' stroke-width='0'/%3E%3C/svg%3E");
}
.ws-icon-facebook {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #3b5998;
  text-align: center;
  border-radius: 4px;
}
.ws-icon-facebook:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cpath d='M99.6,21.7h-13.6c-9.1,0-16.4,7.4-16.4,16.4v96.2' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='24'/%3E%3Cline x1='43.3' y1='63' x2='99.6' y2='63' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='24'/%3E%3C/svg%3E");
}
.ws-icon-vkontakte {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #0077ff;
  text-align: center;
  border-radius: 4px;
}
.ws-icon-vkontakte:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cpath d='M60.7,84.9s-28.7-6.2-28.7-54.4H10.4S3.2,106.4,81.2,109.5v-28.7s22.6,2.1,31.8,27.7h22.6s-6.2-26.7-31.8-39c0,0,21.5-12.3,26.7-38h-20.5s-8.2,24.6-28.7,29.8v-30.8h-20.5v54.4Z' fill='%23fff' stroke-width='0'/%3E%3C/svg%3E");
}
.ws-icon-whatsapp {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #00bb3b;
  text-align: center;
  border-radius: 4px;
}
.ws-icon-whatsapp:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cpath d='M23.2,72c0-27.8,22.6-50.4,50.4-50.4s50.4,22.6,50.4,50.4-22.6,50.4-50.4,50.4-19.7-3-27.6-8.2-21.3,9.2-24,6.4,9.5-20.6,7.4-24.4c-3.9-7.2-6.2-15.4-6.2-24.2Z' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='11'/%3E%3Cpath d='M52.5,47.1l-5.6,6.2s-2.5,7.5.6,13.1c3.1,5.6,8.7,19.3,33,29.9,0,0,5.6,1.9,11.8,0,6.2-1.9,7.5-7.5,7.5-7.5v-4.4l-13.1-6.2-5.6,6.8s-13.1-3.7-21.8-17.4l5-6.2-5.6-14.3h-6.2Z' fill='%23fff' stroke-width='0'/%3E%3C/svg%3E");
}
.ws-icon-odnoklassniki {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #ff8600;
  text-align: center;
  border-radius: 4px;
}
.ws-icon-odnoklassniki:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cpath d='M35.7,75.6c22.9,18.5,47,18.5,72.2,0' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Ccircle cx='72' cy='41.3' r='22.1' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Cline x1='49.1' y1='130.4' x2='68.7' y2='88.7' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3Cline x1='75.2' y1='88.7' x2='94.9' y2='130.4' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3C/svg%3E");
}
.ws-icon-max {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: #3d60fc; /* Fallback color */
  background: linear-gradient(135deg, #3d60fc, #a35add);
  text-align: center;
  border-radius: 4px;
}
.ws-icon-max:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 144 144'%3E%3Cpath d='M19.5,72.1c0-29.3,23.7-53,53-53s53,23.7,53,53-23.7,53-53,53-26-43.2-34-12.4c-8,30.9-19-24.3-19-40.6Z' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='20'/%3E%3C/svg%3E");
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--ws-bg-light-color);
  color: var(--ws-text-body-color);
}

/* FOOTER */
footer {
  background: var(--ws-bg-footer);
}
footer .wrapper > div {
  padding: var(--ws-space-96) 0 var(--ws-space-24);
}
footer .footer-li {
  margin-bottom: 8px;
}
footer .footer-link {
  font-size: 20px;
  font-weight: 400;
  color: var(--ws-text-body-color);
  text-decoration: none;
}
footer .footer-link:hover,
footer .footer-link:focus,
footer .footer-link:active {
  text-decoration: underline;
}
footer .wrap-bottom-fixed {
  position: fixed;
  bottom: var(--ws-space-16);
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
}
footer .wrap-bottom-fixed .wrapper {
  position: relative;
}
footer .wrap-bottom-fixed #agree_cookie {
  width: 100%;
  max-width: 100%;
  padding: var(--ws-space-32);
  background-color: var(--ws-bg-dark-color);
  font-size: 16px;
  color: var(--ws-text-white-color);
  border-radius: var(--ws-space-16);

}
footer .wrap-bottom-fixed .toast-container {
  position: absolute!important;
  bottom: 1rem;
  right: 0;
  z-index: 12;
  transition: 0.5s;
}
footer .social-ul li {
  margin-bottom: 8px;
}
footer .social-ul li a {
  color: var(--ws-text-body-color);
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .wrap-bottom-fixed #agree_cookie {
    padding: var(--ws-space-16);
    font-size: 16px;
  }
}