 /*///////////////////////////////////////
/////////////  CHAIR PAGE  /////////////
//////////////////////////////////////////////////// */
 .tabsBlock .window_tab {
   padding: 20px 0;
 }

 .window_tab .tab_cards {
   display: flex;
   gap: 30px;
 }

 .window_tab .tab_cards .card {
   position: relative;
   padding: 35px;
   color: rgb(var(--black-color), 1);
   font-size: 20px;
   box-shadow: 0 5px 15px 5px rgb(var(--black-color), .05);
   border-radius: 5px;
 }

 .window_tab .tab_cards .card:hover {
   box-shadow: 0 3px 10px 2px rgb(var(--black-color), .1);
 }

 .window_tab .tab_cards .card::after {
   content: '\2192';
   position: absolute;
   bottom: 10px;
   right: 20px;
   color: rgb(var(--gold-color), 1);
 }

 .window_tab .tab_cards .card:hover::after {
   right: 10px;
 }

 .bgWhite .twoColumns_.row .col_gray a h2 {
   color: rgb(var(--gold-color), 1);
 }

 .bgWhite .twoColumns_.row .col_gray .socials a {
   filter: brightness(50%);
 }

 .bgWhite .contacts .socials a {
   filter: brightness(50%);
 }

 .bgWhite .contacts .socials a:hover {
   filter: brightness(0%);
 }

 .bgWhite .twoColumns_.row .col_gray .socials a:hover {
   filter: brightness(0%);
 }

 /*///////////////////////////////////////
/////////////  MEMBER PAGE  /////////////
//////////////////////////////////////////////////// */
 .member_bigcard {
   padding: 35px 25px;
   display: flex;
   align-items: flex-start;
   gap: 25px;
 }

 .member_bigcard .image_wrapper {
   min-width: 250px;
   aspect-ratio: 1;
 }

 .member_bigcard .image_wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 5px;
 }

 .member_bigcard .member_info .more_info {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 15px;
 }

 @media screen and (max-width: 991px) {
   .member_bigcard .member_info .more_info {
     font-size: 14px;
   }
 }

 @media screen and (max-width: 767px) {
   .member_bigcard {
     flex-direction: column;
     align-items: stretch;
   }
 }