/*------------------------------------------------------------------------------------*/
/*---[ Variables ]--------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
::-moz-selection {
  background-color: #ffdd30;
  color: #111;
}
/* Works in Safari */
::selection {
  background-color: #ffdd30;
  color: #111;
}
.box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*------------------------------------------------------------------------------------*/
/*---[ Common ]-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
body {
  font-family: "Gotham-Book";
}
html {
  font-size: 1em;
  /* 1 */

  -webkit-text-size-adjust: 1em;
  -ms-text-size-adjust: 1em;
  /* 2 */

}
a {
  outline: none !important;
}
section .title {
  margin-bottom: 50px !important;
}
section .title h3 {
  font-family: "Gotham-Bold";
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  section .title h3 {
    font-size: 3.750em;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  section .title h3 {
    font-size: 3.250em;
  }
}
@media only screen and (max-width: 480px) {
  section .title h3 {
    font-size: 2.250em;
  }
}
section .title p {
  font-family: "Gotham-Light";
  font-size: 1.125em;
  line-height: 1.250em;
  text-align: center;
  margin-bottom: 15px;
}
section .title p:last-child {
  margin-bottom: 0;
}
.white-button {
  position: relative;
  z-index: 2;
  font-size: 1.188em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFFFFF !important;
  text-transform: uppercase;
  width: 100% !important;
  display: block;
  border: 2px solid #FFFFFF;
  background: none;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.white-button:hover {
  cursor: pointer;
  background-color: #FFFFFF;
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
}
/*------------------------------------------------------------------------------------*/
/*---[ Header ]-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
header {
  display: none;
  height: 70px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
}
header .container {
  padding: 0;
}
header.scrolling-header {
  background-color: black;
}
header h1 {
  font-size: 0 !important;
  position: absolute;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  header h1 {
    top: 22px;
  }
}
@media only screen and (max-width: 991px) {
  header h1 {
    top: 24px;
    left: 15px;
    width: 180px;
    height: auto;
  }
}
header h1 a img {
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
}
header h1 a:hover img {
  -moz-opacity: 0.85;
  opacity: 0.85;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity='0.85');
}
header nav {
  position: relative;
}
header nav #mobile-trigger {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 1;
  width: 64px;
  height: 85px;
  background: url(../../images/mobile-trigger.png) no-repeat;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and (min-width: 992px) {
  header nav #mobile-trigger {
    display: none;
  }
}
header nav #mobile-trigger:hover {
  cursor: pointer;
}
header nav #mobile-trigger.open {
  background-position: -64px 0;
}
header nav ul {
  font-family: "Gotham-Medium";
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) {
  header nav ul {
    float: right;
  }
  header nav ul * {
    text-decoration: none !important;
  }
  header nav ul li {
    position: relative;
    text-align: center;
    font-size: .875em;
    float: left;
    padding-top: 28px;
    margin: 0 2px;
    height: 57px;
  }
  header nav ul li span {
    position: absolute;
    top: -85px;
    display: block;
    height: 85px !important;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  header nav ul li.current span {
    top: 0px;
  }
  header nav ul li a {
    position: relative;
    z-index: 1;
    color: #FFFFFF !important;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
  }
  header nav ul li a:hover {
    color: #ffdd30 !important;
  }
  header nav ul li.current a {
    color: #000000 !important;
  }
  header nav ul li.start {
    width: 78px;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  }
  header nav ul li.start.current a {
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  }
  header nav ul li.start span {
    width: 78px;
    background-size: 78px 85px;
    background: url("../../images/header-start-bg.svg") no-repeat;
  }
  header nav ul li.about {
    width: 82px;
  }
  header nav ul li.about.current a {
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  }
  header nav ul li.about span {
    width: 82px;
    background-size: 82px 85px;
    background: url("../../images/header-start-bg.svg") no-repeat;
  }
  header nav ul li.technologies {
    width: 146px;
  }
  header nav ul li.technologies.current a {
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  }
  header nav ul li.technologies span {
    width: 146px;
    background-size: 146px 85px;
    background: url("../../images/header-technologies-bg.svg") no-repeat;
  }
  header nav ul li.clients {
    width: 92px;
  }
  header nav ul li.clients.current a {
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  }
  header nav ul li.clients span {
    width: 92px;
    background-size: 92px 85px;
    background: url("../../images/header-clients-bg.svg") no-repeat;
  }
  header nav ul li.testimonials {
    width: 140px;
  }
  header nav ul li.testimonials.current a {
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
  }
  header nav ul li.testimonials span {
    width: 140px;
    background-position: -398px 0;
  }
  header nav ul li.contact {
    margin-left: 8px;
    padding-top: 10px;
    text-align: left;
  }
  header nav ul li.contact a {
    padding: 0 15px;
    display: block;
    line-height: 52px;
    height: 50px;
    background-color: #2479bd;
    border-radius: 3px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
  }
  header nav ul li.contact a:hover {
    color: #000000 !important;
    background-color: #ffdd30;
  }
  header nav ul li.contact.current a {
    color: #000000 !important;
    background-color: #ffdd30;
  }
  header nav ul li.contact i {
    display: inline-block;
    margin-left: 10px;
    font-size: 1.375em;
    vertical-align: middle;
    margin-top: -3px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    width: 14px;
    height: 14px;
    background: url("../../images/hire-arrow.svg") no-repeat;
    background-size: 100%;
  }
  header nav ul li.contact.current i,
  header nav ul li.contact:hover i {
    width: 14px;
    height: 14px;
    background: url("../../images/hire-arrow-on.svg") no-repeat;
    background-size: 100%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: 7px;
  }
}
@media only screen and (max-width: 991px) {
  header nav ul {
    margin: 0;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 0 40px 0;
    background: transparent url(../../images/mobile-nav-bg.png) bottom center no-repeat;
  }
  header nav ul li:nth-child(1) {
    margin-top: 30px;
  }
  header nav ul li a {
    width: 60%;
    margin: 0 auto;
    color: #FFFFFF !important;
    display: block;
    text-align: center;
    text-decoration: none !important;
    padding: 12px 0;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
  }
  header nav ul li a:hover {
    color: #ffdd30 !important;
    text-decoration: none;
  }
  header nav ul li a i {
    display: none !important;
  }
  header nav ul li.current a {
    color: #ffdd30 !important;
  }
  header nav ul li.current a:hover {
    -moz-opacity: 1;
    opacity: 1;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity='1');
  }
}
@media only screen and (max-width: 991px) {
  header {
    height: 70px;
    background-color: #000000;
  }
}
/*------------------------------------------------------------------------------------*/
/*---[ Start ]------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#start {
  overflow: hidden;
  position: relative;
  /*
        @media only screen and (min-width: 992px) {
            height: 100vh;
            background: url(../../images/start-bridge-bg-1920.jpg) no-repeat top center fixed;
            background-size: cover;
            min-height: 760px;
        }
		@media only screen and (min-width: 768px) and (max-width: 991px) {
            height: 100vh;
			background: url(../../images/start-bridge-bg-1024.jpg) no-repeat top center;
            min-height: 850px;
		}
		@media only screen and (max-width: 767px) {
			background: url(../../images/start-bridge-bg-768.jpg) no-repeat top center;
            height: 100vh;
		}
		*/

}
@media only screen and (min-width: 992px) {
  #start {
    height: 100vh;
    min-height: 840px;
    background: url(../../images/start-bridge-bg-1920.jpg) no-repeat top center fixed;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #start {
    height: 100vh;
    min-height: 720px;
    background: url(../../images/start-bridge-bg-1024.jpg) no-repeat top center;
  }
}
@media only screen and (max-width: 767px) {
  #start {
    min-height: 90vh;
    background: url(../../images/start-bridge-bg-768.jpg) no-repeat top center;
  }
}
#start #start-wrapper {
  display: none;
  position: relative;
  width: 100%;
  /*p {
				font-family: "Gotham-Light";
				color: #FFFFFF;
				text-align: center;
				line-height: 1.125em;
				text-shadow: 0 2px rgba(0,0,0,.40);
				@media only screen and (min-width: 960px) {
					font-size: 1.750em;
					margin-bottom: 120px;
				}
				@media only screen and (min-width: 768px) and (max-width: 959px) {
					font-size: 1.750em;
					margin-bottom: 90px;
				}
				@media only screen and (min-width: 481px) and (max-width: 767px) {
					font-size: 1.500em;
					margin-bottom: 80px;
				}
				@media only screen and (max-width: 480px) {
					font-size: 1.375em;
					margin-bottom: 50px;
				}
			}
			*/

}
@media only screen and (min-width: 768px) {
  #start #start-wrapper {
    transform: translate(0, -50%);
    top: 50%;
  }
}
@media (max-width: 767px) {
  #start #start-wrapper {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}
#start #start-wrapper h2,
#start #start-wrapper p {
  font-family: "Gotham-Bold";
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 0 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 35px;
  line-height: 1.125em;
}
@media only screen and (min-width: 992px) {
  #start #start-wrapper h2,
  #start #start-wrapper p {
    font-size: 3.438em;
    padding: 0 10%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 991px) {
  #start #start-wrapper h2,
  #start #start-wrapper p {
    font-size: 2.250em;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  #start #start-wrapper h2,
  #start #start-wrapper p {
    font-size: 1.625em;
    padding: 0 20px;
  }
}
#start #start-wrapper h2 span.small,
#start #start-wrapper p span.small {
  font-family: "Gotham-Medium";
  font-size: .475em;
}
#start #start-wrapper h2 span.yellow,
#start #start-wrapper p span.yellow {
  color: #ffdd30;
}
#start #start-wrapper p {
  margin-bottom: 40px;
}
#start #start-wrapper.safari {
  top: 25%;
}
#start #start-wrapper div {
  opacity: 0;
}
#start #start-wrapper a.white-button {
  padding: 15px 0;
  margin-bottom: 10px;
  text-decoration: none;
}
#start #start-wrapper a.white-button:hover {
  color: #000000 !important;
}
#start i#start-animate {
  position: absolute;
  left: 50%;
  bottom: 30px;
  margin-left: -14px;
  font-size: 3em;
  display: none;
  width: 28px;
  height: 16.329px;
  background: url("../../images/arrow-animate.svg") no-repeat;
  background-size: 100%;
  transform: translateY(0);
  -webkit-animation: irBounce 1.5s infinite;
  -moz-animation: irBounce 1.5s infinite;
  -o-animation: irBounce 1.5s infinite;
  animation: irBounce 1.5s infinite;
}
@-moz-keyframes irBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes irBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes irBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes irBounce {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
/*------------------------------------------------------------------------------------*/
/*---[ About ]------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#about {
  display: none;
  position: relative;
  margin-top: -220px;
  padding: 260px 0 170px 0;
}
@media only screen and (min-width: 960px) {
  #about {
    background: url(../../images/about-bg-1920.png) no-repeat top center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  #about {
    background: url(../../images/about-bg-1024.png) no-repeat top center;
  }
}
@media only screen and (max-width: 767px) {
  #about {
    background: url(../../images/about-bg-768.png) no-repeat top center;
  }
}
#about .title h3 {
  color: #1F6DB5;
  text-shadow: 0px 1px #ffffff;
}
#about #about-wrapper {
  margin-bottom: 40px;
}
#about #about-wrapper h4 {
  padding: 0 20px;
  font-size: 1.063em;
  color: #1F6DB5;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0px 1px #ffffff;
}
#about #about-wrapper p {
  font-family: "Gotham-Light";
  color: #666666;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #about #about-wrapper p {
    font-size: 1.50em;
    line-height: 1.375em;
  }
}
@media only screen and (max-width: 767px) {
  #about #about-wrapper p {
    font-size: 1.25em;
    line-height: 1.313em;
  }
}
#details #focus nav {
  margin-bottom: 70px;
}
#details #focus nav ul {
  font-family: "Gotham-Medium";
  border: 3px solid #1F6DB5;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#details #focus nav ul li {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  text-align: center;
  padding: 20px 0 15px 0;
  text-shadow: 0 1px #ffffff;
  color: #1F6DB5;
  text-transform: uppercase;
  font-size: 1.250em;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
}
#details #focus nav ul li:hover {
  cursor: pointer;
  background-color: rgba(36, 121, 189, 0.15);
}
#details #focus nav ul li.current {
  color: #FFFFFF;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
  background-color: #1F6DB5;
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  #details #focus nav ul li {
    width: 33.3333333333333%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  #details #focus nav ul li {
    width: 100%;
  }
}
#details #focus #approach {
  text-align: center;
}
#details #focus #approach p {
  line-height: 1.250em;
  color: #666666;
  text-shadow: 0px 1px #ffffff;
}
#details #focus #approach p:first-child {
  font-family: "Gotham-Medium";
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  #details #focus #approach p:first-child {
    font-size: 1.75em;
  }
}
@media only screen and (max-width: 767px) {
  #details #focus #approach p:first-child {
    font-size: 1.375em;
  }
}
#details #focus #approach p:not(first-child) {
  font-family: "Gotham-Light";
}
@media only screen and (min-width: 768px) {
  #details #focus #approach p:not(first-child) {
    font-size: 1.325em;
  }
}
@media only screen and (max-width: 767px) {
  #details #focus #approach p:not(first-child) {
    font-size: 1.250em;
  }
}
#details #focus #services {
  position: relative;
}
#details #focus #services div {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) {
  #details #focus #services div {
    width: 33.3333333333333%;
  }
  #details #focus #services div:nth-child(2):before,
  #details #focus #services div:nth-child(2):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: url("../../images/services-divider.png") repeat-y;
  }
  #details #focus #services div:nth-child(2):before {
    left: 0;
  }
  #details #focus #services div:nth-child(2):after {
    right: 0;
  }
}
#details #focus #services div img {
  display: block;
  margin: 0 auto 30px auto;
}
#details #focus #services div h5 {
  font-family: "Gotham-Medium";
  font-size: 1.375em;
  color: #666666;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0px 1px #ffffff;
}
#details #focus #services div p {
  text-align: center;
  font-family: "Gotham-Light";
  font-size: 1.250em;
  line-height: 1.313em;
  color: #666666;
  margin-bottom: 20px;
  text-shadow: 0px 1px #ffffff;
}
@media only screen and (min-width: 768px) {
  #details #focus #services div p {
    padding: 0 40px;
  }
}
#details #focus #process img {
  width: 100px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 30px auto;
}
#details #focus #process h5 {
  padding-top: 10px;
  margin-bottom: 5px;
  font-family: "Gotham-Medium";
  font-size: 1.375em;
  color: #666666;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0px 1px #ffffff;
}
#details #focus #process p {
  text-align: center;
  font-family: "Gotham-Light";
  font-size: 1.250em;
  line-height: 1.313em;
  color: #666666;
  margin-bottom: 20px;
  text-shadow: 0px 1px #ffffff;
}
#details #focus #process img {
  width: 131px;
  height: 141px;
}
#details #focus #process #research,
#details #focus #process #development {
  margin-bottom: 30px;
}
#details #focus #process #planning,
#details #focus #process #launch {
  margin-bottom: 40px;
}
/*------------------------------------------------------------------------------------*/
/*---[ Technologies ]-----------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#technologies {
  display: none;
  position: relative;
  z-index: 1;
  margin-top: -210px;
  padding: 250px 0 170px 0;
}
@media only screen and (min-width: 992px) {
  #technologies {
    background: url(../../images/technologies-bg-1920.png) no-repeat top center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #technologies {
    background: url(../../images/technologies-bg-1024.png) no-repeat top center;
  }
}
@media only screen and (max-width: 767px) {
  #technologies {
    background: url(../../images/technologies-bg-768.png) no-repeat top center;
  }
}
#technologies .title h3 {
  color: #ffdd30;
  text-shadow: 0px -1px rgba(0, 0, 0, 0.4);
}
#technologies .title p {
  color: #FFFFFF;
  text-shadow: 0px -1px rgba(0, 0, 0, 0.4);
}
#technologies #technology-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  width: 100%;
}
#technologies #technology-slider :focus {
  outline: none;
}
#technologies #technology-slider img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  #technologies #technology-slider img {
    width: 100%;
    height: auto;
  }
}
#technologies #technology-slider p {
  color: white;
}
@media only screen and (min-width: 768px) {
  #technologies #technology-slider p {
    padding: 0 40px;
  }
}
/*------------------------------------------------------------------------------------*/
/*---[ Clients ]----------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#clients {
  display: none;
  position: relative;
  z-index: 2;
  margin-top: -210px;
  padding: 250px 0 150px 0;
}
@media only screen and (min-width: 992px) {
  #clients {
    background: url(../../images/clients-bg-1920.png) no-repeat top center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #clients {
    background: url(../../images/clients-bg-1024.png) no-repeat top center;
  }
}
@media only screen and (max-width: 767px) {
  #clients {
    background: url(../../images/clients-bg-768.png) no-repeat top center;
  }
}
#clients .title h3 {
  color: #1F6DB5;
  text-shadow: 0px 1px #ffffff;
}
#clients .title h4 {
  color: #1F6DB5;
  font-size: 1.50em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0px 1px #ffffff;
}
#clients .title p {
  color: #444444;
  text-shadow: 0px 1px #ffffff;
}
#clients #main-clients ul {
  list-style: none;
  padding: 20px 0;
  margin: 0 auto 10px auto;
  text-align: center;
  width: 100%;
}
#clients #main-clients ul li {
  display: inline-block;
  vertical-align: top;
  height: auto;
}
@media only screen and (min-width: 768px) {
  #clients #main-clients ul li {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  #clients #main-clients ul li {
    width: 50%;
  }
}
#clients #main-clients ul li img {
  border: none;
  outline: none;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  
}
#clients #additional-clients .title {
  margin-bottom: 25px !important;
}
#clients #additional-clients .title h4 {
  margin-bottom: 0px !important;
}
#clients #additional-clients .client-group {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  #clients #additional-clients .client-group {
    padding: 0 10px 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  #clients #additional-clients .client-group {
    text-align: center;
  }
  #clients #additional-clients .client-group li:nth-child(even) {
    -moz-opacity: 0.85 !important;
    opacity: 0.85 !important;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity='0.85') !important;
  }
}
#clients #additional-clients .client-group h5 {
  font-family: "Gotham-Medium";
  color: #666666;
  text-shadow: 0 1px #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#clients #additional-clients .client-group ul li {
  color: #666666;
  font-size: .938em;
  margin-bottom: 5px;
  line-height: 1.125em;
  text-shadow: 0 1px #ffffff;
}
@media only screen and (min-width: 992px) {
  #clients #additional-clients .client-group ul li {
    padding-left: 10px;
    background: url(../../images/client-bullet.png) 0 5px no-repeat;
  }
}
#clients #additional-clients #toggle-clients {
  margin-bottom: 60px;
  position: relative;
  z-index: 1000;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  #clients #additional-clients #toggle-clients {
    display: none;
  }
}
#clients #additional-clients #toggle-clients span {
  color: #2479bd;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
}
#clients #additional-clients #toggle-clients span:hover {
  color: black;
  cursor: pointer;
}
/*------------------------------------------------------------------------------------*/
/*---[ Testimonials ]-----------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#testimonials {
  position: relative;
  z-index: 3;
  margin-top: -210px;
  padding: 290px 0 180px 0;
}
@media only screen and (min-width: 992px) {
  #testimonials {
    background: url(../../images/testimonials-bg-1920.png) no-repeat top center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #testimonials {
    background: url(../../images/testimonials-bg-1024.png) no-repeat top center;
  }
}
@media only screen and (max-width: 767px) {
  #testimonials {
    background: url(../../images/testimonials-bg-768.png) no-repeat top center;
  }
}
#testimonials blockquote img {
  display: block;
  margin: 0 auto 40px auto;
}
#testimonials blockquote p {
  font-family: "Gotham-Light";
  font-size: 1.188em;
  line-height: 1.125em;
  color: #73635D;
  text-align: center;
}
#testimonials blockquote p.quote {
  margin-bottom: 30px;
}
#testimonials blockquote p.source {
  font-family: "Gotham-Medium";
  margin-bottom: 40px;
}
#testimonials nav ol {
  text-align: center;
  margin-bottom: 30px;
}
#testimonials nav ol li {
  margin: 0 1px;
  text-indent: -9999px;
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background-color: #423A37;
}
#testimonials nav ol li:hover {
  cursor: pointer;
  background-color: #73635D;
}
#testimonials nav ol li.current {
  background-color: #1F6DB5;
}
/*------------------------------------------------------------------------------------*/
/*---[ Contact ]----------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#contact {
  display: none;
  position: relative;
  z-index: 4;
  padding-top: 250px;
  margin-top: -210px;
}
@media only screen and (min-width: 992px) {
  #contact {
    background: url(../../images/contact-bg-1920.png) no-repeat top center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #contact {
    background: url(../../images/contact-bg-1024.png) no-repeat top center;
  }
}
@media only screen and (max-width: 767px) {
  #contact {
    background: url(../../images/contact-bg-768.png) no-repeat top center;
  }
}
#contact .title h3 {
  color: #FFFFFF;
  text-shadow: 0px -1px rgba(0, 0, 0, 0.4);
}
#contact .title p {
  color: #FFFFFF;
  text-shadow: 0px -1px rgba(0, 0, 0, 0.4);
}
#contact #map-wrapper #map {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: 300px;
  background-color: #E4E4E4;
  margin-bottom: 20px;
}
#contact #map-wrapper ul {
  margin-bottom: 40px;
  text-align: center;
}
#contact #map-wrapper ul li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFFFFF;
}
@media only screen and (min-width: 1200px) {
  #contact #map-wrapper ul li {
    display: inline-block;
    margin: 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #contact #map-wrapper ul li {
    display: inline-block;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 991px) {
  #contact #map-wrapper ul li {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  #contact #map-wrapper ul li:before {
    display: block !important;
    margin: 0 auto 5px auto !important;
  }
}
#contact #map-wrapper ul li:before {
  content: "";
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 44px;
}
#contact #map-wrapper ul li:nth-child(1):before {
  background: url(../../images/contact-address-icon.png) no-repeat;
}
#contact #map-wrapper ul li:nth-child(2):before {
  background: url(../../images/contact-email-icon.png) no-repeat;
}
#contact #map-wrapper ul li:nth-child(3):before {
  background: url(../../images/contact-phone-icon.png) no-repeat;
}
#contact #map-wrapper ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
#contact #form-wrapper .input-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  width: 100%;
  border: 3px solid #5EB6E5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  height: 58px;
}
#contact #form-wrapper .input-wrapper input,
#contact #form-wrapper .input-wrapper textarea {
  font-family: "Gotham-Book";
  color: #FFFFFF;
  font-size: 1.063em;
  background-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  border: none;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
}
#contact #form-wrapper .input-wrapper input::-webkit-input-placeholder,
#contact #form-wrapper .input-wrapper textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #FFFFFF !important;
}
#contact #form-wrapper .input-wrapper input:-moz-placeholder,
#contact #form-wrapper .input-wrapper textarea:-moz-placeholder {
  /* Firefox 18- */

  opacity: 1;
  color: #FFFFFF !important;
}
#contact #form-wrapper .input-wrapper input::-moz-placeholder,
#contact #form-wrapper .input-wrapper textarea::-moz-placeholder {
  /* Firefox 19+ */

  opacity: 1;
  color: #FFFFFF !important;
}
#contact #form-wrapper .input-wrapper input:-ms-input-placeholder,
#contact #form-wrapper .input-wrapper textarea:-ms-input-placeholder {
  opacity: 1;
  color: #FFFFFF !important;
}
#contact #form-wrapper .input-wrapper input:focus,
#contact #form-wrapper .input-wrapper textarea:focus {
  background-color: rgba(94, 182, 229, 0.2);
}
#contact #form-wrapper .input-wrapper input:focus::-webkit-input-placeholder,
#contact #form-wrapper .input-wrapper textarea:focus::-webkit-input-placeholder {
  opacity: .35;
}
#contact #form-wrapper .input-wrapper input:focus:-moz-placeholder,
#contact #form-wrapper .input-wrapper textarea:focus:-moz-placeholder {
  /* Firefox 18- */

  opacity: .35;
}
#contact #form-wrapper .input-wrapper input:focus::-moz-placeholder,
#contact #form-wrapper .input-wrapper textarea:focus::-moz-placeholder {
  /* Firefox 19+ */

  opacity: .35;
}
#contact #form-wrapper .input-wrapper input:focus:-ms-input-placeholder,
#contact #form-wrapper .input-wrapper textarea:focus:-ms-input-placeholder {
  opacity: .35;
}
#contact #form-wrapper .input-wrapper input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding-left: 15px;
  height: 52px;
}
#contact #form-wrapper .input-wrapper input:focus {
  outline: none !important;
}
#contact #form-wrapper .input-wrapper textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 0 0 15px;
  height: 324px;
  resize: none;
}
#contact #form-wrapper .input-wrapper textarea:focus {
  outline: none !important;
}
#contact #form-wrapper .input-wrapper select {
  cursor: pointer;
  width: 100%;
  height: 54px;
  background: transparent url("../../images/select-arrow.svg") 97% center no-repeat;
  border: 0;
  color: white;
  padding: 0 30px 0 10px !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
#contact #form-wrapper .input-wrapper select option {
  display: block;
  color: black;
  padding: 10px 15px;
}
#contact #form-wrapper .input-wrapper select:focus {
  outline: none !important;
}
#contact #form-wrapper .input-wrapper select::-ms-expand {
  display: none;
}
#contact #form-wrapper .input-wrapper#message-wrapper {
  height: 330px;
}
#contact #form-wrapper .input-wrapper#message-wrapper span {
  height: 258px;
}
#contact #form-wrapper .form-message {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 20px;
  color: #FFFFFF;
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px rgba(255, 255, 255, 0.25);
  box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.5), 0px 1px 0px 0px rgba(255, 255, 255, 0.25);
}
#contact #form-wrapper .form-message i {
  display: block;
  float: left;
  font-size: 1.5em;
}
#contact #form-wrapper .form-message p {
  padding-top: 3px;
  display: block;
  float: left;
  font-size: .938em;
  line-height: 1.175em;
  width: 85%;
  margin-left: 10px;
}
#contact #form-wrapper .form-message.success {
  background-color: #8CC235;
}
#contact #form-wrapper .form-message.error {
  background-color: #C23535;
}
#contact #form-wrapper button {
  border-width: 3px;
  padding: 15px 0;
}
#contact #form-wrapper button:hover {
  color: #2479bd !important;
}
#contact footer {
  padding: 90px 0 80px 0;
}
#contact footer #social {
  margin-bottom: 15px;
}
#contact footer #social ul {
  text-align: center;
}
#contact footer #social ul li {
  text-indent: -9999px;
  display: inline-block;
  margin: 0 5px;
}
#contact footer #social ul li a {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-opacity: 0.25;
  opacity: 0.25;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity='0.25');
  position: relative;
  display: block;
  width: 40px;
  height: 42px;
  background: url("../../images/social-bg.svg") center center no-repeat;
  background-size: 100%;
}
#contact footer #social ul li a i {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 42px;
}
#contact footer #social ul li a:hover {
  -moz-opacity: 1;
  opacity: 1;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity='1');
}
#contact footer #social ul li.linkedin i {
  background: url("../../images/linkedin.svg") center center no-repeat;
}
#contact footer #social ul li.twitter i {
  background: url("../../images/twitter.svg") center center no-repeat;
}
#contact footer p {
  font-size: .938em;
  line-height: 1.175em;
  color: #FFFFFF;
  text-align: center;
  -moz-opacity: 0.5;
  opacity: 0.5;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity='0.5');
}
/*------------------------------------------------------------------------------------*/
/*---[ Footer ]-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
#top {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 50%;
  margin-left: -58px;
  display: block;
  width: 116px;
  height: 55px;
  background: url(../../images/top.png) no-repeat;
  cursor: pointer;
}
/*------------------------------------------------------------------------------------*/
/*---[ Typed cursor ]-----------------------------------------------------------------*/
/*------------------------------------------------------------------------------------*/
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
