@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=TASA+Orbiter:wght@400..800&display=swap");

.page_header {
  margin: 0px 0 25px 0;
}

.page_header h1 {
  color: rgb(var(--white-color), 1);
  margin: 35px auto;
  font-size: 40px;
}

.page_header p {
  font-size: 20px;
  margin: 25px auto;
}

._y_margin {
  margin-top: 20px;
  margin-bottom: 20px;
}

._y_padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page_header.backgrounded {
  padding: 15px;
  background: rgb(var(--main-color), 1);
}

.page_header.backgrounded.withImage {
  padding: 0;
}

.page_header.withImage {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page_header.backgrounded h1 {
  margin: 0;
  color: rgb(var(--white-color), 1);
}

.page_header.withImage h1 {
  margin: 0 20px;
}

.page_header.withImage .page_header_image {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .page_header {
    margin: 15px auto;
  }

  .page_header h1 {
    color: rgb(var(--main-color), 1);
    margin: 25px auto;
    font-size: 24px;
  }

  .page_header p {
    font-size: 16px;
    margin: 15px auto;
  }
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.m25vw {
  min-height: 25vw;
}

.m50vw {
  min-height: 50vw;
}

.cardList {
  background-color: rgb(var(--white-color), 1) !important;
  border-radius: 10px;
  margin-bottom: 10px;
}
.cardList:last-child {
  margin-bottom: 0;
}
.bgWhite {
  background-color: rgb(var(--white-color), 1) !important;
  border-radius: 16px;
  z-index: 2;
}

@media (max-width: 768px) {
  .bgWhite {
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .bgWhite {
    border-radius: 16px;
  }
}

.Width-Full {
  max-width: 1200px;
}

.bgMain {
  background-color: rgb(var(--white-color), 1) !important;
  border-radius: 15px 15px;
}

.bgGray {
  background-color: rgb(var(--white-color), 1) !important;
}

.bgSilver {
  background-color: rgb(var(--white-color), 0.5) !important;
}

.bgLight {
  background-color: rgb(var(--light-color), 1) !important;
  border-radius: 0px 54px 0px 54px;
}

.twoColumns_ {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.twoColumns_.row .col_gray {
  padding: 30px;
  border-radius: 5px;
}

.bgWhite .twoColumns_.row .col_gray {
  background-color: rgb(var(--white-color), 1);
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  border-radius: 26px;
}

.floatImage {
  float: left;
  width: 50vw;
  max-width: 350px;
  margin-top: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  object-fit: contain;
}

.floatImage.head {
  margin-top: 0;
}

.floatImage.right {
  float: right;
  margin-right: 0;
  margin-left: 15px;
}

/*///////////////////////////////////////
/////////////  BREADCRUMBS  /////////////
//////////////////////////////////////////////////// */
.breadCrumbs-component {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0;
}

.breadCrumbs-component a {
  font-size: 16px;
  font-weight: 400;
}

.breadCrumbs-component a:after {
  content: ">";
  margin: 0 5px;
  cursor: text;
}

.home__icon {
}

.breadCrumbs-component a:last-child,
.breadCrumbs-component a:last-child:hover,
.breadCrumbs-component a:last-child:after {
  content: none;
  cursor: text;
  color: rgb(var(--white-color), 1);
}

/*///////////////////////////////////////
/////////////  SECOND MENU  /////////////
//////////////////////////////////////////////////// */
.containerSecondaryMenu {
  position: fixed;
  width: 100%;
  max-width: 2560px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
  background: #000;
}

.secondaryMenu {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 3;
  width: 50px;
  height: 50px;
  background-color: rgb(var(--gold-color), 1);
  border-radius: 50%;
  border: 2px solid rgb(var(--white-color), 1);
}

.containerSecondaryMenu .secondaryMenu {
  position: absolute;
}

.secondaryMenu .secondaryMenu_menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
  bottom: 115%;
  left: -1000%;
  background-color: rgb(var(--blue-color), 0.75);
  border-radius: 5px;
  backdrop-filter: blur(15px);
  padding: 10px;
  padding-left: 0;
  width: 75vw;
  max-width: 350px;
  max-height: 50vh;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0 0 15px 2px rgb(var(--black-color), 0.25);

  transform: scale(0.1) rotateY(90deg);
}

.secondaryMenu.menuOpen .secondaryMenu_menu {
  opacity: 1;
  pointer-events: all;
  left: 0;
  transform: scale(1);
}

.secondaryMenu .secondaryMenu_menu a.link {
  padding: 10px;
  padding-left: 20px;
  border-radius: 0 7px 7px 0;
  color: rgb(var(--white-color), 1);
}

.secondaryMenu .secondaryMenu_menu :hover {
  backdrop-filter: blur(5px);
  background-color: rgb(var(--gold-color), 0.75);
}

.secondaryMenu .secondaryMenu_alert {
  position: absolute;
  width: calc(90vw - 75px);
  max-width: 500px;
  background-color: rgb(var(--white-color), 1);
  border-radius: 25px;
  padding: 15px;
  left: 125%;
  bottom: 0;
  filter: drop-shadow(0px 0px 3px rgb(var(--black-color), 1));
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.secondaryMenu.alert .secondaryMenu_alert {
  opacity: 0.75;
  animation: secondaryMenu_alert 2s ease-in-out infinite alternate;
}

.secondaryMenu.alert:hover .secondaryMenu_alert {
  opacity: 1;
  animation: none;
}

@keyframes secondaryMenu_alert {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 0.8;
  }
}

.secondaryMenu .secondaryMenu_alert .triangle {
  position: absolute;
  width: 45px;
  height: 25px;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--white-color), 1);
  transform: skewX(-50deg);
  z-index: -1;
  border-radius: 2px;
}

.secondaryMenu .secondaryMenu_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  color: rgb(var(--main-color), 1);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 0px 15px 2px rgb(var(--black-color), 0.5);
}

.secondaryMenu.alert .secondaryMenu_icon {
  animation: secondaryMenuAlert 1s ease-in-out infinite alternate;
}

@keyframes secondaryMenuAlert {
  0% {
    box-shadow:
      0px 0px 15px 2px rgb(var(--black-color), 0.5),
      0px 0px 5px 2px rgb(var(--gold-color), 1);
  }

  100% {
    box-shadow:
      0px 0px 15px 2px rgb(var(--black-color), 0.5),
      0px 0px 25px 2px rgb(var(--gold-color), 1);
  }
}

.secondaryMenu.menuOpen .secondaryMenu_icon .open,
.secondaryMenu .secondaryMenu_icon .close {
  display: none;
}

.secondaryMenu.menuOpen .secondaryMenu_icon .close,
.secondaryMenu .secondaryMenu_icon .open {
  display: block;
  pointer-events: none;
}

/*///////////////////////////////////////
/////////////   RIGHT SIDE MENU   /////////////
//////////////////////////////////////////////////// */
.sticky-right-menu {
  width: 280px;
  flex-shrink: 0;

  position: absolute;
  top: 0;
  /* align with body below page header */
  margin: 140px 0 50px 0;
  right: max(20px, calc(50vw - 960px));
  z-index: 105;
}

.block-hello {
  row-gap: 1rem;
}

.director-photo {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.buttons_info_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.sticky-right-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sticky-right-menu .menu-item {
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 5px;
}

.sticky-right-menu .menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Links */
.sticky-right-menu a {
  text-decoration: none;
  color: rgb(var(--main-color), 1);
  /* Your site's main dark color */
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Hover Effects matching Secondary Menu */
.sticky-right-menu a:hover {
  background-color: rgb(var(--main-color), 1);
  /* Dark background on hover */
  color: rgb(var(--gold-color), 1);
  /* Gold text on hover */
  transform: translateX(-5px);
  /* Slight movement effect */
}

/* Icons */
.sticky-right-menu i {
  margin-right: 12px;
  font-size: 18px;
  color: rgb(var(--gold-color), 1);
  /* Gold icons by default */
  transition: color 0.3s ease;
}

.sticky-right-menu a:hover i {
  color: rgb(var(--gold-color), 1);
}

/* ///// RESPONSIVE ///// */
@media (max-width: 1599px) {
  .sticky-right-menu {
    /* Reset to normal block flow on mobile */
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;

    /* Make it look like a content card */
    background: rgb(var(--white-color), 1);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .sticky-right-menu a:hover {
    transform: none;
  }
}

/* Hide FAB on desktop */
.menu-fab-trigger {
  display: none;
}

@media (max-width: 1599px) {
  /* The FAB Circle */
  .menu-fab-trigger {
    display: flex;
    position: fixed;
    bottom: 75px;
    left: 15px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgb(var(--main-color));
    color: rgb(var(--gold-color));
    justify-content: center;
    align-items: center;
    font-size: 26px;
    z-index: 1100;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }

  .menu-fab-trigger .close-icon {
    display: none;
  }

  /* Change icon when active */
  .menu-fab-trigger.active {
    background-color: rgb(var(--gold-color), 1);
    color: rgb(var(--main-color), 1);
  }

  .menu-fab-trigger.active .open-icon {
    display: none;
  }

  .menu-fab-trigger.active .close-icon {
    display: block;
  }

  /* The Menu as a Slide-out Drawer */
  .sticky-right-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;

    background: rgb(var(--white-color));
    z-index: 1050;

    transition: left 0.35s ease;
    border-radius: 0 20px 20px 0;
  }

  .sticky-right-menu.active {
    left: 0;
  }

  /* Optional: Overlay background when menu is open */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    display: none;
  }

  .menu-overlay.active {
    display: block;
  }
}

/*///////////////////////////////////////
/////////////  PAGINATION  /////////////
//////////////////////////////////////////////////// */
.paginationBlock {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

.paginationBlock .page {
  border: 1px solid rgb(var(--gray-color), 0.5);
  background-color: rgb(var(--white-color), 1);
  color: rgb(var(--main-color), 1);
  font-weight: 500;
  padding: 10px 15px;
  margin: 0;
}

.paginationBlock .page:hover {
  background-color: rgb(var(--gray-color), 0.5);
}

.paginationBlock .page:first-child {
  border-radius: 5px 0 0 5px;
}

.paginationBlock .page:last-child {
  border-radius: 0 5px 5px 0;
}

.paginationBlock .page.current {
  background-color: rgb(var(--main-color), 1);
  color: rgb(var(--white-color), 1);
  border-color: rgb(var(--main-color), 1);
  cursor: default;
}

/*///////////////////////////////////////
/////////////  TOAST  /////////////
//////////////////////////////////////////////////// */
#toasterAlert {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 10px;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
  max-width: 450px;
  width: 100%;
}
.toastAlert i.bi.bi-plus-circle-fill {
  transform: rotate(45deg);
  font-size: 30px;
  text-shadow: 1px 2px 10px rgb(var(--black-color), 0.25);
  color: rgb(var(--danger-color), 1);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: -10px;
  right: -5px;
  cursor: pointer;
  opacity: 0.85;
}
.toastAlert i.bi.bi-plus-circle-fill:hover {
  scale: 1.1;
  opacity: 1;
}
.toastAlert {
  position: relative;
  padding: 15px;
  border-radius: 10px;
  background-color: rgb(var(--white-color), 1);
  animation: toastStart 0.5s ease-in-out;
  width: 100%;
  opacity: 0.9;
  box-shadow: 0 0 10px 1px rgb(var(--black-color), 0.1);
  backdrop-filter: blur(10px);
}

@keyframes toastStart {
  from {
    height: 1px;
    transform: translateX(800px);
  }
}
.toastAlert.fade-out {
  opacity: 0 !important;
  transition: 1s ease-in-out all;
}

.toastAlert.danger {
  background-color: rgb(var(--danger-color), 1);
  color: rgb(var(--white-color), 1);
}
.toastAlert.danger i.bi.bi-plus-circle-fill {
  color: rgb(var(--gold-color), 1);
}
.toastAlert.warning {
  background-color: rgb(var(--gold-color), 1);
}
.toastAlert.succes {
  background-color: #8fd879;
}
.toastAlert.succes i.bi.bi-plus-circle-fill {
  color: rgb(var(--white-color), 1);
}
.toastAlert.main {
  background-color: rgb(var(--main-color), 1);
  color: rgb(var(--white-color), 1);
}
.toastAlert.light {
  background-color: rgb(var(--light-color), 1);
}
.toastAlert.gray {
  background-color: rgb(var(--gray-color), 1);
}
.toastAlert.black {
  background-color: rgb(var(--black-color), 1);
  color: rgb(var(--white-color), 1);
}
/*///////////////////////////////////////
/////////////  STYLED CARD WITH IMAGE  /////////////
//////////////////////////////////////////////////// */
.styled_card_with_image {
  position: relative;
  background: linear-gradient(
    0deg,
    rgb(var(--light-gray-color), 1),
    rgb(var(--white-color), 1)
  );
  cursor: pointer;
  height: 100%;
}

.styled_card_with_image:hover {
  filter: brightness(105%);
}

.styled_card_with_image .link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.styled_card_with_image .text_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
  z-index: 2;
  max-width: 80%;
  height: 100%;
}

.styled_card_with_image .background {
  position: absolute;
  max-width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  object-fit: cover;
  opacity: 0.5;
}

.styled_card_with_image .wrapper {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}

.styled_card_with_image .wrapper .background {
  width: 100%;
  max-width: 100%;
  opacity: 1;
  border-radius: 45px 0 0 0;
}

.styled_card_with_image .wrapper .background_color {
  background: linear-gradient(
    0deg,
    rgb(var(--light-gray-color), 1),
    rgb(var(--white-color), 1)
  );
  position: absolute;
  display: block;
  top: 0;
  left: -76px;
  height: 100%;
  width: 76px;
  z-index: 1;
  transform: skewX(-25deg);
}

.styled_card_with_image .wrapper .horisontal_lines,
.styled_card_with_image .wrapper .horisontal_lines::after,
.styled_card_with_image .wrapper .horisontal_lines::before {
  position: absolute;
  display: block;
  background: linear-gradient(
    0deg,
    rgb(var(--light-gray-color), 1),
    rgb(var(--white-color), 1)
  );
  width: 76px;
  height: 100%;
  top: 0;
  left: -35px;
  z-index: 1;
  transition: 0.4s ease-in-out;
}

.styled_card_with_image .wrapper .horisontal_lines {
  transform: skewX(-25deg);
  opacity: 1;
}

.styled_card_with_image .wrapper .horisontal_lines::after {
  content: "";
  left: 150px;
  opacity: 0.33;
}

.styled_card_with_image .wrapper .horisontal_lines::before {
  content: "";
  left: 75px;
  opacity: 0.66;
}

.styled_card_with_image:hover .wrapper .horisontal_lines,
.styled_card_with_image:hover .wrapper .horisontal_lines::after,
.styled_card_with_image:hover .wrapper .horisontal_lines::before {
  width: 185px;
  transition: 0.7s ease-in-out;
}

.styled_card_with_image.mainStyle,
.styled_card_with_image.mainStyle .wrapper .background_color,
.styled_card_with_image.mainStyle .wrapper .horisontal_lines,
.styled_card_with_image.mainStyle .wrapper .horisontal_lines::after,
.styled_card_with_image.mainStyle .wrapper .horisontal_lines::before {
  background: linear-gradient(
    0deg,
    rgb(var(--main-color), 1),
    rgb(var(--hover-color), 1)
  );
  color: rgb(var(--white-color), 1);
}

.styled_card_with_image.goldStyle,
.styled_card_with_image.goldStyle .wrapper .background_color,
.styled_card_with_image.goldStyle .wrapper .horisontal_lines,
.styled_card_with_image.goldStyle .wrapper .horisontal_lines::after,
.styled_card_with_image.goldStyle .wrapper .horisontal_lines::before {
  background: linear-gradient(
    0deg,
    rgb(var(--gold-color), 1),
    rgb(var(--light-gray-color), 1)
  );
}

.styled_card_with_image.whiteStyle,
.styled_card_with_image.whiteStyle .wrapper .background_color,
.styled_card_with_image.whiteStyle .wrapper .horisontal_lines,
.styled_card_with_image.whiteStyle .wrapper .horisontal_lines::after,
.styled_card_with_image.whiteStyle .wrapper .horisontal_lines::before {
  background: linear-gradient(
    0deg,
    rgb(var(--white-color), 1),
    rgb(var(--white-color), 1)
  );
}

.styled_card_with_image.mainText,
.styled_card_with_image.mainText .wrapper .horisontal_lines,
.styled_card_with_image.mainText .wrapper .horisontal_lines::after,
.styled_card_with_image.mainText .wrapper .horisontal_lines::before {
  color: rgb(var(--main-color), 1);
}

/*///////////////////////////////////////
/////////////  TABS BASIC  /////////////
//////////////////////////////////////////////////// */
.tabsBlock .tabWindow {
  display: none;
}

.tabsBlock .tabWindow.open {
  display: block;
  border: .5px solid rgb(var(--gray-color), .2);
  border-radius: 16px;
  margin-bottom: 10px;
}

.tabsBlock .tabsButtons {
  display: flex;
  flex-wrap: nowrap;
  max-width: 99vw;
  overflow-x: auto;
}

/* 
  TABS DEFAULT STYLES
*/
.tabsBlock .tab_buttons_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabsBlock .btn_tab {
  cursor: pointer;
  display: inline-block;
  padding: 15px 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.tabsBlock .btn_tab.open {
  font-weight: 600;
}

.tabsBlock .btn_tab.open:hover {
  cursor: default;
}
/* 
.tabsBlock .window_tab {
  padding: 40px;
} */

/* 
  TABS LIGHT STYLES
*/
.tabsBlock.light .btn_tab {
  color: rgb(var(--black-color), 0.75);
  border-bottom: 2px solid rgb(var(--gray-color), 0.5);
}

.tabsBlock.light .btn_tab:hover {
  background-color: rgb(var(--light-color), 0.75);
  border-bottom: 2px solid rgb(var(--gray-color), 0.75);
  border-radius: 5px 5px 0 0;
}

.tabsBlock.light .btn_tab.open {
  color: rgb(var(--blue-color), 1);
  border-bottom: 2px solid rgb(var(--blue-color), 1);
  background-color: rgb(var(--gray-color-color), 0.5);
  border-radius: 5px 5px 0 0;
}

.tabsBlock.light .window_tab {
  background-color: rgb(var(--light-color), 1);
  border-radius: 16px;
  padding: 20px;
}

/* 
  TABS LIGHT GOLD STYLES
*/
.tabsBlock.light_gold .btn_tab {
  color: rgb(var(--black-color), 0.75);
}

.tabsBlock.light_gold .btn_tab:hover {
  background-color: rgb(var(--blue-color), 0.25);
  border-radius: 5px;
}

.tabsBlock.light_gold .btn_tab.open {
  color: rgb(var(--white-color), 1);
  background-color: rgb(var(--blue-color), 1);
  border-radius: 5px;
}

.tabsBlock.light_gold .window_tab {
  /* background-color: rgb(var(--blue-color), 1); */
  border: 0.2px solid rgb(var(--gray-color), 0.5);
  border-radius: 16px;
  padding: 20pxw;
}

.tabsBlock.light_gold .window_tab a {
  color: rgb(var(--black-color), 1) !important;
  padding: 30px;
}
/* 
.tabsBlock.light_gold .window_tab a:hover {
  background-color: rgb(var(--blue-color), 0.8);
  color: rgb(var(--white-color), 1) !important;
  border-radius: 10px;
  align-items: center;
} */

/* 
  TABS MAIN STYLES
*/
.tabsBlock.main .btn_tab:hover,
.tabsBlock.main .btn_tab.open {
  color: rgb(var(--white-color), 1);
  background-color: rgb(var(--main-color), 1);
  border-radius: 5px 5px 0 0;
  border-bottom: 2px solid rgb(var(--main-color), 1);
}

.tabsBlock.main .btn_tab.open {
  border-color: rgb(var(--white-color), 1);
}

.tabsBlock.main .window_tab.open {
  background-color: rgb(var(--main-color), 1);
  color: rgb(var(--white-color), 1);
  border-radius: 0 0 5px 5px;
  padding: 20px;
}

/* 
  TABS VERTICAL STYLES
*/
.tabsBlock.vertical .tab_buttons_wrapper {
  flex-direction: column-reverse;
  gap: 15px;
}

.tabsBlock.vertical .btn_tab {
  color: rgb(var(--black-color), 0.75);
  border-bottom: 2px solid rgb(var(--gray-color), 0.5);
}

.tabsBlock.vertical .btn_tab:hover {
  background-color: rgb(var(--light-color), 0.75);
  border-bottom: 2px solid rgb(var(--gray-color), 0.75);
  border-radius: 5px 5px 0 0;
}

.tabsBlock.vertical .btn_tab.open {
  color: rgb(var(--black-color), 1);
  border-bottom: 2px solid rgb(var(--gold-color), 1);
  background-color: rgb(var(--light-color), 1);
  border-radius: 5px 5px 0 0;
}

.tabsBlock.vertical .window_tab {
  background-color: rgb(var(--light-color), 1);
  border-radius: 3px;
}

@media screen and (min-width: 992px) {
  .tabsBlock.vertical {
    display: flex;
    gap: 30px;
  }

  .tabsBlock.vertical .tab_buttons_wrapper {
    flex-direction: column;
    justify-content: start;
    align-items: baseline;
    gap: 75px;
    min-width: 320px;
    margin: 10px 0;
  }

  .tabsBlock.vertical .tab_buttons_wrapper .tabsButtons {
    flex-direction: column;
    font-size: 14px;
  }

  .tabsBlock.vertical .btn_tab {
    padding: 5px 5px;
    margin: 5px 0;
    color: rgb(var(--black-color), 0.75);
    border-bottom: 2px solid rgb(var(--gray-color), 0.5);
    border-left: 10px solid rgb(var(--gold-color), 0);
  }

  .tabsBlock.vertical .btn_tab:hover {
    border-left: 10px solid rgb(var(--gold-color), 0.25);
    border-radius: 0;
  }

  .tabsBlock.vertical .btn_tab.open {
    border-bottom: 2px solid rgb(var(--gold-color), 0);
    border-left: 10px solid rgb(var(--gold-color), 1);
    border-radius: 0;
  }
}
/* 
  TABS ACCORDION DEFAULT STYLE
*/
.tabsBlock.accordion {
  margin: 10px auto;
}

.tabsBlock.accordion .tabsButtons {
  width: 100%;
  overflow: visible;
}

.tabsBlock.accordion .btn_tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgb(var(--gray-color), 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.tabsBlock.accordion .btn_tab :last-child{
  margin-bottom: 0px !important;
}

.tabsBlock.accordion .btn_tab.open {
  cursor: pointer;
  color: rgb(var(--blue-color), 1);
  border-color: rgba(var(--blue-color), 0.4);
  background: #f0f5ff;
}

.tabsBlock.accordion .btn_tab span.arrow {
  rotate: 90deg;
  font-size: 28px;
  font-weight: 300;
  scale: 1.5;
}

.tabsBlock.accordion .btn_tab.open span.arrow {
  rotate: -90deg;
  translate: -8px 0;
}

.tabsBlock.accordion .btn_tab * {
  pointer-events: none;
}

/* Бейдж с количеством файлов */
.acc-meta {
  font-size: 11px;
  font-weight: 600;
  color: rgb(var(--blue-color));
  background: #eef3fc;
  border: 1px solid #c8d8f5;
  border-radius: 20px;
  padding: 3px 10px;
  margin-right: 20px;
  margin-left: auto;   
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.tabsBlock.accordion .btn_tab.open .acc-meta {
  background: rgb(var(--blue-color));
  color: #fff;
  border-color: rgb(var(--blue-color));
}

/* 
  TABS DROPDOWN DEFAULT STYLE
*/
.tabsBlock.dropdown {
  border-radius: 26px;
}

.tabsBlock.dropdown .tabsButtons {
  width: 100%;
  overflow: visible;
  border-radius: 26px;
}

.tabsBlock.dropdown .btn_tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0.5px solid rgb(var(--gray-color), 0.2);
  border-radius: 16px;
  color: rgb(var(--main-color), 1);
  margin-bottom: 10px;
}

.tabsBlock.dropdown .btn_tab:hover {
  color: rgb(var(--black-color), 1);
}

.tabsBlock.dropdown .btn_tab.open {
  cursor: pointer;
  color: rgb(var(--black-color), 1);
}

.tabsBlock.dropdown .btn_tab span.arrow {
  rotate: 90deg;
  font-size: 28px;
  font-weight: 300;
  scale: 1.5;
}

.tabsBlock.dropdown .btn_tab.open span.arrow {
  rotate: -90deg;
  translate: -8px 0;
}

.tabsBlock.dropdown .btn_tab * {
  pointer-events: none;
}

/*///////////////////////////////////////
/////////////  DOCUMENTS ACCORDION  /////////////
//////////////////////////////////////////////////// */

.accordion_files_block {
  border-radius: 14px;
  padding: 14px;
  color: rgb(var(--blue-color), 1);
}

.tabsBlock.accordion .accordion_files_block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tabsBlock.accordion .accordion_files_block a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(var(--black-color), 1);
  background: #f8fbff;
  border: 1px solid rgb(var(--gray-color), 0.2);
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tabsBlock.accordion .accordion_files_block a:hover {
  background: #eef3fc;
  border-color: #c8d8f5;
  transform: translateX(4px);
}

.tabsBlock.accordion .accordion_files_block a i {
  font-size: 20px;
  color: rgb(var(--blue-color), 1);
  flex-shrink: 0;
}

.tabsBlock.accordion .accordion_files_block a p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgb(var(--black-color), 1);
}

/* ================================
   DOCUMENTS LIST
   ================================ */

.files_block-Component {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}

.files_block-Component.twoCol {
  flex-direction: row;
  flex-wrap: wrap;
}

.files_block-Component.twoCol a.fileDownload {
  width: 100%;
}

.files_block-Component a.fileDownload {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgb(var(--black-color), 1);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgb(var(--gray-color), .2);
  border-radius: 12px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.files_block-Component a.fileDownload:hover {
  background: #f4f7ff;
  border-color: rgb(var(--blue-color), 0.3);
  box-shadow: 0 4px 16px rgba(21, 66, 210, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
}

.files_block-Component a.fileDownload i.bi {
  flex-shrink: 0;
  font-size: 22px;
  color: rgb(var(--blue-color), 1);
}

.files_block-Component {
  width: 100%;
}

.files_block-Component a.fileDownload {
  width: 100%;
  box-sizing: border-box;
}

/* ================================
   АДАПТИВ
   ================================ */

@media screen and (max-width: 991px) {
  .files_block-Component.twoCol a.fileDownload {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .files_block-Component {
    margin: 24px 0;
    gap: 6px;
  }

  .files_block-Component a.fileDownload {
    padding: 12px 14px;
    font-size: 13px;
  }

  .files_block-Component a.fileDownload i.bi {
    font-size: 20px;
  }
}
/*///////////////////////////////////////
/////////////  DOCUMENTS PREVIEW  /////////////
//////////////////////////////////////////////////// */
.document_preview {
  width: 100%;
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  border-radius: 16px;
  margin-bottom: 10px;
}

.document_preview.open {
  border-color: rgb(var(--main-color), 0.5);
}

.document_preview .document_preview_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
  color: rgb(var(--black-color), 0.9);
}

.document_preview.open .document_preview_header {
  color: rgb(var(--main-color), 1);
  border-bottom: 2px solid rgb(var(--gold-color), 1);
}

.document_preview .document_preview_header i.bi.bi-caret-down-fill {
  transition: 0.5s ease-in-out;
}

.document_preview.open .document_preview_header i.bi.bi-caret-down-fill {
  rotate: 180deg;
}

.document_preview .document_preview_header * {
  pointer-events: none;
  color: inherit;
}

.document_preview .document_preview_body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.document_preview.open .document_preview_body {
  height: 70vh;
  max-height: 900px;
  opacity: 1;
}

.document_preview .document_preview_body iframe * {
  pointer-events: none;
}

EMBED {
  height: 100%;
}

/*///////////////////////////////////////
/////////////  MAIN ROLL  /////////////
//////////////////////////////////////////////////// */
.mainRollBlock {
  position: relative;
  margin: 30px 0;
  color: rgb(var(--black-color), 1);
  /* filter: drop-shadow(1px 5px 5px rgb(var(--black-color), 0.25)); */
}

.mainRollBlock .roll_text {
  position: relative;
  z-index: 1;
  /* padding: 5px 110px 5px 40px; */
  /* border: 1px solid rgb(var(--gray-color), 1); */
  border-radius: 26px;
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  color: rgb(var(--black-color), 1);
  padding: 40px;
}

.mainRollBlock .roll {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 50px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.mainRollBlock .roll .roll_inner {
  border: 3px solid rgb(var(--black-color));
  padding: 5px;
  height: 50%;
  border: 1px solid rgb(var(--gray-color), 1);
  background-color: rgb(var(--light-color), 1);
  border-radius: 5px;
}

/* .mainRollBlock .roll .roll_inner:nth-child(1) {
  transform: skewX(40deg);
  border-bottom: none;
}

.mainRollBlock .roll .roll_inner:nth-child(2) {
  transform: skewX(-40deg);
  border-top: none;
} */

.mainRollBlock .roll_image {
  position: absolute;
  top: 50%;
  right: 0;
  height: 110%;
  min-height: 100px;
  transform: translateY(-50%);
  width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 10px;
  background-color: rgb(var(--light-color), 1);
  z-index: 2;
  overflow: hidden;
}

/* .mainRollBlock .roll_image img {
  height: 100%;
  object-fit: contain;
}

.mainRollBlock.mainBorder .roll_inner,
.mainRollBlock.mainBorder .roll_image {
  border-color: rgb(var(--main-color));
}

.mainRollBlock.goldBorder .roll_inner,
.mainRollBlock.goldBorder .roll_image {
  border-color: rgb(var(--gold-color));
}

.mainRollBlock.grayBorder .roll_inner,
.mainRollBlock.grayBorder .roll_image {
  border-color: rgb(var(--gray-color));
} */

/*///////////////////////////////////////
/////////////  MAIN BLOCK  /////////////
//////////////////////////////////////////////////// */
.mainFirstBlockPage {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.mainFirstBlockPage.reverse {
  flex-direction: row-reverse;
}

.mainFirstBlockPage .info_block,
.mainFirstBlockPage .image_wrapper {
  width: 47%;
}
.info_block p {
  line-height: 30px;
}

.mainFirstBlockPage .image_wrapper {
  position: relative;
}

.mainFirstBlockPage .image_wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 500px) {
  .mainFirstBlockPage {
    flex-direction: column-reverse;
  }

  .mainFirstBlockPage .info_block,
  .mainFirstBlockPage .image_wrapper {
    width: 100%;
  }

  .mainFirstBlockPage .image_wrapper {
    min-height: none;
    max-height: 250px;
  }
}
/*///////////////////////////////////////
/////////////  MEMBERS CARD BLOCK  /////////////
//////////////////////////////////////////////////// */
/* 
.member_cards_block {
  gap: 16px;
}

.member_cards_block .image_wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
}

.member_cards_block .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  filter: brightness(95%) saturate(80%);
  transition: filter 0.3s ease;
}

.member_cards_block a {
  text-decoration: none;
  display: block;
}

.member_cards_block a:hover .image_wrapper img {
  filter: none;
}

.member_cards_block a:hover hr {
  background-color: rgb(var(--gold-color), 1);
} */

/*///////////////////////////////////////
/////////////  MEMBER CARD  /////////////
//////////////////////////////////////////////////// */

/* .member_card {
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  border-radius: 26px;
  padding: 16px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  padding: 12px;
  overflow: hidden; 
  box-sizing: border-box;
} */
/* 
.member_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
} */

/*///////////////////////////////////////
/////////////  ADAPTIVE  /////////////
//////////////////////////////////////////////////// */

/* Tablet: 3 колонки */
/* @media (max-width: 991px) and (min-width: 768px) {
  .member_card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    margin-left: 0;
  }
} */

/* Mobile landscape: 2 колонки */
/* @media (max-width: 767px) and (min-width: 480px) {
  .member_card {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
    margin-left: 0;
    border-radius: 26px;
    padding: 12px;
  }

  .member_card h4 {
    font-size: 15px;
  }
} */

/* Mobile portrait: 1 колонка */
/* @media (max-width: 479px) {
  .member_cards_block {
    padding: 24px 12px !important;
    gap: 12px;
  }

  .member_card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 14px;
    padding: 12px;
  }

  .member_card h4 {
    font-size: 16px;
    margin: 8px 0 4px !important;
  }

  .member_card p {
    font-size: 13px !important;
    padding: 3px 0 !important;
  }
} */
/*///////////////////////////////////////
/////////////  TAGS  /////////////
//////////////////////////////////////////////////// */
._tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 15px;
}

._tags a {
  padding: 7px 15px;
  border-radius: 5px;
  background-color: rgb(var(--gray-color), 0.25);
}

._tags a:hover {
  background-color: rgb(var(--gold-color), 0.25);
}

/*///////////////////////////////////////
/////////////  BIG n SMALL CARDS BLOCK  /////////////
//////////////////////////////////////////////////// */
.big_and_small_cards-block {
  display: flex;
  gap: 30px;
}

/* .big_and_small_cards-block .card,
.big_and_small_cards-block .small_card {
  box-shadow: 0 3px 15px 3px rgb(var(--black-color), 0.2);
}

.big_and_small_cards-block .card:hover,
.big_and_small_cards-block .small_card:hover {
  box-shadow: 0 5px 15px 5px rgb(var(--black-color), 0.25);
} */

.big_and_small_cards-block .card {
  width: 100%;
  height: 110px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--blue-color), 1);
}

.big_and_small_cards-block .small_cards {
  width: 100%;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.big_and_small_cards-block .small_cards .small_card {
  padding: 30px;
}

@media screen and (max-width: 991px) {
  .big_and_small_cards-block .card,
  .big_and_small_cards-block .small_card,
  .big_and_small_cards-block .card:hover,
  .big_and_small_cards-block .small_card:hover {
    box-shadow: none;
  }

  .big_and_small_cards-block .card:hover,
  .big_and_small_cards-block .small_card:hover {
    filter: brightness(105%);
  }

  .title_wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }

  .big_and_small_cards-block {
    flex-wrap: wrap;
    gap: 0;
  }

  .big_and_small_cards-block .card h2 {
    margin-bottom: 20px;
  }

  .big_and_small_cards-block .small_cards {
    gap: 0;
  }
}

.big_and_small_cards-block {
  border-radius: 15px;
}

.card .light .main .gold :hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.count_program {
  font-family: "Roboto Mono", monospace;
}

.container_sides_block {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  margin-right: auto;
}

.container_sides_block:hover {
  transform: translateY(-6px);
}

.container_sides_block:hover .right_side_ep svg {
  transform: translateX(6px);
}

.right_side_ep svg {
  transition: transform 0.35s ease;
}

.big_and_small_cards-block .card.light,
.big_and_small_cards-block .small_card.light {
  background-color: rgb(var(--white-color), 1);
  color: rgb(var(--black-color), 1);
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  border-radius: 26px;
}

.big_and_small_cards-block .card.gold,
.big_and_small_cards-block .small_card.gold {
  background-color: rgb(var(--white-color), 1);
  color: rgb(var(--black-color), 1);
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  border-radius: 26px;
}

.big_and_small_cards-block .card.main,
.big_and_small_cards-block .small_card.main {
  background-color: rgb(var(--white-color), 1);
  color: rgb(var(--black-color), 1);
  border: 0.5px solid rgb(var(--gray-color), 0.2);
  border-radius: 26px;
  /* box-shadow: 0px 19px 66px -27px rgba(0, 0, 0, 0.1); */
}

/* ═══════════════════════════════════════════
   USEFUL CARDS WITH IMAGE
═══════════════════════════════════════════ */

.useful_cards_withImage-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.useful_cards_withImage-links .card {
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.useful_cards_withImage-links .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
}

/* ── Варианты фона ── */
.useful_cards_withImage-links .card.light {
  background: #f7f9ff;
  border: 1px solid rgba(21, 66, 210, 0.12);
  color: rgb(var(--blue-color), 1);
  font-weight: 600;
}

.useful_cards_withImage-links .card.main {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgb(var(--black-color), 1);
  font-weight: 600;
}

/* ── Inactive ── */
.useful_cards_withImage-links .card.inactive {
  opacity: 0.55;
  filter: grayscale(40%) brightness(88%);
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Текстовый блок ── */
.useful_cards_withImage-links .card .text_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  gap: 14px;
}

.useful_cards_withImage-links .card .text_content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

/* ── Description ── */
.useful_cards_withImage-links .card .text_content .description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.useful_cards_withImage-links .card .text_content .description p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

/* ── Links ── */
.useful_cards_withImage-links .card .text_content .links_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.useful_cards_withImage-links .card .text_content .links_content a {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}

.useful_cards_withImage-links .card .text_content .links_content a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

.useful_cards_withImage-links .card .text_content .links_content a:hover {
  text-decoration: underline;
}

/* ── Disabled состояния ── */
.useful_cards_withImage-links .card .btn.disabled,
.useful_cards_withImage-links .card .text_content .links_content .disabled {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #999;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
}

.useful_cards_withImage-links
  .card
  .text_content
  .links_content
  .disabled::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}

/* ── Картинка ── */
.useful_cards_withImage-links .card img {
  flex-shrink: 0;
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
  border-radius: 12px;
}

.useful_cards_withImage-links .card img.bottom_shrink {
  align-self: flex-end;
  margin-top: 16px;
}

/* ════════════════
   ADAPTIVE
════════════════ */

@media (max-width: 768px) {
  .useful_cards_withImage-links {
    grid-template-columns: 1fr;
  }

  .useful_cards_withImage-links .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
    gap: 18px;
  }

  .useful_cards_withImage-links .card img {
    max-width: 100%;
    max-height: 160px;
    align-self: center;
  }

  .useful_cards_withImage-links .card .text_content h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .useful_cards_withImage-links .card {
    padding: 20px 18px;
    border-radius: 14px;
  }
}
/*///////////////////////////////////////////////////////
/////////////  LINK CARD BLOCKS WITH IMAGES  ///////////
//////////////////////////////////////////////////// */

.card_link_with_image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 50vh;
  min-height: 250px;
  max-height: 400px;
}

.card_link_with_image .link {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
}

.card_link_with_image .text_block {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  width: auto;
  height: auto;
  color: rgb(var(--black-color), 1);
  z-index: 1;
}

.card_link_with_image:hover .text_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgb(var(--main-color), 1);
  text-align: center;
}

.card_link_with_image .text_block .title {
  font-size: 2vw;
}

.card_link_with_image .text_block .subtitle {
  height: 0;
  width: 0;
  opacity: 0;
  transition: 0s;
}

.card_link_with_image:hover .text_block .subtitle {
  height: auto;
  width: auto;
  opacity: 1;
}

.card_link_with_image .background_shape,
.card_link_with_image .background_shape::after,
.card_link_with_image .background_shape::before {
  position: absolute;
  display: block;
  background-color: rgb(var(--gold-color), 1);
  width: 50%;
  height: 50%;
  bottom: -25%;
  right: -25%;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

.card_link_with_image .background_shape::after {
  content: " ";
  bottom: -75%;
  right: -75%;
  width: 300%;
  height: 300%;
}

.card_link_with_image .background_shape::before {
  content: " ";
  bottom: -80%;
  right: -80%;
  width: 115%;
  height: 115%;
  opacity: 1;
  background-color: rgb(var(--main-color), 1);
  filter: blur(2px);
  animation: card_link_with_image_shape_wave 2s ease-in-out alternate infinite;
}

.card_link_with_image:hover .background_shape {
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  border-radius: 0;
  opacity: 1;
}

.card_link_with_image .background {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: scale 1s ease-in-out;
}

.card_link_with_image:hover .background {
  filter: blur(3px);
  scale: 1.1;
}

@keyframes card_link_with_image_shape_wave {
  100% {
    bottom: -75%;
    right: -75%;
    width: 125%;
    height: 125%;
    opacity: 0.5;
    filter: blur(1px);
  }
}

@media screen and (max-width: 767px) {
  .card_link_with_image .text_block .title {
    font-size: 7vw;
  }
}

@media screen and (max-width: 1025px) {
  .card_link_with_image .text_block .subtitle {
    height: auto !important;
    width: auto !important;
    opacity: 1 !important;
  }
}

/* 
///////
*/
.card_link_with_image_minimize {
  position: relative;
  height: 125px;
  margin: 10px;
  padding: 15px 24px;
  border-radius: 26px;
  border: 0.5px solid rgb(var(--gray-color), 0.5);
  overflow: hidden;
  margin-bottom: 15px;
  transition: 0.35s ease;
}

.card_link_with_image_minimize.no_image {
  padding: 30px;
}

.card_link_with_image_minimize:hover {
  /* background-color: rgb(var(--gold-color), 0.25); */
}

.card_link_with_image_minimize.main_colors {
  /* background-color: rgb(var(--main-color), 1); */
  color: rgb(var(--black-color), 1);
  border: 1px solid rgb(var(--light-gray-color), 1);
}

.card_link_with_image_minimize.main_colors:hover {
  background-color: rgb(var(--main-color), 0.96);
  color: rgb(var(--white-color), 1);
}

.card_link_with_image_minimize .link {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card_link_with_image_minimize .content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.card_link_with_image_minimize .content_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.card_link_with_image_minimize .content_text .title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.card_link_with_image_minimize .content_text .subtitle {
  margin: 0;
  font-size: 15px;
  opacity: 0.75;
}

.card_link_with_image_minimize .main_photo {
  display: block;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgb(var(--main-color), 1);
  box-shadow: 0 0 5px 1px rgb(var(--black-color), 0.5);
  transition: 0.5s;
}

.card_link_with_image_minimize:hover .main_photo {
  border: 2px solid rgb(var(--gold-color), 0.5);
}

.card_link_with_image_minimize .background {
  position: absolute;
  width: 100%;
  height: 500%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 2s;
  opacity: 0.25;
  transition: 5s;
}

.card_link_with_image_minimize:hover .background {
  top: -300%;
  left: 0;
}

@media screen and (max-width: 767px) {
  .card_link_with_image_minimize {
    height: auto;
    min-height: 90px;
    padding: 10px 14px;
  }

  .card_link_with_image_minimize .content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .card_link_with_image_minimize .content_text {
    flex: 1;
    align-items: flex-start;
  }

  .card_link_with_image_minimize .title {
    font-size: 16px;
    width: 100%;
  }

  .card_link_with_image_minimize .subtitle {
    font-size: 12px;
    width: 100%;
  }
}

/* _________________________________________________________________________________________________________________ */

.richtext p {
  font-size: 15px;
  line-height: 2;
  margin: 0;
  padding: 0.5rem 1.25rem;
  border-left: 2px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.richtext p:hover {
  background: #f0f6ff;
  border-left: 2px solid rgb(var(--blue-color), 1);
}

.richtext p b,
.richtext p strong {
  font-weight: 600;
}
