.WorkDetail {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);

	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 10000;
	position: fixed;
	padding-top: 10px;

	display: none;
	justify-content: center; 
	align-items: center; 
}

.WorkDetail-Content {
	width: 80%;
	height: 70%;
	border-radius: 10px;
	background-color: #1A1A1A;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px;

}

.WorkDetail-Content-Absolute {
	width: 80%;
	height: 70%;
	border-radius: 10px;
	background-color: none;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-end;
	margin-bottom: 50px;
	margin-right: -50px;

}

.WorkDetail-Container {

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;

}

.WorkDetail-Close {

	padding-bottom: -10px;
	max-width: 24px;
	max-height: 24px;

	top: 0;
	left: 0;
	width: 80%;
	height: 70%;

}

.WorkDetail-Close img {

	width: 100%;
	height: 100%;
  	cursor: pointer;
}

.WorkDetail-Text {
	padding-left: 50px; 
	height: 100%;
	max-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1000;
}

.WorkDetail-Title {
	font-size: 48px;
}

.WorkDetail-Links {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;

	margin-top: 10px;
	width: 50%;
}

.WorkDetail-Call {
	font-size: 24px;
	font-weight: bold;
	padding-right: 20px; 
}

.WorkDetail-ImageLink {
	width: 24px;
	height: 24px;
	padding-right: 20px; 
}

.WorkDetail-ImageLink img {
	width: 100%;
	height: 100%;
  	cursor: pointer;
}

.WorkDetail-Seprator {
	max-width: 70%;
	height: 1px;
	margin-top: 20px;
	background-color: #E0E0E0;
}

.WorkDetail-Description {
	margin-top: 20px;
	max-width: 100%;
	overflow: auto;
}

.WorkDetail-CloseText { 
	display: none;
}

.swiper-container {
  width: 33%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: none;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  width: 100%;
  height: auto;
  min-height: 70vh;
  overflow: auto;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/**
.swiper-button-prev {
    color: white !important; 
}

.swiper-button-next {
    color: white !important; 
}*/