/* fx-sl-team */
.fx-sl-team {
	display: block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-team .holder {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 450px;
	padding: 0;
	margin: 0 0 40px 0;
	position: relative;
}

.fx-sl-team .holder:last-child {
	margin: 0;
}

.fx-sl-team .holder .list {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.fx-sl-team .holder .list .item {
	display: block;
	box-sizing: border-box;
	width: 280px;
	height: 100%;
	padding: 0;
	margin: 0 30px 0 0;
	border: 1px solid var(--c_brown);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	background: #fff;
	box-shadow: 0 0 0 1px rgb(68 33 45 / 0%);
	transition: box-shadow 0.2s ease-out;
	cursor: pointer;
}

.fx-sl-team .holder .list .item.touch,
.notouch .fx-sl-team .holder .list .item:hover {
	box-shadow: 0 0 0 1px rgb(68 33 45 / 100%);
}

.fx-sl-team .holder .list .item:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  right: 8px;
  bottom: 8px;  
  border-style: solid;
  border-width: 0 0 18px 18px;
  border-color: transparent transparent var(--c_brown) transparent;
  opacity: 0;
  transition: all 0.2s ease-out;
}

.fx-sl-team .holder .list .item.touch:after,
.notouch .fx-sl-team .holder .list .item:hover:after {
  opacity: 1.0;
}

.fx-sl-team .holder .list .item .photo {
	display: block;
	box-sizing: border-box;
	line-height: 0;
	padding: 0;
	margin: 0 0 40px 0;
}

.fx-sl-team .holder .list .item .photo:last-child {
	margin: 0;
}

.fx-sl-team .holder .list .item .photo img {
	width: 100%;
	max-width: 100%;
	height: auto;
	user-select: none;
}

.fx-sl-team .holder .list .item .about {
	display: block;
	padding: 0 28px;
	margin: 0;
}

.fx-sl-team .holder .list .item .name {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
	text-align: left;
	text-transform: uppercase;
	color: var(--c_brown);
	padding: 0;
	margin: 0 0 10px 0;
}

.fx-sl-team .holder .list .item .name:last-child {
	margin: 0;
}

.fx-sl-team .holder .list .item .role {
	display: block;
	font-size: 16px;
	font-weight: 300;
	line-height: 120%;
	text-align: left;
	color: var(--c_brown);
	padding: 0;
	margin: 0;
}

.fx-sl-team .panel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-team .panel .interface {
	flex: 0 0 auto;
	display: block;
	padding: 0;
	margin: 0 80px 0 0;
}

.fx-sl-team .panel .interface .nav {
	display: block;
	width: 81px;
	height: 40px;
	padding: 0;
	margin: 0;
	position: relative;
	border: 1px solid var(--c_brown);
	background: var(--c_brown);
}

.fx-sl-team .panel .interface .nav .btn-prev,
.fx-sl-team .panel .interface .nav .btn-next {
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	background-color: #fff;
	transition: all 0.2s ease-out;
	cursor: pointer;
	user-select: none;
}

.fx-sl-team .panel .interface .nav .btn-prev.touch,
.fx-sl-team .panel .interface .nav .btn-next.touch,
.notouch .fx-sl-team .panel .interface .nav .btn-prev:hover,
.notouch .fx-sl-team .panel .interface .nav .btn-next:hover {
	background-color: var(--c_brown);
}

.fx-sl-team .panel .interface .nav .btn-prev {
	left: 0;
}

.fx-sl-team .panel .interface .nav .btn-next {
	right: 0;
}

.fx-sl-team .panel .interface .nav .btn-prev svg,
.fx-sl-team .panel .interface .nav .btn-next svg {
	width: 24px;
	height: 24px;
	fill: var(--c_brown);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.fx-sl-team .panel .interface .nav .btn-prev.touch svg,
.fx-sl-team .panel .interface .nav .btn-next.touch svg,
.notouch .fx-sl-team .panel .interface .nav .btn-prev:hover svg,
.notouch .fx-sl-team .panel .interface .nav .btn-next:hover svg {
	fill: #fff;	
}

.fx-sl-team .panel .about {
	flex: 1 1 100%;
	display: block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-team .panel .about .doc {
	display: none;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-team .panel .about .doc.display {
	display: flex;
}

.fx-sl-team .panel .about .doc .col-name {
	flex: 0 0 200px;
	display: block;
}

.fx-sl-team .panel .about .doc .col-name .name {
	display: block;
	font-size: 30px;
	font-weight: 700;
	line-height: 120%;
	text-align: left;
	text-transform: uppercase;
	color: var(--c_brown);
	padding: 0;
	margin: 0 0 10px 0;
}

.fx-sl-team .panel .about .doc .col-name .name:last-child {
	margin: 0;
}

.fx-sl-team .panel .about .doc .col-name .role {
	display: block;
	font-size: 16px;
	font-weight: 300;
	line-height: 120%;
	text-align: left;
	color: var(--c_brown);
	padding: 0;
	margin: 0;
}

.fx-sl-team .panel .about .doc .col-bio {
	display: block;
	max-width: 300px;
}

.fx-sl-team .panel .about .doc .col-bio p {
	display: block;
	font-size: 14px;
	font-weight: 300;
	line-height: 180%;
	text-align: left;
	color: var(--c_brown);
	padding: 0;
	margin: 0;
}

.fx-sl-team .panel .about .doc .col-spec {
	display: block;
}


.fx-sl-team .panel .about .doc .col-lang {
	display: block;
}

.fx-sl-team .panel .about .doc .prop-list-name {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 120%;
	text-align: left;
	color: var(--c_brown);
	padding: 0;
	margin: 0 0 10px 0;
	user-select: none;
}

.fx-sl-team .panel .about .doc .prop-list-name:last-child {
	margin: 0;
}

.fx-sl-team .panel .about .doc ul.prop-list {
	display: block;
	box-sizing: border-box;
	padding: 0 0 0 8px;
	margin: 0;
}

.fx-sl-team .panel .about .doc ul.prop-list li {
	display: block;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 300;
	line-height: 120%;
	text-align: left;
	color: var(--c_brown);
	padding: 0 0 0 10px;
	margin: 0 0 10px 0;
	position: relative;	
}

.fx-sl-team .panel .about .doc ul.prop-list li:last-child {
	margin: 0;
}

.fx-sl-team .panel .about .doc ul.prop-list li::before {
  content: "\2022";
  display: inline-block;
  font-weight: bold;  
  color: var(--c_brown);
  padding: 0;
  margin: 0;
  position: relative;
  left: -8px;
}

@media only screen and (max-width: 1152px) {
	.fx-sl-team .panel {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	.fx-sl-team .panel .interface {
		margin: 0 0 40px 0;
	}

	.fx-sl-team .panel .about {
		width: 100%;
	}	
}

@media only screen and (max-width: 960px) {
	.fx-sl-team .panel .about .doc {
		flex-wrap: wrap;
	}

	.fx-sl-team .panel .about .doc .col-name {
		flex: 1 1 auto;
		width: 100%;
		margin: 0 0 25px 0;
	}

	.fx-sl-team .panel .about .doc .col-name .name {
		text-align: center;
		margin: 0 0 5px 0;
	}

	.fx-sl-team .panel .about .doc .col-name .name br {
		display: none;
	}

	.fx-sl-team .panel .about .doc .col-name .role {
		text-align: center;
	}

	.fx-sl-team .panel .about .doc .col-name .role br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {

	.fx-sl-team .holder {
		height: 400px;
	}

	.fx-sl-team .holder .list .item {
		width: 240px;
	}

	.fx-sl-team .holder .list .item .photo {
		margin: 0 0 30px 0;
	}

	.fx-sl-team .panel .about .doc {
		justify-content: space-around;
	}

	.fx-sl-team .panel .about .doc .col-bio {
		width: 100%;
		max-width: none;
		padding: 0 5%;
		margin: 0 0 25px 0;
	}

	.fx-sl-team .panel .about .doc .col-bio p {
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	.fx-sl-team .panel .about .doc {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
	}	

	.fx-sl-team .panel .about .doc .col-name .name {
		font-size: 24px;
	}

	.fx-sl-team .panel .about .doc .col-spec {
		margin: 0 0 25px 0;
	}

	.fx-sl-team .panel .about .doc .prop-list-name {
		text-align: center;
	}

	.fx-sl-team .panel .about .doc ul.prop-list li {
		text-align: center;
		padding: 0;
	}	
}

/* fx-sl-image */
.fx-sl-image {
	display: block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-image .cols {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-end;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-image .cols .holder {
	flex: 1 1 100%;
	box-sizing: border-box;
	height: 550px;
	padding: 0;
	margin: 0;
	position: relative;
}

.fx-sl-image .cols .holder .list {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;	
	position: absolute;	
	right: 0;
	top: 0;
}

.fx-sl-image .cols .holder .list .item {
	display: block;
	box-sizing: border-box;
	width: 860px;
	height: 550px;
	line-height: 0;
	padding: 0;
	margin: 0 0 0 40px;
	position: absolute;
	right: 0;
	top: 0;
	background: #fff;
	opacity: 0;
	z-index: 4;
	overflow: hidden;
}

.fx-sl-image .cols .holder .list .item img {
	display: block;
	width: 100%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.fx-sl-image .cols .interface {
	flex: 1 1 auto;
	box-sizing: border-box;
	padding: 0;
	margin: 0 0 0 100px;
	z-index: 8;
}

.fx-sl-image .cols .interface .nav {
	display: block;
	width: 81px;
	height: 40px;
	padding: 0;
	margin: 0;
	position: relative;
	border: 1px solid var(--c_brown);
	background: var(--c_brown);
}

.fx-sl-image .cols .interface .nav .btn-prev,
.fx-sl-image .cols .interface .nav .btn-next {
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	background-color: #fff;
	transition: all 0.2s ease-out;
	cursor: pointer;
}

.fx-sl-image .cols .interface .nav .btn-prev.touch,
.fx-sl-image .cols .interface .nav .btn-next.touch,
.notouch .fx-sl-image .cols .interface .nav .btn-prev:hover,
.notouch .fx-sl-image .cols .interface .nav .btn-next:hover {
	background-color: var(--c_brown);
}

.fx-sl-image .cols .interface .nav .btn-prev {
	left: 0;
}

.fx-sl-image .cols .interface .nav .btn-next {
	right: 0;
}

.fx-sl-image .cols .interface .nav .btn-prev svg,
.fx-sl-image .cols .interface .nav .btn-next svg {
	width: 24px;
	height: 24px;
	fill: var(--c_brown);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.fx-sl-image .cols .interface .nav .btn-prev.touch svg,
.fx-sl-image .cols .interface .nav .btn-next.touch svg,
.notouch .fx-sl-image .cols .interface .nav .btn-prev:hover svg,
.notouch .fx-sl-image .cols .interface .nav .btn-next:hover svg {
	fill: #fff;	
}

@media only screen and (max-width: 1152px) {

	.fx-sl-image .cols .holder {
		height: 480px;
	}

	.fx-sl-image .cols .holder .list .item {
		width: 750px;
		height: 480px;
	}

	.fx-sl-image .cols .interface {
		margin: 0 0 0 60px;
	}
}

/* fx-sl-image-mobile */
.fx-sl-image-mobile {
	display: block;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-image-mobile .holder {
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: calc(100% * calc(550 / 860)) 0 0 0;
	margin: 0 0 30px 0;
	position: relative;
}

.fx-sl-image-mobile .holder .item {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	line-height: 0;
	padding: 0;
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
	background: #fff;
	opacity: 0;
	z-index: 4;
	overflow: hidden;
}

.fx-sl-image-mobile .holder .item img {
	display: block;
	width: 100%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.fx-sl-image-mobile .interface {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

.fx-sl-image-mobile .interface .nav {
	display: block;
	width: 81px;
	height: 40px;
	padding: 0;
	margin: 0;
	position: relative;
	border: 1px solid var(--c_brown);
	background: var(--c_brown);
}

.fx-sl-image-mobile .interface .nav .btn-prev,
.fx-sl-image-mobile .interface .nav .btn-next {
	display: block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	background-color: #fff;
	transition: all 0.2s ease-out;
	cursor: pointer;
}

.fx-sl-image-mobile .interface .nav .btn-prev.touch,
.fx-sl-image-mobile .interface .nav .btn-next.touch,
.notouch .fx-sl-image-mobile .interface .nav .btn-prev:hover,
.notouch .fx-sl-image-mobile .interface .nav .btn-next:hover {
	background-color: var(--c_brown);
}

.fx-sl-image-mobile .interface .nav .btn-prev {
	left: 0;
}

.fx-sl-image-mobile .interface .nav .btn-next {
	right: 0;
}

.fx-sl-image-mobile .interface .nav .btn-prev svg,
.fx-sl-image-mobile .interface .nav .btn-next svg {
	width: 24px;
	height: 24px;
	fill: var(--c_brown);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.fx-sl-image-mobile .interface .nav .btn-prev.touch svg,
.fx-sl-image-mobile .interface .nav .btn-next.touch svg,
.notouch .fx-sl-image-mobile .interface .nav .btn-prev:hover svg,
.notouch .fx-sl-image-mobile .interface .nav .btn-next:hover svg {
	fill: #fff;	
}
