@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1282px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 1279px) {
  .container {
    padding: 0 24px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-end {
  justify-content: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

h1 {
  font-family: "Inerta-Medium", sans-serif;
  letter-spacing: 0%;
}

h1.title {
  font-size: 1.5rem;
  line-height: 110%;
}
@media (min-width: 1199px) {
  h1.title {
    font-size: 1.875rem;
  }
}

span.slogan {
  font-family: "Inerta-Medium", sans-serif;
  letter-spacing: 0%;
  font-size: 1.875rem;
  line-height: 44px;
  color: #fff;
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
}

h2 {
  font-family: "Inerta-Medium", sans-serif;
  font-size: 1.875rem;
  line-height: 44px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (min-width: 1199px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: "Inerta-Medium", sans-serif;
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: 0%;
}
@media (min-width: 1199px) {
  h3 {
    font-size: 1.625rem;
  }
}

h4 {
  font-family: "Inerta-Medium", sans-serif;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: #010101;
  font-size: 1.5rem;
}

p {
  font-family: "Inerta-Regular", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 140%;
  letter-spacing: 0%;
  color: #474646;
}

ul li {
  font-family: "Inerta-Regular", sans-serif;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 0%;
}

.btn-black {
  max-width: 364px;
  width: 100%;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 1;
  padding-top: 18px;
  padding-right: 32px;
  padding-bottom: 20px;
  padding-left: 32px;
  border-radius: 32px;
  background: #0D0D0D;
  border: 2px solid #000000;
  transition: all 0.3s ease-in-out;
  color: #FFFFFF;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(1.125rem, 1.5vw + 0.4rem, 1.25rem);
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
}
.btn-black:hover {
  background: #1A1A1A;
  border: 2px solid #1A1A1A;
}
.btn-black:hover svg {
  transform: translateX(5px);
}
.btn-black svg {
  max-width: 23px;
  width: 100%;
  transition: transform 0.5s ease;
}

.btn-transparent {
  max-width: 365px;
  width: 100%;
  height: 62px;
  display: inline-block;
  text-align: center;
  gap: 8px;
  opacity: 1;
  padding-top: 18px;
  padding-right: 32px;
  padding-bottom: 20px;
  padding-left: 32px;
  border-radius: 32px;
  border: 2px solid #fff;
  background: transparent;
  transition: all 0.3s ease-in-out;
  color: #FFFFFF;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 22px;
  letter-spacing: 0%;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-transparent:hover {
  background: #fcfcfc;
  color: #000;
}
@media (min-width: 767px) {
  .btn-transparent {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media (min-width: 1199px) {
  .btn-transparent {
    line-height: 100%;
  }
}

.link {
  text-decoration: none;
  font-family: "Inerta-Medium", sans-serif;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 100%;
  letter-spacing: 0%;
  color: #35198B;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link svg {
  transition: transform 0.5s ease;
}
.link:hover svg {
  transform: translateX(5px);
}

hr {
  height: 1px;
  border: none;
  background-image: repeating-linear-gradient(to right, #8E8E8E 0, #8E8E8E 4px, transparent 4px, transparent 8px);
}

.header {
  background: #000;
  padding: 16px 0;
}
.header .logo-wrapper {
  max-width: 178px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1239px) {
  .header .hide-pc {
    display: none;
  }
}
.header .hide-mob {
  display: none;
}
@media (min-width: 1239px) {
  .header .hide-mob {
    display: block;
  }
}
@media (max-width: 1239px) {
  .header .show-sm {
    display: block;
  }
}
.header .logo {
  display: inline-flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  height: 32px;
}
@media (min-width: 767px) {
  .header .logo {
    height: auto;
  }
}
.header .logo .custom-logo {
  display: inline-block;
}
.header .logo img {
  max-width: 100%;
  height: auto;
}
.header .nav-wrapper {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #000;
  padding: 26px 32px 20px 32px;
}
@media (min-width: 1239px) {
  .header .nav-wrapper {
    max-width: 958px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    height: auto;
  }
}
.header .nav-wrapper .main-navigation {
  max-width: 721px;
  width: 100%;
}
@media screen and (min-width: 1239px) {
  .header .nav-wrapper .main-navigation {
    margin: 0 auto;
  }
}
.header .nav-wrapper .main-navigation ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1239px) {
  .header .nav-wrapper .main-navigation ul {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1239px) {
  .header .nav-wrapper .main-navigation ul .menu-item-next {
    display: none;
  }
}
.header .nav-wrapper .main-navigation ul .menu-item-title {
  margin-top: 60px;
  padding: 0 0 12px 0 !important;
}
@media (min-width: 1239px) {
  .header .nav-wrapper .main-navigation ul .menu-item-title {
    display: none;
  }
}
.header .nav-wrapper .main-navigation ul .menu-item-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background-image: repeating-linear-gradient(to right, #8E8E8E 0, #8E8E8E 4px, transparent 4px, transparent 8px);
}
@media (min-width: 1239px) {
  .header .nav-wrapper .main-navigation ul .menu-item-title::after {
    display: none;
  }
}
.header .nav-wrapper .main-navigation ul .menu-item-title a {
  font-family: "Inerta-Regular", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 5px 0;
  text-transform: uppercase;
  color: #FF9500;
  text-decoration: none;
}
.header .nav-wrapper .main-navigation ul li {
  display: inline-block;
}
.header .nav-wrapper .main-navigation ul li a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: 1rem;
  line-height: 100%;
  margin-bottom: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.header .nav-wrapper .main-navigation ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #FF9500;
  transition: width 0.2s ease;
  will-change: width;
}
.header .nav-wrapper .main-navigation ul li a:hover {
  color: #FF9500;
  text-shadow: 0 0 8px rgba(255, 149, 0, 0.3);
}
.header .nav-wrapper .main-navigation ul li a:hover::after {
  width: 100%;
}
.header .nav-wrapper .main-navigation ul li a:active {
  color: #FF9500;
}
@media (min-width: 1239px) {
  .header .nav-wrapper .main-navigation ul li a {
    display: inline-block;
    margin-bottom: 0;
  }
}
.header .nav-wrapper .hide-menu {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  position: absolute;
  top: 26px;
  right: 32px;
}
@media (min-width: 1239px) {
  .header .nav-wrapper .hide-menu {
    display: none;
  }
}
.header .nav-wrapper .hide-menu svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  cursor: pointer;
}
.header .account-wrapper {
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}
.header .account-wrapper .accessibility {
  max-width: 64px;
  width: 100%;
}
.header .account-wrapper .accessibility ul {
  margin: 0;
  padding: 0;
}
.header .account-wrapper .accessibility ul li {
  margin: 0;
  padding: 0;
}
.header .account-wrapper .accessibility ul li a {
  transition: all 0.3s ease;
}
.header .account-wrapper .accessibility ul li a svg {
  margin: 0 0 0 auto;
}
.header .account-wrapper .accessibility ul li a:hover svg g path {
  stroke: #FF9500 !important;
}
.header .account-wrapper .accessibility .accessibility-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 39px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header .account-wrapper .accessibility .accessibility-icon:hover {
  opacity: 0.85;
}
.header .account-wrapper .accessibility .accessibility-icon::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 5L27 27' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.94 21.94C20.2306 23.243 18.1491 23.9649 16 24C9 24 5 16 5 16C6.24389 13.6819 7.96914 11.6566 10.06 10.06M13.9 8.24002C14.5883 8.0789 15.2931 7.99836 16 8.00003C23 8.00003 27 16 27 16C26.393 17.1356 25.6691 18.2048 24.84 19.19M18.12 18.12C17.8454 18.4148 17.5142 18.6512 17.1462 18.8151C16.7782 18.9791 16.3809 19.0673 15.9781 19.0744C15.5753 19.0815 15.1752 19.0074 14.8016 18.8565C14.4281 18.7056 14.0887 18.4811 13.8038 18.1962C13.519 17.9113 13.2944 17.572 13.1435 17.1984C12.9926 16.8249 12.9185 16.4247 12.9256 16.0219C12.9327 15.6191 13.0209 15.2219 13.1849 14.8539C13.3488 14.4859 13.5853 14.1547 13.88 13.88' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.header .account-wrapper .languages {
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
.header .account-wrapper .languages a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 39px;
  margin: auto;
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(0.75rem, 0.5rem + 1.5vw, 1rem);
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header .account-wrapper .languages a:hover {
  opacity: 0.85;
}
.header .account-wrapper .languages .pll-switcher-select {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 39px;
  margin: auto;
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(0.75rem, 0.5rem + 1.5vw, 1rem);
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: none;
  outline: none;
}
.header .account-wrapper .languages .pll-switcher-select:hover {
  opacity: 0.85;
}
.header .account-wrapper .languages .custom-lang-switcher {
  position: relative;
  display: inline-block;
}
.header .account-wrapper .languages .lang-btn {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}
.header .account-wrapper .languages .lang-btn img, .header .account-wrapper .languages .lang-dropdown img {
  width: 18px;
  height: auto;
}
.header .account-wrapper .languages .lang-dropdown {
  display: none; /* Ховаємо список за замовчуванням */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 4px 0 0 0;
  list-style: none;
  border-radius: 4px;
  z-index: 999;
}
.header .account-wrapper .languages .lang-dropdown li a {
  color: #333;
  padding: 10px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.header .account-wrapper .languages .lang-dropdown li a:hover {
  background-color: #f5f5f5;
}
.header .account-wrapper .languages {
  /* Показувати випадаючий список при наведенні */
}
.header .account-wrapper .languages .custom-lang-switcher:hover .lang-dropdown {
  display: block;
}
.header .account-wrapper .languages .custom-lang-switcher {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 39px;
  margin: auto;
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(0.75rem, 0.5rem + 1.5vw, 1rem);
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.header .account-wrapper .languages .custom-lang-switcher .lang-btn {
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(0.75rem, 0.5rem + 1.5vw, 1rem);
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
}
.header .account-wrapper .languages .custom-lang-switcher .lang-dropdown {
  margin: 0;
  background-color: transparent;
  box-shadow: none;
  border: none;
}
.header .account-wrapper .languages .custom-lang-switcher .lang-dropdown li {
  max-width: -moz-max-content;
  max-width: max-content;
  width: -moz-max-content;
  width: max-content;
}
.header .account-wrapper .languages .custom-lang-switcher .lang-dropdown li a {
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(0.75rem, 0.5rem + 1.5vw, 1rem);
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  background: #000;
  max-width: -moz-max-content;
  max-width: max-content;
  width: -moz-max-content;
  width: max-content;
}
.header .account-wrapper .search-form {
  max-width: 56px;
  width: 100%;
}
.header .account-wrapper .search-form .open-form {
  width: 100%;
  height: 39px;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header .account-wrapper .search-form .open-form:hover {
  opacity: 0.85;
}
.header .button-wrapper-mob {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1239px) {
  .header .button-wrapper-mob {
    display: none;
  }
}
.header .menu-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1239px) {
  .header .menu-toggle {
    display: none;
  }
}
.header .menu-toggle .hamburger {
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header .menu-toggle .hamburger::before, .header .menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  left: 0;
}
.header .menu-toggle .hamburger::before {
  top: -8px;
}
.header .menu-toggle .hamburger::after {
  bottom: -8px;
}
.header {
  transition: all 0.3s ease;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.btn-bg, .btn-link {
  font-family: "Inerta-Regular", sans-serif;
  font-size: clamp(1rem, 1.5vw + 0.8rem, 1.25rem);
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-radius: 32px;
}

.custom-breadcrumbs {
  max-width: 100%;
  width: 100%;
  padding-bottom: 0;
  margin-bottom: 0;
}

.custom-breadcrumbs ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  width: 100%;
}

.custom-breadcrumbs li {
  font-family: "Inerta-Regular", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0%;
  color: #474646;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.custom-breadcrumbs li span {
  display: flex;
  flex-wrap: nowrap;
}
.custom-breadcrumbs li {
  /* На ПК версії показуємо всі елементи */
}
@media (min-width: 1199px) {
  .custom-breadcrumbs li {
    display: flex !important;
    font-size: 1.125rem;
  }
}
.custom-breadcrumbs li {
  /* На мобільних за замовчуванням ховаємо всі */
}
@media (max-width: 1198px) {
  .custom-breadcrumbs li {
    display: none;
  }
}

.custom-breadcrumbs a {
  color: #474646;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-breadcrumbs a:hover {
  color: #1a1a1a;
}

.custom-breadcrumbs .separator {
  margin: 0 12px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

@media (max-width: 1198px) {
  .custom-breadcrumbs ul li:nth-last-child(4) {
    display: flex !important;
  }
  .custom-breadcrumbs ul li:nth-last-child(4) .separator {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 8px;
  }
  .custom-breadcrumbs ul li:nth-last-child(3) {
    display: flex !important;
    flex-shrink: 1;
    min-width: 0;
  }
  .custom-breadcrumbs ul li:nth-last-child(3) a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.custom-breadcrumbs .current {
  color: #474646;
  font-weight: 400;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1199px) {
  .custom-breadcrumbs .current {
    display: block !important;
  }
}
@media (max-width: 1198px) {
  .custom-breadcrumbs .current {
    display: none !important;
  }
}

.breadcrumbs-section {
  width: 100%;
  padding: 40px 0 0 0;
}
@media (min-width: 1199px) {
  .breadcrumbs-section {
    padding: 80px 0 0 0;
  }
}

.gap24 {
  gap: 24px;
}

.gap40 {
  gap: 40px;
}

.gap80 {
  gap: 80px;
}

.mgb40 {
  margin-bottom: 40px;
}

.mgt24 {
  margin-top: 24px;
}

.mgt60 {
  margin-top: 60px;
}

.mgb80 {
  margin-bottom: 80px;
}

.footer {
  background-color: #000000;
  padding: 60px 0;
}
.footer .nav-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .footer .nav-wrapper ul {
    flex-wrap: nowrap;
  }
}
.footer .nav-wrapper ul li {
  display: block;
  width: 48%;
  margin-bottom: 14px;
}
@media (min-width: 991px) {
  .footer .nav-wrapper ul li {
    display: inline-block;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (min-width: 1199px) {
  .footer .nav-wrapper ul li {
    margin-bottom: 0;
  }
}
.footer .nav-wrapper ul li a {
  position: relative;
  font-family: "Inerta-Regular", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: 0%;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer .nav-wrapper ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #FF9500;
  transition: width 0.2s ease;
  will-change: width;
}
.footer .nav-wrapper ul li a:hover {
  color: #FF9500;
  text-shadow: 0 0 8px rgba(255, 149, 0, 0.3);
}
.footer .nav-wrapper ul li a:hover::after {
  width: 100%;
}
.footer .nav-wrapper ul li a:active {
  color: #FF9500;
}
.footer hr {
  margin: 40px 0;
}
@media (min-width: 1199px) {
  .footer hr {
    margin: 110px 0 80px 0;
  }
}
.footer .nav-menus-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer .nav-menus-wrapper .col-menu {
  width: 100%;
  box-sizing: border-box;
  margin-top: 40px;
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper .col-menu {
    margin-top: 0;
  }
}
.footer .nav-menus-wrapper .col-menu:first-child {
  margin-top: 0;
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper .col-menu:first-child {
    max-width: 48%;
  }
}
@media (min-width: 1199px) {
  .footer .nav-menus-wrapper .col-menu:first-child {
    max-width: 200px;
  }
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper .col-menu:first-child .menu-title {
    max-width: 250px;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper .col-menu:nth-child(2) {
    max-width: 48%;
  }
}
@media (min-width: 1199px) {
  .footer .nav-menus-wrapper .col-menu:nth-child(2) {
    max-width: 263px;
  }
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper .col-menu:nth-child(3) {
    max-width: 48%;
    margin-top: 80px;
  }
}
@media (min-width: 1199px) {
  .footer .nav-menus-wrapper .col-menu:nth-child(3) {
    max-width: 244px;
    margin-top: 0;
  }
}
@media (min-width: 767px) {
  .footer .nav-menus-wrapper .col-menu:nth-child(4) {
    max-width: 48%;
    margin-top: 80px;
  }
}
@media (min-width: 1199px) {
  .footer .nav-menus-wrapper .col-menu:nth-child(4) {
    max-width: 238px;
    margin-top: 0;
  }
}
.footer .nav-menus-wrapper .col-menu:nth-child(4) .menu-title {
  margin-bottom: 16px;
}
.footer .nav-menus-wrapper .menu-title, .footer .nav-menus-wrapper ul li {
  color: #fff;
}
.footer .nav-menus-wrapper .menu-title {
  font-size: 1.125rem;
  line-height: 120%;
  color: #FF9500;
  margin-bottom: 12px;
}
@media (min-width: 1199px) {
  .footer .nav-menus-wrapper .menu-title {
    color: #fff;
  }
}
.footer .nav-menus-wrapper ul {
  padding: 0;
  margin: 0;
}
.footer .nav-menus-wrapper ul li {
  display: block;
  margin-bottom: 12px;
}
.footer .nav-menus-wrapper ul li a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: "Inerta-Regular", sans-serif;
  font-size: 1rem;
  line-height: 100%;
  margin-bottom: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.footer .nav-menus-wrapper ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #FF9500;
  transition: width 0.2s ease;
  will-change: width;
}
.footer .nav-menus-wrapper ul li a:hover {
  color: #FF9500;
  text-shadow: 0 0 8px rgba(255, 149, 0, 0.3);
}
.footer .nav-menus-wrapper ul li a:hover::after {
  width: 100%;
}
.footer .nav-menus-wrapper ul li a:active {
  color: #FF9500;
}
@media (min-width: 1239px) {
  .footer .nav-menus-wrapper ul li a {
    display: inline-block;
    margin-bottom: 0;
  }
}
.footer .nav-menus-wrapper .menu-title {
  display: block;
  font-family: "Inerta-SemiBold", sans-serif;
  font-size: clamp(0.9375rem, 1.2vw + 0.8rem, 1.125rem);
  line-height: 120%;
  letter-spacing: 2%;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer .nav-menus-wrapper .socials-wrapper {
  display: flex;
  gap: 32px;
}
.footer .nav-menus-wrapper .socials-wrapper a {
  display: inline-block;
  max-width: -moz-max-content;
  max-width: max-content;
  cursor: pointer;
}
.footer .nav-menus-wrapper .event-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 217px;
  width: 100%;
  height: 37px;
  color: #ffffff;
  font-family: "Inerta-Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 24px;
  background: linear-gradient(90deg, #7c4a3a 0%, #583377 50%, #4c2bb3 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin-top: 48px;
  padding: 5px;
}
.footer .nav-menus-wrapper .event-button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.footer .nav-menus-wrapper .event-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.footer .logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-top: 82px;
  gap: 20px;
}
@media (min-width: 767px) {
  .footer .logos-wrapper {
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1199px) {
  .footer .logos-wrapper {
    flex-direction: row;
    margin-top: 80px;
    gap: 60px;
  }
}
@media (min-width: 1199px) {
  .footer .logos-wrapper:last-child .col-logo {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.footer .logos-wrapper .col-logo {
  max-width: 550px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .logos-wrapper .col-logo a {
  max-width: 130px;
  width: 100%;
  display: inline-block;
}
.footer .logos-wrapper .col-logo .text {
  color: #fff;
}
.footer .logos-wrapper .col-logo .text .corp-link {
  margin-bottom: 4px;
}
.footer .logos-wrapper .col-logo .text a, .footer .logos-wrapper .col-logo .text span {
  display: block;
  font-family: "Inerta-Medium", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 120%;
  letter-spacing: 2%;
}

.accessibility-form {
  border-radius: 20px;
  border: none;
  background: #0D0D0D;
}
@media (max-width: 768px) {
  .accessibility-form {
    right: 0;
  }
}
.accessibility-form .accessibility-form_row-title {
  font-family: "InertaMedium", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-top: 50px;
}
.accessibility-form .accessibility-form_row-title span {
  font-family: "InertaMedium", sans-serif;
}
.accessibility-form .accessibility-form_row-settings {
  padding-bottom: 37px;
}
.accessibility-form .accessibility-form_row-settings .accessibility-form_font-controls .accessibility-form_font-controls_title {
  font-family: "InertaRegular", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: #fff;
}
.accessibility-form .accessibility-form_row-settings .accessibility-form_color-controls .accessibility-form_color-controls_title {
  font-family: "InertaRegular", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: #fff;
}
.accessibility-form .accessibility-form_color-controls_buttons button, .accessibility-form .accessibility-form_font-controls_buttons button {
  border: 2px solid #474747;
}
.accessibility-form .accessibility-form_color-controls_buttons button:hover, .accessibility-form .accessibility-form_font-controls_buttons button:hover {
  border: 2px solid #FF9500;
}
.accessibility-form .accessibility-form_row-reset {
  border-top: 1px dashed rgba(70, 70, 70, 0.7);
  padding: 36px 0;
}
.accessibility-form .accessibility-form_row-reset .accessibility-form_row-reset_btn-reset {
  font-family: "InertaRegular", sans-serif;
  font-size: 1.125rem;
  color: #fff;
  text-align: left;
  position: relative;
  padding-left: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.accessibility-form .accessibility-form_row-reset .accessibility-form_row-reset_btn-reset::before {
  display: block;
  max-width: 24px;
  width: 100%;
  height: 24px;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 8.5C4.615 5.81 6.755 2.5 12 2.5C13.8789 2.5 15.7157 3.05717 17.2779 4.10104C18.8402 5.14491 20.0578 6.62861 20.7769 8.36451C21.4959 10.1004 21.684 12.0105 21.3175 13.8534C20.9509 15.6962 20.0461 17.3889 18.7175 18.7175C17.3889 20.0461 15.6962 20.9509 13.8534 21.3175C12.0105 21.684 10.1004 21.4959 8.36451 20.7769C6.62861 20.0578 5.14491 18.8402 4.10104 17.2779C3.05717 15.7157 2.5 13.8789 2.5 12' stroke='white' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath d='M2.5 3.5V8.5H7.5' stroke='white' stroke-width='1.5' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
}

/* Базовий прихований стан */
section:not(.hero-section) > .container {
  opacity: 0;
  will-change: opacity, transform;
}

section:not(.hero-section) > .container.animate__animated {
  opacity: 1;
  /* Задаємо точний час анімації (за замовчуванням у Animate.css стоїть 1s) */
  animation-duration: 1.8s !important;
}

/* Скасовуємо opacity: 0 та анімації для шаблону page-blog */
body.page-template-page-blog section:not(.hero-section) > .container,
body.page-template-page-blog-php section:not(.hero-section) > .container {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

::-moz-selection {
  background-color: #35198B;
  color: #FFFFFF;
}

::selection {
  background-color: #35198B;
  color: #FFFFFF;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #35198B;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  /* Flex-вирівнювання для центрування іконки */
  display: flex;
  justify-content: center;
  align-items: center;
}

#backToTop.show {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
}

/* Налаштування повороту та плавності для самoго SVG */
#backToTop svg {
  transform: rotate(270deg); /* Повертаємо стрілку вгору */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Плавне зсунення */
}

/* Нескінченна плавна анімація при ховері */
@keyframes moveUpLoop {
  0% {
    transform: rotate(270deg) translateX(0);
  }
  50% {
    transform: rotate(270deg) translateX(-6px);
  }
  100% {
    transform: rotate(270deg) translateX(0);
  }
}
#backToTop:hover svg {
  animation: moveUpLoop 1.2s infinite ease-in-out;
}/*# sourceMappingURL=main.css.map */