html {
  scroll-behavior: smooth;
}

/************************************************ Background ************************************************/

body {
	background:#fff;
}

input[type='submit']
{
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none; 
}

/************************************************ Format ************************************************/

body, select, input, textarea {
	font-size:62.5%;
	font-family: "neuzeit-grotesk", Arial, Helvetica, sans-serif;
	font-weight: 500;
	font-style: normal;
	color:#222A35;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5 {
	line-height:1.1em;
	font-weight:500;	
}

h1 {
	font-size:4.5em;	
}

h2 {
	font-size:4.5em;
	margin:0 0 10px;
	color:#222a35;
	font-weight:bold;
}

h3 {
	font-size:4.5em;
	font-weight: bold;
	margin:0 0 10px;
}

h4 {
	font-size:24px;
}

h5 {
	font-size:12px;
}

h6 {
	font-size:10px;
}

p {
	font-size:2.2em;
	line-height:1.3em;
	padding:0 0 15px;
	font-weight: 400;
}

p.small {
	font-size:1.4em;
}

a {
	color:#b09704;
	text-decoration:none;
	transition: all 0.3s ease-out;
}

a:hover {
	color:#b09704;
	text-decoration:underline;
}

.heading_surround a.btn,
.hero_text_inner a.btn {
	margin: 1.3em 0 0;	
}

.hero_text_inner a.btn {
	border: 2px solid #B09704;
	background: #B09704;
	color: #fff;
}

.hero_text_inner a.btn:hover {
	border: 2px solid #fff;
	background: #fff;
	color: #B09704;
}

.heading_surround.center .heading_left a.btn {
	margin:.5em 0 0;
}

a.btn {
	background: none;
	border: 2px solid #B09704;
	padding: 0.7em 1em;
	display: flex;
	color: #B09704;
	font-size: 2.6em;
	font-weight: bold;
	margin: .5em 0 0;
	position: relative;
	justify-content: space-between;
	width: fit-content;
	align-items: center;	
}

a.btn.small {
	padding: 0.7em;
	font-size: 1.8em;
	margin: 1em 0 0;	
}

a.btn:hover {
	background:#B09704;
	color: #fff;
	text-decoration:none;
}

a.btn i {
	font-size: 1em;
	font-weight: bold;
	display: inline;
	padding: 2px 0 0 16px;
}

img {
	max-width: 100%;
}

img {
	height:auto;	
}

strong {
	font-weight:bold;	
}

em {
	font-style:italic;	
}

hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
 }

.clearfix:after {
	content:"";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;	
}

.round_top {
	width:60%;
	position:absolute;
	top:0;
	z-index:-1;
	right:0;	
}

.round_left_side {
	width:225px;
	position:absolute;
	top:25%;
	left:0;	
}

a.openmenu {
	display:none;	
}

.overlay {
	height:0;
	opacity:0;
	visibility: hidden;
}


/************************************************ Layout ************************************************/


header {
	width:100%;
	float:left;
	box-sizing: border-box;
}

#logo {
	width:260px;
	float:left;
	margin:35px 0 0 5%;
}

#logo img {
	width:100%;
}

nav {
	position:absolute;
	width:70%;
	top:70px;
	right:3%;
	z-index:3;
}

#stickynav {
	transition: top 0.5s ease-in-out;
	width:100%;
	top:0;
	right:0;
	z-index:10;
	position:fixed;
	padding:20px;
	text-align:center;
	background:#222a35;
	box-sizing:border-box;
	display:none;
}

#stickynav.fixed {
	display:block;
	transition: top 0.5s ease-in-out;
}

nav ul {
	text-align:right;
	margin: 4em 0 0;
}

#stickynav ul {
	text-align:center;	
}

#stickynav ul li {
	display:inline-block;
	vertical-align:top;
	font-size:1.7em;
	margin-right:3%;
}

#stickynav ul li a {
	color:#fff;
	font-weight:bold;
}

#stickynav ul li a:hover {
	color:#b09704;
	text-decoration:none;
}

nav ul li {
	display:inline-block;
	vertical-align:top;
	font-size:2em;
	padding-bottom: 1em;
	margin-right:4%;
	position: relative;
}

nav ul li a {
	color:#fff;
}

nav ul li.nomarg {
	margin-right:0;
}

nav ul li a.btn {
	background: none;
	padding: 10px 25px;
	display: inline-block;
	vertical-align: top;
	color: #B09704;
	font-size: 18px;
	font-weight: bold;
	margin: -12px 0 0;
	position: relative;
	border: 2px solid #B09704;
	text-transform: uppercase;
	letter-spacing: 1px;
}

nav ul li a.btn:hover {
	background: #B09704;
	color: #fff;
}

nav ul li a:hover,
nav ul li a.selected{
	color:#b09704;
	text-decoration:none;
}

nav ul li.drop ul {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 250px;
    box-shadow: 1px 1px 10px rgba(211,211,211,1.00);
    z-index: 999;
	margin:20px 0 0;
	padding:0;
	left: 50%;
  	transform: translateX(-50%);
	border-radius:7px;
	transition: all 0.3s ease-out;
}

nav ul li.drop ul:before {
    content:"";
    position: absolute;
    right: 0;
	left:0;
	margin:0 auto;
    top: -15px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 20px 25px;
    border-color: transparent transparent #ffff transparent;
    z-index:9999;
}

nav ul li.drop:hover ul {
    display: table;
	table-layout:fixed;
}

nav ul li.drop ul li {
	width:100%;
	float:left;
	text-align:center;
	margin: 0;
	padding: 0;
}

nav ul li.drop ul li a {
	width:100%;
	color:#101010;
	padding:19px 0 17px;
	float:left;
	font-size:17px;
	letter-spacing:normal;
	box-sizing:border-box;
	border-bottom:1px solid #f4f5fa;
}

nav ul li.drop ul li:last-child a {
	border-bottom:none;
}

nav ul li.drop ul li a:hover,
nav ul li.drop ul li a.selected,
nav ul li.drop ul li.current_page_item a {
	color:#B09704;
}

nav ul li.drop ul li a.selected,
nav ul li.drop ul li.current_page_item a {
	font-weight:400;
}

nav ul li.drop ul li a:hover:after {
	width:0;
}

nav ul li.current-menu-item ul li a:after,
nav ul li.current-menu-ancestor ul li a:after,
nav ul li.current-menu-ancestor ul li.current_page_item a:after {
	width:0;
}

#slideshow {
  position: relative;
  z-index:1;
}

#slideshow > div {
  position: absolute;
}

#slideshow_text {
	position:relative;
}

/*.main_slider_text #slideshow_text h1.second {
	font-size:67px;
}*/

.main_slider {
	width:50%;
	float:right;
	position:relative;
}

.playbtn {
	position:absolute;
	top:54%;
	left:46%;
	transform: translateY(-50%);
	width:120px;
	opacity:0.9;
	z-index:2;	
}

.playbtn:hover {
	opacity:1;
}

.main_slider_text {
	width:40%;
	float:left;
	margin-left:5%;	
}

.main_slider_text h1 {
	font-size:90px;
	font-weight:bold;
	color:#222a35;
	margin:80px 0 30px;
}

.hero {
	background:rgba(48,59,75,0.5);
	padding: 0;
	position: relative;
	background-image: none;
}

.hero_text {
	margin: 0 auto;
	max-width: 1420px;
	width: 90%;
	position: relative;
	padding: 10em 0 12em;
	display: flex;
	flex-flow: row wrap;
	color: #fff;
}

.hero_text_inner {
	width: 50%;
}

.hero h1 {
	font-size:2.4em;
	color: #fff;
	line-height: 1.3em;
}

.hero h2 {
	font-size:6.2em;
	color: #fff;
}

.bg-video-wrapper {
  position: fixed;
	top: 0;
	left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
	z-index: -2;
}

.bg-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  .bg-video-wrapper iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .bg-video-wrapper iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

/*.bg-video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	pointer-events: none;
	overflow: hidden;
}

.bg-video-wrapper iframe {
	width: 100vw;
	height: 56.25vw;
	min-height: 100%;
	min-width: 177.77vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}*/

.heading {
	background:url(../images/new/tech-pattern.png) top -5em right no-repeat #303B4B;
	background-size:65%;
	padding: 0;
	position: relative;
}

.heading.center {
	padding: 0 0 12em;
}

.heading_surround {
	margin: 0 auto;
	max-width: 1420px;
	width: 90%;
	position: relative;
	padding: 10em 0 12em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: row wrap;
	color: #fff;
}

.heading_surround.center {
	justify-content: center;
	text-align: center;
	align-content: center;
}

.heading_surround.center .heading_left {
	width:45%;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}


.heading_left {
	width:40%;
}

.heading_left h1 {
	font-size:2.4em;
	color: #D3D3D3;
	line-height: 1.3em;
}

.heading_left h2 {
	font-size:6.2em;
	color: #fff;
}

.heading_right {
	width: 45%;
}

.heading_overlap {
	width:100%;
	margin-top: -27em;
	margin-bottom: 15em;
}

.heading_overlap.nomarg {
	margin-bottom: 0;
}

section {
	width:100%;
	float:left;
	position: relative;
	padding:0 5%;
	box-sizing: border-box;
	background:url(../images/round3.png) top 0 right no-repeat, url(../images/round2.png) bottom 25% left no-repeat #fff;
	background-size:225px;
}

section.grey {
	background:#F2F2F2;
}

section.grey.line {
	border-top:1px solid #D3D3D3;
}

section.white {
	background:#fff;
}

.section_inner {
	margin: 0 auto;
	max-width: 1420px;
	width: 90%;
	position: relative;
	padding-top: 7vw;
	padding-bottom: 7vw;
}

.section_inner.flex {
	display:flex;
	flex-flow:row wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.section_inner.extra_padd {
	padding-bottom:15em;
}

.section_inner.nopaddtop {
	padding-top: 0;
}

.section_inner.nopaddbottom {
	padding-bottom: 0;
}

.section_inner.nopadd {
	padding-top: 0;
	padding-bottom: 0;
}

/* General Content
–––––––––––––––––––––––––––––––––––––––––––––––––– */

img.smaller {
	width: 80%;
	margin: 3em 0 0;
}

img.smaller.marg {
	width:60%;
	margin: 0 0 3em;
}

.intro_left {
	width:45%;
	box-sizing: border-box;
}

.intro_left.small {
	width:40%;
	box-sizing: border-box;
}

.intro_left.center {
	text-align:center;
}

.intro_left.paddleft {
	padding-left:5%;
}

.intro_right {
	width:50%;
	box-sizing: border-box;
}

.intro_right.small {
	width:45%;
	box-sizing: border-box;
}

.intro_left ul {
	list-style-type: disc;
	margin: 0 0 2em;
}

.intro_left ul li {
	font-size:2.2em;
	line-height: 1.3em;
	margin-left: 1em;
	padding-left: .5em;
}

.hp_img_box {
	width:55%;
}

.hp_small_box {
	width: 40%;
	background: #303B4B;
	padding: 3em;
	box-sizing: border-box;
	margin-left: 5%;
	color: #fff;
}

.hp_small_box p {
	font-size: 3.6em;
	font-weight: bold;
	padding: .5em 0 0;
	line-height: 1em;
}

.level2_left {
	width:50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.level2_right {
	width:45%;
	padding-right: 15%;
	box-sizing: border-box;
}

.double_box {
	width:100%;
	margin: -16vw 0 0;
	display: flex;
	color: #fff;
}

.d_left {
	width:55%;
}

.d_left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.d_right {
	width:45%;
	padding: 7em;
	background: #303B4B;
	display: flex;
	align-content: center;
	flex-flow: row wrap;
}

.d_right h4 {
	width:100%;
	font-size:45px;
	font-weight: bold;
	line-height: 1.1em;
	margin-bottom: 0.3em;
}

.d_right ul {
	width:100%;
}

.d_right ul li {
	width:100%;
	font-size: 24px;
}

.d_right ul li a {
	width:100%;
	display: inline-block;
	vertical-align: top;
	padding:.8em 0;
	border-bottom:1px solid #546783;
	color: #fff;
}

.d_right ul li a:hover {
	border-bottom:1px solid #b09704;
	color: #b09704;
	text-decoration: none;
}

.testimonial_area {
	width:100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	padding: 8em 0 0;
}

.testimonial_area.padd {
	padding: 8em 0;
}

.t_left {
	width: 40%;
	padding: 0 5%;
	box-sizing: border-box;
}

.testimonials_surround {
	width: 55%;
	background: #B09704;
	padding: 6em 5% 8em;
	box-sizing: border-box;
	color: #fff;
}

.testimonials_surround.nopadd {
	width: 55%;
	background: none;
	padding: 0;
	box-sizing: border-box;
	color: #fff;
}

.testimonials_surround p {
	font-size:3.6em;
	padding: 0 0 10px;
	margin: 0;
	font-weight: bold;
}

.testimonials_surround p.small {
	font-size:1.8em;
	padding: 0;
	margin: 0;
	font-weight: normal;
}

.title_surround {
	width:100%;
	margin: 7em 0 3em;
}

.title_surround.nomargtop {
	margin: 0 0 3em;
}

.title_surround.center {
	text-align:center;
}

.title_surround h4 {
	font-size:1.7em;
	text-transform: uppercase;
	font-weight: bold;
}

.title_surround p {
	font-size:2.7em;
	padding: 0 20%;
	box-sizing: border-box;
}

.icon_boxes_surround {
	width:100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin-bottom: 26em;
}

.icon_boxes_surround.four {
	margin-bottom: 0;
}

.icon_boxes_surround.left .icon_box {
	text-align:left;
}

.icon_boxes_surround.nopadd {
	margin-bottom: 0;
}

.icon_box {
	background: #FCFCFC;
	padding: 3em 5em;
	text-align: center;
	width: 32%;
	margin-bottom: 3em;
	box-sizing: border-box;
}

.icon_boxes_surround.four .icon_box {
	width: 24%;
}

.icon_box img {
	max-height:130px;
	margin: 0 0 2em;
}

.icon_box h5 {
	font-size:3.6em;
	font-weight: bold;
	margin: 0 0 0.5em;
}

.icon_box i {
	color:#B09704;
	margin-left: -15px;
	margin-right:15px;
}

.left .icon_box p {
  display: flex;
}

.contact_surround {
	width:100%;
	background: #fff;
	display: flex;
	justify-content: space-between;
}

.contact_left {
	background:#FCFCFC;
	width: 50%;
	display: flex;
	flex-flow: row wrap;
}
.contact_right {
	width: 50%;
	padding: 5em;
	box-sizing: border-box;
}

.contact_details {
	padding: 5em;
	width: 100%;
	box-sizing: border-box;
}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.row {
display: flex;
flex-wrap: wrap;
width: 100%;
margin-top: 10em;
}

.row.marglarge {
margin-top: 0;
margin-bottom: 10em;
}

.row.center {
align-items: center;
}

.row.nomarg {
margin-top: 0;
}

.row.margbottom {
margin-bottom: 16vw;
}

.col-1 {
flex:0 0 auto;
width:8.3333333333%
}
.col-2 {
flex:0 0 auto;
width:16.6666666667%
}
.col-3 {
flex:0 0 auto;
width:25%
}
.col-4 {
flex:0 0 auto;
width:33.3333333333%
}
.col-5 {
flex:0 0 auto;
width:41.6666666667%
}
.col-6 {
flex:0 0 auto;
width:50%
}
.col-7 {
flex:0 0 auto;
width:58.3333333333%
}
.col-8 {
flex:0 0 auto;
width:66.6666666667%
}
.col-9 {
flex:0 0 auto;
width:75%
}
.col-10 {
flex:0 0 auto;
width:83.3333333333%
}
.col-11 {
flex:0 0 auto;
width:91.6666666667%
}
.col-12 {
flex:0 0 auto;
width:100%
}

.justify-content-between {
justify-content: space-between !important;
}

.justify-content-center {
justify-content: center !important;
}

.align-items-center {
align-items: center !important;
}

.align-content-center {
align-content: center !important;
}


/************************************************ Main Content ************************************************/

.stats {
	width:100%;
	padding:4em 5%;
	margin:0;
	box-sizing:border-box;
	display:flex;
	flex-flow:row wrap;
	justify-content:space-between;
	border-top:1px solid #939393;
	color: #fff;
}

.stat {
	width:30%;
	float:left;
	text-align:center;
}

.stat_left {
	width:50%;
	float:left;
	text-align:center;
}

.stat_right {
	width:48%;
	float:left;
	text-align:left;
}

.stat span.small {
	font-size:25px;
	font-weight:bold;
	width:100%;
	float:left;
}

.stat span.medium {
	font-size:75px;
	font-weight:bold;
	width:100%;
	float:left;	
}

.stat span.large {
	font-size:18px;
	font-weight:bold;
	line-height:1.3em;	
}

.about_area {
	display:flex;
	flex-flow:row nowrap;
	justify-content:space-between;
	margin:0 0 120px;	
}

.about_area.nopadd {
	margin:0;	
}

.about_area .text {
	width:47%;
	margin:45px 0 0;
	padding-right:10%;
	box-sizing:border-box;
}

.about_area .image_grid {
	width:47%;
	display:flex;
	flex-flow:wrap;
	justify-content:space-between;
	align-items:stretch;
	align-content: baseline;	
}

.about_area .left {
	order:1;	
}

.about_area .right {
	order:2;	
}

.about_area .text ul {
  list-style: none;
  margin:0 0 30px;
}

.about_area .text ul li {
	font-size:17px;
	line-height:1.5em;
	margin-left:1em;
}

.about_area .text ul li:before {
  content: "\2022";
  color: #b09704;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size:20px;
}

.image_grid {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
}

.image_box {
	width:32%;
	margin:0 0 3em;
	float:left;
	line-height:0;
	position:relative;
}

.image_box span {
	font-size:17px;
	color:#fff;
	line-height:1.5em;
	position:absolute;
	bottom:10px;
	left:20px;
	font-weight:bold;
}

.image_box h5 {
	font-size:35px;
	color:#222a35;
	position:absolute;
	left:0;
	bottom:15px;
	font-weight:500;
}

.clients {
	width:100%;
	float:left;
	padding:9em 0 0;
	text-align:center;
}

.clients h4 {
	font-size:15px;
	text-transform:uppercase;
	margin:0 0 30px;
	font-weight:bold;
	color:#222a35;
}

.clients ul {
	display:flex;
	flex-flow:row nowrap;	
}

.clients ul li {
	width:20%;	
}

.slider_clients {
    width:90%;
	float:left;
	margin:20px 5%;
 }

.slider_clients .slick-slide {
    margin: 0 2%;
	float:left;
 }
 
.slider_clients  .slick-list {
    margin: 0 -3%;
 }


/*tabs*/

ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
	border-bottom:1px solid #e9e9e9;
}

ul.tabs li{
	background: none;
	color: #222a35;
	display: inline-block;
	padding: 10px 0 25px;
	margin-right:5%;
	cursor: pointer;
	position:relative;
	font-size:17px;
}

ul.tabs li.current{
	font-weight:bold;
}

ul.tabs li.current:after{
	width:100%;
	height:1px;
	background:#222a35;
	content:'';
	position:absolute;
	bottom:-1px;
	left:0;
}

.tab-content{
	display: none;
	padding: 50px 0 0;
	width:100%;
	float:left;
}

.tab-content.current{
	display: inherit;
}

.tab_surround {
	display:flex;
	align-items:stretch;
	width:100%;
	justify-content:space-between;
}

.tab_left {
	width:40%;
	float:left;
	margin:30px 0 0;	
}

.tab_right {
	width:50%;
	float:right;
	display:flex;
	align-items:stretch;
	justify-content:space-between;
}

.tab_blue {
	width:48%;
	background:#222a35;
	padding:50px 30px;
	box-sizing:border-box;	
}

.tab_blue h4 {
	font-size:35px;
	color:#fff;
	font-weight:bold;
	margin:0 0 20px;
}

.tab_blue p {
	font-size:25px;
	color:#fff;
}

.tab_blue a {
	color:#fff;
	border-bottom:2px solid #fff;
	font-weight:bold;
	margin:0 0 15px;
	display:inline-block;
	vertical-align:top;
}

.tab_blue a:hover {
	color:#b09704;
	border-bottom:2px solid #b09704;
	text-decoration:none;
}

.tab_pic.small {
	width:48%;
	background-size:cover!important;
}

.tab-content ul {
  list-style: none;
  margin:0 0 20px;
}

.tab-content ul li {
	font-size:17px;
	line-height:1.5em;
	margin-left:1em;
}

.tab-content ul li:before {
  content: "\2022";
  color: #b09704;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size:20px;
}

.project_process {
	width:100%;
	float:left;
	margin:0 auto;
	text-align:center;	
	padding:0 0 5em;
}

.project_process ul {
	width:100%;
	display:flex;
	justify-content:space-between;
	margin:50px auto 30px;
}

.project_process ul li {
	font-size:2em;
	line-height:1.3em;
	width:20%;
}

.project_process ul li img {
	width:127px;
	margin:0 0 10px;
}

.tech_surround {
	width:100%;
	padding:0 2% 2%;
	float:left;
	box-sizing:border-box;
	background:#f9f9f9;
}

.tech {
	position:relative;
	width:49%;
	margin:0 2% 0 0;
	overflow:hidden;
	float:left;
}

.tech.right {
	margin:0;
}

.tech .work_hover {
	opacity: 0;
	transition: all 0.3s ease-out;
	background:rgba(24,42,53,0.4);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.tech:hover .work_hover {
	opacity:1;
}

.tech:hover .slide_text h4 {
	margin:0;
}

.tech:hover .slide_text p {
	margin:0;
}

.tech .slide_text {
	color:#fff;	
}

.tech .slide_text h4 {
	font-size:15px;
	text-transform:uppercase;
	font-weight:bold;
	margin:-100px 0 0;
	padding:0 0 10px;
	transition: all 0.3s ease-out;
}

.tech .slide_text p {
	font-size:45px;
	color:#fff;
	margin:-100px 0 0;
	transition: all 0.3s ease-out;
}

.tech .slide_text .link {
	color:#fff;
	display:inline-block;
	border-bottom:none;
	font-size:20px;
	transition: all 0.3s ease-out;
}

.tech .slide_text .link:hover,
.tech:hover .slide_text .link {
	color:#fff;	
}

.tech .slide_text .link i {
	font-size:15px;
	padding-left:8px;
}

.tech img {
	transition: all 0.3s ease-out;
}

.tech:hover img {
	opacity:0.95;
	transform: scale(1.2);
}

.tech .slide_text.top {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	left:0;
	width:100%;
	padding:40px 30px;
	box-sizing:border-box;
	text-align:center;
}

.full_yellow {
	width:100%;
	float:left;
	padding:0 5%;
	box-sizing:border-box;
	background:url(../images/csbg.jpg) no-repeat top left;
	background-size:cover;	
}

.yellow_text {
	position:relative;
	padding:200px 0;
	margin:0 auto;
	left:0;
	width:50%;
	box-sizing:border-box;
	text-align:center;
	color:#fff;
}

.yellow_text h3 {
	font-size:45px;
	font-weight:bold;
	margin:0 0 10px;	
}

.yellow_text h5 {
	font-size:15px;
	font-weight:900;
	text-transform:uppercase;
	margin:0 0 10px;	
}

.videowrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
	width:100%;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#mapholder {
	width:100%;
	float:left;
	height:500px;
}

#mapholder img, #mapholder object, #mapholder embed, #mapholder video {
	max-width:none;
	width:auto;
}

#mapholder img {
	height:auto;	
}

#mapholder p {
	color:#000;	
	font-size:14px;
	padding:0;
}

#mapholder p strong {
	font-weight:bold;
}

/************************************************ Modal Styles ************************************************/

#modal_newsletter {
	display:none;
	width:600px;	
}

.modal_title {
	background: rgb(0,112,183);
	background: -moz-linear-gradient(left, rgba(0,112,183,1) 0%, rgba(123,206,242,1) 100%);
	background: -webkit-linear-gradient(left, rgba(0,112,183,1) 0%,rgba(123,206,242,1) 100%);
	background: linear-gradient(to right, rgba(0,112,183,1) 0%,rgba(123,206,242,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0070b7', endColorstr='#7bcef2',GradientType=1 );
	width:100%;
	float:left;
	box-sizing:border-box;
	padding:20px;
	font-size:20px;
	font-weight:bold;
	color:#fff;	
}

.modal_title p {
	font-size:22px;
	padding:0;
}

.modal_content {
	width:100%;
	float:left;
	box-sizing:border-box;
	padding:24px;	
}

.modal_content p {
	font-size:16px;	
	font-weight:500;
}

.team_modal.animated-modal {
	max-width:600px!important;
	display:none;	
}

.modal_title2 {
	background: #222a35;
	width:100%;
	float:left;
	box-sizing:border-box;
	padding:40px 5% 20px;
	font-size:20px;
	font-weight:bold;
	color:#fff;
}

.modal_title2 p {
	font-size:36px;
	padding:0;
	width:100%;
	float:right;
	line-height:1em;
	font-weight:500;
}

.modal_title2 span {
	font-size:24px;
}

.modal_title2 a i {
	font-size:18px;
	color:#fff;
	margin:0 0 0 10px;
	display:inline-block;
}

.team_pic {
	width:40%;
	float:left;	
	margin:-100px 0 30px 5%;
}

.member_content {
	width:90%;
	box-sizing:border-box;
	float:right;
	margin:30px 5% 50px 0;	
}

.member_content ul {
  list-style: none;
  margin:0 0 20px;
}

.member_content ul li {
	font-size:17px;
	line-height:1.5em;
	margin-left: 1em;
}

.member_content ul li:before {
  content: "\2022";
  color: #b09704;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size:20px;
}

.member_content p {
	font-size:17px;
}

.fancybox-close-small {
	color:#fff!important;
	top:8px!important;	
}

.fancybox-close-small:hover:after {
  color: #fff!important;
  background: #b09704!important; }

.fancybox-close-small:after {
	color:#fff!important;	
}

/* Start state */
.animated-modal {
  max-width: 550px;
  border-radius: 4px;
  overflow: hidden;
  
  transform: translateY(-50px);
  transition: all .7s;
}

.animated-modal .modal_title p,
.animated-modal .modal_content,
.animated-modal .modal_title2 p,
.animated-modal .team_pic,
.animated-modal .member_content {
  transform: translateY(-50px);
  opacity: 0;
  
  transition-property: transform, opacity;
  transition-duration: .4s;
}

/* Final state */
.fancybox-slide--current .animated-modal,
.fancybox-slide--current .animated-modal .modal_title p,
.fancybox-slide--current .animated-modal .modal_content,
.fancybox-slide--current .animated-modal .modal_title2 p,
.fancybox-slide--current .animated-modal .team_pic,
.fancybox-slide--current .animated-modal .member_content  {
  transform: translateY(0);
  opacity: 1;
}

/* Reveal content with different delays */
.fancybox-slide--current .animated-modal .modal_title p,
.fancybox-slide--current .animated-modal .modal_title2 p,
.fancybox-slide--current .animated-modal .team_pic {
  transition-delay: .1s;
}

.fancybox-slide--current .animated-modal .modal_content,
.fancybox-slide--current .animated-modal .member_content {
  transition-delay: .2s;
}


/************************************************ Contact Form Elements ************************************************/

.form_surround {
	width:100%;
	float:left;
	margin: 2em 0 0;
}

.contact_col {
	width:100%;
	margin:0 3% 0 0;
	float:left;
}

.contact_col.last {
	margin:0;
}

.contact_col2 {
	width:100%;
	float:left;
	margin:0 0 10px;
}

.contact_col .form_item {
	width:100%;
	float:left;
	padding:0 0 20px;
}

.contact_col .form_item label {
	font-size:2.2em;
	padding:0 0 8px;
	width:100%;
	float:left;
	text-align:left;
}

.contact_col .form_item label.warning,
.contact_col2 .form_item label.warning,
p.warning {
	color:#F00;
}

p.red_text {
	color:#F00;	
}

p.green_text {
	color:#b09704;	
}

.contact_col .form_item input,
.contact_col .form_item input,
.contact_col .form_item textarea {
	background:none;
	padding:15px 15px;
	font-size:2.2em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid #303B4B;
	width:100%;
}

.contact_col .form_item select {
	background:#fff;
	padding:9px 15px;
	font-size:17px;
	color:#707070;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid #e3e3e3;
	width:100%;
}

.contact_col .form_item input:focus,
.contact_col .form_item textarea:focus,
.contact_col .code_box:focus,
.contact_col select:focus {
	border-color: #B09704;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(183, 212, 234, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(183, 212, 234, 0.6);
}

.contact_col .form_item textarea {
	height:50px;
}

.contact_col .form_item.larger textarea {
	height:150px;
}

#form_captcha {
	width:100%;
	float:left;
	margin:0 0 10px;	
}

.submit {
	background: none;
	border: 2px solid #B09704;
	padding: 0.7em 1em;
	display: flex;
	color: #B09704;
	font-size: 2.6em;
	font-weight: bold;
	margin: .5em 0 0;
	position: relative;
	justify-content: space-between;
	width: fit-content;
	align-items: center;
	cursor: pointer;
}

.submit:hover {
	background:#B09704;
	color: #fff;
	text-decoration:none;
}



/************************************************ Footer ************************************************/

footer {
	width:100%;
	float:left;
	padding:100px 0 0;
	margin:0;
	background:#222a35;
	color:#fff;
	border-top:1px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

footer a {
	color:#fff;
	text-decoration:underline;	
}

footer a:hover {
	color:#b09704;
	text-decoration:none;	
}

.home .cta,
.contact .cta {
	display:none;
}

.cta {
	background: #B09704;
	display: flex;
	color: #fff;
	padding: 5em;
	box-sizing: border-box;
	justify-content: space-between;
	margin-top: -12vw;
	margin-bottom: 5vw;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.cta h5 {
	font-size:4.5em;
	font-weight: bold;
}

.cta_left {
	width:55%;
}

.cta_right {
	width:25%;
}

.cta a.btn {
	border: 3px solid #fff;
	color: #fff;
	font-size: 2.6em;
	text-decoration: none;
	width: 90%;
	box-sizing: border-box;
}

.cta a.btn:hover {
	border: 3px solid #222a35;
	background: #222a35;
	color: #fff;
}

.footer_col {
	width:30%;
}

.footer_col.bottom {
	display: flex;
	align-content:end;
	justify-content:flex-start;
	flex-flow: row wrap;
}

.footer_col h6 {
	font-size:1.4em;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 0 1em;
}

.footer_col ul {
	font-size:2.2em;
}

.footer_col ul li {
	line-height:1.5em;
}

.footer_col ul li a {
	color:#fff;
	text-decoration: none;
}

.footer_top {
	width:100%;
	float:left;
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
}

.footer_left {
	width:30%;
	float:left;	
}

.footer_left h5 {
	font-size:35px;
	font-weight:bold;
	margin:0 0 20px;
}

.footer_left p {
	font-size:20px;
}

.social {
	width:100%;
	float:left;
	font-size:16px;
	margin:15px 0 0;	
}

.social a {
	margin-right:20px;
	text-decoration:none;	
}

.footer_right {
	width:50%;
	float:left;
	margin-left:10%	
}

.footer_bottom {
	width:100%;
	float:left;
	border-top:1px solid #323a46;
	padding:30px 0;
	margin:50px 0 0;	
}

.footer_bottom p {
	font-size:15px;	
}


/************************************************ Smaller screens ************************************************/

@media only screen and (max-width: 1300px) {

#logo {
	width: 230px;
	float: left;
	margin: 20px 0 0 2%;
}
	
nav {
	position: absolute;
	width: 70%;
	top: 50px;
	right: 3%;
	z-index: 3;
}
	
nav ul li {
	font-size: 1.9em;
	margin-right: 3%;
}
	
.section_inner {
	width: 95%;
}
	
.hero_text_inner {
  width: 75%;
}
	
.heading_surround {
  width: 90%;
}
	
.hp_small_box p {
	font-size: 2.8em;
}
	
.footer_top {
	padding: 0 5%;
	box-sizing: border-box;
}
	
.footer_bottom {
	padding: 30px 5%;
	box-sizing: border-box;
}
	
.main_slider_text {
    width: 45%;
}

.main_slider_text h1 {
    font-size: 70px;
    font-weight: bold;
    color: #222a35;
    margin: 80px 0 30px;
}


.stat_right {
    width: 45%;
    margin-left: 3%;
}

}

@media only screen and (max-width: 1100px) {	
	
.heading_surround {
	width: 90%;
	padding: 5em 0 7em;
}
	
.heading_surround.center {
	padding: 5em 0 12em;
}

.heading_surround.center .heading_left {
	width: 90%;
}	
	
.heading_left h2 {
	font-size: 5em;
	color: #fff;
	width: 100%;
}
	
h1 {
	margin: 0 0 0.67em;
}	
	
h3 {
	font-size: 3.6em;
	font-weight: bold;
	margin: 0 0 10px;
}
	
p {
  font-size: 1.9em;
}
.intro_left ul li {
  font-size: 1.9em;
}
a.btn {
  font-size: 2em;
}
	
.icon_boxes_surround {
	margin-bottom: 10em;
}
	
.footer_col ul {
  font-size: 1.9em;
}
	
.main_slider {
    width: 58%;
}

.main_slider_text {
    width: 45%;
}

.main_slider_text {
    width: 36%;
}

.main_slider_text h1 {
    font-size: 60px;
}


.stat span.medium {
    font-size: 55px;
}

.tab_blue h4 {
    font-size: 28px;
}

.project_process ul {
    width: 90%;
}

}


@media only screen and (max-width: 1023px) {

.heading {
	background:url(../images/new/tech-pattern.png) top -5em right no-repeat #303B4B;
	background-size:100%;
	padding: 0;
	position: relative;
}
	
#stickynav {
	display: none!important;
}
	
/* Mobile menu */

a.openmenu {
	position:absolute;
	right:5%;
	font-size:22px;
	color:#fff;
	z-index:100;
	top:2em;
	display:block;
}

a.openmenu.fixed {
	position:fixed;
	right:5%;
	font-size:22px;
	color:#fff;
	z-index:100;
	top:30px;
}

/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 30px;
  height: 45px;
  position: relative;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.openstate span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.openstate span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.openstate span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index:99;
	background: url(../images/new/tech-pattern.png) top -5em right no-repeat #303B4B;
	background-size: auto;
	background-size: 100%;
}

/* Overlay closing cross */
.overlay .overlay-close {
	width: 80px;
	height: 80px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
}

/* Menu style */
.overlay .nav_surround {
	width:100%;
	text-align:center;
	float:left;
	padding:20% 0 20px;
	height:100%;
	overflow-y:auto;
	box-sizing:border-box;
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	height: 100%;
	position: relative;
	width:100%;
	display: flex;
	flex-flow: row wrap;
    align-content: center;
    justify-content: center;
}

.overlay ul li {
	display: block;
	/*height: 20%;
	height: calc(100% / 5);*/
	line-height:1.5em;
	font-size:3em;
	width:100%;
	float:left;
}

.overlay ul li ul {
	display: none;
	margin: 0 0 0.5em;
	float: left;
}

.overlay ul li a {
	display: block;
	color: #fff;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	float:left;
	width:100%;
}

.overlay ul li ul li {
	font-size:0.8em;
}

.overlay ul li a:hover,
.overlay ul li a:focus,
#story .overlay ul li a.storynav,
#whiskey .overlay ul li a.whiskeynav,
#drinks .overlay ul li a.drinksnav,
#limited_edition .overlay ul li a.limitednav,
#workofart .overlay ul li a.workofartnav,
#contact .overlay ul li a.contactnav,
.overlay ul li ul li a.selected {
	color: #B09704;
	text-decoration:none;
}

/* Effects */
.overlay {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay .nav_surround {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.overlay ul {
	opacity: 0.4;
	-webkit-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.overlay.open ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.overlay.close ul {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}	

nav {
	display: none;
}
	
.hero_text {
	padding: 5em 0 7em;
}
	
.row {
	margin-top: 5em;
}
	
.intro_left,
.intro_right {
	width: 100%;
}
	
.intro_left {
	margin: 0 0 5em;
}
	
.level2_left {
	width: 100%;
	margin: 0 0 5em;
}
	
.level2_right {
	width: 100%;
	padding-right: 5%;
}
	
.intro_left.paddleft {
  padding-left: 0;
}
	
.testimonial_area {
	padding: 5em 0 0;
}
	
.t_left {
  width: 100%;
  padding: 0 0 3em;
  box-sizing: border-box;
}
	
.testimonials_surround {
  width: 100%;
  background: #B09704;
  padding: 6em 5% 8em;
}
	
.heading_left {
  width: 100%;
	text-align: center;
}
	
.heading_surround a.btn {
  margin: 1.3em auto 0;
}
	
.heading_right {
  width: 90%;
  margin: 5em auto 0;
}
	
.icon_boxes_surround.four .icon_box {
  width: 48%;
}
	
 .icon_box.left {
    padding: 3em 2em;
    margin-bottom: 1em;
    width: 100%;
  }
.icon_box {
    padding: 3em 2em;
    margin-bottom: 1em;
  }
.icon_box i {
  color: #B09704;
  margin-left: 0;
  margin-right: 15px;
}
	
.contact_surround {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
	
.contact_left,
.contact_right {
  width: 100%;
}
	
.contact_details,
.contact_right {
  padding: 4em 3em;
}
	
.project_process ul {
    width: 90%;
    flex-flow: row wrap;
  }
	
.project_process ul li {
  font-size: 2em;
  line-height: 1.3em;
  width: 48%;
	margin: 0 0 3em;
}
	
.cta {
  margin-top: -12em;
  margin-bottom: 7em;
  flex-flow: row wrap;
}
	
.cta_left {
  width: 100%;
}
.cta_right {
  width: 100%;
}
	
.title_surround p {
	font-size: 2.4em;
	padding: 0;
	box-sizing: border-box;
}

.main_slider_text {
    width: 90%;
}

.main_slider_text h1 {
    font-size:72px
}

.stats {
    margin: 0 0 30px;
}

.stat_right {
    width: 100%;
    margin: 10px 0 0;
}

.about_area {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 0 30px;
}

.about_area .text {
    width: 100%;
    margin: 45px 0 60px;
    padding-right: 0%;
}

.about_area .image_grid {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: baseline;
}

.image_box span {
    left: 12px;
}

.image_grid.left {
	display:none;	
}

.clients {
    padding: 5em 0 0;
}

.tab_surround {
    flex-wrap: wrap;
}

.tab_left {
    width: 100%;
	margin:0 0 50px;
}

.tab_right {
    width: 100%;
}

.yellow_text {
    padding: 100px 0;
    width: 80%;
}

.footer_right {
    width: 60%;
}
	
}



/************************************************ Mobile ************************************************/

@media handheld, only screen and (max-width: 600px) {

#logo {
    width: 37%;

}
	
h2,h3 {
	font-size: 3.2em;
	margin: 0 0 10px;
	color: #222a35;
	font-weight: bold;
}
	
.hero_text_inner {
width: 100%;
	text-align: center;
}
.heading_surround a.btn, .hero_text_inner a.btn {
  margin: 1.3em 0 0;
  margin: 0 auto;
}
.hero h2 {
  font-size: 3.6em;
  color: #fff;
}
.hero h1 {
  font-size: 2em;
  color: #fff;
  line-height: 1.3em;
}
	
.heading_left h2 {
    font-size: 3.6em;
}
.heading_left h1 {
  font-size: 2.2em;
}
	
.intro_left.small,
.intro_right.small {
  width: 100%;
  box-sizing: border-box;
}
	
.icon_box {
padding: 3em 2em;
margin-bottom: 1em;
width: 100%;
}
.icon_box h5 {
font-size: 3em;
font-weight: bold;
margin: 0;
}
.left .icon_box h5 {
margin: 0 0 0.5em;
}

.cta {
margin-top: -8em;
margin-bottom: 7em;
flex-flow: row wrap;
padding: 3em;
	width: 100%;
	border-radius: 2px;
}	
.cta h5 {
  font-size: 3.6em;
  font-weight: bold;
}
.cta a.btn {
  font-size: 2.2em;
}
.heading_overlap {
  width: 100%;
  margin-top: -21em;
}
	
.testimonials_surround.nopadd {
  width: 100%;
}
	
.hp_small_box {
  width: 100%;
}
	
.double_box {
  width: 100%;
  margin: -16vw 0 0;
  display: flex;
  color: #fff;
  flex-flow: row wrap;
}
	
.d_left {
  width: 100%;
}
.d_right {
  width: 100%;
  padding: 5em 3em;
}
.d_right h4 {
  width: 100%;
  font-size: 3.2em;
}
	
.testimonials_surround p {
  font-size: 2.4em;
}
	
.footer_col {
  width: 100%;
  margin: 0 0 2em;
}

.image_box h5 {
    font-size: 24px;
    bottom: 10px;
}

ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-bottom: 1px solid #e9e9e9;
    white-space: nowrap;
    overflow-x: scroll;
}

ul.tabs li.current::after {
    bottom: 0px;
}

}

@media handheld, only screen and (max-width: 500px) {

#stickynav ul li {
	line-height:1.5em;	
}

#logo {
    margin: 1em 0 0 3%;
    float: left;
    width: 45%;
}

.playbtn {
    position: absolute;
    top: 48%;
    left: 36%;
    transform: translateY(-50%);
    width: 47%;
    opacity: 0.9;
}

.main_slider {
    width: 50%;
}

.main_slider_text h1 {
    font-size: 40px;
    margin: 20px 0;
}

.main_slider_text {
    width: 90%;
    text-align: center;
}

.stats {
    width: 100%;
    padding: 30px 0 0;
	border-bottom:none;
	margin:0;
}

.stat {
    width: 100%;
    float: left;
    text-align: center;
	margin:0 0 20px;
	padding:0 3em 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #939393;
}
	
 .stat:last-child {
    border-bottom: none;
  }

.stat_left {
    width: 100%;
    float: left;
    text-align: center;
}

.stat_right {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
}

.image_box {
    width: 49.8%;
    margin: 0 0 0.3%;
    float: left;
    line-height: 0;
    position: relative;
}

.about_area .text {
    width: 100%;
    margin: 45px 0 0;
}

.tab_right {
    width: 100%;
    flex-wrap: wrap;
}

.tab_blue {
    width: 100%;
}

.tab_pic.small {
	display:none;	
}

.project_process ul {
    width: 90%;
    flex-wrap: wrap;
	margin:30px auto 0;
}

.project_process ul li {
    font-size: 17px;
    line-height: 1.5em;
    width: 44%;
    margin: 0 0 30px;
}

.tech {
    position: relative;
	float:left;
    width: 100%;
    margin: 0 2% 10px 0;
}

.tech .work_hover {
    opacity: 1;
    transition: all 0.3s ease-out;
    background: rgba(24,42,53,0.4);
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    float: left;
}

.tech .slide_text.top {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    width: 100%;
    padding: 30px 3% 20px;
    box-sizing: border-box;
    text-align: center;
    float: left;
}

.tech .slide_text h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    padding: 0 0 10px;
    transition: all 0.3s ease-out;
}

.tech .slide_text p {
    font-size: 30px;
    color: #fff;
    margin: 0;
}

.yellow_text {
    padding: 75px 0;
    width: 100%;
}

.yellow_text h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 10px;
}

footer {
    padding: 50px 5% 0;
}

.footer_left {
    width: 100%;
    float: left;
	margin:0 0 30px;
}

.footer_right {
    width: 100%;
    float: left;
	margin:0;
}

.footer_left p {
	font-size:17px;
}

}

/* ========================================== */
/* ! Provide higher res assets for iPhone 4   */
/* ========================================== */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 


}