@charset "utf-8";
/* CSS Document */
/***************************************************
	ONE-PAGE STRUCTURE
***************************************************/
.video-background {
	position: fixed;
	    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
	width: 100%;
}

.video-background video {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

@media (min-aspect-ratio: 16/9) {
.video-background video {
height: 220%;
    top: -54%;
  }
}

@media (max-aspect-ratio: 16/9) {
.video-background video {
    width: 150%;
  }
}

/*@media (max-width: 767px) {
.video-background {
    background: url('../img/videoframe.jpg') center center / cover no-repeat;
  }

.video-background video {
    display: none;
  }
}*/

section#s0, section#s1, section#s2, section#s3, section#s4, section#s5, section#s6  {
	height: 100vh;
	width: 100vw;
	  display: flex;
  flex-direction: column;
  justify-content: center;
	position: relative;
}

.content h1, .content h2, .content p {
	color: #fff;
}

.content p {
	margin-bottom: 40px;
}
.circle {
	  width: 25px;
  height: 25px;
	 position: absolute;
    left: -35px;
    top: 35px;
}
.pulsating-circle {
  position: absolute;
    left: 12px;
    top: 10px;
  transform: translateX(-50%) translateY(-50%);
  width: 25px;
  height: 25px;
}
  .pulsating-circle:before {
    content: '';
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #383C4A;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  
  .pulsating-circle:after {
    content: '';
    position: absolute;
    left: 0; 
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #383C4A;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
  }


@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.8);
  }
}

.circle:before {
    content: "";
    height: 100vh;
    width: 1px;
    background: #383C4A;
    position: absolute;
    left: 12px;
	bottom: 9px;
}

.circle:after {
    content: "";
    height: 100vh;
    width: 1px;
    background: #383C4A;
    position: absolute;
    left: 12px;
}

#s1 div.circle:before {
	display: none;
}

#s5 div.circle:after {
	display: none;
}

.content h2 {
    width: fit-content;
    border-bottom: 1px solid #fff;
        padding-bottom: 15px;
    padding-right: 50px;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 8px;
}

.content a {
	text-transform: uppercase;
	color: #FFA69E;
	padding: 10px 16px;
	transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
	cursor:pointer;
	border: 1px solid #FFA69E;
		border-radius: 3px;

}

.content a:hover {
	background: #FFA69E;
	color: #333;
	text-decoration: none;
}

/***************************************************
	NAVIGATION
***************************************************/
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-section {
  min-height: 100%;
  position: relative;
  padding: 2em 0;
}
.cd-section:nth-of-type(odd) {
  background-color: #3e3947;
}
.cd-section:nth-of-type(odd) p {
  color: #898099;
}
.cd-section:nth-of-type(even) {
  background-color: #745360;
}
.cd-section:nth-of-type(even) p {
  color: #bda3ad;
}
.cd-section h1, .cd-section p {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 768px;
  text-align: center;
}
.cd-section h1 {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  .cd-section h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
  }
}

.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 38px;
  height: 44px;
  background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}

/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

 #cd-vertical-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
 #cd-vertical-nav li {
  text-align: right;
}
 #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
 #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
 #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
 #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
 #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
 #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
 #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 30px;
    width: 30px;
  border-radius: 50%;
  background-color: #383C4A;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
	 opacity: 0.8;
}
 #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  padding: .4em .5em;
  color: white;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger, .touch #cd-vertical-nav {
    bottom: 40px;
  }
}



/***************************************************
	MODALS
***************************************************/
.modal-dialog {
    z-index: 999;
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0px;
	

}
.close {
	    font-size: 3rem;
    margin-top: 5px;
    margin-right: 25px;
	    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    color: #fff;
    z-index: 2;
    position: relative;
    opacity: 1;
}
.modal-content {	
    height: auto;
    opacity: 0.95;
	background-color: rgba(56,60,74, 0.98);
	padding: 40px;
}

.modal-footer {
	border: none;
	margin-top: 20px;
	margin-bottom: 40px;
}

.modal-body {
	margin-top: 75px;
}

.modal-backdrop {
	z-index: 1;
}

/* FACTS */
.fact {
	padding: 50px;
	margin-bottom: 10px;
	border: 1px solid #FFA69E;
	border-radius: 2px;
}

.modal-content li {
	list-style: circle;
	margin-bottom: 20px;
}


/***************************************************
	S0.BANNER
***************************************************/
section#s0 {
	background-attachment: fixed;
	background-size: cover;
	color: #fff;
}

section#s0 h1 {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 5rem;
	letter-spacing: 1rem;
}

section#s0 p {
	font-size: 1.5rem;
}
@-webkit-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@-moz-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
 .scroll-btn {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	 bottom: 50px;
}
.scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite;
}

/***************************************************
    S1.Mural Wall
***************************************************/
section#s1 {
	background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.1), rgba(0,0,0,0)), url('https://media.defense.gov/2019/Jan/08/2002077697/-1/-1/1/190108-D-ZZ999-002.JPG') center center;
	background-size: cover;
		color: #fff;
}

.background-facts {
	background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.5), rgba(0,0,0,.9)), url(/Portals/1/Interactive/2019/01-korean-war/04298r.jpg?ver=2019-06-28-140536-257&timestamp=1561749505221) center center;
	background-size: cover;
	padding:20px;
	text-align: center;
}
/***************************************************
    S2.Pool of Remembrance 
***************************************************/
section#s2 {
		color: #fff;
	overflow: hidden;
}
section#s2 .overlay {
		background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.1), rgba(0,0,0,0));
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}


section#s2 .content {
	z-index: 3;
}

section#s2 .video-background {
	position: absolute;
	    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
	width: 100%;
	height: auto;
	z-index: 1
}

section#s2 .video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

@media (min-aspect-ratio: 16/9) {
section#s2 .video-background video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
section#s2 .video-background video {
    width: 150%;
    left: 0;
  }
}

/*@media (max-width: 767px) {
section#s2 .video-background {
    background: url('../img/videoframe.jpg') center center / cover no-repeat;
  }

section#s2 .video-background video {
    display: none;
  }
}*/
/***************************************************
    S3.Statues
***************************************************/
section#s3 {
	background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.1), rgba(0,0,0,0)),url('https://media.defense.gov/2019/Jan/23/2002082106/-1/-1/1/180830-D-DB155-010.JPG') top center;
	background-size: cover;
		color: #fff;
}
/***************************************************
    S4.United Nations’ Curb
***************************************************/
section#s4 {
	background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.1), rgba(0,0,0,0)),url('https://media.defense.gov/2019/Jan/18/2002081160/-1/-1/1/190111-D-DB155-031.JPG') top center;
	background-size: cover;
		color: #fff;
}

section#s4 ul {
	padding: 20px;
}
/***************************************************
    S5.Kiosk/Korean War Honor Roll
***************************************************/
section#s5 {
	background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.1), rgba(0,0,0,0)),url('https://media.defense.gov/2019/Jan/18/2002081166/-1/-1/1/190119-D-DB155-003.JPG') center center;
	background-size: cover;
		color: #fff;
}

.feature img {
	width: 100%;
	
}

.feature p {
	margin-top: 10px;
	margin-bottom: 20px;
}

/***************************************************
    S6.Dedication Stone
***************************************************/
section#s6 {
	background: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0.7), rgba(0,0,0,.1)),url('https://media.defense.gov/2019/Jan/18/2002081164/-1/-1/1/190111-D-DB155-044.JPG') center center;
	background-size: cover;
		color: #fff;
}

@media ( max-width: 776px) {
.modal-content {
	padding: 0px;
}

.modal-body {
	padding: 0px;
}
	
	.pulsating-circle {
		display:none;
	}
	.video-background {
		display: none;
	}
	
	.video-background video {
		display: none;
	}
	
	#s2 {
		background: url(https://media.defense.gov/2019/Jul/23/2002160557/900/900/1/190723-D-ZZ999-001.JPG) center center;
		background-size: cover;
	}
	
	section#s0 {
	background-attachment: none;
	background: linear-gradient(to right, rgba(0,0,0,.8), rgba(0,0,0,0.5), rgba(0,0,0,.3)), url(https://media.defense.gov/2019/Jul/23/2002160559/900/900/1/190523-D-FW736-0001.JPG) center center;
	background-size: cover;
}
	
	 .scroll-btn {
	display: none;

}
	
	section#s0  {
height: auto;
    width: 100vw;
    padding: 50px 0px;

}

}

@media only screen and (max-width: 500px) {
		section#s0 h1 {
		letter-spacing: 0px;
			margin-top: 50px;
	}
	
	.video-background video {
    width: 300%;
    left: -43%;

}
	
	section#s5 {
    background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.1), rgba(0,0,0,0)),url(https://media.defense.gov/2019/Jan/18/2002081166/900/900/1/190119-D-DB155-003.JPG) left center;
    background-size: cover;
    color: #fff;
	
}
	
	.overlay {
		background: linear-gradient(to right, rgba(0,0,0,5), rgba(0,0,0,0.5), rgba(0,0,0,.2));
	}
	
}