:root{
	--body-text-color: #333333;
}
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}

html{
	font-size: 18px;
}

body {
	font-family: "Lato", "Open Sans",'Roboto',"Lucida Grande", "Lucida Sans Unicode", Helvetica, sans-serif;
	line-height: 1.5;
    font-style: normal;
    font-size:1rem;
	color: var(--body-text-color);
	background-color:#F4F5F6;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
a{
	text-decoration: none;
	color:inherit;
	-webkit-transition: 0.3s; /* Safari */
    transition: 0.3s;
    cursor: pointer;
}
a:hover{
	color:#648487;
}

.my-body-noscroll{
	overflow: hidden;
}

/* Font Book */
h1{
	font-family:"Raleway", sans-serif;
	font-size:3.75rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 1;

	margin-bottom:10px;
}
h2{
	font-family:"Raleway", sans-serif;
	font-size:2.25rem;
	line-height: 1.2;
}
h3{
	font-family:"Raleway", sans-serif;
	font-size:1.75rem;
	line-height: 1.2;
}
h4{
	font-family:"Raleway", sans-serif;
	font-size:1.3rem;
	line-height: 1.2;
}

p{
	font-family: "Lato", "Open Sans",'Roboto',"Lucida Grande", "Lucida Sans Unicode", Helvetica, sans-serif;
	font-size:1rem; /*16*/
}

br {
	content:"";
	margin-top: 1rem;
	display: block;
}

@media only screen and (max-width: 1600px) {
}
@media only screen and (max-width: 1024px) {
    html {
        font-size:16px;
    }
}
@media only screen and (max-width: 767px) {
	h1{
		font-size:3rem;
	}
}
@media only screen and (max-width: 480px) {
	h3{
        font-size:1.5rem;
    }
    h4{
    	font-size:1.25rem;
    }
}


/* Header
-----------------------------------------------------------------------------*/
.header {
	width:100%;
}

/* Middle
-----------------------------------------------------------------------------*/
.container{
	width:100%;
}
	.navigationBar{
		position: absolute;
		z-index: 2;
	}
		.menuBtn{
			position: absolute;
			z-index: 2;
			left:100px;
			top:100px;
			width:30px;
			height:30px;

			display: -webkit-flex;
	 		display:         flex;
	  		-webkit-align-items: center;
	        align-items: center;
			-webkit-justify-content: center;
	        justify-content: center;

	        transform: scale(0.75);
	        transform-origin: 0 50%;
		}
		.menuBtn.homepage{
	        padding: 34px;
    		margin: -15px -15px;
		}
		.homepage_btn:hover,
		.menuBtn:hover{
			opacity: 0.7;
		}
			.bar1, .bar2, .bar3 {
			    width: 30px;
			    height: 2px;
			    background-color: #FFF;
			    margin: 10px 0;
			    transition: 0.4s;
			}
			.change .bar1 {
			    -webkit-transform: rotate(-45deg) translate(-9px, 9px);
			    transform: rotate(-45deg) translate(-9px, 9px);
			    background-color:#FFF !important;
			}
			.change .bar2 {
				opacity: 0;
				background-color:#FFF !important;
			}

			.change .bar3 {
			    -webkit-transform: rotate(45deg) translate(-8px, -8px);
			    transform: rotate(45deg) translate(-8px, -8px);
			    background-color:#FFF !important;
			}

		.openedNavigation{
			position: fixed;
			opacity:0;
			top:-100vh;
			width:100vw;
			height:100vh;
			padding:100px;
			padding-top:200px;
			color: #FFF;
			background-color: rgba(0,0,0,0.8);
			-webkit-backdrop-filter: blur(6px);
    		backdrop-filter: blur(6px);
			transition: 0.6s;
		}
		.fixed{
			position: fixed !important;
		}
		.expand{
			opacity:1;
			top:0vh;
		}
		.openedNavigation .navBtn{
			margin-bottom: 40px;
		}

	.divider{
		height:1px;
		clear:both;
	}

	.herobanner{
		position:relative;
		width:100%;
		height:100vh;
		margin-bottom:40px;
		padding:0 40px;
		color:#FFF;
		overflow: hidden;

		background-color:#032D48;
		background-image: url("../images/featured_02.png");
		background-position: center center;
		background-size: cover;
	}

	.shadow{
		position: absolute;
		left:-100px;
		bottom:-20px;
		z-index: 0;
		width:1000px;
		height:500px;
		background-image: url("../images/shadow.png");
		background-position: 0 100%;
		background-size: 100%;

		opacity: 0;
	}

	.bannerContent{
		position: absolute;
		z-index: 1;
		left:100px;
		bottom:100px;
	}
	.bannerContent h1{
		margin-left: -2px;
		padding-right:15px;
		max-width: 900px;
	}
	.bannerContent h4{
		max-width:900px;
		padding-right:15px;
	}
		.mainBtn{
			width:210px;
			height:60px;
			border:1px #FFF solid;
			border-radius: 30px;
			margin-top:40px;
			letter-spacing: 2px;

			display: -webkit-flex;
	 		display:         flex;
	  		-webkit-align-items: center;
	        align-items: center;
			-webkit-justify-content: center;
	        justify-content: center;

		}
		.mainBtn:hover{
			color:#FF5E5E;
			background-color:#FFF;
		}

		.primaryBtn{
			min-width:180px;
			padding:15px 30px;
			border:1px #333 solid;
			margin-top:40px;
			text-transform: uppercase;

			display: inline-flex;
	  		-webkit-align-items: center;
	        align-items: center;
			-webkit-justify-content: center;
	        justify-content: center;

	        font-size:0.9rem;
	        font-weight: bold;
	        border-radius: 2px;
	        letter-spacing: 0.1em;

	        color:#FFF;
			background-color:#333;
		}
		.primaryBtn:hover{
			color:#333;
			background-color: transparent;
		}

	.module{
		margin:40px 0;
		padding:0 100px;
	}
		.moduleTitle{
			/*text-transform: uppercase;
			letter-spacing: 1px;*/
		}
		.careerYear{
			display: inline;
			vertical-align: baseline;
			margin-left: 15px;
			color:#999;
			font-weight: bold;
		}
		.contentWrap{
			width:100%;
			overflow: hidden;
		}

			.centreTitle{
				text-align: center;
			}
			.client_list{
				position: relative;
				margin-top:40px;
			}
				.client_logo{
					height:120px;
					margin:0 30px;
					vertical-align: middle;
				}
				.client_logo:hover{
					opacity: 0.7;
				}
				.client_logo img{
					margin:15px auto;
				}
			
			.contentList{
				margin:0 -1.5%;
				width:103%;
				display: -webkit-flex;
	 			display:         flex;
	 			flex-wrap: wrap;
			}
				.contentBlockList{
					-webkit-flex: 1;
	        		flex: 1;
	        		padding:40px 1.5%;
	        		min-width:20%;
	        		max-width:20%;
				}
					.generalTitle{
						padding-bottom: 16px;
					}
					.category{
						color:#648487;

						padding-bottom: 35px;
					}
					.itemImage{
						display: block;
						width:100%;
						background-color:#648487;
						/*background-size:cover;*/
						background-size:178%;
						background-position: 50%;
					}
					.contentBlockList .itemImage{
						padding-top:100%;
						margin-bottom: 40px;
					}
					.contentBlockList .itemImage:hover{
						transform: translate(0, -8px);
						background-size:190%;
					}
					.itemTitle{
						padding-bottom:20px;
					}
					.decoLine{
						width:40px;
						height:3px;
						background-color: var(--body-text-color);
						margin-bottom:20px;
					}
					.date{
						margin-top:20px;
						color:#BBB;
						font-weight: bold;
						text-transform: uppercase;
						font-size: 0.9rem;
					}
		.full_paragraph{
	    	max-width:768px;
	    	padding:80px 0px;
	    	margin:0 auto;
	    }
		/* Display Block Item Block */
		.db_1_col{
			position: relative;
			display:block;
			width:100%;
			padding:40px 0;
		}
		.db_1_col .imageBox{
			position: relative;
			float:left;
			width:75%;
		}
		.db_1_col .imageBox .itemImage{
			padding-top:50%;
		}
		.db_1_col .textBox{
			position: absolute;

	        top:50%;
			right:0px;
			width:33%;
			padding:80px 40px;
			background: #F4F5F6;
			transform: translateY(-50%);

			display: -webkit-flex;
	 		display:         flex;
	  		-webkit-align-items: center;
	        align-items: center;
			-webkit-justify-content: center;
	        justify-content: center;
		}
		.textBox .wrap{
			margin-bottom: 6px;
		}
		.inlineBtn{
			display: inline-block;
			margin-top:15px;
			text-transform: uppercase;
			font-size:0.9rem;
			font-weight: bold;
			border-bottom: 1px #333 solid;
		}

		.ib_2_col{
			position: relative;
			display:block;
			width:100%;
			padding:40px 0;
		}
		.ib_2_col .imageBox{
			position: relative;
			width:75%;
		}
		.ib_2_col .left{
			float:left;
			width:64.6%;
		}
		.ib_2_col .right{
			float:right;
			width:32.3%;
		}
		.ib_2_col .left .itemImage{
			padding-top:50%;
		}
		.ib_2_col .right .itemImage{
			padding-top:100%;
		}

		.ratio_5by5 .left{
			float:left;
			width:42.5%;
		}
		.ratio_5by5 .right{
			float:right;
			width:54.5%;
		}
		.ratio_5by5 .left .itemImage{
			padding-top:100%;
		}
		.ratio_5by5 .right .itemImage{
			padding-top:100%;
		}
		.ratio_5by5 .right .date{
			margin-top: 0px;
			margin-bottom: 10px;
		}

.footerDiv{
	margin-top:30px;
	padding-top:30px;
	padding-bottom:30px;
	background-color:#EBEFF1;
}
.footerDiv .module{
	margin-top:0px;
	margin-bottom:0px;
}
.socialMediaIconGroup{
	margin-top:20px;
	height:40px;
}
	.socialMediaIcon{
		float: left;
		width: 40px;
		height: 40px;
		margin-right:10px;
		background-color: #333;
		background-size:contain;
		background-position:center center;
		border-radius: 20px;
		cursor:pointer;
		-webkit-transition: 0.3s; /* Safari */
    	transition: 0.3s;
	}
	.socialMediaIcon:hover{
		opacity: 0.8;
	}
	#icon_01{
		background-image:url("../images/icon_01.png");	
	}
	#icon_02{
		background-image:url("../images/icon_02.png");
	}
	#icon_03{
		background-image:url("../images/icon_03.png");	
	}


/* Secondary Page*/

.secondaryNavBar{
	position: relative;
	width:100%;
	height:60px;
	background-color:#FFF;
	display: -webkit-flex;
	display:         flex;
	-webkit-align-items: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.10);
}
	.secondaryNavBar .homepage_btn{
		position: absolute;
		left:140px;
		width: 30px;
		height: 30px;
		background-image: url("../images/icon_homepage.png");
		background-position: center;
		background-size: contain;
	}
	.secondaryNavBar .menuBtn{
		position: relative;
		top:0;
	}
	.secondaryNavBar .fixed{
		top: auto;
	}
	.secondaryNavBar .menuBtn div .bar1, .secondaryNavBar .menuBtn div .bar2, .secondaryNavBar .menuBtn div .bar3{
		background-color:#333;
	}

.secondaryHeroBanner{
	position: relative;
	width:100%;
	padding-top:33.3%;
	background-color:#648487;
	background-position: center center;
	background-size:cover;
}

.backBtn{
	display: inline-block;
	margin-top:15px;
	text-transform: uppercase;
	vertical-align: baseline;
	font-size: 0.9rem;
    font-weight: bold;
}
	.leftArrow{
		margin-right: 6px;
	}
	.sliderDisplay{
		position: relative;
		margin-bottom: 5%;
		/*background-image:url(../images/mobile_app_ui_design_01.jpg);*/
		background-position: center center;
		background-size:cover;
	}
	.sliderThumbnail{
		float:left;
		width:17.6%;
		padding-top: 17.6%;
		margin-right: 3%;
		margin-bottom: 3%;
		background-color:#648487;
		background-position: center center;
		background-size:cover;
		cursor: pointer;
		transition: all 0.3s;
	}
	.sliderThumbnail:hover{
		transform: translate(0, -6px);
	}
	.lastChild{
		margin-right: 0;
	}
	.tile {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    overflow: hidden;
	}

	.photo {
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-repeat: no-repeat;
	    background-position: center;
	    background-size: cover;
	    transition: transform .5s ease-out, background-image .2s ease;
	}

@media only screen and (max-width: 1600px) {
    .contentBlockList {
        min-width:25%;
        max-width:25%;
    }
}
@media only screen and (max-width: 1024px) {
	.menuBtn{
		left:40px;
		top:40px;
	}
	.secondaryNavBar .homepage_btn{
		left:80px;
	}
	.openedNavigation{
		padding:40px;
		padding-top:120px;
	}
	.bannerContent{
		left:40px;
		bottom:40px;
	}
	.module{
		padding:0 40px;
	}
    .contentBlockList {
        min-width:33.33%;
        max-width:33.33%;
    }
    	.db_1_col .textBox{
			padding:40px 40px;
		}
}
@media only screen and (max-width: 767px) {
	.menuBtn{
		left:15px;
		top:15px;
	}
	.secondaryNavBar .homepage_btn{
		left:55px;
	}
	.openedNavigation{
		padding:15px;
		padding-top:120px;
	}
	.bannerContent{
		left:15px;
		bottom:40px;
	}
	.module{
		padding:0 15px;
	}
		.careerYear{
			display: block;
			margin-left: 1px;
			margin-top:5px;
		}
	    .contentBlockList {
	        min-width:50%;
	        max-width:50%;
	    }
	    .db_1_col{ /* Display Block Item Block */
	    }
			.db_1_col .imageBox{
				position: relative;
				float:none;
				width:100%;
			}
			.db_1_col .imageBox .itemImage{
				padding-top:50%;
			}
			.db_1_col .textBox{
				position: relative;
				width:100%;
				padding:20px 0;
				background: #F4F5F6;
				transform: none;
			}
			.ib_2_col .left, .ib_2_col .right{
				position: relative;
				width:100%;
				margin-bottom:40px;
			}
			.ib_2_col .left .itemImage, .ib_2_col .right .itemImage{
				padding-top: 50%;
			}
			.ratio_5by5 .left .itemImage, .ratio_5by5 .right .itemImage{
				padding-top: 100%;
			}

	.secondaryHeroBanner{
		padding-top:56.25%;
	}
}
@media only screen and (max-width: 480px) {
	/*.menuBtn{
		left:10px;
		top:10px;
	}
	.bannerContent{
		left:10px;
		bottom:10px;
	}
	.module{
		padding:0 10px;
	}*/
		.moduleTitle{
		}

    .contentBlockList{
    	min-width:100%;
        max-width:100%;
        padding-bottom: 40px;
    }
    .contentBlockList .itemImage{
		padding-top:56.25%;
		margin-bottom: 30px;
	}
		.itemTitle{
			padding-bottom: 0px;
			border-bottom: none; 
			margin-bottom:15px;
		}
		.decoLine{
			margin-bottom:20px;
		}
		.contentBlockList p{

		}
		.date{
			margin-top:20px;
		}
		/*.db_1_col .imageBox{
			width:calc(100% + 10px*2);
			margin-left: -10px;
		}*/
		.ib_2_col .left, .ib_2_col .right{
			position: relative;
			width:100%;
			margin-bottom:30px;
		}

	.secondaryHeroBanner{
		padding-top:56.25%;
	}
}





.tempbox{
	width:100px;
	height:100px;
	background-color:#FCF;
}

section {
  opacity: 0;
  transform: translate(0, 20px); 
  transition: all 1s;
}

section.visible {
  opacity: 1;
  transform: translate(0, 0); 
}
