:root {
  --color-primary: rgba(5, 249, 255, 1);
  --transition: 0.4s;
}

body {
  font-family: "Inter", sans-serif;
  /* padding: 80px 0 80px; */
  /*background-color: #191b24;*/

}

.base-template__wrapper {
  /* min-height: calc(100dvh - 300px); */
  justify-content: flex-start;
  /* padding-bottom: 450px; */
}

.wrapper {
  /* max-width: 1445px; */
  /* background-color: #1e232c !important; */
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 20px 0 40px;

  /* border-radius: 60px; */
  min-height: 66px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  background: #1e232c;
  margin-top: 0px;
}

.header__logo {
  max-width: 150px;
}

.header__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

.header__navigation-wrapper {
  display: flex;
  width: 100%;
  padding-left: 289px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.header__list-item {
  display: flex;
  padding: 30px 0 50px;
  margin-bottom: -20px;
  gap: 8px;
  font-size: 16px;
}

.header__list-item>a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  color: #c7c8ca;
}

.header__list-item>a svg path {
  transition: var(--transition);
}

.header__list-item .submenu-wrapper {
  position: absolute;
  width: 100%;
  top: 110%;
  left: 0;
  border-radius: 33px;
  padding: 30px 30px 90px 30px;
  background-color: rgb(4 17 36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.header__buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: max-content;
  padding: 6px 20px;
  border-radius: 100px;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
  color: #fff;
  background-color: #004aa9;
}

.submenu-list__title {
  width: max-content;
  margin-bottom: 25px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(160, 161, 165, 1);
}

.submenu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 295px;
  padding-left: 0;
}

.submenu-list__item {
  display: flex;
  padding-right: 100px;
  margin-right: -100px;
  cursor: pointer;
}

.submenu-list__item-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6px 16px 6px 6px;
  gap: 16px;
  border-radius: 14px;
  transition: var(--transition);
}

.submenu-list__item-wrapper>svg {
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.submenu-list__wrapper {
  position: relative;
  padding-bottom: 26px;
}

.submenu-content {
  position: absolute;
  right: 0;
  top: 0;
  max-width: calc(100% - 365px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.submenu-list__item.has-submenu.active .submenu-content {
  opacity: 1;
  visibility: visible;
}

.submenu-list__item.has-submenu.active .submenu-list__item-wrapper {
  background-color: rgba(255, 255, 255, 0.04);
}

.submenu-list__item.has-submenu.active .submenu-list__item-wrapper>svg {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submenu-list__item-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.submenu-list__item-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.submenu-list__item-icon {
  display: flex;
}

.submenu-list__item-subtile {
  font-size: 12px;
  font-weight: 400;
  color: rgba(160, 161, 165, 1);
}

.submenu-content__title {
  width: max-content;
  margin-bottom: 25px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(160, 161, 165, 1);
}

.submenu-content__list:not(.events) {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
}

.submenu-content__list.events {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0;
}

.submenu-content__list-item {
  display: block;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: auto;
}

.submenu-content__link {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 10px 10px 20px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.submenu-content__link-img {
  margin-bottom: 20px;
  border-radius: 13px;
  overflow: hidden;
  transition: var(--transition);
}

.submenu-content__link-img img {
  transition: 0.4s ease-in;
}

.submenu-content__link-title {
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}

.submenu-content__link-text {
  padding: 0 10px;
  font-size: 12px;
  color: rgba(160, 161, 165, 1);
}

.submenu-content__link-wrapper {
  display: flex;
  gap: 20px;
  padding: 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.05);
}

.submenu-content__list.events .submenu-content__link-img {
  width: 100%;
  max-width: 220px;
  flex: 1;
  border-radius: 13px;
  margin-bottom: 0;
}

.submenu-content__info {
  display: flex;
  flex-direction: column;
  flex: 1 0;
}

.submenu-content__category {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.submenu-content__list.events .submenu-content__link-title,
.submenu-content__list.events .submenu-content__link-text {
  padding: 0;
  margin-bottom: 12px;
}

.submenu-content__link-address,
.submenu-content__link-date {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(160, 161, 165, 1);
}

.submenu-content__link-address span,
.submenu-content__link-date span {
  line-height: 0.9;
}

.submenu-content__url {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  transition: var(--transition);

  svg,
  svg path {
    transition: var(--transition);
  }
}

.header__burger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: 24px;
  margin-left: auto;
}

.header__burger i {
  width: 100%;
  height: 2px;
  background-color: #0049a8;
  border-radius: 13px;
  transition: var(--transition);
}

.header__burger.active i:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.header__burger.active i:nth-child(2) {
  opacity: 0;
}

.header__burger.active i:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

@media (hover: hover) and (pointer: fine) {
  .header__list-item:hover .submenu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__list-item:hover~.header__list-item .submenu-wrapper {
    display: none;
  }

  .header__list-item:hover>a,
  .header__list-item:hover>a svg path {
    color: rgb(0 74 169);
    fill: rgb(0 74 169);
  }

  .header__button:hover {
    background-color: rgb(20 73 73);
  }

  .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper {
    background-color: rgba(255, 255, 255, 0.04);
  }

  .submenu-list__item.has-submenu:hover .submenu-content,
  .submenu-list__item.has-submenu:hover .submenu-list__item-wrapper>svg {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .submenu-content__list-item:hover .submenu-content__link {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .submenu-content__list-item:hover .submenu-content__link-img img {
    transform: scale(1.05);
  }

  .submenu-content__url:hover,
  .submenu-content__url:hover svg path {
    color: var(--color-primary);
    stroke: var(--color-primary);
  }

  .submenu-content__url:hover svg {
    transform: translateX(5px);
  }
}

@media screen and (max-width: 1280px) {
  .header__navigation-wrapper {
    padding-left: 122px;
    
  }
.header__list-item {
  font-size: 13px;
}
  .submenu-list {
    max-width: 250px;
  }

  .submenu-content {
    max-width: calc(100% - 270px);
  }

  .submenu-content__url {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .base-template__wrapper {
    /* min-height: 105vh; */
  }

  .header {
    min-height: 64px;
    padding: 0 20px;
  }

  .header__burger {
    display: flex;
    /* color: red; */
  }

  .header__navigation-wrapper {
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 97%;
    left: 0;
    padding: 20px;
    background-color: rgb(30 35 44);
    /* border-radius: 20px; */
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .header__navigation-wrapper.open {
    opacity: 1;
    visibility: visible;
  }

  .header__list {
    flex-direction: column;
    gap: 30px;
  }

  .header__buttons-wrapper {
    flex-direction: column;
    margin-left: unset;
    margin-top: 50px;
    gap: 8px;
  }

  .header__navigation,
  .header__list {
    width: 100%;
  }

  .header__list-item {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
    margin: 0;
  }

  .header__list-item.active a,
  .header__list-item.active a>svg path {
    fill: rgb(247 247 247);
    color: rgb(249 249 249);
    margin-bottom: 7px;
  }

  .header__list-item .submenu-wrapper {
    position: static;
    padding: 0;
    max-height: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .submenu-list {
    width: 100%;
    max-width: 100%;
    gap: 5px;
  }

  .submenu-list__wrapper {
    margin-top: 30px;
  }

  .submenu-list__item {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .submenu-list__item:active .submenu-list__item-wrapper {
    background-color: rgba(255, 255, 255, 0.04);
  }

  .submenu-list__item:active .submenu-list__item-wrapper>svg {
    opacity: 1;
    visibility: visible;
  }

  .submenu-list__title {
    display: none;
  }

  .submenu-content {
    display: none;
  }

  .header__button {
    border: 1px solid rgba(255, 255, 255, 1);
  }
}

@media screen and (max-width: 767.9px) {

  .header__buttons-wrapper,
  .header__button {
    width: 100%;
  }
}


*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

:root {
  --color-cyan: #05f9ff;
  --color-graphite: #1e222a;
  --color-charcoal: #050506;
  --color-yellow: #d9ff40;
  --color-gray: #1e222a;
  --color-gray-l: #bbbbbb;

  --font-monserrat: "Montserrat", sans-serif;
  --font-oswald: "Oswald", sans-serif;
}

/*body {
  display: block;
  position: relative;
  margin: 0;
  padding: 80px 0; 
  overflow-x: clip;
  background-color: var(--color-charcoal);
  font-family: var(--font-monserrat);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.4s ease, background-image 0.4s ease, color 0.4s ease;
}*/

/*body::before,
body::after {
  content: "";
  display: block;
  position: absolute;
  width: 47%;
  max-height: 100%;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

body::before {
  aspect-ratio: 1813 / 1748;
  background-image: url("https://bato-web-agency.github.io/bato-shared/img/shape-1.png");
  left: 0;
  bottom: 0;
  transition: background-image 0.4s ease;
}

body::after {
  aspect-ratio: 1818 / 1682;
  background-image: url("https://bato-web-agency.github.io/bato-shared/img/shape-2.png");
  right: 0;
  top: 0;
  transition: opacity 0.4s ease;
}*/

.wrapper {
  display: block;
  margin-inline: auto;
  width: 100%;
  /* max-width: 1280px; */
  /* padding-inline: 20px; */
  margin: 0px auto;
}


/*preview {
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
}

.preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}*/

/*@media screen and (max-width: 767.9px) {
  body {
    font-size: 16px;
  }

  body::before {
    position: absolute;
    width: 72%;
    right: 0;
    rotate: 180deg;
    translate: -40% 0;
  }

  body::after {
    position: absolute;
    width: 55%;
  }
}*/



/* Base Template */

.base-template__wrapper {
  /* position: relative; */
  /* display: flex; */
  flex-direction: column;
  /* justify-content: center; */
  /* min-height: calc(41dvh - 160px); */
}

.base-template__content {
  position: relative;
  z-index: 1;
}

.base-template__heading {
  flex: 1;
  z-index: 1;
}

@media screen and (max-width: 767.9px) {
  .base-template__heading {
    align-items: center;
  }
}

.base-template__heading .base-template__title,
.base-template__heading .base-template__text {
  text-align: left;
}

@media screen and (max-width: 767.9px) {

  .base-template__heading .base-template__title,
  .base-template__heading .base-template__text {
    text-align: center;
  }
}

.base-template__title {
  display: block;
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--font-oswald);
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  transition: color 0.4s ease;
}

.base-template__text {
  display: block;
  margin-bottom: 80px;
  font-weight: 300;
  text-align: center;
  line-height: 1.35;
  color: var(--color-gray-l);
  transition: color 0.4s ease;
}

.base-template__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px 90px;
  max-width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 767.9px) {
  .base-template__title {
    font-size: 32px;
  }
}



/* Petal Menu */

/*.petal-menu {
  --lines-height: 2px;
  --lines-gap: 8px;
  --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.3);

  display: flex;
  align-items: center;
  position: relative;
  margin-top: 120px;
  gap: 12px;
  white-space: nowrap;
   
}*/

.petal-menu__inner {
  position: relative;
}

.petal-menu__lines {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  aspect-ratio: 1;
  width: 70px;
  padding: 20px;
  background: var(--color-graphite);
  border-radius: 100%;
  cursor: pointer;
  flex-direction: column;
  gap: var(--lines-gap);
}

.petal-menu__lines input {
  all: unset;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  border-radius: 100%;
}

.petal-menu__lines i {
  display: block;
  position: relative;
  width: 100%;
  height: var(--lines-height);
  background: var(--color-cyan);
  transform-origin: 50% 50%;
  transition: var(--transition);
}

.petal-menu__lines:has(input:checked) i:nth-of-type(2) {
  display: none;
}

.petal-menu__lines:has(input:checked) i:nth-of-type(1) {
  transform: translate3d(0, calc(var(--lines-height) / 2 + var(--lines-gap) / 2), 0) rotate(45deg);
}

.petal-menu__lines:has(input:checked) i:nth-of-type(3) {
  transform: translate3d(0, calc((var(--lines-height) / 2 + var(--lines-gap) / 2) * -1), 0) rotate(-45deg);
}

.petal-menu__text {
  transition: opacity 0.3s;
}

.petal-menu:has(input:checked) .petal-menu__text {
  opacity: 0;
}

.petal-menu__item {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  rotate: -90deg;
  pointer-events: none;
  transition: var(--transition);
}

.petal-menu:has(input:checked) .petal-menu__item {
  opacity: 1;
}

.petal-menu:has(input:checked) .petal-menu__item:nth-child(1) {
  rotate: -70deg;
}

.petal-menu:has(input:checked) .petal-menu__item:nth-child(2) {
  rotate: 0deg;
}

.petal-menu:has(input:checked) .petal-menu__item:nth-child(3) {
  rotate: 70deg;
}

.petal-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  width: 105px;
  height: 77px;
  background: url("https://bato-web-agency.github.io/bato-shared/img/petal.svg") center center no-repeat;
  background-size: 100%;
  pointer-events: auto;
  cursor: pointer;
  transition: scale 0.3s ease-out;
}

.petal-menu__item:nth-child(1) img {
  rotate: 70deg;
}

.petal-menu__item:nth-child(3) img {
  rotate: -70deg;
}

@media (hover: hover) and (pointer: fine) {
  .petal-menu__link:hover {
    scale: 1.15;
  }
}

@media (hover: none) {
  .petal-menu__link:active {
    scale: 1.15;
  }
}

@media screen and (max-width: 1366px) {
  .petal-menu {
    justify-content: center;
  }
}



/* Contact Menu */

.contact-menu {
  position: fixed;
  left: 30px;
  bottom: 96px;
  display: flex;
  align-items: center;
  column-gap: 15px;
  z-index: 99;
}

@media screen and (max-width: 767.9px) {
  .contact-menu {
    display: none;
  }
}

.contact-menu input {
  display: none;
}

.contact-menu__toggle {
  position: relative;
  cursor: pointer;
}

.contact-menu__trigger,
.contact-menu__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #004aa9;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
  /* z-index: 999999; */
}

.contact-menu__trigger img,
.contact-menu__link img {
  display: block;
  width: 24px;
  height: auto;
  transition: opacity 0.3s ease-out, filter 0.3s ease-out;
}

.contact-menu__trigger img:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-menu__label {
  position: absolute;
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  color: white;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-out, max-width 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {

  .contact-menu__toggle:hover .contact-menu__trigger,
  .contact-menu__trigger:hover,
  .contact-menu__link:hover {
    background-color: var(--color-cyan);
  }

  .contact-menu__toggle:hover .contact-menu__trigger img,
  .contact-menu__trigger:hover img,
  .contact-menu__link:hover img {
    filter: brightness(0.25);
  }

  .contact-menu__toggle:hover .contact-menu__label {
    max-width: 135px;
    opacity: 1;
  }
}

.contact-menu input:checked~.contact-menu__toggle .contact-menu__trigger img:first-child {
  opacity: 0;
}

.contact-menu input:not(:checked)~.contact-menu__toggle .contact-menu__trigger img:last-child {
  opacity: 0;
}

.contact-menu input:checked~.contact-menu__toggle .contact-menu__label {
  max-width: 0;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .contact-menu input:not(:checked)~.contact-menu__toggle:hover .contact-menu__label {
    max-width: 135px;
    opacity: 1;
    transition-delay: 0.3s;
  }

  .contact-menu input:checked~.contact-menu__toggle:hover .contact-menu__label {
    max-width: 0;
    opacity: 0;
  }
}

.contact-menu__list {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.contact-menu__list li {
  transform: translateY(25%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.contact-menu__list li:nth-child(1) {
  transition-delay: 0.05s;
}

.contact-menu__list li:nth-child(2) {
  transition-delay: 0.1s;
}

.contact-menu__list li:nth-child(3) {
  transition-delay: 0.15s;
}

.contact-menu input:checked~.contact-menu__list {
  pointer-events: all;
}

.contact-menu input:checked~.contact-menu__list li {
  transform: translateY(0);
  opacity: 1;
}

.base-template {
  position: absolute;
  width: 100%;
  z-index: 99;
  /* top: -6px; */
  background-color: #1e232c;
}

/* Theme Switcher */

/*body.light {
  background-color: #f4f4f4;
  background-image: linear-gradient(180deg, #f9f9f9, #efefef);
  color: var(--color-charcoal);
}

body.light::before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 100px 80px;
  background-position: center center;
  background-repeat: repeat;
  rotate: none;
  translate: none;
}

body.light::after {
  opacity: 0;
}

body.light .base-template__text {
  color: #323232;
}

body.light .contact-menu__label {
  color: var(--color-graphite);
}*/

/*.theme-switcher {
  margin: 0 auto;
  width: 102px;
  padding: 4px;
  background-color: rgba(247, 247, 247, 0.07);
  border: solid 1px #2d2d2e;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-origin: top center;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

@media screen and (max-width: 575.9px) {
  .theme-switcher {
    transform: scale(0.75);
  }
}

.theme-switcher-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.theme-switcher-cell {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: relative;
}

.theme-switcher-cell svg {
  display: block;
  width: 24px;
  height: auto;
}

.theme-switcher-cell svg path {
  transition: stroke 0.4s ease, fill 0.4s ease;
}

.theme-switcher-slider::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-color: #00ffff;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: calc(100% - 44px);
  transition: background-color 0.4s ease, left 0.4s ease-in-out, box-shadow 0.4s ease;
}

body.light .theme-switcher {
  background-color: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light .theme-switcher-cell:nth-child(1) svg path:nth-child(1) {
  stroke: #171717;
  fill: #171717;
}

body.light .theme-switcher-cell:nth-child(1) svg path:nth-child(2) {
  stroke: #171717;
}

body.light .theme-switcher-cell:nth-child(2) svg path {
  fill: transparent;
  stroke: #171717;
}

body.light .theme-switcher-slider::before {
  background-color: white;
  left: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}*/

.to-cyan {
  background: #3C83F6, #0DCCF2;
  background: linear-gradient(9deg, rgba(0, 0, 0, 1) 0%, rgba(13, 204, 242, 1) 100%);
}



.text-clr_pra {
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.bg-blue {
  background-color: #004aa9;
  color: #fff;
}


.bg-\[\#0B5ED7\] {
  --tw-bg-opacity: 1;
  background-color: #004aa9 !important;
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(0 74 169) !important;
}

.text-clr_white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.bg-clr_base {
  --tw-bg-opacity: 1;
  background-color: rgb(201 243 29 / var(--tw-bg-opacity, 1));
}

.bg-background {
  background-color: #f6f7f9 !important;
}

/* -------------- Animation text */
.designers {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  color: transparent;
  transition: all 0.5s;
  position: relative;
}

.designers::before {
  content: attr(data-text);
  position: absolute;
  color: #004aa9;
  width: 0px;
  overflow: hidden;
  animation: pulse-width 3s ease-in infinite;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}

@keyframes pulse-width {
  50% {
    width: 100%;
  }
}

.animate-cir5 {
  animation: cir5 2s linear infinite;
}

@keyframes cir5 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

/* TAB BASE */
.acc-tab {
  width: 60px;
  height: 420px;
  box-sizing: border-box;
  /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ prevents shifting */
  border-left: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

/* FLAG */
.acc-tab img {
  width: 22px;
}

/* VERTICAL TEXT */
.acc-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  color: #2563eb;
}

/* ACTIVE (NO SIZE CHANGE) */
.acc-tab.active {
  background: #eaf1ff;
}

/* MOBILE */
@media (max-width: 1024px) {
  .acc-tab {
    width: auto;
    height: auto;
    flex-direction: row;
    padding: 10px 14px;
    border-left: none;
    border-right: 1px solid #e5e7eb;
  }

  .acc-tab span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
    white-space: nowrap;
  }
}



/*Whatsapp*/
#whatsapp {
  position: fixed;
  right: 34px;
  /* left: 50px; */
  top: 70%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  opacity: 1;
  z-index: 99990;
}

#whatsapp #whatsappMain {
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgba(255, 255, 255, 0);
  width: 70px;
  height: 70px;
  color: #40c351;
  z-index: 9;
  -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
  -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
  animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-image: url('../images/whatsapp.png');

  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: zcwphone2 1.5s linear infinite;
  -moz-animation: zcwphone2 1.5s linear infinite;
  animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-moz-keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes zcwphone2 {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }

  50% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  75% {
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-webkit-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@-moz-keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

@keyframes zcwmini2 {
  0% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
  }

  10% {
    box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
  }

  100% {
    box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
  }
}

/*End Whatsapp*/


.bg-corporate-dark {
  background-color: #131720;
}

.text-primary-foreground\/90 {
  color: #ffffffe6;
}


.text-primary-foreground\/50 {
  color: #ffffff80;
}

.text-primary-foreground\/40 {
  color: #ffffff66;
}

.hover\:text-primary-foreground\/80:hover {
  color: #ffffffcc;
}

.border-t {
  border-top-width: 1px;
}

.border-corporate-slate\/30 {
  border-color: #2b303b4d;
}

.Who-We-Are {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  max-width: 100%;
  overflow-x: hidden;
}

.text-primary {
  color: #004aa9;
}

.bg-primary\/10 {
  background-color: #007bff1a;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-background {
  background-color: #f6f7f9;
}


.bg-card {
  background-color: #fff;
}

.border-border {
  border-color: #e2e4e9;
}

.font-display {
  font-family: Playfair Display, serif;
}

.group:hover .group-hover\:text-primary {
  color: #007bff;
}



.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}


.text-card-foreground {
  color: #131720;
}

.bg-corporate-dark\/40 {
  background-color: #13172066;
}

.text-primary-foreground {
  color: #fff;
}

.text-primary-foreground\/70 {
  color: #ffffffb3;
}

.text-primary-foreground\/60 {
  color: #ffffff99;
}


.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(0 74 169) !important;
}


.base-template {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
}

.base-template.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}




/* ---------- FILTER BUTTON ---------- */
.filter-btn {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 14px;
  transition: .3s;
}

.filter-btn:hover {
  border-color: #6366f1;
  color: #6366f1;
}

.filter-btn.active {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
}

/* ---------- VIEW BUTTON ---------- */
.view-btn {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
}

.view-btn.active {
  background: #6366f1;
  color: #fff;
}

/* ---------- LIST MODE (MOBILE FIXED) ---------- */
.news-list .news-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* desktop layout */
@media (min-width:768px) {
  .news-list .news-inner {
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ---------- GRID MODE ---------- */
.news-grid {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: .3s;
}

.news-grid:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.news-grid .news-inner {
  display: block;
}

.news-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-grid .content {
  padding: 20px;
}


/* ---------- FILTER BUTTON ---------- */


















.mobile-view {
  display: none !important;
}

@media screen and (max-width:768px) {
  .mobile-view {
    display: block !important;
  }

  .hidden-mobile {
    display: none !important;
  }

  .Who-We-Are {
    display: flex;
    flex-direction: column;

  }
}


@media screen and (min-width:1040px) {
  .header__list-item>a {
    display: flex;
    align-items: center;
    gap: 2px;
    transition: var(--transition);
    color: #c7c8ca;
  }
}