.page_header {
  margin: 40px 0 50px 0;
}

.page_header h1 {
  color: rgb(var(--main-color), 1);
  margin: 35px auto;
}

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

.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;
}

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

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

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

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

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

.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(--light-color), 1);
}

.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: 12px;
  font-weight: 400;
}

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

.breadCrumbs-component a:last-child,
.breadCrumbs-component a:last-child:hover,
.breadCrumbs-component a:last-child:after {
  content: none;
  cursor: text;
  color: rgb(var(--black-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(--white-color), .75);
  border-radius: 5px;
  backdrop-filter: blur(3px);
  padding: 10px;
  padding-left: 0;
  width: 75vw;
  max-width: 350px;
  max-height: 50vh;
  opacity: 0;
  pointer-events: none;
  transition: .35s ease-in-out;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0 0 15px 2px rgb(var(--black-color), .25);

  transform: scale(.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;
}

.secondaryMenu .secondaryMenu_menu a.link:hover {
  background-color: rgb(var(--main-color), .75);
  color: rgb(var(--gold-color), 1);
}

.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: .5s ease-in-out;
}

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

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

@keyframes secondaryMenu_alert {
  0% {
    opacity: .5;
  }

  100% {
    opacity: .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), .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), .5),
      0px 0px 5px 2px rgb(var(--gold-color), 1);
  }

  100% {
    box-shadow:
      0px 0px 15px 2px rgb(var(--black-color), .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;
}

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

.paginationBlock .page {
  border: 1px solid rgb(var(--gray-color), .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), .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), .25);
  color: rgb(var(--danger-color), 1);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: -10px; right: -5px;
  cursor: pointer;
  opacity: .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 .5s ease-in-out;
  width: 100%;
  opacity: .9;
  box-shadow: 0 0 10px 1px rgb(var(--black-color), .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: .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: .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: .33;
}

.styled_card_with_image .wrapper .horisontal_lines::before {
  content: '';
  left: 75px;
  opacity: .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: .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;
}

.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), .75);
  border-bottom: 2px solid rgb(var(--gray-color), .5);
}

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

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

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

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

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

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

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

/* 
  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;
}

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

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

.tabsBlock.vertical .btn_tab:hover {
  background-color: rgb(var(--light-color), .75);
  border-bottom: 2px solid rgb(var(--gray-color), .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), .75);
    border-bottom: 2px solid rgb(var(--gray-color), .5);
    border-left: 10px solid rgb(var(--gold-color), 0);
  }

  .tabsBlock.vertical .btn_tab:hover {
    border-left: 10px solid rgb(var(--gold-color), .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: 50px auto;
  box-shadow: 0 2px 7px 2px rgb(var(--black-color), .1);
}

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

.tabsBlock.accordion .btn_tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(var(--gray-color), .5);
  color: rgb(var(--main-color), 1);
}

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

.tabsBlock.accordion .btn_tab.open {
  cursor: pointer;
  color: rgb(var(--black-color), 1);
  box-shadow: 0 2px 7px 2px rgb(var(--black-color), .1);
}

.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;
}



/* 
  TABS DROPDOWN DEFAULT STYLE
*/
.tabsBlock.dropdown {
  box-shadow: 0 2px 7px 2px rgb(var(--black-color), .1);
}

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

.tabsBlock.dropdown .btn_tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(var(--gray-color), .5);
  color: rgb(var(--main-color), 1);
}

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

.tabsBlock.dropdown .btn_tab.open {
  cursor: pointer;
  color: rgb(var(--black-color), 1);
  box-shadow: 0 2px 7px 2px 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  /////////////
//////////////////////////////////////////////////// */
.tabsBlock.accordion .accordion_files_block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tabsBlock.accordion .accordion_files_block a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgb(var(--black-color), 1);
  box-shadow: 0 0 5px 2px rgb(var(--black-color), .1);
  padding: 15px;
  border-radius: 3px;
}

.tabsBlock.accordion .accordion_files_block a i {
  font-weight: 600;
  font-size: 20px;
}

.tabsBlock.accordion .accordion_files_block a:hover {
  background-color: rgb(var(--main-color), .05);
  box-shadow: 0 2px 7px 3px rgb(var(--black-color), .15);
}

/*///////////////////////////////////////
/////////////  DOCUMENTS LIST  /////////////
//////////////////////////////////////////////////// */
.files_block-Component {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 50px auto;
}

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

.files_block-Component a.fileDownload {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  align-items: center;
  padding: 15px 5px;
  width: 100%;
  text-decoration: underline;
}

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

.files_block-Component a.fileDownload:hover {
  background-color: rgb(var(--gray-color), .15);
  border-radius: 10px;
}

.files_block-Component a.fileDownload i.bi {
  color: rgb(var(--black-color), 1);
  font-size: 20px;
  margin-right: 20px;
}

/*///////////////////////////////////////
/////////////  DOCUMENTS PREVIEW  /////////////
//////////////////////////////////////////////////// */
.document_preview {
  width: 100%;
  border: 2px solid rgb(var(--gray-color), .5);
  border-radius: 2px;
}

.document_preview.open {
  border-color: rgb(var(--main-color), .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), .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: .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: .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;
  filter: drop-shadow(1px 5px 5px rgb(var(--black-color), .25));
}

.mainRollBlock .roll_text {
  position: relative;
  z-index: 1;
  padding: 5px 110px 5px 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%;
  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: 3px solid rgb(var(--black-color));
  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%;
}

.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;
  }
}

/*///////////////////////////////////////
/////////////  MEMBER BLOCK  /////////////
//////////////////////////////////////////////////// */
.member_cards_block .image_wrapper {
  position: relative;
  aspect-ratio: 1;
}

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

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

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

/*///////////////////////////////////////
/////////////  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), .25);
}

._tags a:hover {
  background-color: rgb(var(--gold-color), .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), .20);
}

.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), .25);
}

.big_and_small_cards-block .card {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
}

.big_and_small_cards-block .card.light h2 {
  border-bottom: 2px solid rgb(var(--main-color), 1);
}

.big_and_small_cards-block .card.main h2 {
  border-bottom: 2px solid rgb(var(--gold-color), 1);
}

.big_and_small_cards-block .card.gold h2 {
  border-bottom: 2px solid rgb(var(--black-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 {
    box-shadow: 0 3px 15px 3px rgb(var(--black-color), .20);
  }

  .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 .card.light,
.big_and_small_cards-block .small_card.light {
  background-color: rgb(var(--light-color), 1);
  color: rgb(var(--black-color), 1);
}

.big_and_small_cards-block .card.gold,
.big_and_small_cards-block .small_card.gold {
  background-color: rgb(var(--gold-color), 1);
  color: rgb(var(--black-color), 1);
}

.big_and_small_cards-block .card.main,
.big_and_small_cards-block .small_card.main {
  background-color: rgb(var(--main-color), 1);
  color: rgb(var(--white-color), 1);
}

/*///////////////////////////////////////
/////////////  USEFUL CARDS WITH IMAGE  /////////////
//////////////////////////////////////////////////// */
.useful_cards_withImage-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
}

.useful_cards_withImage-links .card {
  width: 48%;
  border-radius: 10px;
  position: relative;
  padding: 30px 40px;
  overflow: hidden;
}

.useful_cards_withImage-links .card.inactive {
  opacity: 0.6;
  filter: grayscale(40%) brightness(85%);
  cursor: not-allowed;
}


.useful_cards_withImage-links .card .btn.disabled,

.useful_cards_withImage-links .card .links_content .disabled {
  display: inline-block;
  background: #ccc;
  color: #666;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .useful_cards_withImage-links .card {
    width: 100%;
  }
}

.useful_cards_withImage-links .card.light {
  color: rgb(var(--black-color), 1);
  background-color: rgb(var(--white-color), 1);
  box-shadow: 0 3px 15px 2px rgb(var(--black-color), .2);
}

.useful_cards_withImage-links .card.light:hover {
  box-shadow: 0 3px 20px 2px rgb(var(--black-color), .3);
}

.useful_cards_withImage-links .card.main {
  color: rgb(var(--white-color), 1);
  background-color: rgb(var(--main-color), 1);
  box-shadow: 0 3px 15px 2px rgb(var(--main-color), .2);
}

.useful_cards_withImage-links .card.main:hover {
  box-shadow: 0 3px 20px 2px rgb(var(--main-color), .3);
}

.useful_cards_withImage-links .card .text_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 46%;
  height: 100%;
}

.useful_cards_withImage-links .card .text_content h3 {
  font-size: 24px;
  font-weight: 600;
}

.useful_cards_withImage-links .card .text_content .description,
.useful_cards_withImage-links .card .text_content .links_content {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
}

.useful_cards_withImage-links .card .text_content .description a {
  margin-top: 10px;
}

.useful_cards_withImage-links .card .text_content .links_content a {
  color: inherit;
}

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

.useful_cards_withImage-links .card img {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 15px;
  max-width: 40%;
  max-height: 95%;
  object-fit: contain;
}

.useful_cards_withImage-links .card img.bottom_shrink {
  bottom: 0;
  transform: translateY(0);
}

/*///////////////////////////////////////
/////////////  MEMBERS CARD BLOCK  /////////////
//////////////////////////////////////////////////// */
.member_cards_block .image_wrapper {
  position: relative;
  aspect-ratio: 1;
}

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

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

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


/*///////////////////////////////////////////////////////
/////////////  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: .5;
  transition: all .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: .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: .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: 100px;
  padding: 15px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: .35s ease;
}

.card_link_with_image_minimize.no_image {
  padding: 30px;
}

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

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

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

.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,
.card_link_with_image_minimize .content .content_text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.card_link_with_image_minimize .content .content_text .title {
  margin-right: 15px;
}

.card_link_with_image_minimize .content .content_text .subtitle {
  margin-left: auto;
}

.card_link_with_image_minimize .main_photo {
  display: block;
  height: 100%;
  width: auto;
  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), .5);
  transition: .5s;
}

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

.card_link_with_image_minimize .background {
  position: absolute;
  width: 100%;
  height: 500%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 2s;
  opacity: .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: 125px;
  }

  .card_link_with_image_minimize .content {
    justify-content: space-evenly;
  }

  .card_link_with_image_minimize .content .content_text {
    width: auto;
    justify-content: center;
    flex-direction: column;
  }

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

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