/*================================================
Team Area CSS
=================================================*/

.single-team-box {
	margin-bottom: 30px;
	text-align: center;
}
.single-team-box .image {
	position: relative;
	border-radius: 50%;
}
.single-team-box .image img {
	border-radius: 50%;
}
.single-team-box .image .social {
	position: absolute;
	right: 18px;
	bottom: 18px;
}
.single-team-box .image .social span {
	display: inline-block;
	width: 40px;
	height: 40px;
	color: var(--whiteColor);
	border-radius: 50%;
	position: relative;
	font-size: 18px;
	cursor: pointer;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.single-team-box .image .social span i {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-left: -3px;
}
.single-team-box .image .social span:hover {
	color: var(--whiteColor);
}
.single-team-box .image .social ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
	position: absolute;
	right: 0;
	bottom: 95px;
}
.single-team-box .image .social ul li {
	top: 0;
	right: 0;
	display: block;
	position: absolute;
	-webkit-transition: var(--transition);
	transition: var(--transition);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.single-team-box .image .social ul li a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--whiteColor);
	position: relative;
	font-size: 18px;
}
.single-team-box .image .social ul li a i {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-left: -1px;
}
.single-team-box .image .social ul li a.linkedin {
	background-color: #2867B2;
}
.single-team-box .image .social ul li a.facebook {
	background-color: #4267B2;
}
.single-team-box .image .social ul li a.twitter {
	background-color: #1DA1F2;
}
.single-team-box .image .social ul li a.instagram {
	background: -webkit-gradient(linear, left top, right top, from(#ff3019), to(#c90477));
	background: linear-gradient(to right, #ff3019 0%, #c90477 100%);
}
.single-team-box .image .social ul li:nth-child(1) {
	right: -25px;
	top: 5px;
}
.single-team-box .image .social ul li:nth-child(2) {
	right: -35px;
	top: -47px;
}
.single-team-box .image .social ul li:nth-child(3) {
	right: -30px;
	top: -99px;
}
.single-team-box .image .social ul li:nth-child(4) {
	right: 0;
	top: -143px;
}
.single-team-box .image .social ul li:nth-child(5) {
	right: 45px;
	top: -175px;
}
.single-team-box .image .social:hover ul li {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.single-team-box .content {
	margin-top: 25px;
}
.single-team-box .content h3 {
	font-size: 22px;
	margin-bottom: 7px;
}
.single-team-box .content span {
	display: block;
	font-weight: 700;
}

/*================================================
OS Team Area Style
=================================================*/
.os-team-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
}
.os-team-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--whiteColor);
	opacity: 0.9;
	z-index: -1;
}
.os-team-area .section-title h2 {
	font-size: 36px;
	margin-bottom: 20px;
	font-family: 'Inter', sans-serif;
	color: #000627;
}
.os-team-area .row .os-single-team {
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.os-team-area .row:hover .os-single-team {
	-webkit-filter: blur(2px);
	filter: blur(2px);
}
.os-team-area .row:hover .os-single-team:hover {
	-webkit-filter: blur(0);
	filter: blur(0);
}
.os-single-team {
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}
.os-single-team h3 {
	font-size: 20px;
	font-family: 'Inter', sans-serif;
	color: #000627;
}
.os-single-team span {
	color: var(--paragraphColor);
}
.os-single-team img {
	margin-bottom: 20px;
}
.os-single-team .os-team-content {
	background-color: var(--whiteColor);
	-webkit-box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13);
	box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13);
	padding: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-right: 30px;
	margin-left: 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.os-single-team .os-team-content h3 {
	margin-bottom: 4px;
	font-family: 'Inter', sans-serif;
	color: #000627;
}
.os-single-team .os-team-content .social-links {
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 20px;
}
.os-single-team .os-team-content .social-links li {
	display: inline-block;
	margin-right: 5px;
}
.os-single-team .os-team-content .social-links li a {
	display: block;
	background-color: #081040;
	width: 35px;
	height: 35px;
	text-align: center;
	color: var(--whiteColor);
	font-size: 18px;
	position: relative;
}
.os-single-team .os-team-content .social-links li a i {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.os-single-team .os-team-content .social-links li a:hover {
	background-color: #67a504;
	color: var(--whiteColor) !important;
}
.os-single-team .os-team-content .social-links li:last-child {
	margin-right: 0;
}
.os-single-team:hover .os-team-content {
	visibility: visible;
	opacity: 1;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .single-team-box .image .social {
		right: 22px;
		bottom: 22px;
	}
	.single-team-box .image .social span {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
	.single-team-box .image .social ul {
		bottom: 50px;
	}
	.single-team-box .image .social ul li {
		position: relative;
		margin-top: 10px;
	}
	.single-team-box .image .social ul li a {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
	.single-team-box .image .social ul li:nth-child(1) {
		right: 0;
		top: 0;
	}
	.single-team-box .image .social ul li:nth-child(2) {
		right: 0;
		top: 0;
	}
	.single-team-box .image .social ul li:nth-child(3) {
		right: 0;
		top: 0;
	}
	.single-team-box .image .social ul li:nth-child(4) {
		right: 0;
		top: 0;
	}
	.single-team-box .image .social ul li:nth-child(5) {
		right: 0;
		top: 0;
	}
	.single-team-box .content {
		margin-top: 20px;
	}
	.single-team-box .content h3 {
		font-size: 17px;
	}
	.single-team-box .content span {
		font-size: 13px;
	}
    .os-team-area::before {
		background-color: #f7ffeb;
	}

}

/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-team-box .image .social {
		right: 18px;
		bottom: 18px;
	}
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-team-box .image .social {
		right: 20px;
		bottom: 35px;
	}
	.single-team-box .content h3 {
		font-size: 20px;
	}
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-team-box .image .social {
		right: 30px;
		bottom: -10px;
	}
}