.hidden-video {
 display:none; 
}

.close-video-modal {
  cursor:pointer;
}

#video-modal-content .hidden-video {
  display:block;
}
.member {
  margin-bottom:69px;
}
.member .member-photo {
  width: 360px;
    height: auto;
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.member .photo-wrapper {
  position:relative;
}

.member-name {
    margin-top: 40px;
    text-align: center;
}

.member .photo-wrapper {
    text-align: center;
}

.auth_contact {
    display: flex;
    gap: 20px;
}

.auth_contact a {
    position:relative;
}

.auth_contact a:before {
    content: "";
    border-right: 1px solid #F9423A;
    position:absolute;
    height:75%;
    top:50%;
    transform:translateY(-45%);
    right:-10px;;
}
.auth_contact a:last-of-type:before, .auth_contact a:only-of-type:before {
    display:none;
}

.member-position {
    text-align:center;
}

.auth_contact {
    align-items:center;
    justify-content:center;
}

.member-position {
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

.auth_contact * {
     font-size: 0.85rem;
     font-weight: 900;
}

svg.trigger-video-modal.member-video {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(-50%);
}
  
/* Video Modal */


.trigger-video-modal {
cursor:pointer;
}  

svg.button-overlay {
    position: absolute;
    top:50%;
    left:50%;
    z-index:5;
    transform:translate(-50%,-50%);
    pointer-events:none;
}

.card__image {
    position: relative;
}

svg.modal_play_button {
  cursor:pointer;
    position: absolute;
  right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    z-index: 9;
    display: none;

}

.noscroll {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    overflow: hidden;
}

.video-modal,
.video-modal .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10001;
}
.video-modal {
	overflow: hidden;
	position: fixed;
	opacity: 0.0;
  -webkit-transform: translate(500%,0%);
  transform: translate(500%,0%);
  -webkit-transition: -webkit-transform 0s linear 0s;
  transition: transform 0s linear 0s;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.video-modal .overlay {
  background: rgba(0, 10, 0, 0.3); /* overlay color */
  opacity: 0.0;
  -webkit-transition: opacity 0.2s ease-out 0.05s;
  transition: opacity 0.2s ease-out 0.05s;
}
.video-modal-content {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 10002;
	margin: 0 auto;
	overflow-y: visible;
	background: transparent;
  width: calc(100% - 12em);
  height: 0;
  padding-top: calc((100% - 12em) * 0.5625); /* 16:9 calc */
}
/* Scaling to fit within the current Viewport size:
   When viewport aspect ratio is greater than 16:9
   work off the height instead of the width for calc */
@media (min-aspect-ratio: 16/9) {
  .video-modal-content {
    width: 0;
    height: calc(100vh - 10em);
    padding-top: 0;
    padding-left: calc((100vh - 10em) * 1.7778); /* 16:9 calc */
  }
}
/* Mobile Layout Tweaks - side margins reduced */
@media (max-width: 640px) {
	.video-modal-content {
		width: calc(100% - 1em);
    padding-top: calc((100% - 1em) * 0.5625); /* 16:9 calc */
	}
}
/* modal close button */
.close-video-modal {
	display: block;
    position: absolute;
    left: 0;
    top: -40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
/* set the iframe element to stretch to fit its parent element */
.modal-video, #video-modal-content .hs-video-widget {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: #000;
	box-shadow: 0px 2px 16px rgba(0,0,0,0.5);
}
/* show the modal: 
   add class to the body to reveal */
.show-video-modal .video-modal {
	opacity: 1.0;
	transform: translate(0%,0%);
	-webkit-transform: translate(0%,0%);
}
.show-video-modal .video-modal .overlay {
	opacity: 1.0;
}
.show-video-modal .video-modal-content {
	transform: translate(0%,0%);
	-webkit-transform: translate(0%,0%);
}