/* Global */
.modular-landing,
.modular-landing .text-container {
	color: #494444;
}

.component-label {
	font-size: 20px;
	text-transform: uppercase;
	font-family:"Univers LT W02 65 Bold";
}

.modular-landing .section-content h2 {
	font-family:"Futura W01 Bold";
	font-size: 36px;
	line-height: 46px;
} 

.modular-landing .section-content h3 {
	font-family:"Futura W01 Bold";
	font-size: 22px;
	line-height: 36px;
} 

.modular-landing .section-content p {
	font-size: 22px;
	line-height: 34px;
}

@media screen and (max-width: 1000px){
	.modular-landing .section-content h2 {
		font-size: 24px;
		line-height: 36px;
	} 
	
	.modular-landing .section-content p {
		font-size: 18px;
		line-height: 30px;
	}
}

/* Banner */
.modular-landing .banner {
	width: 100%;
	height: calc(100vh - 150px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.modular-landing .banner-wrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	background: rgba(74,74,74,0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.modular-landing .banner .title-decoration {
	width: 50px;
}

.modular-landing .banner h1 {	
  color: #fff;
  max-width: 900px;
  text-align: center;
  font-weight: bold;
  font-size: 48px;
  font-family: 'Univers LT W02 65 Bold';
  letter-spacing: 1px;
  margin: 30px 15px 15px;
  line-height: 60px;
}

.modular-landing .banner p {
	color: #fff;
  max-width: 900px;
  text-align: center;
  font-size: 22px;
  padding: 40px;
  line-height: 30px;
}

.modular-landing .banner .scroll-down {	
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #fff;
    position: absolute;
    bottom: 20px;
    cursor: pointer;
}

.modular-landing .banner .scroll-down img {
	margin: 5px;
}

@media screen and (max-width: 1000px){
	
	.modular-landing .banner {
		height: auto;
	}
	
	.modular-landing .banner-wrapper {
		padding: 60px 0;
	}

	.modular-landing .banner .scroll-down {
		display: none;
	}
	
	.modular-landing .banner h1 {	
	  font-size: 36px;
	  margin: 30px 15px;
	  line-height: 48px;
	}
	
	.modular-landing .banner p {
	  font-size: 20px;
	  line-height: 30px;
	  padding: 15px;
	}
}

/* Statistic */
.modular-landing section.statistic .text-container>.section-content.text-white,
.modular-landing section.statistic .text-container>.section-content.text-white h2 {
	color: #fff !important;	
}

.modular-landing section.statistic .section-wrapper {
	max-width: 1100px;
	display: flex;
	flex-direction: row;
	margin: auto;
	padding: 100px 30px;
}

.modular-landing section.statistic .icon-container {
  flex-basis: 25%;
  flex-grow: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1000px){
	.modular-landing section.statistic .section-wrapper {
		flex-direction: column;
		padding: 50px 30px;
	}
	
	.modular-landing section.statistic .icon-container {
		text-align: center;
		margin-bottom: 30px;
	}
}

/* Video */
.modular-landing section.video {
	padding: 50px;
}

.modular-landing section.video .section-wrapper {
	display: flex;
}

.modular-landing section.video .text-container {
	flex-basis: 55%;
	flex-grow: 0;
	flex-shrink: 1;
	padding: 50px 7vw;
}

.modular-landing section.video .modular-video-container {
	flex-basis: 45%;
	flex-shrink: 0;
	position: relative;
}

.modular-landing section.video .modular-video-container img {
	width: 100%;
	height: auto;
	display: block;
}

.modular-landing section.video .video-preview {
	position: absolute;
	top: 0;
	margin: 50px;
	text-align: center;
}

.play-icon-wrapper {
	width: 125px;
	height: 125px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modular-landing section.video .play-icon.large {
  border-radius: 50%;
  background-color: #fff;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  transition: height 200ms ease-in, width 200ms ease-in; 
}

.modular-landing section.video .play-icon.small {
  border-radius: 50%;
  background-color: #fff;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  display: none;
}

.modular-landing section.video .play-icon.large:hover {
  width: 110px;
  height: 110px;
}



.modular-landing section.video a{
	text-decoration: none;
	color: #fff;
}

@media screen and (max-width: 1000px){
	.modular-landing section.video {
		padding: 0;
		margin-bottom: 50px;
	}
	
	.modular-landing section.video .section-wrapper {
		flex-direction: column;
		padding: 0;
	}
	
	.modular-landing section.video .text-container {
		padding: 50px 15px;
	}
	
	.modular-landing section.video .video-preview {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
		width: 100%;
		height: 100%;
	}
	
	.modular-landing section.video a {
		display: flex;
		width: 100%;
		height: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.play-icon-wrapper {
		width: 90px;
		height: 90px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.modular-landing section.video .play-icon{
	  width: 80px;
	  height: 80px;
	}
	
	.modular-landing section.video .play-icon.small {
		display: flex;
	}
	
	.modular-landing section.video .play-icon.large {
		display: none;
	}
	
	.modular-landing section.video .play-icon:hover{
	  width: 75px;
	  height: 75px;
	}
}

/* Featured Content */
.modular-landing section.featured-content {
	margin-bottom: 100px;
}

.modular-landing section.featured-content a.slide-title-link {
	text-decoration: none;
	color: #494444;
}

.modular-landing section.featured-content a.slide-title-link:hover {
	color: #e58e1a;
}

.modular-landing section.featured-content .text-wrapper {
	max-width: 1100px;
	margin: auto;
}

.modular-landing section.featured-content .text-container {
	padding: 100px 50px 300px;
	background: #ededee;
}

.modular-landing section.featured-content .slides-container {
	padding: 50px;
	max-width: 1100px;
	margin: -300px auto 0;
	background: transparent;
	position: relative;	
}

.modular-landing section.featured-content .slides-container.drag {
	cursor: grab;
}

.arrow {
	position: absolute;
	z-index: 10;
	top: 50%;
	cursor: pointer;
}

.arrow.prev {
	left: -30px;
	transition: left 200ms ease-in; 
}

.arrow.prev:hover {
	left: -35px;
}

.arrow.next {
	right: -30px;
	transition: right 200ms ease-in;
}

.arrow.next:hover {
	right: -35px;
}

.arrow.hidden {
	display: none;
}

.dots-wrapper {
	display: none;
}

.dots-wrapper svg.svg-dot {
	width: 15px;
	opacity: 0.3;
	margin: 5px;
	height: 20px;
}

.dots-wrapper svg.svg-dot.active {
	opacity: 1;
}

.modular-landing section.featured-content .slide-img-wrapper {
	position: relative;
	margin-bottom: 15px;
	/* max-height: 500px; */
	overflow: hidden;
}


.modular-landing section.featured-content .slide-count {
	font-family:"Futura W01 Bold";
	font-size: 22px;
	margin: 15px;
	position: absolute;
	top: 0;
	left: 0; display: none;
}

.slide-nav-container {
  display: flex;
  justify-content: space-between;
  margin-top: -350px;
  padding: 0 30px 350px;	
}

.slide-nav-container button {
	border: none;
	background: transparent;
}

@media screen and (max-width: 1250px) {
	.arrow.prev {
		left: -10px;
	}
	
	.arrow.prev:hover {
		left: -13px;
	}
	
	.arrow.next {
		right: -10px;
	}
	
	.arrow.next:hover {
		right: -13px;
	}
	
	.modular-landing section.featured-content .slide-img-wrapper {
		/* max-height: 450px; */
	}
	
}


@media screen and (max-width: 1000px) {
	.modular-landing section.featured-content .text-container {
		padding: 50px 15px 300px;
		background: #ededee;
	}
	
	.modular-landing section.featured-content .slides-container {
		padding: 50px 15px 0;
		margin: -300px auto 0;
	}
	
	.arrow {
		display: none !important;
	}
	
	.dots-wrapper {
		display: flex;
		justify-content: center;
		margin-bottom: 50px;
		margin-top: 15px;
	}
}

/* Featured Photo Content */

.modular-landing section.featured-photo-content {
	padding: 0;
	position: relative;
}

.modular-landing section.featured-photo-content .text-container {
	margin-left: 20%;
	min-height: 600px;
}

.modular-landing section.featured-photo-content .text-wrapper {
	padding: 100px 13% 100px 40%;
}

.modular-landing section.featured-photo-content .text-wrapper p:not(.component-label),
.modular-landing section.featured-photo-content .text-wrapper h2 {
	color: #fff;
}

.modular-landing section.featured-photo-content .image-container {
	position: absolute;
	top: 100px;
	left: 30px;
	max-width: 45%;
	background-color: transparent  !important;
}

.modular-landing section.featured-photo-content .image-container img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width: 800px){ 
	.modular-landing section.featured-photo-content {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.modular-landing section.featured-photo-content .text-container {
		margin: 0;
		min-height: 100px;
	}
	
	.modular-landing section.featured-photo-content .text-wrapper {
		padding: 30px 15px;
	}
	
	.modular-landing section.featured-photo-content .image-container {
		position: static;
		max-width: none;
	}

}

/* Issue */

section.issue {
	padding: 30px;
}

section.issue .section-wrapper {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

section.issue .text-wrapper {
	background-color: rgba(74,74,74,0.5);
	padding: 100px;
}

section.issue .text-container {
	max-width: 850px;
}

section.issue .text-container p:not(.component-label),
section.issue .text-container h2 {
	color: #fff;
}

section.issue .text-container h2 {
	margin-bottom: 50px;
}

.issue-btn {
	color: #fff;
	padding: 20px;
	border-radius: 15px;
	display: inline-block;
	margin: 50px 0 15px;
	text-decoration: none;
	font-size: 16px;
}

@media screen and (max-width: 800px){ 
	section.issue {
		padding: 30px 0;
	}
	
	section.issue .text-wrapper {
		padding: 30px 15px;
	}
	
	.issue-btn {
		padding: 15px;
		font-size: 15px;
	}
}


/* Presentation */

section.presentation {
	padding: 60px 20px;
	background: linear-gradient(90deg, #EDEDEE 70%, #FFFFFF 30%);
	margin: 100px 0;
}

section.presentation .presentation-wrapper {
	max-width: 1440px;
	margin: auto;
	
}

section.presentation .text-container {
	width: 40%;
	float: left;
	box-sizing: border-box;
	padding: 50px;
}

section.presentation .text-container p {
	padding: 20px 0;
}

.presentation-btn {
	padding: 20px;
	display: inline-block;
	margin: 40px 0;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;	
	font-family: 'Univers LT W02 65 Bold';
	font-size: 16px;
}

section.presentation .slides-container {
	width: 60%;
	float: left;
	box-sizing: border-box;
	padding: 20px;
	position: relative;
}

section.presentation .slide-count {
	font-family:'Futura W02 Heavy';
	font-size: 16px;
	text-align: right;
	padding-top: 20px;
	color: #9e9393;
}

section.presentation .blockarrow {
	position: absolute;
	z-index: 10;
	top: 40%;
	padding: 30px 10px;
}

section.presentation .blockarrow.prev {
	left: 0;
}

section.presentation .blockarrow.next {
	right: 0;
}

section.presentation .slide-count .count-divider {
	font-size: 18px;
	padding: 2px;
}

@media screen and (max-width: 1000px) {
	section.presentation {
		background: #EDEDEE;
	}
	
	section.presentation .slides-container {
		width: 100%;
		float: none;
	}
	
	section.presentation .text-container {
		width: 100%;
		float: none;
		box-sizing: border-box;
		padding: 20px;
	}
	
	section.presentation .text-container p {
		padding: 0;
	}
	
	section.presentation .blockarrow {
		top: 35%;
		padding: 15px 5px;
	}
	
	section.presentation .blockarrow>img {
		width: 15px;
		height: auto;
	}

}