
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  height: 100vh;
  display: flex;  
  background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));
  background: linear-gradient(180deg, #333, #111);
}

section{
  position: relative;  
  height: 310px;
  width: 100%;
  display: flex;
  align-items: center;
}

podcastPlayer {
  width: 100hv;
}

.swiper{
  width: 950px;
}

.card{
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card::before{
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  background: #000;
  border-radius: 20px 20px 0 0;
}

.card .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 100;
}

section .card .image{
  height: 140px;
  width: 140px;
  border-radius: 50%;
  padding: 3px;
  background: #b2ff00;
}

section .card .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.card .media-icons{
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card .media-icons i{
  color: #fff;
  opacity: 0.6;
  margin-top: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card .media-icons i:hover{
  opacity: 1;
}

.card .name-profession{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  color: ;
} 

.name-profession .name{
  font-size: 20px;
  font-weight: 600;
}

.name-profession .profession{
  font-size:15px;
  font-weight: 500;
}

.card .rating{
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.card .rating i{
  font-size: 18px;
  margin: 0 2px;
  color: #FF676D;
}

.card .button{
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.card .button button{
  background: #000;
  outline: none;
  border: none;
  color: #b2ff00;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button button:hover{
  color: #fff;
  background: #3d4e15;
}

.swiper-pagination{
  position: absolute;
}

.swiper-pagination-bullet{
  height: 7px;
  width: 26px;
  border-radius: 25px;
  background: #b2ff00;
}

.swiper-button-next, .swiper-button-prev{
  opacity: 0.7;
  color: #b2ff00;
  transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
  opacity: 1;
  color: #b2ff00;
}
.credit a{
  text-decoration: none;
  color: #b2ff00;
  font-weight: 800;
}
.credit {
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.chatButton {
	box-shadow:inset 0px 1px 0px 0px #30332e;
	background:linear-gradient(to bottom, #40423d 5%, #000000 100%);
	background-color:#40423d;
	border-radius:6px;
	border:1px solid #6b9900;
	display:inline-block;
	cursor:pointer;
	color:#b3ff00;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:2px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #000000;
}
.chatButton:hover {
  color:#b3ff00;
	background:linear-gradient(to bottom, #000000 5%, #40423d 100%);
	background-color:#000000;
}
.chatButton:active {
  color:#b3ff00;
	position:relative;
	top:1px;
}
.radio-button {
  background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));
  background: linear-gradient(180deg, #333, #111);
  width: 110px;
  height: 40px;
  border: 1px #222 solid;
  margin: 1px;
}
.radio-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#000));
  background: linear-gradient(180deg, #333, #000);  
}
.radio-button:active {
  background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#000));
  background: linear-gradient(180deg, #000, #111);  
}
.radio-button-beta::after {
  content: url('/img/beta.png');
}