@charset "utf-8";
/* CSS Document */


/*YOUTUBE VIDEO*/
.video {
    position: relative;
    background-image: url("../images/about/dissertation.png");
    background-position: center;
    background-size: cover;
    min-height: 400px;
}

.video::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1; /* Lower z-index */
}

.video::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 2px solid var(--color-white);
    outline-offset: -5px;
    z-index: 3; /* Highest z-index */
}

.caption {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    z-index: 2; /* Middle z-index */
}


@media (max-width: 1400px){
	.video {
		min-height: 430px;
	}
}

@media (max-width: 1200px){
	.video {
		min-height: 450px;
	}
}

@media (max-width: 991px){
	.video {
		display: none;
	}
	
	.watch-video {
		margin-top: -50px;
		font-size: 14px;
		text-transform: uppercase;
	}
	
	.watch-video a {
  		transition: all 0.3s ease-in-out 0s;
	}

	.watch-video a:hover {
	  color: var(--color-secondary);
	  text-decoration: none;
	}
}
		

@media (max-width: 768px){
	.video {
		display: block;
		background-position: top center;
		min-height: 400px;
	}
	
	.watch-video {
		margin-top: 10px;
	}
}

.youtube {
	position: relative;
}

@media (max-width: 991px){
	.youtube {
		margin-bottom: 3em;
	}
}

.bio {
	position: relative;
}

.bio .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.bio .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.bio .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bio .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.bio .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.salisha {
    background-image: url("../images/about/salisha.jpg");
	background-position: top center;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 1400px){
	.salisha {
		min-height: 455px;
	}
}

@media (max-width: 1200px){
	.salisha {
		min-height: 535px;
	}
}

.salisha-kaelyn {
    background-image: url("../images/about/salisha-and-kaelyn.jpg");
	background-position: center;
    background-size: cover;
    min-height: 300px;
	margin-bottom: 1em;
}


























