@import "https://fonts.googleapis.com/css?family=Lato:300,400,700&subset=latin-ext";
@import url(../fonts/font.css);
@import url(extends/vectormap/jquery-jvectormap-2.0.3.css);
@import url(frameworks/bootstrap/bootstrap.min.css);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,animat
q:before, q:after {
  content: '';
  content: none; }

/*PRELOADER*/
.preloader {
    /*display: none;*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .84);
    z-index: 999;
}
.preloader:before {
    content: "";
    width: 90px;
    height: 90px;
    background: url(../images/preloader.png) center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -45px 0 0 -45px;
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-transform: scale(.7);
    transform: scale(.7);
}
.preloader-img {
  margin-bottom: 50px;
  margin-top: 60px;
}
@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }
    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    100% {
        -webkit-transform: scale(.76);
        transform: scale(.76);
    }
}
@keyframes scale {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }
    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    100% {
        -webkit-transform: scale(.76);
        transform: scale(.76);
    }
}

table {
  border-collapse: collapse;
  border-spacing: 0; }

#contact {
  background-color: rgba(0, 0, 0, 0.4); }
  #contact:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/contact_background.jpeg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    opacity: .95; }
  #contact .contactBox {
    color: white;
    visibility: hidden;
    opacity: 0; }
    #contact .contactBox.fromLeft {
      -webkit-animation: showContactBoxesFromLeft 700ms ease-in-out forwards;
              animation: showContactBoxesFromLeft 700ms ease-in-out forwards; }
    #contact .contactBox.fromRight {
      -webkit-animation: showContactBoxesFromRight 500ms ease-in-out forwards;
              animation: showContactBoxesFromRight 500ms ease-in-out forwards; }
    #contact .contactBox h4 {
      font-size: 1.4em;
      font-weight: 400;
      line-height: 100%;
      margin: 0 0 20px 0; }
    #contact .contactBox .office {
      margin-top: 20px; }
      #contact .contactBox .office:not(.global) {
        border-left: 2px solid #fff; }
        #contact .contactBox .office:not(.global).active {
          -webkit-animation: pulse 600ms ease-in-out forwards;
                  animation: pulse 600ms ease-in-out forwards; }
      #contact .contactBox .office.stamford {
        border-color: #cadb2b; }
      #contact .contactBox .office.newyork {
        border-color: #00adee; }
      #contact .contactBox .office.katowice {
        border-color: #ea008c; }
      #contact .contactBox .office p {
        font-size: 1.1em;
        margin-bottom: 12px; }
        #contact .contactBox .office p:last-of-type {
          margin-bottom: 0; }
    #contact .contactBox a {
      color: #00adee; }
  #contact .map {
    width: 100%;
    position: relative;
    margin-top: 40px; }
    #contact .map:before {
      content: "";
      display: block;
      padding-top: 33%; }
    #contact .map .content {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
      #contact .map .content #world-map {
        height: 100%; }
  #contact:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1; }

.contact-page .contact-form {
  margin-top: 50px; }

@media only screen and (max-width: 768px) {
  .preloader-img {
    margin-bottom: 0;
    margin-bottom: 8px;
  }
  #contact {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 20px; }
    #contact .contactBox.fromRight {
      margin-top: 24px; } }
@-webkit-keyframes showContactBoxesFromLeft {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%); }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@keyframes showContactBoxesFromLeft {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%); }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@-webkit-keyframes showContactBoxesFromRight {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(300%);
            transform: translateX(300%); }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@keyframes showContactBoxesFromRight {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(300%);
            transform: translateX(300%); }
  100% {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.black #site-header {
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; }
  .black #site-header.scroll {
    background: #fff; }
  .black #site-header #site-name a {
    background: url(../images/logo.png) center center no-repeat;
    background-size: contain; }
  .black #site-header #site-navigation .menu li.facebook a {
    background: url(../images/facebook_v2.png) center center no-repeat;
    background-size: 100%; }
  .black #site-header #site-navigation .menu li.twitter a {
    background: url(../images/twitter_v2.png) center center no-repeat;
    background-size: 100%; }
  .black #site-header #site-navigation .menu li.linkedin a {
    background: url(../images/linkedin_v2.png) center center no-repeat;
    background-size: 100%; }

.white #site-header {
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s; }
  .white #site-header.scroll {
    background: rgba(0, 0, 0, 0.6); }
.white #site-navigation li.line {
  color: #fff; }

#site-header {
  padding: 18px 0; }
  #site-header #site-name {
    max-width: 246px;
    width: 100%;
    height: 56px;
    float: left; }
    #site-header #site-name a {
      width: 100%;
      height: 100%;
      display: block;
      text-decoration: none;
      text-indent: -999em;
      /*background: url(../images/logo_white.png) center center no-repeat;*/
      background: url(../images/logo.png) center center no-repeat;
      background-size: contain;
      cursor: pointer; }
  #site-header #burger-icon {
    position: absolute;
    top: 5px;
    right: 15px;
    background: transparent;
    border: 0;
    width: 30px;
    height: 21px;
    margin: 30px auto;
    -webkit-transform: rotate(0deg) translateX(200%);
    transform: rotate(0deg) translateX(200%);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer; }
    #site-header #burger-icon:focus {
      outline: 0; }
    #site-header #burger-icon span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: #fff;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
      #site-header #burger-icon span:nth-child(1) {
        top: 0px; }
      #site-header #burger-icon span:nth-child(2) {
        top: 9px; }
      #site-header #burger-icon span:nth-child(3) {
        top: 18px; }
    #site-header #burger-icon.open span:nth-child(1) {
      top: 9px;
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg); }
    #site-header #burger-icon.open span:nth-child(2) {
      opacity: 0;
      left: -60px; }
    #site-header #burger-icon.open span:nth-child(3) {
      top: 9px;
      -webkit-transform: rotate(-135deg);
      transform: rotate(-135deg); }
  #site-header #site-navigation {
    float: right; }
    #site-header #site-navigation .menu {
      line-height: 56px;
      height: 56px; }
      #site-header #site-navigation .menu li {
        display: inline-block;
        margin-left: 30px; }
        #site-header #site-navigation .menu li.lang {
          margin-left: 15px; }
          #site-header #site-navigation .menu li.lang a {
            text-transform: uppercase; }
            #site-header #site-navigation .menu li.lang a:hover {
              padding-bottom: 0;
              border: 0 !important;
              color: #f26a21; }
        #site-header #site-navigation .menu li.line {
          margin-left: 15px; }
        #site-header #site-navigation .menu li:first-of-type {
          margin-left: 0; }
        #site-header #site-navigation .menu li a {
          font-family: 'Cairo-SemiBold', sans-serif;
          font-size: 1em;
          font-weight: 400;
          color: #fff;
          text-decoration: none; }
        #site-header #site-navigation .menu li:not(.socialIcon) a:hover {
          border-bottom: 2px solid #f26a21;
          padding-bottom: 12px; }
        #site-header #site-navigation .menu li:not(.socialIcon) a.current_site {
          border-bottom: 2px solid #f26a21;
          padding-bottom: 12px; }
        #site-header #site-navigation .menu li.socialIcon {
          width: 32px;
          margin-left: 16px; }
          #site-header #site-navigation .menu li.socialIcon a {
            display: block;
            text-indent: -999em; }
        #site-header #site-navigation .menu li.facebook a {
          background: url(../images/facebook.png) center center no-repeat;
          background-size: 100%; }
        #site-header #site-navigation .menu li.twitter a {
          background: url(../images/twitter.png) center center no-repeat;
          background-size: 100%; }
        #site-header #site-navigation .menu li.linkedin a {
          background: url(../images/linkedin.png) center center no-repeat;
          background-size: 100%; }
        #site-header #site-navigation .menu li.twitter, #site-header #site-navigation .menu li.linkedin {
          margin-left: 0; }
  #site-header.stickyHeader {
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0; }
  

.black #site-header #burger-icon span {
  background-color: #666; }

@media screen and (max-width: 1100px) {
  #site-header #burger-icon {
    z-index: 11;
    -webkit-animation: burgerShow .3s ease-in-out forwards;
            animation: burgerShow .3s ease-in-out forwards; }
  #site-header #site-navigation {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 10;
    overflow-x: auto; }
    #site-header #site-navigation.open {
      -webkit-animation: menuOpen 1s ease-in-out forwards;
              animation: menuOpen 1s ease-in-out forwards; }
      #site-header #site-navigation.open .menu {
        -webkit-animation: menuTop 300ms ease-in-out forwards;
                animation: menuTop 300ms ease-in-out forwards; }
    #site-header #site-navigation .menu {
      text-align: center;
      height: auto; }
      #site-header #site-navigation .menu li {
        display: block;
        margin: 0;
        text-align: center; }
        #site-header #site-navigation .menu li a {
          font-size: 1.3em;
          line-height: 100%; }
        #site-header #site-navigation .menu li.socialIcon {
          display: inline-block; }
          #site-header #site-navigation .menu li.socialIcon a {
            height: 32px; }

  #site-header #site-navigation .menu li a {
    color: #fff !important; }
  #site-header #site-navigation .menu li.facebook a {
    background: url(../images/facebook.png) center center no-repeat !important;
    background-size: 100%; }
  #site-header #site-navigation .menu li.linkedin a {
    background: url(../images/linkedin.png) center center no-repeat !important;
    background-size: 100%; }
  #site-header #site-navigation .menu li.twitter a {
    background: url(../images/twitter.png) center center no-repeat !important;
    background-size: 100%; }
  #site-header #site-navigation .menu li.line {
    color: #fff !important; } 

  #site-header #site-navigation .menu li.socialIcon{
      margin-left: 0;
  }

}
@media only screen and (max-width: 640px) {
  #site-name a {
    max-width: 80%; } }
@-webkit-keyframes menuOpen {
  0% {
    visibility: hidden;
    opacity: 0; }
  100% {
    visibility: visible;
    opacity: 1; } }
@keyframes menuOpen {
  0% {
    visibility: hidden;
    opacity: 0; }
  100% {
    visibility: visible;
    opacity: 1; } }
@-webkit-keyframes menuTop {
  0% {
    margin-top: 0; }
  100% {
    margin-top: 60px; } }
@keyframes menuTop {
  0% {
    margin-top: 0; }
  100% {
    margin-top: 60px; } }
@-webkit-keyframes burgerShow {
  0% {
    -webkit-transform: rotate(0deg) translateX(200%);
    transform: rotate(0deg) translateX(200%); }
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0); } }
@keyframes burgerShow {
  0% {
    -webkit-transform: rotate(0deg) translateX(200%);
    transform: rotate(0deg) translateX(200%); }
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0); } }
#careers {
  display: table;
  width: 100%;
  height: 100%;
  padding: 0; }
  #careers:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/careers_bg.png) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -2;
    opacity: .95; }
  #careers .fullContainer {
    background-color: rgba(0, 0, 0, 0.4);
    display: table-cell;
    vertical-align: middle; }
    #careers .fullContainer.notCentered {
      display: block;
      margin-top: 15%; }
  #careers .sectionTitle {
    font-size: 2.4em;
    font-weight: 700;
    line-height: 100%;
    color: #fff;
    text-align: center;
    margin: 0 0 30px 0; }
  #careers .sectionDescription {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 140%;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: #fff; }
  #careers .scrollArrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    max-width: 50px;
    height: 50px;
    margin-left: -25px; }
    #careers .scrollArrow.notCentered {
      position: relative;
      bottom: 0;
      left: 0;
      margin: 30px auto; }
    #careers .scrollArrow a {
      width: 50px;
      height: 50px;
      display: block;
      background: url(../images/scroll_icon.png) top center no-repeat;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      text-indent: -999em; }

#careers-offers .information {
  font-size: 1.5em;
  font-weight: 300;
  color: #666;
  line-height: 130%;
  text-align: center;
  padding: 60px 0;
  max-width: 680px;
  margin: 0 auto; }

#about {
  text-align: center;
  display: table;
  width: 100%;
  height: 100%;
  padding: 0;
  /*background: #000;*/
  
/*  background: url(../images/AboutUs.jpeg) center center no-repeat;
   -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-background-attachment: cover;
  -moz-background-attachment: cover;
  -o-background-attachment: cover;
  background-attachment: fixed;*/
}
#about:before {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../images/AboutUs.jpeg) center center no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
    z-index: -2;
    opacity: .95; }

  #about .fullContainer {
    background-color: rgba(0, 0, 0, 0.4);
    vertical-align: middle;
    display: table-cell; }
    #about .fullContainer.notCentered {
      display: block;
      padding-top: 25%; }
  #about .sectionTitle {
    font-size: 4em;
    font-weight: 400;
    line-height: 100%;
    color: #fff;
    margin: 0 0 30px 0; }
  #about .description {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 140%;
    color: #fff;
    max-width: 760px;
    margin: 0 auto 15px auto; }
  #about .scrollArrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    max-width: 50px;
    height: 50px;
    margin-left: -25px; }
    #about .scrollArrow.notCentered {
      position: relative;
      bottom: 0;
      left: 0;
      margin: 30px auto; }
    #about .scrollArrow a {
      width: 50px;
      height: 50px;
      display: block;
      background: url(../images/scroll_icon.png) top center no-repeat;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      text-indent: -999em; }

#mission {
  background-color: #f2f2f2;
  text-align: center;
  padding: 0; }
  #mission .header {
    background: url(../images/pattern_orange.jpg); }
  #mission .sectionTitle {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 100%;
    color: #fff;
    padding: 60px 0 40px 0; }
  #mission .sectionSlogan {
    font-size: 2.3em;
    font-weight: 400;
    line-height: 100%;
    color: #fff;
    padding: 0 0 80px 0; }
  #mission .content aside {
    position: relative;
    width: 100%; }
    #mission .content aside:first-of-type {
      background: url(../images/PHILOSOPHY.jpeg) right center no-repeat;
      background-size: 50% 100%; }
/*      #mission .content aside:first-of-type p {
        margin-top: 1em; }*/
    #mission .content aside:last-of-type {
      background: url(../images/VISION.jpg) left center no-repeat;
      background-size: 50% 100%; }
      #mission .content aside:last-of-type .half {
        left: 50%;
        text-align: left; }
    #mission .content aside:before {
      content: "";
      display: block;
      padding-top: 25%; }
    #mission .content aside .wrp {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%; }
    #mission .content aside .half {
      max-width: 50%;
      text-align: right;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      padding: 60px 60px 60px 120px; }
    #mission .content aside h4 {
      font-size: 1.3em;
      font-weight: 600;
      line-height: 100%;
      color: #666;
      margin: 0 0 15px 0; }
    #mission .content aside p {
      font-size: 1em;
      font-weight: 300;
      line-height: 130%;
      color: #a7a8ac; }

#core {
  background-color: #fff;
  text-align: center;
  padding: 0; }
  #core .header {
    background: url(../images/pattern_green.jpg); }
  #core .sectionTitle {
    font-size: 2.3em;
    font-weight: 400;
    line-height: 100%;
    color: #fff;
    padding: 120px 0; }
  #core .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 10%; }
    #core .content aside {
      max-width: 25%;
      padding: 60px 30px; }
      #core .content aside:nth-child(odd) {
        background: #f2f2f2; }
      #core .content aside .thumbnail {
        width: 100%;
        margin: 0;
        /*min-height: 200px;*/
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
        border-radius: 50%;
        background-position: center;
        /*						img {
        							width: 90%;
        							height: auto;
        						}*/ }
      #core .content aside:nth-of-type(1) .thumbnail {
        background-image: url("../images/Innovation.jpeg"); }
      #core .content aside:nth-of-type(2) .thumbnail {
        background-image: url("../images/Entrepreneurial.jpeg");
        background-position: right; }
      #core .content aside:nth-of-type(3) .thumbnail {
        background-image: url("../images/Growth.jpeg"); }
      #core .content aside:nth-of-type(4) .thumbnail {
        background-image: url("../images/Team Work.jpeg"); }
    #core .content h4 {
      font-size: 1.3em;
      font-weight: 600;
      line-height: 100%;
      margin: 60px 0 60px;
      color: #666;
      /*text-align: left;*/ }
    #core .content p {
      font-size: .94em;
      font-weight: 300;
      line-height: 150%;
      color: #a7a8ac;
      text-align: center; }

#team {
  display: none !important;
  background: #f2f2f2;
  background: url(../images/pattern_gray.jpg);
  padding: 50px 0;
  position: relative; }
  #team .sectionTitle {
    font-size: 2.6em;
    line-height: 100%;
    text-align: center;
    color: #00adee;
    margin: 0 0 120px 0; }
  #team .teamCarousel {
    text-align: center;
    position: relative; }
    #team .teamCarousel .nav {
      width: 58px;
      height: 58px;
      text-indent: -999em;
      cursor: pointer;
      position: absolute;
      top: calc(50% - 60px);
      margin-top: -29px; }
    #team .teamCarousel .prev {
      background: url(../images/prev.png) center center no-repeat;
      background-size: 100%;
      left: 5%; }
    #team .teamCarousel .next {
      background: url(../images/next.png) center center no-repeat;
      background-size: 100%;
      right: 5%; }
    #team .teamCarousel .carousel {
      max-width: 80%;
      margin: 0 auto;
      /*					.thumbnail {
      						widht: 100%;
      						text-align: center;
      
      							img {
      								width: 70%;
      								height: auto;
      								display: inline;
      							}
      					}*/
      /*thumbnails new wersion*/ }
      #team .teamCarousel .carousel .information {
        color: #00adee; }
        #team .teamCarousel .carousel .information h5 {
          color: inherit;
          font-size: 1.2em;
          margin: 24px 0 12px 0; }
        #team .teamCarousel .carousel .information h6 {
          color: inherit;
          line-height: 140%;
          max-width: 95px;
          margin: 0 auto;
          text-transform: uppercase;
          font-weight: 600; }
      #team .teamCarousel .carousel .our_team_photo_container {
        height: 230px;
        width: 230px;
        margin: 0 auto; }
        #team .teamCarousel .carousel .our_team_photo_container .our_team_photo {
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          height: 230px;
          width: 230px;
          /*margin: 50px;*/
          -webkit-transition: all 1s;
          transition: all 1s; }
        #team .teamCarousel .carousel .our_team_photo_container .our_team_photo_overlay {
          top: 0;
          height: 230px;
          width: 230px;
          position: absolute;
          z-index: 3;
          background-color: transparent;
          -webkit-transition: all 1s;
          transition: all 1s; }
        #team .teamCarousel .carousel .our_team_photo_container:hover .our_team_photo {
          border-radius: 50%; }
        #team .teamCarousel .carousel .our_team_photo_container:hover .our_team_photo_overlay {
          background-color: rgba(0, 0, 0, 0.2);
          border-radius: 50%; }
    #team .teamCarousel .slick-dots {
      margin-top: 120px; }
      #team .teamCarousel .slick-dots li {
        width: 24px;
        height: 24px;
        display: inline-block;
        margin: 0 12px; }
        #team .teamCarousel .slick-dots li.slick-active button {
          background: #00adee; }
        #team .teamCarousel .slick-dots li button {
          width: 100%;
          height: 100%;
          text-indent: -999em;
          background: transparent;
          border: 2px solid #00adee;
          border-radius: 50%; }
          #team .teamCarousel .slick-dots li button:focus {
            outline: 0; }
    #team .teamCarousel li {
      display: inline-block; }

#awards {
  background: url(../images/pattern_blue.jpg);
  padding: 60px 0; }
  #awards .sectionTitle {
    font-size: 2.6em;
    line-height: 100%;
    text-align: center;
    color: #fff;
    margin: 0 0 60px 0; }
  #awards .awardsCarousel {
    position: relative; }
    #awards .awardsCarousel .carousel {
      max-width: 80%;
      margin: 0 auto; }
    #awards .awardsCarousel .nav {
      width: 58px;
      height: 58px;
      text-indent: -999em;
      cursor: pointer;
      position: absolute;
      top: 50%;
      margin-top: -29px; }
    #awards .awardsCarousel .prev {
      background: url(../images/white_arrow.png) center center no-repeat;
      background-size: 100%;
      left: 5%;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
    #awards .awardsCarousel .next {
      background: url(../images/white_arrow.png) center center no-repeat;
      background-size: 100%;
      right: 5%;
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg); }
    
    .slick-slide{ /*fix for blue border on touch*/
        outline: none;
        border: none;
    }
    

#pressroom {
    background-color: #fff;
  padding: 60px 0 15px 0; }
  #pressroom .content {
    margin: 0 10%; }
  #pressroom .sectionTitle {
    font-size: 2.6em;
    line-height: 100%;
    text-align: center;
    color: #4d4d4d;
    margin: 0 0 60px 0; }
  #pressroom .thumbnail {
    text-align: center; }
    #pressroom .thumbnail img {
      width: auto;
      max-width: 100%;
      max-height: 200px;
      /*padding: 0 10px;*/ }
  #pressroom .information {
    padding: 30px 15px; }
  #pressroom .date {
    font-size: .84em;
    text-transform: uppercase;
    color: #bec0c2;
    margin: 0 0 15px 0;
    text-align: center; }
  #pressroom .title {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 110%;
    color: #4d4d4d;
    text-align: center;
    max-width: 50%;
    margin: 0 auto 15px auto; }
  #pressroom .desc {
    font-size: 1em;
    font-weight: 300;
    line-height: 130%;
    color: #a7a9ac;
    text-align: center;
    max-width: 50%;
    margin: 0 auto; }
  #pressroom .moreArticles {
    cursor: pointer;
    display: block;
    margin: 15px auto;
    max-width: 180px;
    width: 100%;
    height: 36px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    background: #00adee;
    border-radius: 300px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: .5s;
            transition-duration: .5s; }
    #pressroom .moreArticles:hover {
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      -webkit-transition-duration: .5s;
              transition-duration: .5s; }

.second-articles-row, .third-articles-row {
  display: none; }

.about-page sup {
  font-size: .4em;
  top: -6px; }
.about-page #mission sup {
  font-size: .5em;
  top: -5px; }
.about-page #mission h4 sup {
  top: -7px; }

@media only screen and (max-width: 1365px) {
  #core .content {
    margin: 0; }

  #pressroom .content {
    margin: 0; }

  /*    #core {
  	
  		.content {
  			display: flex;
  			flex-direction: column;
  
  				aside {
  					max-width: 50%;
  				}
  				
  		}
  
  	}*/ }
@media only screen and (max-width: 768px) {
  #mission .content aside {
    position: relative;
    width: 100%;
    background: none !important; }
    #mission .content aside .wrp {
      position: relative; }
    #mission .content aside .half {
      max-width: 100%;
      text-align: right;
      position: relative;
      top: 0;
      left: 0 !important;
      -webkit-transform: translateY(0%);
              transform: translateY(0%);
      padding: 0 30px; }
    
    #mission .content aside:last-of-type p{
        padding-bottom: 30px;
    }
    
  #team .teamCarousel .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0 6px; } 




}
@media only screen and (max-width: 680px) {
  #core .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    #core .content aside {
      max-width: 100%;
      width: 100%; } }
.ourWork #site-header #site-navigation .menu li a {
  color: #666; }

#our-work .sectionTitle, #work_case_results .sectionTitle {
  font-size: 2.6em;
  line-height: 100%;
  color: #666;
  text-align: center;
  position: relative; 
/*  max-width: 60%;
  margin: 50px auto;*/

}
  #our-work .sectionTitle:before, #work_case_results .sectionTitle:before {
    content: "";
    width: 25%;
    height: 1px;
    background-color: #bcbcbc;
    position: absolute;
    left: 0;
    top: 50%; }
  #our-work .sectionTitle:after, #work_case_results .sectionTitle:after {
    content: "";
    width: 25%;
    height: 1px;
    background-color: #bcbcbc;
    position: absolute;
    right: 0;
    top: 50%; }
#our-work .owContainer, #work_case_results .owContainer {
/*  display: -webkit-box;
  display: -ms-flexbox;*/
  display: block;
/*  -ms-flex-flow: row wrap;
      flex-flow: row wrap;*/
  margin-top: 30px; }
  #our-work .owContainer .ow, #work_case_results .owContainer .ow {
    width: 33.3333%;
    padding: 10px;
    float: left;
  }
#our-work .thumbnail, #work_case_results .thumbnail {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%; }
  #our-work .thumbnail img, #work_case_results .thumbnail img {
    width: 100%;
    height: auto; }

.tecate-champion #our-work .sectionTitle:after, .tecate-champion #our-work .sectionTitle:before {
  width: 20% !important; }

.solutions #our-work .owContainer .ow {
  padding: 30px 30px 0 30px; }

#our-clients .ourClientsContainer {
  background: url(../images/pattern_gray.jpg);
  padding: 30px 0; }
#our-clients .sectionTitle {
  font-size: 2.6em;
  line-height: 100%;
  color: #666;
  text-align: center;
  margin-bottom: 60px; }
#our-clients .ocContainer {
  max-width: 1270px;
  margin: 0 auto;
/*  display: -webkit-box;
  display: -ms-flexbox;*/
  display: block;
/*  -ms-flex-flow: row wrap;
      flex-flow: row wrap;*/
  margin-top: 30px; }
  #our-clients .ocContainer .oc {
      float: left;
    width: 20%;
    padding: 15px; }
    #our-clients .ocContainer .oc .thumbnail {
      width: 100%; }
      #our-clients .ocContainer .oc .thumbnail img {
        width: 100%;
        height: auto; }

@media only screen and (max-width: 986px) {
  #our-work .owContainer .ow {
    width: 50%; }

  #our-clients .ocContainer .oc {
    width: 33.3%; } }
@media only screen and (max-width: 768px) {
  #our-work .sectionTitle:before, #our-work .sectionTitle:after {
    display: none; } }
@media only screen and (max-width: 600px) {
  #our-clients {
    padding-top: 50px; }

  #our-work.our-work {
    padding-top: 80px; }

  #our-work .owContainer .ow {
    width: 100%; }

  #our-clients .ocContainer .oc {
    width: 50%; } }
.solutions .section-our-solutions .solution-circles {
  margin-top: 50px; }
  .solutions .section-our-solutions .solution-circles .solution-circle-container:nth-of-type(1) .solution-circle {
    background-image: url("../images/pattern_purple.jpg"); }
    .solutions .section-our-solutions .solution-circles .solution-circle-container:nth-of-type(1) .solution-circle img {
      -webkit-transform: translateX(-50%) translateY(-10%);
              transform: translateX(-50%) translateY(-10%); }
  .solutions .section-our-solutions .solution-circles .solution-circle-container:nth-of-type(2) .solution-circle {
    background-image: url("../images/pattern_orange.jpg"); }
  .solutions .section-our-solutions .solution-circles .solution-circle-container:nth-of-type(3) .solution-circle {
    background-image: url("../images/pattern_blue.jpg"); }
  .solutions .section-our-solutions .solution-circles .solution-circle-container:nth-of-type(4) .solution-circle {
    background-image: url("../images/pattern_green.jpg"); }
  .solutions .section-our-solutions .solution-circles .solution-circle {
    width: 100%;
    height: 10px;
    border-radius: 50%;
    margin-top: 50px; }
    .solutions .section-our-solutions .solution-circles .solution-circle img {
      width: calc(85% - 30px);
      max-width: 85%;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
              transform: translateY(-50%) translateX(-50%); }
    
    .section.section-our-solutions{
        min-height: 100px;
    }

/*solution Pages*/
.solutions-page .solution-content {
  margin-top: 30px; }
  .solutions-page .solution-content img {
    max-width: 100%; }
.solutions-page .section {
  padding-top: 100px; }
.solutions-page .section-solution-page h2 {
  color: #93c846;
  font-size: 2em;
  line-height: 120%;
  font-weight: bold;
  max-width: 50%; }
.solutions-page .section-solution-page p {
  font-size: 1.2em;
  line-height: 120%;
  color: #a8a9ad;
  padding-bottom: 40px;
  max-width: 70%; }
.solutions-page .section-solution-page .solution-learn-more {
  font-size: .9em;
  color: #fff;
  background-color: #93c846;
  padding: 10px 35px;
  border: 0;
  border-radius: 36px;
  transition: all .5s;
}

.solutions-page.solution-linkexus .section-solution-page .solution-learn-more:hover{
    background-color: #007dc4;
    text-decoration: none;
}

.solutions-page.solution-win-local .section-solution-page .solution-learn-more:hover{
    background-color: #fe8a09;
    text-decoration: none;
}

.solutions-page.client-service .section-solution-page .solution-learn-more:hover{
    background-color: #fe8a09;
    text-decoration: none;
}


.solutions-page .solution-divider {
  width: 40%;
  height: 1px;
  border-bottom: 1px solid #a8a9ad;
  margin: 20px 0; }
.solutions-page .contact-form h2 {
  color: #666; }

.solutions-page.solution-win-local .section-solution-page .solution-logo img {
  max-height: 150px; }

.solutions-page.client-service .section-solution-page .solution-logo img {
  max-height: 80px;
  max-width: 100%; }

.solutions-page.solution-linkexus .section-solution-page .solution-logo img {
  max-height: 100px; }

.solutions-page.mobile-card .section-solution-page .solution-logo img {
  max-height: 100px; }

.solutions-page.mobile-card .section-solution-page .business-img-container{
    text-align: center;
}

.solutions-page.mobile-card .section-solution-page .business-img-container img{
    max-width: 30%;
}

.solution-nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px; }
  .solution-nav-container a:hover {
    text-decoration: none; }
  .solution-nav-container img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    max-width: 50px; }
  .solution-nav-container span {
    font-size: 1.3em;
    color: #a8a9ad;
    margin: 0 10px;
    transition: all .5s;
  }
  .solution-nav-container .solution-nav-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #a8a9ad;
    border-radius: 50%;
    margin: 0 10px;
    transition: all .5s;
  }
  
  .solution-nav-container .solution-nav-circle:hover{
      border-color: #666;
  }
  
  .solution-nav-container .solution-nav-active {
    background-color: #a8a9ad; }
  
  .solution-nav-container .solution-nav-active:hover {
    border-color: #a8a9ad; }
  
  .solution-nav-container a:hover span{
      color: #666;
  }
  
  .solutions-page video{
      -o-object-fit: contain;
      object-fit: contain;
  }

@media only screen and (max-width: 767px) {
  .solutions-page .section-solution-page h2, .solutions-page .section-solution-page p {
    max-width: 100%; }
  .solutions-page .section-solution-page h2 {
    margin-top: 50px; }
  .solutions-page .section-solution-page .solution-divider {
    width: 50%; }
  .solutions-page .solution-logo img {
    max-height: 60px; }

  .solutions-page.solution-win-local .section-solution-page .solution-logo img {
    max-height: 75px; }

  .solutions-page.client-service .section-solution-page .solution-logo img {
    max-height: 50px; }

  .solutions-page.solution-linkexus .section-solution-page .solution-logo img {
    max-height: 50px; }

  .solution-nav-container img {
    max-width: 40px; } 

#awards .awardsCarousel .nav {
    width: 50px;
    height: 50px;
    margin-top: -105px;
}

}
@media only screen and (max-width: 640px) {
  .section.section-our-solutions {
    padding-top: 100px; }

  .solutions .section-our-solutions .solution-circles .solution-circle-container:first-of-type .solution-circle {
    margin-top: 0; }
    .solutions .section-our-solutions .solution-circles .solution-circle-container:first-of-type .solution-circle img {
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%); }

  .solutions-page .section-solution-page h2 {
    font-size: 1.5em; }
  .solutions-page .section-solution-page p {
    font-size: 1em;
    padding-bottom: 30px; } }
.work_case {
  color: #666; }
  .work_case b {
    font-weight: bold; }
  .work_case .work_case_section_one {
    padding-bottom: 50px; }
  .work_case .work-case-logo {
    margin-top: 90px;
    margin-bottom: 30px;
    text-align: center; }
    .work_case .work-case-logo img {
      max-height: 250px;
      max-width: 100%; }
  .work_case h3 {
    display: block;
    text-align: center;
    font-size: 2em;
    color: #666;
    margin: 100px 0 45px 0; }
  .work_case .work-case-description {
    padding: 15px;
    max-width: 550px;
    text-align: justify;
    margin: 0px auto 30px auto;
    font-size: 1.1em;
    line-height: 150%; }
  .work_case .work-case-scroll-down {
    text-align: center; }
  .work_case .work-case-slider-background {
    max-height: 700px;
    background-image: url("../images/work_case/pattern_navy.jpg");
    /*padding: 95px 0 10px 0;*/
    /*        .work-case-element-blue{
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                margin-top: -116px;
            }*/ }
  .work_case .work-case-result h3 {
    margin: 120px; }
  .work_case .ow {
    position: relative;
    padding: 0 50px 50px 50px !important; }
    .work_case .ow .work-case-element-grey {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: -95px; }
    .work_case .ow .work-case-element-grey-2 {
      position: absolute;
      left: 50%;
      -webkit-transform: rotateX(180deg) translateX(-50%);
              transform: rotateX(180deg) translateX(-50%);
      bottom: -95px; }
    .work_case .ow .thumbnail {
      border-radius: 50% !important;
      border-width: 2px;
      border-style: solid;
      border-color: #e8e8e8; }
    .work_case .ow .work-case-circle-content .work-case-circle-text {
      /*padding-left: 10px;*/
      margin-top: 48%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
  .work_case .lim_slider {
    /*.slick-next::before {
        font-family: FontAwesome;
        content: url(../img/arrow_right.png);
    }
    .slick-prev::before {
        font-family: FontAwesome;
        content: url(../img/arrow_left.png);
    }*/ }
    .work_case .lim_slider .slick-track {
      padding: 50px 0; }
    .work_case .lim_slider .slick-slide.slick-current.slick-active.slick-center {
      -webkit-transform: scale(1.3) !important;
              transform: scale(1.3) !important;
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
    .work_case .lim_slider .slick-prev, .work_case .lim_slider .slick-arrow {
      z-index: 2; }
    .work_case .lim_slider .slick-dots {
      bottom: 5%; }
    .work_case .lim_slider .slick-dots li.slick-active button:before {
      opacity: 1;
      color: #fff; }
    .work_case .lim_slider .slick-dots li button:before {
      font-size: 100px;
      line-height: 20px;
      position: absolute;
      top: 0;
      left: 0;
      width: 20px;
      height: 20px;
      text-align: center;
      opacity: .25;
      color: black; }
    .work_case .lim_slider .slick-prev:before, .work_case .lim_slider .slick-next:before {
      font-size: 50px; }
    .work_case .lim_slider .slick-next {
      right: calc(1% + 20px); }
    .work_case .lim_slider .slick-prev {
      left: 1%; }
    .work_case .lim_slider .slick-prev.slick-arrow {
      width: 100px;
      height: 100px; }
    .work_case .lim_slider .slick-next.slick-arrow {
      width: 100px;
      height: 100px; }
    .work_case .lim_slider .slick-prev::before, .work_case .lim_slider .slick-next::before {
      /* font-family: FontAwesome; */
      /* content: url(../img/arrow_left.png); */
      opacity: .75;
      border: 2px solid #fff;
      border-radius: 50%;
      /* width: 30px; */
      /* height: 30px; */
      font-size: 28px;
      padding: 6px 8px 10px 8px;
      font-weight: 600; }
  .work_case .work-case-circle-content {
    position: absolute;
    top: 8%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #fff;
    text-align: center; }
    .work_case .work-case-circle-content img {
      width: 35% !important; }
    .work_case .work-case-circle-content .work-case-circle-text {
      text-align: center;
      font-size: 1.3em;
      line-height: 125%; }
      .work_case .work-case-circle-content .work-case-circle-text span:first-of-type {
        font-size: 1.5em; }
      .work_case .work-case-circle-content .work-case-circle-text strong {
        font-size: 1.1em; }

.work_case.work-case-landing .owContainer.owContainer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
.work_case.work-case-landing .ow .thumbnail {
  padding: 20px; }
  .work_case.work-case-landing .ow .thumbnail img {
    border-radius: 50%; }

.work_case.nbc-page .work-case-logo img {
  max-height: 80px; }

.work_case.diageo-page .work-case-logo img {
  max-height: 80px; }

.owl-carousel {
  text-align: center; }
  .owl-carousel img {
    max-width: 60%;
    margin: 0 auto; }

.owl-item {
  margin-top: 50px;
  margin-bottom: 50px; }

.owl-item.active.center img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 9999;
  -webkit-transition: all 1s;
  transition: all 1s; }

.owl-item.active.center img.harry_tablet_image {
  -webkit-transform: scale(1.7);
          transform: scale(1.7);
  z-index: 9999;
  -webkit-transition: all 1s;
  transition: all 1s; }

.owl-stage-outer {
  /*padding: 50px 0;*/ }

.owl-controls .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%; }
  .owl-controls .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    background: url(../images/prev2.png) center center no-repeat;
    background-size: 100%;
    float: left; }
  .owl-controls .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    background: url(../images/next2.png) center center no-repeat;
    background-size: 100%;
    float: right; }
.owl-controls .owl-dots {
  text-align: center;
  padding-bottom: 20px;
  padding-left: 10px; }
  .owl-controls .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px; }
    .owl-controls .owl-dots .owl-dot.active {
      background-color: #fff; }

.caseStudyPages #work_case_results .thumbnail img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg); }

.caseStudyPages #work_case_results .thumbnail .work-case-circle-content img {
  -webkit-transform: rotate(0);
          transform: rotate(0); }

.overlay_fix{
    /*display: none;*/
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    width: 100%;
}

li.parsley-required, li.parsley-type, .parsley-fileextension, .parsley-maxFileSize, li.parsley-custom-error-message{
    margin-top: 2px;
    color: red;
}

.textarea-parsley-fix li.parsley-required, .parsley-fileextension, .parsley-maxFileSize{
    margin-bottom: 10px;
}

.contact-form textarea.parsley-error{
    margin-bottom: 0;
}

.uploaded_files_list{
    
}

.uploaded_files_list .uploaded_file{
    color: #fff;
    line-height: 130%;
}


/*GAMES*/

.smaller_container_right{
    max-width: 60%;
}

.section_games .games_overview{
    margin-top: 75px;
}

.section_games .top_quote{
    margin: 0 15px;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2em;
    color: #93c846;
    font-style: italic;
    font-weight: bold;
    line-height: 110%;
}
.section_games .top_quote sup{
    font-size: 0.5em;
    top: -.6em;
    margin-right: -4px;
}
.section_games .gamification{
    text-align: center;
}
.section_games .gamification img{
    max-width: 100%;
    margin-top: 15px;
}

.section_games .top_quote span{
    color: #007dc4;
}


.section_games .games_overview_text{
    max-width: 57%;
    float: right;
}

.section_games .games_overview_text p{
    font-size: 1.2em;
    line-height: 110%;
    margin-bottom: 20px;
}

.section_games .games_overview_text ul{
        list-style-type: disc;
        margin-left: 40px;
        /*padding-left: 20px;*/
        font-size: 1.1em;
}
.section_games .games_overview_text ul li{
    padding: 5px 0;
}


.section_games .games_overview_text ul li span{
    color: #fc8715;
}

.section_games .games_overview_text ul li:last-of-type span{
    text-decoration: underline;
}

/*.section_games .games_overview_text img{
    max-width: 100%;
}*/

.section_games .single_game {
    /*margin-top: 50px;*/
}

.slot{
    margin-top: 50px;
}

/*.spin{
    margin-top: 40px;
}*/

/*.stratch{
    margin-top: -50px;
}*/



.section_games .single_game .phone_image_container{
    text-align: center;
}

.section_games .single_game .game_title{
    text-align: center;
    font-size: 2.5em;
    color: #666;
    max-width: 60%;
    margin: 20px auto 65px auto;
}

.section_games .single_game .phone_image_container img{
   max-width: 30%;
   margin-bottom: 20px;
}

.single_game .single_game_content{
    max-width: 65%;
}

.single_game_content.single_game_content_left{
    float: right;
}

.single_game .single_game_content p{
    font-size: 1.2em;
    line-height: 110%;
}

.section_games .game_benefits{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.single_game .single_game_content ul{    
    list-style-type: disc;
    margin-left: 40px;
    font-size: 1.2em;
}
.single_game .single_game_content ul li{
    /*margin-top: 5px;*/
    line-height: 120%;
}

.section_games .game_tiles_menu{
    
}
.section_games .game_tile{
    float: left;
    width: 33.33%;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    margin-top: 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.section_games .game_tile:hover{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.section_games .game_tile_1{
    background-image: url("../images/games/slot2.png");
}
.section_games .game_tile_2{
    background-image: url("../images/games/spin2.png");
}
.section_games .game_tile_3{
    background-image: url("../images/games/scratch2.png");
}
.section_games .game_tile_4{
    background-image: url("../images/games/search2.png");
}
.section_games .game_tile_5{
    background-image: url("../images/games/tiles2.png");
}
.section_games .game_tile_6{
    background-image: url("../images/games/r2r2.png");
}

/*IFRAMES*/

.phone_container_const{
    float: right;
}

.phone_image_container_right{
    float: left;
}

.phone_container_const{
    width: 250px;
    height: 525px; 
    background-image: url("../images/games/phone.png");
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: scale(.9);
            transform: scale(.9);
    margin-top: -25px;
}

.single_slot iframe{
    height: 581px;
    -webkit-transform: scale(.7,0.66);
            transform: scale(.7,0.66);
    margin-left: -24px;
    margin-top: -25px;
}

.single_prize iframe{
    height: 565px;
    -webkit-transform: scale(.71,.71);
            transform: scale(.71,.71);
    margin-left: -24px;
    margin-top: -17px;
}

.single_scratch iframe{
    height: 529px;
    -webkit-transform: scale(.71,.71);
            transform: scale(.71,.71);
    margin-left: -24px;
}

.single_search iframe{
    height: 653px;
    -webkit-transform: scale(.7,.6);
            transform: scale(.7,.6);
    margin-left: -24px;
    margin-top: -70px;
}

.single_tile iframe{
    height: 610px;
    -webkit-transform: scale(.7,.65);
            transform: scale(.7,.65);
    margin-left: -24px;
    margin-top: -32px;
}

.single_race  iframe{
    height: 520px;
    -webkit-transform: scale(.71,.71);
            transform: scale(.71,.71);
    margin-left: -24px;
}

/*CARRERS OFFERS*/

#careers-offers #our-work  .sectionTitle{
    margin: 80px auto 40px auto;
    max-width: 100%;
}

#careers-offers #our-work  .sectionTitle:before{
        /*left: 5%;*/
        width: 15%;
}

#careers-offers  #our-work .sectionTitle:after{
        /*right: 5%;*/
        width: 15%;
}

.offer_container{
    display: table;
    margin: 0 auto;
}

.offer_icon_container{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.offer_icon_container:hover{
    background-color: #fc8715;
}

.offer_icon_container img{
   max-width: 100%;
   width: 50% 
}

.offer_container_outer{
    margin-top: 30px;
}

.offer_container_outer p{
    font-weight: bold;
    margin: 10px 0;
}

.offer_container_outer p:first-of-type{
    text-align: center;
}

.offer_container_outer .offer_title{
    margin: 20px 0;
    font-size: 1.2em;
}

.offer_container_outer button{
    display: block;
    margin: 10px auto;
    
    padding: 10px 25px;
    border: 0;
    background-color: #fc8715;
    color: #fff;
    font-weight: bold;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.offer_container_outer button:active,
.offer_container_outer button:focus{
    outline: none;
}

.offer_container_outer button:hover{
    background-color: black;
}

.offer_content{
    border-top: 1px solid #f5f5f5; 
    /*border-bottom: 1px solid black;*/
    margin: 15px 0;
    padding: 15px 0 0 0;
    
    /*display: none;*/
}

.offer_content_hidden{
    display: none;
}

.offer_container_outer .offer_content p{
    text-align: left;
}

.offer_container_outer .offer_content p:nth-of-type(2){
    border-top: 1px solid #f5f5f5;
    padding-top: 10px;
}

.offer_container_outer .offer_content p:last-of-type{
    margin-top: 25px;
    margin-bottom: 0;
}

.offer_content ul{
    list-style: square;
    padding-left: 40px;
    
}
.offer_content ul li{
    line-height: 120%;
    font-size: 12px;
}

.offer_content ul li span{
    color: #666;
    font-size: 1.3em;
    line-height: 120%;
}

.offer_content ul:nth-of-type(2){
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
}

.form-overlay{
    display: none;
    background-color: rgba(0,0,0,.8);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    top: 0;
    left: 0;
}

.job-form-outer-container{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    overflow-x: auto;
}

.job-form-container{
    display: table;
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.job-form-container .fullContainer{
    display: table-cell;
    vertical-align: middle;
}

.job-form-container .fa.fa-times{
    color: #fff;
    position: absolute;
    right: 0;
    top: -2em;
    font-size: 2em;
    cursor: pointer;
    
    -webkit-transition: all .5s;
    transition: all .5s;
}

.job-form-container .fa.fa-times:hover{
    color: #fc8715;
}

.careers .contact-form h2{
    color: #fff;
}

#file_upload{
    display: none;
}

/*USA job offers*/

.company_overview_title{
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.company_overview{
    font-size: 1.1em;
    margin-bottom: 10px;
}

.company_overview sup{
    font-size: .5em;
}

.usa-job-extra-margin{
    margin-bottom: 20px;
}

.offer_container_outer .offer_content .offer_paragraph{
    font-weight: normal;
    border-top: 0 !important;
    margin-top: 10px;
}

.offer_container_outer .offer_content .offer_paragraph.offer_paragraph_bold{
    font-weight: bold;
    border-top: 1px solid #f5f5f5 !important;
    padding-top: 10px;
}

.offer_container_outer .offer_content .offer_paragraph.offer_paragraph_bold.additional_info{
    border-top: none !important;
    margin-top: 10px;
    padding-top: 0;
}

.offer_container_outer .extra-border{
  border-top: 1px solid #f5f5f5;
  padding-top: 10px;
}


/*MEDIA*/

@media screen and (max-width: 1366px) {
  .work_case .ow {
    padding: 30px !important; }

  .work_case .work-case-circle-content .work-case-circle-text {
    font-size: 1.2em; } }

@media screen and (max-width: 1365px) {
    #our-work.section_games .single_game .game_title{
        max-width: 80%;
    }
    
    
/*    .phone_image_container_fixed{
        margin: -26% auto -20% auto
    }
    
    .phone_image_container_fixed.phone_image_container_right{
        margin: -22% auto -20% auto;
    }
    .single_scratch .phone_image_container_fixed{
        margin: -19% auto -20% auto;
    }
    .single_tile .phone_image_container_fixed{
            margin: -23% auto -20% auto;
    }*/
}

@media screen and (max-width: 1199px){
    #careers-offers #our-work  .sectionTitle:before{
        left: 0;
        width: 15%;
    }

    #careers-offers #our-work  .sectionTitle:after{
        right: 0;
        width: 15%;
    }
}


@media screen and (max-width: 1151px) {
    .work_case .work-case-circle-content .work-case-circle-text {
        font-size: 1em; }
    .work_case .sectionTitle::before, .work_case .sectionTitle::after {
        display: none; } 

    .section_games .games_overview_text{
        max-width: 100%;
    }
    .smaller_container_right{
        max-width: 100%;
    }
    .single_game .single_game_content{
        max-width: 100%;
    }

}
@media screen and (max-width: 991px) {
  .work_case .ow {
    padding: 5px !important; }
  .work_case .work-case-slider-background {
    padding: 0; }
  .work_case .owl-carousel {
    /*            max-height: calc(100vh - 92px);
                min-height: 300px;*/ }
    .work_case .owl-carousel .owl-controls .owl-dots {
      text-align: center;
      padding-left: 0;
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      padding-left: 0; }
    .work_case .owl-carousel .owl-item.active.center img {
      -webkit-transform: scale(1) !important;
              transform: scale(1) !important;
      /*z-index: 9999;*/
      -webkit-transition: all 1s;
      transition: all 1s; }
    .work_case .owl-carousel .owl-controls .owl-dots {
      /*display: none !important;*/ }

  .work_case .work-case-slider-background {
    /*padding: 50px 0;*/ }

  .owl-carousel {
    text-align: center; }
    .owl-carousel img {
      max-width: 70%;
      /*margin-top: -10%;*/ }

#careers-offers .sectionTitle:before, #careers-offers .sectionTitle:after{
        display: none;
    }
}

@media screen and (max-width: 990px) {
    .owl-carousel img {
      max-width: 40%;
      /*margin-top: -10%;*/ }
}

@media screen and (max-width: 767px) {
    .work_case .ow {
      padding: 25px 15% 0 15% !important; }
      .work_case .ow:first-of-type {
        padding-top: 0 !important; }
    .work_case .work-case-result h3 {
      margin: 30px 0; }

  .work_case #work_case_results .owContainer .ow {
    width: 100%; }
  .work_case .work-case-circle-content .work-case-circle-text {
    font-size: 1.5em; }

  .work_case .work-case-circle-content img {
    width: 50% !important; }

  .work_case .ow .work-case-circle-content .work-case-circle-text {
    /*margin-top: 30%;*/ } 


/*GAMES*/
.section.section_games{
    padding-top: 100px;
}

.section_games .games_overview{
    margin-top: 40px;
}

.section_games .top_quote{
    margin: 0 15px;
    margin-bottom: 30px;
    font-size: 1.5em;    
}
.section_games .top_quote sup{
    font-size: 0.5em;
    top: -.6em;
    margin-right: -4px;
}

.section_games .games_overview_text p{
    font-size: 1.1em;   
    margin-bottom: 20px;
}

.section_games .games_overview_text ul{
        margin-left: 40px;
        font-size: 1em;
}
.section_games .games_overview_text ul li{
    padding: 5px 0;
}


.section_games .single_game {
    margin-top: 40px;
}

.section_games .single_game .game_title{
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 1.5em;
}

.section_games .single_game .game_title:after{
    content: "";
    width: 30%;
    height: 1px;
    background-color: #bcbcbc;
    position: absolute;
    right: 0;
    top: 50%;
}

.section_games .single_game .game_title:before{
    content: "";
    width: 30%;
    height: 1px;
    background-color: #bcbcbc;
    position: absolute;
    left: 0;
    top: 50%;
}

.single_game .single_game_content p{
    font-size: 1.1em;
    line-height: 110%;
}

.section_games .game_benefits{
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.single_game .single_game_content ul{    
    list-style-type: disc;
    margin-left: 40px;
    font-size: 1em;
}

/*.single_game .phone_image_container_fixed{
    transform: scale(0.5)
}*/

/*.phone_image_container_fixed {
    margin: -40% auto -20% auto !important;
}*/

/*fixed iframes*/
.phone_container_const{
    float: none;
    margin: -13% auto 0 auto;
    -webkit-transform: scale(.75);
            transform: scale(.75);
    /*margin: -40% auto -30% auto;*/
}

#our-work.section_games .game_title.sectionTitle{
    font-size: 2em;
    max-width: 60%;
    margin: 50px auto;
}

.section_games .single_game .game_title{
    margin: 10px auto;
}

#careers-offers .sectionTitle{
    margin: 40px 0 0 0;
}

#careers-offers #our-work  .sectionTitle{
    font-size: 2em;
}

.careers .contact-form h2{
    font-size: 1.2em;
}

.job-form-container .fa.fa-times{
    top: -1.8em;
}
    
}
@media screen and (max-width: 640px) {
  .work_case .ow {
    padding: 25px 5% 0 5% !important; }
  .work_case .work-case-logo {
    margin-bottom: 10px; }
    .work_case .work-case-logo img {
      max-height: 100px; }
  .work_case .work_case_section_one {
    padding-bottom: 10px; }
  .work_case h3 {
    margin: 50px 0 20px 0; }

  #our-work .sectionTitle, #work_case_results .sectionTitle {
    /*font-size: 2em;*/
    /*margin-bottom: -10px;*/ 
  } }

@media screen and (max-width: 600px) {
    .owl-carousel img {
      max-width: 70%;}
    
      #core .sectionTitle{
      padding: 40px 0;
  }
  
  .careers .contact-form h2{
      font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .work_case .work-case-circle-content {
    top: 3%; }
    .work_case .work-case-circle-content .work-case-circle-text {
      font-size: 1.2em; }

  .work_case .ow .work-case-circle-content .work-case-circle-text {
    margin-top: 42%; } 

    .owl-carousel img {
      max-width: 75%;}
    
    .solutions-page.mobile-card .section-solution-page .business-img-container img{
    max-width: 35%;
}
    
/*.phone_image_container_fixed{
        -webkit-transform: scale(0.45);
                transform: scale(0.45);
    margin: -60% auto -60% auto;
}*/

.section_games .single_game .game_title{
    /*margin-bottom: 20px;*/
}

}

@media screen and (max-width: 320px) {
    .phone_image_container_fixed{
        -webkit-transform: scale(0.45);
                transform: scale(0.45);
        margin: -70% auto -70% auto;
    }
}

@media screen and (min-height: 900px) {
  .work_case .work-case-scroll-down {
    text-align: center;
    position: absolute;
    bottom: 2%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }

  .work_case.heineken-summer .work-case-scroll-down {
    text-align: center;
    position: absolute;
    bottom: -5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); } }
@media screen and (max-height: 640px) {
  .owl-carousel {
    text-align: center; }
    .owl-carousel img {
      /*max-width: 20%;*/
      /*margin-top: -10%;*/ } }
html, body {
  height: 100%; }

body {
  font-family: "Cairo-Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  overflow-x: hidden; }
  body.freeze {
    overflow: hidden; }

.section {
  min-height: 100%;
  position: relative;
  padding: 152px 0 0 0; }

*, *:before, *:after {
  box-sizing: border-box; }

.fullContainer {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }
.clearfix:after {
  clear: both; }

.p0 {
  padding: 0 !important; }

.pl0 {
  padding-left: 0 !important; }

.pr0 {
  padding-right: 0 !important; }

.pt0 {
  padding-top: 0 !important; }

.pb0 {
  padding-bottom: 0 !important; }

.hidden {
  visibility: hidden;
  opacity: 0;
  display: none; }

.height-100vh {
  min-height: 100vh; }

#site-footer {
    background-color: #fff;
  font-family: 'Cairo-SemiBold', sans-serif;
  padding: 30px 0; }
  #site-footer .copyright {
    /*float: left;*/
    /*margin-right: 15px;*/
    text-align: center;
    color: #666;
    line-height: 32px; }
    #site-footer .copyright span {
      color: #00acee; }
  #site-footer .privacy {
    line-height: 32px; }
    #site-footer .privacy a {
      color: #666; }
  #site-footer .social {
    text-align: center; }
    #site-footer .social li {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-left: 16px; }
      #site-footer .social li a {
        width: 100%;
        height: 100%;
        display: block;
        text-indent: -999em; }
      #site-footer .social li.facebook a {
        background: url(../images/facebook_v2.png) center center no-repeat;
        background-size: 100%; }
      #site-footer .social li.twitter a {
        background: url(../images/twitter_v2.png) center center no-repeat;
        background-size: 100%; }
      #site-footer .social li.linkedin a {
        background: url(../images/linkedin_v2.png) center center no-repeat;
        background-size: 100%; }
  #site-footer .footerNav {
    float: right; }
    #site-footer .footerNav li {
      line-height: 32px;
      display: inline-block;
      margin-left: 15px; }
      #site-footer .footerNav li:first-of-type {
        margin-left: 0; }
      #site-footer .footerNav li a {
        font-family: 'Cairo-SemiBold', sans-serif;
        font-size: .94em;
        font-weight: 400;
        color: #666;
        text-decoration: none;
        text-transform: uppercase; }

.site-scroll-up {
  text-align: center;
  padding: 50px 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }
  .site-scroll-up a {
    margin-right: 15px; }

.text-center {
  text-align: center; }

.site-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3); }

.contact-form {
  margin-top: 20px; }
  .contact-form h2 {
    font-size: 2em;
    text-align: center;
    max-width: 100% !important;
    color: #666;
    line-height: 120%;
    font-weight: bold; }
  .contact-form input {
      border: 1px solid #a9a9a9;
    min-height: 41px; }
  .contact-form input[type='text'],.contact-form input[type='tel'], .contact-form input[type='email'], .contact-form input[type='submit'], .contact-form textarea {
    font-size: .9em;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 100%;
    width: 100%;
    margin-top: 10px; }
  .contact-form textarea {
      padding: 12px;
  }
    .contact-form input[type='text']::-webkit-input-placeholder, .contact-form input[type='tel']::-webkit-input-placeholder, .contact-form input[type='email']::-webkit-input-placeholder, .contact-form input[type='submit']::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder {
      /*padding: 0;*/
      color: #b6b1ae;
        /*padding: 5px;*/
      /*            font-size: .8em;*/ }
    .contact-form input[type='text']::-moz-placeholder,.contact-form input[type='tel']::-moz-placeholder, .contact-form input[type='email']::-moz-placeholder, .contact-form input[type='submit']::-moz-placeholder, .contact-form textarea::-moz-placeholder {
      /*padding: 5px;*/
      /*font-size: .8em;*/ }
    .contact-form input[type='text']:-ms-input-placeholder,.contact-form input[type='tel']:-ms-input-placeholder, .contact-form input[type='email']:-ms-input-placeholder, .contact-form input[type='submit']:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder {
        color: #b6b1ae;
        /*padding: 5px;*/
        color: #b6b1ae;
      /*font-size: .8em;*/ }
    .contact-form input[type='text']:-moz-placeholder, .contact-form input[type='tel']:-moz-placeholder, .contact-form input[type='email']:-moz-placeholder, .contact-form input[type='submit']:-moz-placeholder, .contact-form textarea:-moz-placeholder {
      color: #b6b1ae;
        /*padding: 5px;*/
        color: #b6b1ae;
      /*font-size: .8em;*/ }
  .contact-form input[type='submit'], #file_upload_trigger {
    color: #fff;
    padding: 10px;
    border: 0;
    background-color: #fc8715;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 1em; }
  
  #file_upload_trigger{
      background-color: #666;
  }
  
  #file_upload_trigger:focus{
      outline:0;  
  }
  
  #file_upload_trigger.files_uploaded{
      background-color: #fc8715;
  }
  
    .contact-form input[type='submit']:hover,
    #file_upload_trigger:hover
    {
      background-color: black; }
  .contact-form textarea {
      border: 1px solid #a9a9a9;
    min-height: 200px;
    margin-bottom: 10px;
    line-height: 120%; }
  
  #file_upload_trigger{
      width: 100%;
  }
  
  #missing_captcha{
      display: none;
  }
  
  .g-recaptcha{
    float: right;
    /*margin-right: 13px;*/
    margin-top: 10px;
  }
  
  .captcha_valid_information .parsley-required{
      text-align: right;
      margin-right: 10px;
  }
  
/*    .contact-form textarea::-webkit-input-placeholder {
      padding: 5px 0; }
    .contact-form textarea::-moz-placeholder {
      padding: 5px 0; }
    .contact-form textarea:-ms-input-placeholder {
      padding: 5px 0; }
    .contact-form textarea:-moz-placeholder {
      padding: 5px 0; }*/

.form_sended {
  color: darkolivegreen; }

@media screen and (max-width: 1200px) {
  .site-scroll-up a {
    margin-right: 0; } }
@media screen and (max-width: 767px) {
  .site-scroll-up {
    padding: 25px; }
    .site-scroll-up img {
      width: 50px;
      height: 50px; } }
/*.results-circle{
    position: relative;
    width: 33.3333%;
    padding: 50px;

    .content{
        position:  absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: 50px;
        background-image: url('../images/work_case/c3.png');
        background-position: 50% 50%;
        background-size: 100%;
        border: 3px solid whitesmoke;
        border-radius: 50%;

        img {
            position: absolute;
            left: 50%;
            top: 10%;
            transform: translate(-50%, 0);
        }

        span {
            font-size: 1.9em;
            line-height: 1;
            color: #fff;
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
            width: 78%;
            margin-left: 22%;
        }
    }
}
.results-circle:before{
    content: "";
    display: block;
    padding-top: 100%; 	 initial ratio of 1:1
}*/

@media screen and (max-width: 380px) {
    .g-recaptcha{
        /*margin-right: 13px;*/
            margin: 10px -40px 0 -40px;
            -webkit-transform: scale(.75);
                    transform: scale(.75);
      }
}

@media screen and (max-height: 320px){
    .solutions .section-our-solutions .solution-circles .solution-circle-container{
        max-width: 45%;
        text-align: center;
        margin: 0 auto;
    }
    
   .work-case-landing #work_case_results .thumbnail{
        width: 50%;
        margin: 0 auto;
    }
    
    #work_case_results .thumbnail{
        width: 75%;
        margin: 0 auto;
    }
    
    #core .content aside .thumbnail{
        max-width: 50%;
        margin: 0 auto;
    }
    
    #our-work .thumbnail{
        text-align: center;
    }
    
    #our-work .thumbnail img{
        width: 50%;
    }
    
}

/*career pages specific classes*/
.stickyHeader_career {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
}

.section_container_career {
  margin: 126px auto 40px auto;
  max-width: 100%;
}

#careers-offers #our-work .section_container_career .sectionTitle_career {
  margin: 16px auto 40px auto;
  font-size: 2.6em;
  line-height: 100%;
  color: #666;
  text-align: center;
  position: relative;
}

.section_container_career .sectionTitle_career:before {
  content: "";
  width: 25%;
  height: 1px;
  background-color: #bcbcbc;
  position: absolute;
  left: 0;
  top: 50%; }
.section_container_career .sectionTitle_career:after {
  content: "";
  width: 25%;
  height: 1px;
  background-color: #bcbcbc;
  position: absolute;
  right: 0;
  top: 50%; }

.offer_content_career {
  margin: 15px 0;
  padding: 15px 0 0 0;
}

.offer_container_outer .offer_content_career p {
  text-align: left;
  font-size: 18px;
}
.offer_content_career ul {
  list-style: square;
  padding-left: 40px;
}
.offer_content_career ul li {
  line-height: 120%;
  font-size: 14px;
}
.offer_content_career ul li span {
  color: #666;
  font-size: 17px;
  line-height: 120%;
}

.apply_container_career {
  margin-top: 30px;
  text-align: center;
}
/*end of career pages specific classes*/