/*--------------- Typography and Reset CSS ---------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding:0;
}

html{
	font-size: 18px;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'HelveticaNeueLTPro-Cn';
	font-size: 27px;
	font-weight: 400;
	color: #000000;
	line-height: 1.2;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
a:hover{
	text-decoration: none;
}

p{
	line-height: 1.12;
	margin-bottom: 1.2em;
	font-size: 27px;
}

section{
	position: relative;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'BebasNeueBold';
	letter-spacing: 0.025em;
	line-height: 1;
}

h2{
	color: #707070
}

strong,
b{
	font-family: 'HelveticaNeueLTPro-BlkCn';
}

/*--------------- Global Style ---------------*/
.bg-img{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg-1{
	background-image: url(../images/banner.jpg);
}

.bg-2{
	background-image: url(../images/bg2.jpg);
}

.bg-3{
	background-image: url(../images/bg3.jpg);
}

@media (min-width: 1260px){
	.container {
    	max-width: 1210px;
	}
}

.gutter-10{
	margin-right: -5px;
	margin-left: -5px;
}

.gutter-10>.col, 
.gutter-10>[class*=col-]{
	padding-left: 5px;
	padding-right: 5px;
}

.sec-shadow{
	width: 100%;
	height: 75px;
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: 30px;
}

.sec-shadow::before{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	padding-bottom: 13%;
	border-radius: 50%;
	border: 1px solid;
	bottom: 100%;
	left: 0;
	box-shadow: 0 0 75px rgba(0,0,0,.4);
}


/*--------------- Header ---------------*/
.navbar{
	background-color: #000000;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	box-shadow: 5px 0 27px rgba(0, 0, 0, .75);
}

.navbar>.container-fluid{
	padding-left: 0;
	padding-right: 0;
}

.navbar-brand{
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 15px;
	padding-right: 15px;
	background-color: #fff;
}

.navbar-brand img{
	max-width: 100%;
	height: auto;
	display: block;
}

.navbar-nav li a{
	font-size: 18px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.005em;
	font-weight: 400;
	margin-left: .7em;
	margin-right: .7em;
}

.navbar-nav{
	padding-right: 15px;
}

.navbar-toggler{
	outline: 0!important;
	padding: 0;
	border: 0;
}

.menu-toggler-icon {
    position: relative;
    display: block;
    height: 18px;
    width: 45px;
    cursor: pointer;
}

.menu-toggler-icon span{
	display: block;
	width: 70%;
	height: 2px;
	left: 15%;
	border-radius: 1em;
	background: #fff;
	position: absolute;
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.menu-toggler-icon .one{
	top: 0px;
    left: auto;
    right: 15%;
}

.menu-toggler-icon .two{
	top: 8px;
}

.menu-toggler-icon .two:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1em;
    background: #fff;
    width: 100%;
    height: 100%;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-toggler-icon .three{
	top: 16px;
    left: 15%;
}

[aria-expanded="true"] .menu-toggler-icon .one,
[aria-expanded="true"] .menu-toggler-icon .three{
	width: 0%;
}

[aria-expanded="true"] .menu-toggler-icon .two{
    transform: rotate(45deg);
}

[aria-expanded="true"] .menu-toggler-icon .two:before {
    transform: rotate(90deg);
}


/*--------------- Sections ---------------*/
.banner{
	height: 780px;
	position: relative;
	background-position: center bottom;
}

.dedication{
	padding-bottom: 40px;
}

.dedication-img{
	margin-top: -15px;
	max-width: 49%;
}

.dedication-img img{
	max-width: 100%;
	height: auto;
	display: block;
}

.about{
	padding-top: 50px;
	padding-bottom: 50px;
}

.about-content{
	position: relative;
	padding: 30px 30px 10px 35px;
	background-color: rgba(235, 235, 235, .55);
	border: 7px solid rgba(255, 255, 255, .55);
}

.work-life{
	padding-top: 50px;
	padding-bottom: 70px;
}

.wl-item{
	position: relative;
	padding: 15px 10px 10px;
}

.wl-item::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	background-image: url(../images/frame.png);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 100%;
}

.wl-item-img{
}

.wl-item-img img{
	width: 100%;
	height: auto;
	display: block;
}

.wl-item-title{
	position: relative;
	text-align: center;
	height: 50px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
    align-items: center;
}

.wl-item-title h3{
	font-family: 'Southpaw';
	font-size: 24px;
	letter-spacing: 0.025em;
	font-weight: 700;
	margin-bottom: 0;
}

.wl-item.item-1{
	transform: rotate(-5deg);
}

.wl-item.item-2{
	transform: rotate(4deg) translate(-20px, 30px);
}

.wl-item.item-3{
	transform: rotate(-4deg) translate(-35px, 0);
}

.wl-item.item-4{
	transform: rotate(8deg) translate(-45px, 0);
}

.wl-sec-title{
	color: #000;
	margin-bottom: 35px;
}

.mission{
	padding-top: 50px;
}

.gl-item{
	position: relative;
	margin-bottom: 30px;
}

.gl-item-img{
	margin-bottom: 10px;
}

.gl-item img{
	max-width: 100%;
	height: auto;
	display: block;
}

.gl-item h2{
	font-family: 'HelveticaNeueLTPro-MdCn';
	font-size: 30px;
	letter-spacing: 0.01em;
	color: #03b1a9;
	margin-bottom: 5px;
}

.core-value-sec-title{
	text-align: center;
	margin-bottom: 30px;
}

.core-value-item{
	position: relative;
	text-align: center;
	margin-bottom: 40px;
	padding: 0 30px;
}

.core-value-item-icon{
	margin-bottom: 5px;
}

.core-value-item-icon img{
	max-width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.core-value-item h2{
	font-family: 'HelveticaNeueLTPro-MdCn';
	font-size: 30px;
	color: #000000;
	letter-spacing: 0.005em;
	margin-bottom: 0;
	line-height: 1.3;
}

.core-value-item p{
	color: #000;
	letter-spacing: 0.01em;
	font-family: 'HelveticaNeueLTPro-LtCn';
}

.team{
	padding-top: 30px;
}

.team-sec-title{
	margin-bottom: 40px;
}

.member-item{
	position: relative;
	margin-bottom: 70px;
}

.member-item:last-child{
	margin-bottom: 0;
}

.member-details{
	padding-left: 20px;
}

.member-details p:last-child{
	margin-bottom: 0;
}

.member-name{
	font-size: 27px;
	color: #000;
	letter-spacing: 0.005em;
	font-family: 'HelveticaNeueLTPro-MdCn';
	margin-bottom: 0;
	line-height: 1.3;
}

.mem-deg{
	font-family: 'HelveticaNeueLTPro-Cn';
}

.member-image img{
	max-width: 100%;
	height: auto;
	display: block;
}

.hiring{
	padding-top: 60px;
}

.hiring-content{
	position: relative;
	border: 3px solid #000000;
	padding: 20px 55px;
	color: #fff;
	font-family: 'HelveticaNeueLTPro-LtCn';
	letter-spacing: 0.01em;
}

.hiring-content h2{
	font-family: 'DJBChalkItUp';
	color: #f26c4f;
	letter-spacing: 0.025em;
	font-size: 45px;
	margin-bottom: .7rem;
}

.hiring-content h3{
	font-family: 'HelveticaNeueLTPro-BlkCn';
	margin-bottom: 0;
	font-size: 27px;
}

.hiring-content .inline-list{
	margin-bottom: 30px;
	margin-top: 0;
	list-style: none;
	font-family: 'DJBChalkItUp';
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
} 

.hiring-content .inline-list li{
	position: relative;
	font-size: 27px;
	color: #7accc8;
	padding-left: 25px;
	letter-spacing: 0.01em;
	-ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.hiring-content .inline-list li::before{
	content: "";
	position: absolute;
	width: 11px;
	height: 11px;
	background-color: #fff;
	border-radius: 50%;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

#jobs-widget{
	margin-bottom: 25px;
}

.contact{
	padding-top: 50px;
	padding-bottom: 50px;
}

.contact-img img{
	max-width: 100%;
	height: auto;
	display: block;
}

footer,
.footer{
	overflow: hidden;
	background-color: #000000;
	padding-top: 20px;
	padding-bottom: 50px;
	color: #fff;
}

footer .nav,
.footer .nav{
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 30px;
}

footer .nav li a,
.footer .nav li a{
	font-size: 15px;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	padding-left: .9rem;
	padding-right: .9rem;
}

.copyright{
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.005em;
	margin-bottom: 0;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}