/*
|--------------------------------------------------
| MAIN STYLES SITE
|--------------------------------------------------
|
*/
@import url('ws-grid-008.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)) !important;
  padding-right: max(24px, calc((100% - 1800px) / 2 + 60px)) !important;
}

/* 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-family: var(--ws-font-family-title);
    font-weight: 400;
  }
  .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-mega-menu__plus-icon { display: none; }
.ws-header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  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 (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; }
  .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-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: 16px !important; padding-left: 12px !important; margin-top: 10px !important;
  }
  .ws-header__nav .ws-mega-menu__list { 
    list-style: none !important; padding-left: 16px !important; margin: 12px 0 0 0 !important; gap: 14px !important; 
  }
  .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-48);
  overflow-x: hidden;
  min-height: calc(100vh - 59px);
  font-size: 24px;
}
.page-content .page-title {
  padding: var(--ws-space-48) 0;
  text-transform: uppercase;
}
.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 (max-width: 768px) {
  .page-content .page-title {
    font-size: 42px;
  }
}

/* WS ACCORDION */
.faq-accordian-area {
  background: transparent;
}
.faq-accordion-item {
  
}
.faq-accordion-button {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: var(--ws-text-body-color);
  background: transparent;
  border: 1px solid;
  border-radius: 12px;
  padding: 16px 48px 16px 16px;
  margin-bottom: 12px;
  outline: none;
  transition: background .4s;
}
.faq-accordion-button.collapsed {
  background: var(--ws-bg-light-color);
}
.faq-accordion-button:hover {
  background: var(--ws-bg-success-subtle-color);
}
.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;
}
[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='%23eee' stroke-miterlimit='10' stroke-width='16'/%3E%3Cline x1='9.3' y1='72' x2='134.4' y2='72' fill='none' stroke='%23eee' stroke-miterlimit='10' stroke-width='16'/%3E%3C/svg%3E");
}
.faq-accordion-button.collapsed:hover {
  background: transparent;
}
.faq-accordion-button[aria-expanded=true] {
  color: var(--ws-white-color);
  background: var(--ws-bg-success-subtle-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: var(--ws-space-24);
  padding-bottom: var(--ws-space-48);
  border-bottom: 1px solid;
}
.home-banner .title {
  font-size: 120px;
  font-weight: 800;
}
.home-banner .info-text {
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 768px) {
  .home-banner {
    padding-top: 80px;
  }
  .home-banner .title {
    font-size: 80px;
  }
}

/* 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;
  }
}

/* FOOTER */
footer {
  background: var(--ws-bg-content-3);
}
footer .wrapper > div {
  padding: var(--ws-space-120) 0 var(--ws-space-48);
}
footer .footer-li {
  margin-bottom: 8px;
}
footer .footer-link {
  font-size: 18px;
  font-weight: 400;
  color: var(--ws-text-secondary-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-content);
  font-size: 20px;
  color: var(--ws-text-body-color) !important;
  border: 1px solid var(--ws-text-secondary-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;
  }
}