/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
}
.container {
  max-width: 1120px;
  width: 100%;
  padding: 10px 0 40px 0;
}
.slide-container {
  margin: 0 30px;
  overflow: hidden;
	
}
.card {
  background: #fff;
  border-radius: 8px;
	aspect-ratio: 1 / 1;
}
.card .image-box {
  height: 200px;
}
.card .image-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}
.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}
.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.profile-details .name {
  font-size: 15px;
  font-weight: 500;
}
.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}
.name-job a{
	color: #000;
	text-decoration:none !important;
	}

.image-box:hover .hist_text{
    opacity:1;
}
.image-box:hover .hist_tit_h2{
    opacity:0;
}
.hist_text {
    position: absolute;
	width:100%;
    bottom: 0;
    opacity: 0;
    padding: 10px 20px 10px 20px;
	background-color:hsla(0,0%,100%,0.7);
}
.hist_text_h2{
	font-family: 'Roboto', sans-serif;
  	font-size: 1em;
	font-weight:600;
	color: #333;
	margin-bottom:10px;
	}
.hist_tit_h2{
	font-family: 'Roboto', sans-serif;
  	font-size: 1.5em;
	font-weight:600;
	text-align: right;
	color: #fff;
	padding:235px 10px 20px 10px;
	margin:10px;
	text-shadow: 1px 1px 2px black, 0 0 1em yellow, 0 0 0.2em yellow;
	}
.hist_text_p{
	font-family: 'Roboto', sans-serif;
  	font-size: 0.9em;
	font-weight:400;
	color: #333;
	line-height: 1.25em;
	}
	
@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }

.slide-container {
  margin: 0 70px;
  overflow: hidden;	
}
}

@media screen and (max-width: 500px) {
  
.image-box:hover .hist_text{
    opacity:1!important;
}
.image-box:hover .hist_tit_h2{
    opacity:1!important;
}
.hist_text {
    opacity: 1;
}
}

