/**************************************************
 * Configure
 */
/**************************************************
 * Webfonts
 *
 * Montserrat - Google
 * Weights: 100, 300, 400, 500, 700
 * Family: "Montserrat"
 *
 * Alegreya - Google
 * Weights: 400, 400i
 * Family: "Alegreya"
 *
 */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-size: 100%;
  background: #151C34 url(../images/bg.png) repeat-x fixed top center;
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 2;
}

/* @media screen and (min-width: 767px) {
    html, body {
        font-size: 20px;
    }
} */
#cookie-notice {
  position: fixed;
  bottom: 1em;
  z-index: 100;
  text-align: center;
  background-color: #d1ecf1;
  border-radius: 1em;
  box-shadow: 0 8px 15px 3px rgba(0, 0, 0, 0.2);
  border-radius: 0.25em;
  width: 80%;
  max-width: 500px;
  font-size: 14px;
  margin-left: 2em;
}
#cookie-notice a {
  color: black;
}
#cookie-notice p {
  margin-top: 0.5em;
  font-family: Arial, Helvetica, sans-serif;
}
#cookie-notice button {
  background-color: black;
  color: white;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  font-size: 14px;
}

.hidden {
  display: none;
}

.visuallyhidden {
  opacity: 0;
}

.heightfix {
  height: 20px;
}

.bold {
  font-weight: bold;
}

.clear {
  clear: both;
}

p {
  margin-top: 2rem;
  font-family: "Alegreya", Times, serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h2 {
  font-size: 173%;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h2:before {
  content: "> ";
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

em {
  font-style: italic;
}

button {
  font-size: 16px;
  color: #585d72;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  font-family: inherit;
  border: inherit;
  line-height: 1.1;
  padding: 0.8rem 1.2rem;
  background-color: #FFF;
  box-shadow: 0 8px 15px 3px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  border-radius: 100em;
  margin-top: 1.6rem;
  cursor: pointer;
  transition: all 0.15s ease-in-out 0s;
}
button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 11px 18px 0px rgba(0, 0, 0, 0.15);
}

#bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  z-index: 0;
}
#bg-elements:before, #bg-elements:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 35vw;
  height: 35vw;
  transform: rotate(45deg);
  background-color: #1a2035;
}
#bg-elements:before {
  top: -8vw;
  left: -20vw;
}
#bg-elements:after {
  left: 76vw;
  top: 50vh;
  margin-top: -25vw;
}

#wrapper {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.inner_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

/** HEADER **/
#header {
  position: relative;
  width: 100%;
  /*height: 55vh;*/
}
#header .inner_container {
  background: url(../images/G2.png) 25px 140px no-repeat;
  /*padding: 0 50px 95px;*/
  /*padding-bottom: 95px;*/
  padding-bottom: 80px;
}
#header h1.grip {
  font-size: 64px;
  color: #FFF;
  /*margin-left: 2em;*/
  display: inline-block;
  width: 36%;
  vertical-align: middle;
}
#header nav {
  text-align: right;
  /*margin-top: -4em;*/
  display: inline-block;
  width: 63%;
  vertical-align: middle;
}
#header nav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-right: 3em;
}
#header nav a:last-of-type {
  margin-right: 0;
}
#header nav a:hover {
  border-bottom: 4px solid #315CF1;
}
#header #scrolling-phrase-container {
  position: relative;
  /*padding-top: 5vh;*/
  /*padding-top: 45px;*/
  padding-top: 0;
  padding-left: 350px;
  color: #FFF;
  font-size: 150%;
  text-align: center;
  line-height: 1.6;
}
#header #scrolling-phrase-container #gt-symbol, #header #scrolling-phrase-container #scrolling-phrase, #header #scrolling-phrase-container #cursor-blink {
  color: #315CF1;
  font-size: 40px;
}
#header #scrolling-phrase-container #gt-symbol, #header #scrolling-phrase-container #scrolling-phrase {
  font-weight: 700;
}
#header #scrolling-phrase-container #scrolling-phrase-wrapper {
  display: inline-block;
  text-align: left;
  transition: width 0.5s ease-in-out 0s;
}

/* SECTION STYLES */
section {
  /*padding: 0 10vw;*/
  background-color: #FFF;
  clear: both;
  position: relative;
  overflow: hidden;
  width: 100%;
}
section.blue, section.dark-blue, section.orange, section.green, section.red {
  color: #FFF;
}
section.blue {
  background-color: #1A3696;
}
section.dark-blue {
  background-color: #011D7D;
}
section.green {
  background-color: #19863B;
}
section.orange {
  background-color: #D64000;
}
section.red {
  background-color: #AC3B4C;
}

/** ABOUT SECTION **/
#about {
  background: #FFF url(../images/bg-about.png) center top no-repeat;
}
#about .inner_container {
  padding: 70px 50px;
  text-align: center;
}
#about .aboutBlock {
  width: 31%;
  max-width: 350px;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  color: #161C34;
  text-align: center;
  line-height: 40px;
}
#about .aboutBlock.middle {
  margin: 0 25px;
}
#about .aboutBlock p {
  margin-top: 0;
  font-weight: 400;
}
#about .aboutBlock p strong {
  font-weight: 700;
}

/* COMPANIES SECTION **/
#companies .inner_container {
  padding: 20px 50px;
}
#companies #logos {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1072px;
}
#companies #m_logos {
  display: none;
  margin: 0 auto;
  width: 100%;
  max-width: 604px;
}

/** WORK SECTION **/
section.section-work:before, section.section-work:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 35vw;
  height: 35vw;
  transform: rotate(45deg);
  background-color: #1C943E;
}

section.section-work.red:before, section.section-work.red:after {
  background-color: rgb(162, 51, 67);
}

section.section-work.blue:before, section.section-work.blue:after {
  background-color: #223CA5;
}

section.section-work.dark-blue:before, section.section-work.dark-blue:after {
  background-color: #01196e;
}

.section-1:before {
  top: -8vw;
  left: -20vw;
}

.section-1:after {
  left: 76vw;
  top: 50vh;
  margin-top: -25vw;
}

.section-2:before {
  top: 6vw;
  left: -24vw;
}

.section-2:after {
  left: 7vw;
  top: 0vh;
  margin-top: -25vw;
}

.section-work.section-3:before {
  display: none;
}

.section-work.section-3:after {
  display: none;
}

.section-4:before {
  top: -8vw;
  left: -20vw;
}

.section-4:after {
  left: 76vw;
  top: 50vh;
  margin-top: -25vw;
}

.expertise, .work {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  -moz-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

.expertise {
  padding-right: 30%;
}
.expertise p {
  font-size: 18px;
}
.expertise .example {
  position: absolute;
}

#mobile .expertise {
  padding-right: 0;
  padding-left: 34%;
}

.work {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 80%;
  transform: translateX(9999px);
  overflow-x: auto;
  width: 100%;
  padding: 40px 10px 0;
  text-align: center;
}
.work ul {
  width: 100%;
  display: flex;
}
.work ul li {
  display: inline-block;
  flex: 1;
  vertical-align: top;
  width: 31%;
  max-width: 350px;
  margin: 0 15px;
  padding-bottom: 0.5rem;
  background-color: #FFF;
  color: #000;
  box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
}
.work ul li img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #DDD;
}
.work ul li a > :not(img) {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: 0;
}
.work ul li a h3 {
  text-transform: uppercase;
  padding-bottom: 0;
  font-weight: 700;
}
.work ul li a p {
  font-style: italic;
  font-family: "Montserrat", Helvetica, sans-serif;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 300;
}

/*
$container.find('.expertise').css('top', '-100%');
$container.find('.work').css('top', '0%')
*/
.work-open .work {
  /*display: block;
  top: -100%;*/
}

.work-open .expertise {
  /*top: -100%;*/
}

/** WEB SECTION **/
#web .expertise {
  padding-right: 35%;
}
#web #web_example {
  right: 0;
  top: 115px;
}

/** MOBILE SECTION **/
#mobile #mobile_example {
  left: 0;
  top: 100px;
}

/** SOCIAL SECTION **/
#social .expertise {
  padding-right: 65%;
}
#social #social_chart {
  /* position: absolute;
  right: 0;
  top: 60px; */
  display: none;
}
#social #social_chart_container {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding-top: 40px;
  background-color: #171C34;
}
#social #social_chart_container h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 15px;
}
#social #social_chart_container #social_chart_table {
  display: table;
  width: 100%;
}
#social #social_chart_container #social_chart_table tr {
  border-bottom: 2px solid #D64000;
}
#social #social_chart_container #social_chart_table tr.capabilities td {
  position: relative;
  font-weight: 500;
}
#social #social_chart_container #social_chart_table tr.capabilities .info {
  display: none;
  position: absolute;
  top: 65px;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  background-color: #FFF;
  color: #212121;
  font-size: 11px;
  line-height: 1.3;
  padding: 8px;
  box-shadow: 0px 2px 5px 0px #333;
}
#social #social_chart_container #social_chart_table tr.capabilities .info span.arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #FFF;
  position: absolute;
  top: -7px;
  left: 50%;
  margin-left: -7px;
}
#social #social_chart_container #social_chart_table tr.capabilities .info-shown {
  background-color: #d36217;
}
#social #social_chart_container #social_chart_table td {
  text-align: center;
  padding: 5px 25px;
  line-height: 1.2;
  vertical-align: middle;
}
#social #social_chart_container #social_chart_table td span.question-mark {
  display: inline-block;
  background: url(../images/question-mark.png) no-repeat 0 0;
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
  text-indent: -9999em;
  vertical-align: middle;
  margin-bottom: 5px;
  cursor: pointer;
}
#social #social_chart_container #social_chart_table td span.check {
  display: inline-block;
  background: url(../images/checkmark.png) no-repeat 0 0;
  width: 25px;
  height: 25px;
  background-size: 25px 25px;
  text-indent: -9999em;
  vertical-align: middle;
}
#social #social_chart_container #social_chart_table td.platform {
  font-size: 25px;
}
#social #social_chart_container #social_chart_table td.platform span.name {
  display: none;
}

/** GAME SECTION **/
#game .expertise {
  padding-left: 38%;
  padding-right: 0;
}
#game #game_example {
  left: 0;
  bottom: 0;
}

/** CONTACT SECTION **/
section.contact {
  background-color: #161d35;
  padding-top: 4rem;
}
section.contact .contents {
  position: relative;
}
section.contact .copy {
  position: relative;
  z-index: 1;
  color: #FFF;
  padding-bottom: 2rem;
  float: left;
  width: 33%;
  /*padding-top: 6.75rem;*/
  padding-top: 8rem;
}
section.contact .copy h2 {
  margin: 0;
}
section.contact .copy p {
  margin-top: 0.2em;
  font-size: 18px;
}
section.contact #envelope-svg {
  position: absolute;
  top: 0;
  left: -2rem;
  z-index: 0;
}
section.contact #sentMessage {
  display: none;
  padding-bottom: 4rem;
}
section.contact #sentMessage h1 {
  color: white;
  text-align: center;
}
section.contact form {
  padding: 2em;
  background-color: #315CF1;
  color: #FFF;
  position: relative;
  z-index: 2;
  box-shadow: 20px 20px 0 0 #0f1425;
  box-sizing: border-box;
  float: left;
  width: 50%;
  margin-left: 8%;
  /* label {
      display: block;
      margin-bottom: 2rem;
      font-size: 70%;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;

      &.col-1 {
          width: 45%;
          float: left;
      }

      &.col-2 {
          width: 45%;
          float: right;
      }

      &.fullwidth {
          clear: both;
      }
  } */
}
section.contact form .form-chunk {
  display: block;
  margin-bottom: 2rem;
  font-size: 70%;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
section.contact form .form-chunk.col-1 {
  width: 45%;
  float: left;
}
section.contact form .form-chunk.col-2 {
  width: 45%;
  float: right;
}
section.contact form .form-chunk.fullwidth {
  clear: both;
}
section.contact form input, section.contact form textarea {
  background: #315CF1; /*transparent; */
  border: 0;
  border-bottom: 2px solid #161d35;
  display: block;
  margin-top: 0;
  width: 100%;
  color: #FFF; /*#97a1e6;*/
  font-family: "Montserrat", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  transition: color 0.35s ease-in-out 0s, background-color 0.35s ease-in-out 0s;
  padding: 8px;
  cursor: text;
}
section.contact form input {
  min-height: 42px;
}
section.contact form textarea {
  width: 100%;
  line-height: 1.8;
  padding-top: 0;
  border-bottom: 0;
  resize: vertical;
  min-height: 80px;
  background-image: -webkit-linear-gradient(transparent 1.6em, #161d35 1.6em, #161d35 1.7em, transparent 1.7em, transparent 3.4em, #161d35 3.4em, #161d35 3.5em, transparent 3.5em, transparent 5.2em, #161d35 5.2em, #161d35 5.3em, transparent 5.3em);
  /*background-image: -moz-linear-gradient(left, transparent 10px, transparent 10px), -moz-linear-gradient(right, transparent 10px, transparent 10px), -moz-linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);
  background-image: -ms-linear-gradient(left, transparent 10px, transparent 10px), -ms-linear-gradient(right, transparent 10px, transparent 10px), -ms-linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);
  background-image: -o-linear-gradient(left, transparent 10px, transparent 10px), -o-linear-gradient(right, transparent 10px, transparent 10px), -o-linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);
  background-image: linear-gradient(left, transparent 10px, transparent 10px), linear-gradient(right, transparent 10px, transparent 10px), linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);*/
  /*background-size: 100% 1.6em;*/
  background-size: 100% 5.3em;
  background-attachment: local;
  background-repeat: repeat-y;
}
section.contact form input:active, section.contact form input:focus {
  background: #2e56de;
  outline: 0;
  color: #FFF;
}
section.contact form textarea:active, section.contact form textarea:focus {
  outline: 0;
  color: #FFF;
  background-image: -webkit-linear-gradient(#2e56de 1.6em, #161d35 1.6em, #161d35 1.7em, #2e56de 1.7em, #2e56de 3.4em, #161d35 3.4em, #161d35 3.5em, #2e56de 3.5em, #2e56de 5.2em, #161d35 5.2em, #161d35 5.3em, #2e56de 5.3em);
  /*background-image: -moz-linear-gradient(left, transparent 10px, transparent 10px), -moz-linear-gradient(right, transparent 10px, transparent 10px), -moz-linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);
  background-image: -ms-linear-gradient(left, transparent 10px, transparent 10px), -ms-linear-gradient(right, transparent 10px, transparent 10px), -ms-linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);
  background-image: -o-linear-gradient(left, transparent 10px, transparent 10px), -o-linear-gradient(right, transparent 10px, transparent 10px), -o-linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);
  background-image: linear-gradient(left, transparent 10px, transparent 10px), linear-gradient(right, transparent 10px, transparent 10px), linear-gradient(transparent 30px, #161d35 30px, #161d35 32px, transparent 32px);*/
  /*background-size: 100% 1.6em;*/
}
section.contact form textarea::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}
section.contact form textarea::-webkit-scrollbar {
  width: 8px;
  background-color: #FFFFFF;
}
section.contact form textarea::-webkit-scrollbar-thumb {
  background-color: #161d35;
}
section.contact form button {
  width: 12em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 2em;
}
section.contact form #errorBox {
  border: 3px solid #990000;
  background: #F33;
  color: #FFF;
  margin: 0px 0px 1.5rem;
  padding: 5px 5px;
  font-size: 0.7em;
  font-weight: 500;
}
section.contact form #errorBox ul {
  list-style: disc;
  padding-left: 25px;
}
section.contact form #errorBox ul li {
  list-style: disc;
  line-height: 1.5em;
  margin: 5px 0;
}

body *::selection, form input::selection, form textarea::selection {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c12be6+0,23dcf7+100 */
  background-color: #23dcf7; /*#e52ef5;*/
}

/** FOOTER SECTION **/
#footer {
  text-align: center;
  background-color: #ECECEC;
}
#footer .inner_container {
  padding: 50px 50px 80px;
}
#footer .block {
  display: inline-block;
  width: 20%;
  vertical-align: top;
}
#footer .block.middle {
  border-left: 1px solid #FAFAFA;
  border-right: 1px solid #FAFAFA;
}
#footer .block a {
  color: #161d35;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
#footer .block a:hover {
  border-bottom: 4px solid #315CF1;
}
#footer .block a:visited {
  color: #161d35;
}
#footer .block a.sublink {
  font-weight: 400;
  font-size: 15px;
  border-bottom: 0;
  margin-top: 5px;
}
#footer .block a.sublink:hover {
  border-bottom: 3px solid #315CF1;
}
#footer #copyright {
  font-family: "Montserrat", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  position: absolute;
  left: 50px;
  bottom: 20px;
}
#footer h1.grip {
  font-size: 64px;
  color: #161d35;
  display: block;
  line-height: 1;
  position: absolute;
  right: 50px;
  bottom: 10px;
}

/** OVERLAYS **/
#overlayCover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
}

.overlay {
  display: none;
  margin-bottom: 15px;
  width: 720px;
  position: absolute;
  top: 300px;
  left: 50%;
  z-index: 1200;
  margin-left: -360px;
  padding: 30px 30px;
  background-color: #FFF;
  color: #000;
  font-size: 0.8em;
  font-weight: 400;
}
.overlay .close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
  background-color: transparent;
  font-size: 1.25em;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 0;
  padding: 0;
  /* width: 28px;
  height: 28px; */
  line-height: 1;
  display: block;
  box-shadow: none;
  margin: 0;
}
.overlay .close:hover {
  color: #AC3B4C;
  transform: none;
}

#expertise {
  background-color: #151C34;
  color: #FFF;
  border: 3px solid #315CF1;
  border-radius: 15px;
  width: 800px;
  margin-left: -400px;
}
#expertise .close {
  color: #FFF;
  width: 28px;
  height: 28px;
  padding: 4px 0px;
  border-radius: 50%;
}
#expertise .close:hover {
  color: #AC3B4C;
  background-color: #FFF;
}
#expertise h2 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#expertise h2:before {
  content: "";
}
#expertise .leftcol, #expertise .rightcol {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}
#expertise .leftcol {
  float: left;
}
#expertise .rightcol {
  float: right;
}
#expertise .block {
  margin-top: 25px;
}
#expertise .block:first-of-type {
  margin-top: 0;
}
#expertise h3 {
  font-size: 1.125em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
#expertise h3 i {
  font-size: 1.125em;
}
#expertise h3 i.fa-file-code-o {
  color: #E97C34;
}
#expertise h3 i.fa-server {
  color: #21AC4C;
}
#expertise h3 i.fa-random {
  color: #be4255;
}
#expertise h3 i.fa-crop {
  color: #496ff3;
}
#expertise h3 i.fa-file-video-o {
  color: #E9BA34;
}
#expertise ul {
  padding-left: 20px;
}
#expertise ul li {
  list-style-type: disc;
  line-height: 1.5em;
  margin: 5px 0;
}
#expertise ul.sublist li {
  list-style-type: circle;
}

/**************************************************
 * Retina
 */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 1.5/1), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  #social #social_chart_container #social_chart_table td span.question-mark {
    background-image: url(../images/question-mark@2x.png);
  }
  #social #social_chart_container #social_chart_table td span.check {
    background-image: url(../images/checkmark@2x.png);
  }
}

/*# sourceMappingURL=style.css.map */
