
 #main, body
	{
	padding: 0;
	}

 #header
	{
	background-color: transparent !important;
	*background-image: linear-gradient(180deg, rgba(0,0,0, 0.7), rgba(0,0,0, 0));
	transition: background-color 0.4s ease;
	}

 #main .wrapper
	{
	max-width: 100%;
	}

 #main .trans
	{
	opacity: 0;
	transform: translateY(50px);
	transition: transform 1s ease, opacity 1s ease;
	}
 #main .trans.active
	{
	opacity: 1;
	transform: translateY(0);
	}


/*-------- MAIN PHOTO --------*/

 #main-photo
	{
	position: relative;
	background-color: #e6e6e6;
	}
 #main-photo:after
	{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(0deg, transparent, #001932);
	opacity: 0.8;
	z-index: 10;
	}
 #main-photo:before
	{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	background: linear-gradient(180deg, transparent, #000);
	opacity: 0.8;
	z-index: 10;
	}

 #main-photo img
	{
	display: block;
	width: 100%;
	}

 #main-photo .outer
	{
	position: relative;
	}

 #main-photo h1
	{
	position: absolute;
	left: 0;
	bottom: 44px;
	margin: 0;
	max-width: 700px;
	font-size: 32px;
	font-weight: 400;
	color: #fff;
	text-align: left;
	z-index: 20;
	}


/*-------- CONTENT --------*/

 #content
	{
	margin: 60px 0;
	}

 #content p
	{
	margin: 14px 0;
	line-height: 1.6;
	text-align: left;
	}

 #content h3
	{
	margin: 0 0 10px 0;
	font-family: Unbounded;
	font-size: 28px;
	font-weight: 400;
	color: #081c2b;
	line-height: 1.3;
	}

 #content h4
	{
	margin: 15px 0 10px 0;
	font-size: 16px;
	font-weight: 600;
	color: #081c2b;
	}

 #content a:hover
	{
	text-decoration: underline;
	}

 #content img
	{
	display: block;
	width: 100%;
	height: 820px;
	object-fit: cover;
	}

 #content table
	{
	display: block;
	}

 #content tr
	{
	margin-top: -60px;
	display: flex;
	align-items: center;
	*justify-content: space-between;
	}
 #content tr:first-child
	{
	margin-top: 0;
	}
 #content tr:nth-child(2n)
	{
	justify-content: flex-end;
	}

 #content td
	{
	position: relative;
	padding: 0;
	max-width: 45%;
	}

 #content td p
	{
	margin: 10px 0;
	}

 #content tr:nth-child(2n-1) td:last-child
	{
	padding-left: 80px;
	}
 #content tr:nth-child(2n) td:first-child
	{
	padding-right: 80px;
	}
/*
 #content tr:nth-child(2n-1) td:first-child:after,
 #content tr:nth-child(2n) td:last-child:after
	{
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0,25,50, 0) 0%, rgba(0,25,50, 0) 50%, #001932 100%);
	transition: opacity 0.2s ease;
	}

 #content td:hover:after
	{
	opacity: 0;
	}
*/


/*-------- MAIN PHOTO MOBILE --------*/

@media (max-width: 980px) 
 {
 #main-photo h1
	{
	font-size: 30px;
	bottom: 30px;
	}
 }

@media (max-width: 768px) 
 {
 #main-photo
	{
	height: 360px;
	}

 #main-photo img
	{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

 #main-photo h1
	{
	font-size: 26px;
	}
 }

@media (max-width: 480px) 
 {
 #main-photo
	{
	height: 60vh;
	}

 #main-photo h1
	{
	bottom: 15px;
	font-size: 20px;
	}
 }


/*-------- CONTENT MOBILE --------*/

@media (max-width: 1500px) 
 {
 #content td
	{
	max-width: 48%;
	}

 #content tr:nth-child(2n-1) td:last-child
	{
	padding-left: 36px;
	}
 #content tr:nth-child(2n) td:first-child
	{
	padding-right: 36px;
	}
 }

@media (max-width: 980px) 
 {
 #content
	{
	margin: 40px 0;
	}

 #content tr
	{
	margin: 20px 0;
	flex-wrap: wrap;
	}

 #content tr:nth-child(2n)
	{
	flex-direction: column-reverse;
	}

 #content td
	{
	flex: 0 0 100%;
	min-width: 100%;
	max-width: 100%;
	padding: 0 !important;
	}

 #content img
	{
	height: 450px;
	}

 #content h3
	{
	margin-top: 30px;
	font-size: 24px;
	}

 #main .trans
	{
	transform: none;
	}
 }

@media (max-width: 480px) 
 {
 #content
	{
	margin: 30px 0;
	}

 #content p
	{
	margin: 8px 0;
	font-size: 15px;
	line-height: 1.4;
	}

 #content h3
	{
	margin-top: 15px;
	font-size: 20px;
	}

 #content h4
	{
	font-size: 15px;
	}

 #content td:after
	{
	display: none;
	}

 #content img
	{
	margin: 0 -15px;
	width: calc(100% + 30px);
	height: 300px;
	}
 }
