/** HERO SLIDER **/
.cd-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #21272c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
  }
}

#cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
#cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-primary-nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../assets/cd-icon-menu.svg") no-repeat center center;
}
.cd-primary-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-primary-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #21272c;
  border-top: 1px solid #333c44;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .cd-primary-nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-primary-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-primary-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-primary-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-primary-nav a {
    display: inline-block;
    height: auto;
    font-weight: 600;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
  }
}

/* -------------------------------- 

Slider

-------------------------------- */
.cd-hero {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero-slider {
  position: relative;
  height: 360px;
  overflow: hidden;
  max-height: 100vh;
}
.cd-hero-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-hero-slider li.selected {
  /* this is the visible slide */
  position: relative;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-hero-slider li.move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
  /* the is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}
@media only screen and (min-width: 768px) {
  .cd-hero-slider {
    height: 500px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-hero-slider {
    height: 680px;
  }
}

/* -------------------------------- 

Single slide style

-------------------------------- */
.cd-hero-slider li {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cd-hero-slider .cd-full-width,
.cd-hero-slider .cd-half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  /* this padding is used to align the text */
  padding-top: calc(50% - 25px);
  text-align: center;
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-hero-slider .cd-img-container {
  /* hide image on mobile device */
  display: none;
}
.cd-hero-slider .cd-img-container img {
  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%);
}
.cd-hero-slider .cd-bg-video-wrapper {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cd-hero-slider .cd-bg-video-wrapper video {
  /* you won't see this element in the html, but it will be injected using js */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  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%);
}
.cd-hero-slider h1, .cd-hero-slider p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
}
.cd-hero-slider h1 {
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 36px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 10px;
}
.cd-hero-slider p {
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 32px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 10px;
}
.cd-hero-slider .cd-btn {
  display: inline-block;
  padding: 1.2em 1.4em;
  margin-top: .8em;
  background-color: rgba(212, 68, 87, 0.9);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-hero-slider .cd-btn.secondary {
  background-color: rgba(22, 26, 30, 0.8);
}
.cd-hero-slider .cd-btn:nth-of-type(2) {
  margin-left: 1em;
}
.no-touch .cd-hero-slider .cd-btn:hover {
  background-color: #d44457;
}
.no-touch .cd-hero-slider .cd-btn.secondary:hover {
  background-color: #161a1e;
}
@media only screen and (min-width: 768px) {
  .cd-hero-slider li:nth-of-type(2) {
    background-image: none;
  }
  .cd-hero-slider li:nth-of-type(3) {
    background-image: none;
  }
  .cd-hero-slider li:nth-of-type(4) {
    background-image: none;
  }
  .cd-hero-slider .cd-full-width,
  .cd-hero-slider .cd-half-width {
    padding-top: 150px;
  }
  .cd-hero-slider .cd-bg-video-wrapper {
    display: block;
  }
  .cd-hero-slider .cd-half-width {
    width: 45%;
  }
  .cd-hero-slider .cd-half-width:first-of-type {
    left: 5%;
  }
  .cd-hero-slider .cd-half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero-slider .cd-img-container {
    display: block;
  }
  .cd-hero-slider h2, .cd-hero-slider p {
    max-width: 520px;
  }
  .cd-hero-slider h2 {
    font-size: 2.4em;
    font-weight: 300;
  }
  .cd-hero-slider .cd-btn {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-hero-slider .cd-full-width,
  .cd-hero-slider .cd-half-width {
    padding-top: 275px;
  }
  .cd-hero-slider h2, .cd-hero-slider p {
    margin-bottom: 20px;
  }
  .cd-hero-slider h2 {
    font-size: 3.2em;
  }
  .cd-hero-slider p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) and (orientation:portrait) {
	.cd-hero-slider .cd-full-width,
	.cd-hero-slider .cd-half-width {
		padding-top: calc(50vw - 50px)
	}
}
@media only screen and (max-width: 767px) and (orientation:landscape) {
	.cd-hero-slider .cd-full-width,
	.cd-hero-slider .cd-half-width {
		padding-top: calc(50vh - 25px)
	}
}
/* -------------------------------- 

Single slide animation

-------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-hero-slider .cd-half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
  }
  .cd-hero-slider .move-left .cd-half-width {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .cd-hero-slider .selected .cd-half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero-slider .is-moving .cd-half-width {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }
  .cd-hero-slider li.selected.from-left .cd-half-width:nth-of-type(2),
  .cd-hero-slider li.selected.from-right .cd-half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }
  .cd-hero-slider li.selected.from-left .cd-half-width:first-of-type,
  .cd-hero-slider li.selected.from-right .cd-half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
  }
  .cd-hero-slider .cd-full-width h2,
  .cd-hero-slider .cd-full-width p,
  .cd-hero-slider .cd-full-width .cd-btn {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  .cd-hero-slider .move-left .cd-full-width h2,
  .cd-hero-slider .move-left .cd-full-width p,
  .cd-hero-slider .move-left .cd-full-width .cd-btn {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  .cd-hero-slider .selected .cd-full-width h2,
  .cd-hero-slider .selected .cd-full-width p,
  .cd-hero-slider .selected .cd-full-width .cd-btn {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero-slider li.is-moving .cd-full-width h2,
  .cd-hero-slider li.is-moving .cd-full-width p,
  .cd-hero-slider li.is-moving .cd-full-width .cd-btn {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the li parent before set opacity to 0 and translate to 100px/-100px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }
  .cd-hero-slider li.selected h2 {
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }
  .cd-hero-slider li.selected p {
    -webkit-transition: opacity 0.4s 0.3s, -webkit-transform 0.5s 0.3s;
    -moz-transition: opacity 0.4s 0.3s, -moz-transform 0.5s 0.3s;
    transition: opacity 0.4s 0.3s, transform 0.5s 0.3s;
  }
  .cd-hero-slider li.selected .cd-btn {
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s, background-color 0.2s 0s;
    -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, background-color 0.2s 0s;
  }
}

/* -------------------------------- 

Main content

-------------------------------- */
.cd-main-content {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 2em 0;
}
.cd-main-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #999999;
  margin: 2em 0;
}
@media only screen and (min-width: 1170px) {
  .cd-main-content {
    padding: 3em 0;
  }
  .cd-main-content p {
    font-size: 1.6rem;
  }
}

/* -------------------------------- 

Javascript disabled

-------------------------------- */
.no-js .cd-hero-slider li {
  display: none;
}
.no-js .cd-hero-slider li.selected {
  display: block;
}

.no-js .cd-slider-nav {
  display: none;
}

/** ALL **/
@font-face{
	font-family:'Cityof';
	src:url('../font/Cityof.ttf');
}
@font-face{ /* TEAM */
	font-family:'Tabitha';
	src:url('../font/tabitha.ttf');
}
@font-face{ /* Why US */
	font-family:'LibreBaskerville';
	src:url('../font/LibreBaskerville.otf');
}

/** OVERRIDE **/
.form-control {
    border-radius: 0;
    height: 36px;
}
a, button{
	transition: 0.25s all ease;
	-webkit-transition: 0.25s all ease;
	-moz-transition: 0.25s all ease;
	-o-transition: 0.25s all ease;
}
a:focus, a:visited, a:hover{	
	text-decoration: none;
}

/** ANIMATION LIST **/
@-webkit-keyframes left_then_right {
    0% {
        left: 0
    }

    50% {
        left: -10px
    }

    100% {
        left: 0
    }
}
@-moz-keyframes left_then_right {
    0% {
        left: 0
    }

    50% {
        left: -10px
    }

    100% {
        left: 0
    }
}
@keyframes left_then_right {
    0% {
        left: 0
    }

    50% {
        left: -10px
    }

    100% {
        left: 0
    }
}

@-webkit-keyframes right_then_left {
    0% {
        right: 0
    }

    50% {
        right: -10px
    }

    100% {
        right: 0
    }
}
@-moz-keyframes right_then_left {
    0% {
        right: 0
    }

    50% {
        right: -10px
    }

    100% {
        right: 0
    }
}
@keyframes right_then_left {
    0% {
        right: 0
    }

    50% {
        right: -10px
    }

    100% {
        right: 0
    }
}

@-webkit-keyframes fade_in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
@-moz-keyframes fade_in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
@keyframes fade_in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes top_frame {
    0% {
        left: 50%;
        right: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        left: 180px;
        right: 180px
    }
}
@keyframes top_frame {
    0% {
        left: 50%;
        right: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        left: 180px;
        right: 180px
    }
}

@-webkit-keyframes side_frames {
    0% {
        top: 50%;
        bottom: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        top: 180px;
        bottom: 180px
    }
}
@keyframes side_frames {
    0% {
        top: 50%;
        bottom: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        top: 180px;
        bottom: 180px
    }
}

@-webkit-keyframes bottom_left_frame {
    0% {
        left: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        left: 90px
    }
}
@keyframes bottom_left_frame {
    0% {
        left: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        left: 90px
    }
}

@-webkit-keyframes bottom_right_frame {
    0% {
        right: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        right: 90px
    }
}
@keyframes bottom_right_frame {
    0% {
        right: 50%;
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        right: 90px
    }
}

/** ANIMATION **/
.rtl_arrow:after {
    font-family: fontAwesome;
    content: "\f178";
    color: rgb(0, 0, 0);
    font-size: 14px;
    position: relative;
	display: inline-block;
    margin-bottom: 20px;
}
.rtl_arrow:hover:after {
    -webkit-animation: right_then_left 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 0s 2 normal;
    -moz-animation: right_then_left 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 0s 2 normal;
    -ms-animation: right_then_left 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 0s 2 normal;
    -o-animation: right_then_left 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 0s 2 normal;
    animation: right_then_left 0.2s cubic-bezier(0.39, 0.58, 0.57, 1) 0s 2 normal;
}

/** BUTTON & ICON **/
.btn {
    background: #231F20;
    border: 2px solid #fff;
    border-radius: 0;
}
.button{
	font-family: "Source Sans Pro", Helvetica;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 10px 15px;
}
.button.pulse{
	color: #fff;
	background: transparent;
	border: 2px solid #fff;
}
.image-fill .button.pulse	{
	padding: 19px 65px 19px 70px;
    font-size: 12px;
}
.hoverable:hover .button.pulse, .button.pulse:hover{
	text-decoration: none;
	background: #fff;
	color: #000;
}
.button.pulse.dark{
	color: #231F20;
	background: transparent;
	letter-spacing: 3px;
	border: 2px solid #231F20;
}
.hoverable:hover .button.pulse.dark, .button.pulse.dark:hover{
	text-decoration: none;
	background: #231F20;
	color: #fff;
}

.iconimate{
	transition: 0.25s all ease;
	-webkit-transition: 0.25s all ease;
	-moz-transition: 0.25s all ease;
	-o-transition: 0.25s all ease;
	
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
	
	position: absolute;
    opacity: 0;
}
.iconimate.icon-tl{
    top: 0;
    left: 5px;
	
}
.iconimate.icon-br{
    bottom: 0;
    right: 5px;
}

.hoverable:hover .iconimate.icon-tl, 
.hoverable:hover .iconimate.icon-br{
	opacity: 1;
}

/** Container **/
.max860{
	max-width:860px;
	margin: 0 auto;
}
.max650{
	max-width:650px;
	margin: 0 auto;
}

.mtop40{
	margin-top: 40px;
}
.mbot40{
	margin-bottom: 40px;
}
.mtop20{
	margin-top: 20px;
}
.mbot20{
	margin-bottom: 20px;
}
.p20{
	padding: 20px;
}
.p40{
	padding: 40px;
}

.no-padding{
	padding: 0;
}
.no-margin{
	margin: 0;
}

.v-row-wrapper{
	position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
	margin: 0;
    background-color: transparent;
    background-position: center;
    background-size: cover;
}
.v-center-wrapper {
    white-space: nowrap;
	height: 100%;
}
.v-center-wrapper .v-center-content {
    position: relative;
    z-index: 3;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    white-space: normal;
	margin: 20px 0
}
.v-center-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-right: -0.25em;
    content: '';
    vertical-align: middle
}

.center-justify{
	text-align: justify;
	-moz-text-align-last: center;
	text-align-last: center;
}

.col {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.col5 {
    width: 31.25%;
    padding: 0 10px
}
.col6 {
    width: 37.5%;
    padding: 0 10px
}
.col20, 
.col45, 
.col55{
	position: relative;
}
.col20{
	width: 20%;
}
.col45{
	width:45%;
}
.col55{
	width:55%;
}

@media screen and (max-width: 991px) {
	.sm50{
		width: 50%;
	}	
}
@media screen and (max-width: 767px) {
	.xs100{
		width: 100%;
	}	
}

/** TEXT & BACKGROUND **/
.text-fill{
	vertical-align: middle;
    height: 100%;
	padding: 0 80px;
}
.image-fill{	
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
	overflow: hidden;
}

@media screen and (max-width: 991px){
	.text-fill{
		padding: 0 40px;
	}
}
@media screen and (max-width: 767px){
	.v-row-wrapper{
		height: auto;
	}
	.v-row-wrapper .image-fill{
		height: 320px;
	}
	.v-row-wrapper .text-fill{
		height: auto;
	}
}

.title-copy{
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.desc-copy{
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2px;
}
.lightgrey-fill{
	background: #F5F5F5;
}
.darkgrey-fill{
	background: #5D5D5D;
}
.white-fill{
	background: #ffffff;
}
.dark-fill{
	background: #231F20;
}
.team-fill{
	background: #7C7970;
}

.text-fill hr{
	/*width: 50px;*/
    border-width: 2px;
    border-color: #808080;
    opacity: 0.6;
}
.arrow.left {
    left: -14px;
}
.arrow.right {
    right: -14px;
}
.arrow {
    position: absolute;
    top: 50%;
    height: 0;
    margin: -15px auto 0 auto;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
	z-index: 9;
}
.arrow.left.dark {
    border-right: 15px solid #231F20;
}
.arrow.right.dark {
    border-left: 15px solid #231F20;
}
.arrow.right.team {
    border-left: 15px solid #7C7970;
}
.arrow.left.darkgrey {
    border-right: 15px solid #5D5D5D;
}
.arrow.right.darkgrey {
    border-left: 15px solid #5D5D5D;
}
.arrow.right.white {
    border-left: 15px solid #ffffff;
}
.arrow.left.white {
    border-right: 15px solid #ffffff;
}
.arrow.left.lightgrey {
    border-right: 15px solid #F5F5F5;
}
.arrow.right.lightgrey {
    border-left: 15px solid #F5F5F5;
}

.text-gold, .text-gold:hover{
	color: #B29622;
}
.text-white, .text-white:hover{
	color: #ffffff;
}
.text-dark, .text-dark:hover{
	color: #231F20;
}
.text-lightdark, .text-lightdark:hover{
	color; #414042
}

.quote-place h2{
	max-width: 650px;
	margin: 0 auto;
	margin-bottom: 15px;
}
.quote, .quote-place h2{
	color: #58595B;
	font-family: "LibreBaskerville";
	font-size: 36px;
	line-height: 42px;
	font-weight: 400;
}
.quote-name, .quote-place p{
	/*color: #603913;*/
	color: #B29622;
	font-family: "Open Sans";
	font-size: 15px;
	font-weight: 400;	
	letter-spacing: 3px;
	margin-top: 20px;
}
.quote-desc, .quote-place p:last-child{
	color: #414042;
	font-family: "Open Sans";
	font-size: 15px;
	font-weight: 400;	
	letter-spacing: 3px;
}

/** SLIDER **/
.fullHeight{
	height:100%;
}
.scrollHere:after{
	/*content: url("../img/website/scroll-down.png");*/
    position: absolute;
    bottom: 10px;
    left: 40%;
    right: 40%;
    width: 20%;
    text-align: center;
}
.owl-carousel.fullHeight div.img-place{
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-position: center center;
}
.owl-carousel.fullHeight .owl-item{
	height: 100vh;
}
.owl-carousel.single .item img{
    display: block;
    width: 100%;
    height: auto%;
}
.owl-carousel h1 {
	color: #fff;
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 36px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 10px;
    position: absolute;
    top: calc(50% - 60px);
    width: 100%;
    text-align: center;
}
.owl-carousel .article {
	max-width: 550px;
    position: absolute;
    z-index: 99;
    bottom: 40px;
    left: 40px;
}
.owl-carousel .article p{
	margin: 0 5px 10px;
}
.owl-carousel .article p.category{
	font-family: "Source Sans Pro";		
	text-transform: uppercase;
	letter-spacing: 3px;	
	font-size: 15px;
	font-weight: 600;
}
.owl-carousel .article p.title{
	font-family: "Source Sans Pro";		
	text-transform: uppercase;
	letter-spacing: 3px;	
	font-size: 21px;
	font-weight: 600;
}
.owl-carousel .article p.date{
	font-family: "Source Sans Pro";		
	text-transform: uppercase;
	letter-spacing: 3px;	
	font-size: 16px;
	font-weight: 600;
}
.owl-carousel .article hr{
	border-color: #ffffff;
	margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
	.scrollHere:after{
		display: none !important;
	}	
	.owl-carousel.fullHeight div.img-place{
		width: 100vw;
		height: 45vh;
		background-size: cover;
		background-position: center center;
	}
	.owl-carousel.fullHeight .owl-item{
		height: 50vh;
	}
}
@media screen and (max-width: 600px) {
	.owl-carousel:not(.fullHeight) h1 {
		top: auto;
		bottom: 0;
	}
}

/** ISOTOPE **/
.grid .grid-item{
	position: relative;
	padding: 10px;
}
.grid p.category {
	margin-top: 5px;
	display: inline-block;
    padding: 5px 10px;
	transition: 0.25s all ease;
	-webkit-transition: 0.25s all ease;
	-moz-transition: 0.25s all ease;
	-o-transition: 0.25s all ease;
}
.grid img{
	margin: 0 auto;
}
.grid .copy .date{
	margin: 10px 0;
	display: none;
}
.grid .copy .desc{
	margin: 10px 0 0 0;
}
.grid .copy hr{
	width: 50%;
    margin: 0 auto;
	border-color: #727272;
	display : none;
}
.grid .copy .desc{
	letter-spacing: 4px;
	text-transform: capitalize;
}
.grid p.category,
.grid .copy .date,
.grid .copy .desc{
	color: #727272;
	font-family: "Source Sans Pro";
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 4px;
	text-transform: uppercase;
}
.grid .copy .class{
	color: #727272;
	font-family: "Source Sans Pro";
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.grid .grid-item:hover p.category{
	background: #414042;
	color: #ffffff;
}

/** Home **/

.works-wrapper a.btn.prev {left: -47px;position: absolute;}

.works-wrapper .customNavigation {
    position: absolute;
    display: block;
    z-index: 2;
    top: 27%;
    width: 100%;
}

.works-wrapper  {
    position: relative;
}

.works-wrapper a.btn.next {
    right: -47px;
    position: absolute;
}

.works-wrapper a.btn {
    background: transparent;
    border: 0;
    font-size: 25px !important;
    color: black;
}

.works-wrapper a.btn:hover i {
    opacity: 0.5;
}

.works-wrapper a.btn i {
    transition: all 0.5s ease;
}

#home #content-first .row .col-first,
#home #content-first .row .col-second,
#home #content-latest-works{	
	padding: 40px;
}
#home #content-first p.title-copy.text-dark {
    line-height: 60px;
	padding: 20px;
	font-weight: 700;
}
#home #content-first p.title-copy.text-dark a{
	border-bottom: 1px solid rgb(35, 31, 32);
}
#home #content-first .row .col-second h4{
	padding-top: 10px;
    line-height: 60px;
}
#home #content-first .row .col-second ul li {
	margin: 10px 0;
}
#home #content-latest-works {
	background-color: #F1F2F2;
}
#home #content-latest-works .container{
	max-width: 100%
}
#home #content-latest-works h5{
	font-family: "Open Sans", Helvetica;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 2px;
}
#home #content-latest-works a{
	font-family: "Open Sans", Helvetica;
	font-size: 12px;
	font-weight: 400;
}
#home #content-left-right .image-fill.image01{
	background-image : url('../img/website/content_01.jpg');
}
#home #content-left-right .image-fill.image02{
	background-image : url('../img/website/content_02.jpg');
}
#home #content-left-right .image-fill.image03{
	background-image : url('../img/website/content_03.jpg');
}
#home #slide2 .met-the-team{
    position: absolute;
    display: block;
    top: 120px;
    width: 36% !important;
    left: 35px;
}
#home #slide2 p{
	color: #fff;
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	position: absolute;
	display: block;
	bottom: 100px;
	left: 42%;
	max-width: 360px;
}
#home #slide2 a{
	left: 42%;
	position: absolute;
    display: block;
    bottom: 45px;
}
#home #content-latest-articles h5{
	color: #414042;
	font-family: "Cityof", "Source Sans Pro", Helvetica;
	font-size: 19px;
	margin: 0;
}
#home #content-latest-articles p{
	margin-top: 10px;
	color: #414042;
	font-family: "Open Sans", Helvetica;
	font-size: 14px;
	text-align: justify;
	margin-bottom: 30px;
}
#home #content-latest-articles p a{
	font-weight: 600;
	color: #414042;
}
#home #content-latest-articles img{
	margin: 0 auto;
	margin-bottom: 15px;
}
#home #content-latest-articles .left{
	width: 60px;
    background: #58595B;
    float: left;
}
#home #content-latest-articles .right{
	width: calc(100% - 70px);
    float: right;
    text-align: left;
}
#home #content-latest-articles span.date{
    color: #fff;
    font-family: "Open Sans", Helvetica;
    font-size: 18px;
    font-weight: 600;
    padding: 5px;
	display:none;
}

@media screen and (max-width:991px) {
	#home #content-left-right .text-fill{
		vertical-align: middle;
		height: 100%;
		padding: 20px;
	}
}
@media screen and (max-width:767px) {
	#home #slide2 a {
		bottom: 40%;
		left: 20%;
		right: 20%;
		text-align: center;
	}
	#home #content-first p.title-copy.text-dark{
		line-height: 36px;
		padding: 0;
	}
}

/** Contact **/
#contact #form label{
	color: #414042;
	font-family: "Source Sans Pro", "Open Sans", Helvetica;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}
#contact #form button.pulse.dark{
	margin-top: 30px;
	padding-left: 60px;
	padding-right: 60px;
	margin-bottom: 40px;
}
#contact #map #gmap{
	height: 100%;
}
#contact #map h4{
	margin-top: 0;
}
#contact #map h1{
	font-size: 36px;
}
#contact #map hr{
	width: 50px;
	border-width: 2px;
	margin: 0;
	margin-bottom: 20px;
	margin-top: 20px;
}
#contact #map address, #contact #map p{
	margin: 0;
	line-height: 36px;
}
#contact #form-contact #input-message, #form-contact #input-message {
	height: 264px;
}
@media screen and (max-width:767px) {
	#contact #map #gmap{
		height: 360px;
	}
}

/** The Team **/
#the-team #count .v-row-wrapper{
	height: 300px;
}
#the-team #count .col-md-6{
	padding: 0 40px;
}
#the-team #count .team-count:before {
    content: '\f053';
	font-family: 'fontAwesome';
    font-size: 50px;
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
	position: absolute;
    top: -20px;
    left: 0;
    opacity: 1;
    display: block;
    -webkit-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    -moz-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    -ms-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    -o-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
}
#the-team #count .team-count:after {
   content: '\f054';
	font-family: 'fontAwesome';
	font-size: 50px;
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    bottom: -20px;
    opacity: 1;
    display: block;
    -webkit-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    -moz-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    -ms-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    -o-transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
    transition: all 0.125s cubic-bezier(0.39, 0.58, 0.57, 1) 0s;
}
#the-team #count .team-count .number {
    font-family: 'Cityof' ,Helvetica,sans-serif;
    letter-spacing: -5px;
    padding-right: 0;
    font-size: 8.75em;
	font-size: 5em
}
#the-team #count .team-count .plus {
    position: absolute;
    top: 35%;
    left: 45%;
    font-size: 60px;
    margin-left: 65px;
    margin-top: -70px;
	display: none;
}
#the-team #count .team-count .copy {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 5px;
    margin-left: 30px;
	color: #B29622;
	font-family: "Source Open Sans", "Open Sans", Helvetica;
	font-weight: 400;
    font-size: 26px;
	letter-spacing: 3px;
	display: none;
}
#the-team #profile .person{
	padding: 20px;
}
#the-team #profile .person img{
	border-radius: 50%;
	margin: 0 auto;
    margin-bottom: 20px;
}
#the-team #profile .person .name{
	color: #B29622;
	font-family: "Open Sans", Helvetica;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
}
#the-team #profile .person .role{
	color: #414042;
	font-family: "Open Sans", Helvetica;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 3px;
}
#the-team #profile .person .email a{
	color: #414042;
	font-family: "Open Sans", Helvetica;
	font-size: 14px;
	font-weight: 700;
	text-decoration: underline;
}
#the-team #quote .quote-place h2{
	color: #ffffff;
	font-family: "Tabitha";
	font-size: 36px;
	font-weight: 400;	
}
#the-team #quote .quote-place p{
	color: #ffffff;
	font-family: "Open Sans";
	font-size: 15px;
	font-weight: 400;	
	letter-spacing: 3px;
	margin-top: 20px;
}
#the-team #quote .quote-place p:last-child{
	color: #ffffff;
	font-family: "Open Sans";
	font-size: 15px;
	font-weight: 400;	
	letter-spacing: 3px;
}

@media screen and (max-width:991px) {
	#the-team #count .team-copy{
		padding: 10px;
	}
	#the-team #count .team-copy h3{
		font-size: 16px;
	}
	#the-team #count .team-copy p{
		font-size: 14px;
	}
}
@media screen and (max-width:767px) {
	#the-team #count .v-row-wrapper{
		height: auto;
	}
}

/** Why Us **/
#why-us #reason ul li{
	margin: 5px 0;
}
#why-us #reason .left-sep{
	border-left: 1px solid #ccc;
}
#why-us #reason .right-sep{
	border-right: 1px solid #ccc;
}
#why-us #faq .image-fill.image1{
	background-image : url('../img/website/whyus01.jpg');
}
#why-us #faq .image-fill.image2{
	background-image : url('../img/website/whyus02.jpg');
}
#why-us #faq .image-fill.image3{
	background-image : url('../img/website/whyus03.jpg');
}
#why-us #faq .image-fill.image4{
	background-image : url('../img/website/whyus04.jpg');
}
#why-us #faq .image-fill.image5{
	background-image : url('../img/website/whyus05.jpg');
}
#why-us #faq .dark-container {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    position: absolute;
    left: 35%;
    right: 35%;
    height: 160px;
    z-index: -1;
    top: 0;
}
#why-us #faq p.faq-repeat {
	display: inline-block;
    background: #00000080;
    padding: 30px 30px;
    line-height: 32px;
    z-index: 3;
    font-family: "Source Sans Pro", Helvetica;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.8;
	text-transform: uppercase;
}
#why-us #faq span.number {
    position: absolute;
    font-size: 91px;
    text-align: center;
    top: 20px;
    margin-left: -115px;
    z-index: -1;
    font-family: "LibreBaskerville";
}
#why-us #featured .image-fill.image1{
	background-image : url('../img/website/whyus01.jpg');
}
#why-us #featured .image-fill.image2{
	background-image : url('../img/website/whyus02.jpg');
}
#why-us #client .carousel-container{
	position: relative;
}
#why-us #client .carousel-container img{
	height: 50px;
	width: auto;
	margin: 10px 0;
}
#why-us #client .carousel-container a.next {
    right: -30px;
	top: 50%;
    position: absolute;
	cursor: pointer;
}
#why-us #client .carousel-container a.prev {
    position: absolute;
    left: -30px;
	top: 50%;
	cursor: pointer;
}
#why-us #client-carousel .client-place img {
	opacity: 1;
	transition: 0.5s all ease;
}
#why-us #client-carousel:hover img {
    opacity: 0.4;
}
#why-us #client-carousel .client-place img:hover {
    opacity: 1;
}

@media screen and (max-width: 991px) {
	#why-us #client .carousel-container a.next {
		right: 0px;
	}
	#why-us #client .carousel-container a.prev {
		left: 0px;
	}	
}
@media screen and (max-width: 767px) {
	#why-us #faq .dark-container{
		left: 25%;
		right: 25%;
	}
}

/** Home owl carousel for client logo list**/

#home #client .carousel-container{
	position: relative;
}
#home #client .carousel-container img{
	height: 50px;
	width: auto;
	margin: 10px 0;
}
#home #client .carousel-container a.next {
    right: -30px;
	top: 50%;
    position: absolute;
	cursor: pointer;
}
#home #client .carousel-container a.prev {
    position: absolute;
    left: -30px;
	top: 50%;
	cursor: pointer;
}
#home #client-carousel .client-place img {
	opacity: 1;
	transition: 0.5s all ease;
}
#home #client-carousel:hover img {
    opacity: 0.4;
}
#home #client-carousel .client-place img:hover {
    opacity: 1;
}

@media screen and (max-width: 991px) {
	#home #client .carousel-container a.next {
		right: 0px;
	}
	#home #client .carousel-container a.prev {
		left: 0px;
	}	
}
/** end of home owl carousel client logo list**/

/** SERVICES **/
#services #intro {
    margin: 20px 0;
}
#services #intro ul li{
    margin: 10px 0;
}
#services #intro .row div.col-md-6{
    padding: 40px;
}
#services #intro .row > div.col-md-6:last-child{
    border-left: 2px solid rgba(0,0,0,0.6);
}
#services #call-to-action .italicOS{
	font-family:"Open Sans", Helvetica;
	text-decoration: italic;
}

@media screen and (max-width: 767px) {
	#services div#intro .row > div.col-md-6:last-child{
		border-left: 0;
	}
}

/** OUR WORK **/
#our-work .filters i.radio {
    position: relative;
    display: block;
    margin: 0 auto 5px;
    width: 52px;
    height: 52px;
    background: url('../img/website/ui-icon-checkbox.png') no-repeat center center;
}
#our-work .filters li{
	margin: 0 20px;
}
#our-work .filters li:hover i.radio,
#our-work .filters li.selected i.radio { 
	background-image: url('../img/website/ui-icon-checkbox-hover.png');
}
/*#our-work .filters li.selected img.thumb,
#our-work .filters li:hover img.thumb,*/
#our-work .filters li img.thumb_hover{
	display: none;
}
#our-work .filters li img.thumb,
#our-work .filters li:hover img.thumb_hover,
#our-work .filters li.selected img.thumb_hover{
	/*display: block;
	margin: 20px auto;
	*/
}

#our-work .filters li img.thumb {
	display: block;
	margin: 20px auto;
}
#our-work .filters li img.thumb {
	opacity: 0.7
}
#our-work .filters li.selected img.thumb,
#our-work .filters li:hover img.thumb {
	opacity: 1;
}

/** WORK DETAIL **/
#work-detail #result .image-fill.image01{
	background-image : url('../img/website/work-detail-bg.jpg');
}
#work-detail #result .image-fill.image02{
	background-image : url('../img/website/work-detail-bg.jpg');
}
#work-detail #result .image-fill.image03{
	background-image : url('../img/website/work-detail-bg.jpg');
}

/** THE LATEST **/
#the-latest .filters i.radio {
    position: relative;
    display: block;
    margin: 0 auto 5px;
    width: 52px;
    height: 52px;
    background: url('../img/website/ui-icon-checkbox.png') no-repeat center center;
}
#the-latest .filters li{
	margin: 10px 20px;
}
#the-latest .filters li.selected a:focus{
	text-decoration: none;
}
#the-latest .filters i.radio:hover,
#the-latest .filters li.selected a i.radio { 
	background: url('../img/website/ui-icon-checkbox-hover.png') no-repeat center center;
}

@media screen and (max-width: 767px) {
	#the-latest .filters..list-inline>li{
		display: block;
	}
}

/** THE LATEST - CAREER **/
#the-latest-detail.career > hr {
	width: 100px;
	margin: 40px auto;
	border-color: #B29622;
}
#the-latest-detail.career #intro h4.title-copy{
	font-size: 34px;
}
#the-latest-detail.career #intro h4.title-copy span {
    padding: 0 5px 10px;
    border-bottom: 1px solid #B29622;
}
#the-latest-detail.career #intro p {
	font-size: 19px;
}
#the-latest-detail.career #requirement .desc-copy {
	font-size: 18px;
}
#the-latest-detail.career .lightgrey-fill{
	padding: 40px;
}
#the-latest-detail.career #apply address.desc-copy{
	font-size: 18px;
	margin-bottom: 40px;
}

/** THE LATEST - ARTICLE **/
#the-latest-detail.article #content .desc-copy{
	font-size: 18px;
	
}
#the-latest-detail.article #content .desc-copy p{
	/*max-width: 550px;*/
	margin: 0 auto;
}

/** ADDED **/
.content-carousel img {
    padding: 5px;
}

#side_blocks {
	position: fixed;
	z-index: 99;
	right: 0;
	bottom: 100px;
}
#side_blocks a {
    display: block;
    margin: 10px;
}

#side_blocks a img {
    width: 40px;
    height: auto;
}

.menu-button .bar {
    background-color: #000000;
}

.menu-open a#menu-button .bar:nth-child(2), .menu-open a#menu-button .bar:nth-child(3) {
    background-color: white;
}
@media only screen and (max-width: 768px) {
  .menu-button .bar {
    background-color: #000000;
}
}

@media only screen and (max-width: 768px) {
  .menu-open a#menu-button .bar:nth-child(2), .menu-open a#menu-button .bar:nth-child(3) {
    background-color: white;
}
}