/* colors */
/* $base-pink-hover: lighten($base-pink, 10%) */
/* breakpoints */
* {
  box-sizing: border-box;
  font-weight: normal;
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  outline: none; }

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'light', Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #262626; }
  @media only screen and (max-width: 640px) {
    html,
    body {
      font-size: 12px; } }

html.locked {
  overflow: hidden; }

html {
  height: 100%; }

body {
  background: #ffffff;
  min-width: 1200px; }
  @media only screen and (max-width: 640px) {
    body {
      min-width: 100%; } }

button {
  outline: none;
  border: none;
  cursor: pointer; }

.wrapper {
  width: 1200px;
  height: 100%;
  padding: 0 60px;
  margin: 0 auto;
  position: relative; }
  @media only screen and (max-width: 640px) {
    .wrapper {
      width: 100%;
      padding: 0 20px; } }

.arrow {
  position: fixed;
  z-index: 99;
  bottom: 55px;
  right: 50px;
  border-radius: 50%;
  border: 2px solid #535353;
  width: 40px;
  height: 40px;
  display: none;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  cursor: pointer; }
  .arrow:before {
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-left: 2px solid #535353;
    border-top: 2px solid #535353;
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    -webkit-transition: border-color .3s;
    transition: border-color .3s; }
  .arrow:hover {
    border-color: #404040; }
    .arrow:hover:before {
      border-color: #404040; }

p {
  font-size: inherit;
  line-height: 1.65em; }
  @media only screen and (max-width: 780px) {
    p {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 360px) {
    p {
      margin-bottom: 10px; } }

h1, h2, h3, h4 {
  font-weight: 400;
  color: #535353;
  text-align: left; }

h1 {
  font-size: 35px;
  line-height: 45px; }
  @media only screen and (max-width: 360px) {
    h1 {
      font-size: 25px; } }

h2 {
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 30px; }
  @media only screen and (max-width: 360px) {
    h2 {
      font-size: 18px; } }

.btn {
  border: 0;
  outline: 0;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 18px;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all .3s;
  transition: all .3s; }
  .btn__yellow {
    width: 100%;
    background-color: #fecc08;
    padding: 10px 35px;
    line-height: 25px;
    font-family: 'light';
    font-size: 18px; }
    @media only screen and (max-width: 640px) {
      .btn__yellow {
        padding: 7px 15px;
        font-family: 'regular';
        font-size: 11px; } }
    .btn__yellow:hover {
      background-color: #ecbc01; }
    .btn__yellow span {
      margin-right: 10px; }
    .btn__yellow:first-of-type {
      margin-bottom: 20px; }
    .btn__yellow-line {
      background-color: transparent;
      border: 2px solid #fecc08;
      padding: 10px 0;
      line-height: 25px;
      color: #fecc08;
      width: 60%;
      margin: 10px 0;
      text-align: center;
      font-family: 'regular';
      font-size: 20px; }
      @media only screen and (max-width: 640px) {
        .btn__yellow-line {
          font-size: 18px;
          padding: 6px 0; } }
      .btn__yellow-line:hover {
        background-color: #fecc08;
        color: #ffffff; }
  .btn__submit {
    width: 100%;
    color: #262626;
    font-size: 20px;
    font-family: 'regular';
    background-color: transparent;
    line-height: 25px;
    border: 2px solid #262626;
    text-align: center;
    padding: 5px 0; }
    @media only screen and (max-width: 640px) {
      .btn__submit {
        font-size: 18px; } }
    .btn__submit:hover {
      background-color: #262626;
      color: #fecc08; }

input, textarea {
  outline: none;
  font-family: 'light'; }

input, textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #262626;
  font-size: 14px;
  padding: 10px;
  color: #262626;
  margin-bottom: 20px; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #262626; }
  input::-moz-placeholder, textarea::-moz-placeholder {
    color: #262626; }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #262626; }
  input::placeholder, textarea::placeholder {
    color: #262626; }
  input:active, input:focus, textarea:active, textarea:focus {
    border-color: #262626; }
  input.error, textarea.error {
    border-color: #262626;
    color: #262626; }

textarea {
  resize: none; }

input[type="file"] {
  display: none; }

@font-face {
  font-family: 'light';
  src: url("../fonts/opensans_light/OpenSans-Light-webfont.ttf");
  src: url("../fonts/opensans_light/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_light/OpenSans-Light-webfont.woff") format("woff"), url("../fonts/opensans_light/OpenSans-Light-webfont.ttf") format("truetype"), url("../fonts/opensans_light/OpenSans-Light-webfont.svg#open_sanslight") format("svg"); }

@font-face {
  font-family: 'regular';
  src: url("../fonts/opensans_regular/OpenSans-Regular-webfont.ttf");
  src: url("../fonts/opensans_regular/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_regular/OpenSans-Regular-webfont.woff") format("woff"), url("../fonts/opensans_regular/OpenSans-Regular-webfont.ttf") format("truetype"), url("../fonts/opensans_regular/OpenSans-Regular-webfont.svg#open_sansregular") format("svg"); }

@font-face {
  font-family: 'bold';
  src: url("../fonts/opensans_bold/OpenSans-Bold-webfont.ttf");
  src: url("../fonts/opensans_bold/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_bold/OpenSans-Bold-webfont.woff") format("woff"), url("../fonts/opensans_bold/OpenSans-Bold-webfont.ttf") format("truetype"), url("../fonts/opensans_bold/OpenSans-Bold-webfont.svg#open_sansbold") format("svg"); }

.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 25px 0; }
  .slick-dots li.slick-active .dot {
    background-color: #fecc08;
    box-shadow: 0 0 0 3px #fecc08; }
  .slick-dots li .dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #FFF;
    border: 1px solid #fff;
    box-shadow: 0 0 0 2px #ccc;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: block;
    position: relative; }
    .slick-dots li .dot-active {
      background-color: #fecc08;
      box-shadow: 0 0 0 3px #fecc08; }
  @media only screen and (min-width: 420px) {
    .slick-dots li:hover .dot {
      background-color: #fecc08;
      box-shadow: 0 0 0 3px #fecc08; } }

.slick-list, .slick-track {
  height: 100%; }

.header {
  padding: 10px 0;
  background-color: #ffffff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  width: 100%; }
  .header__logo {
    vertical-align: middle;
    height: 100%;
    display: inline-block;
    width: 40%; }
    @media only screen and (max-width: 640px) {
      .header__logo {
        width: 60%; } }
    .header__logo a {
      display: inline-block;
      vertical-align: middle; }
      .header__logo a img {
        width: 100%; }
      @media only screen and (max-width: 640px) {
        .header__logo a {
          max-width: 25%; } }
  .header__title {
    display: inline-block;
    vertical-align: middle;
    font-family: "light";
    margin-left: 50px; }
    @media only screen and (max-width: 640px) {
      .header__title {
        max-width: 75%;
        margin: 0;
        font-family: 'regular';
        padding-left: 1%; } }
  .header__phone {
    font-size: 25px; }
    @media only screen and (max-width: 640px) {
      .header__phone {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 0; } }
  @media only screen and (max-width: 640px) {
    .header__description {
      font-size: 7px;
      margin-bottom: 0; } }
  .header__links {
    height: 100%;
    vertical-align: middle;
    display: inline-block;
    width: 60%;
    text-align: right; }
    @media only screen and (max-width: 640px) {
      .header__links {
        width: 40%; } }
    .header__links a {
      margin-right: 10px; }
      @media only screen and (max-width: 640px) {
        .header__links a {
          margin-right: 5px; } }
      .header__links a:last-of-type {
        margin-right: 0; }
    .header__links .btn {
      font-size: 16px;
      line-height: 20px;
      width: 180px;
      padding: 10px;
      text-align: center; }
      @media only screen and (max-width: 640px) {
        .header__links .btn {
          display: none; } }
      .header__links .btn span {
        margin: 0; }

.footer__container {
  height: 525px; }
  @media only screen and (max-width: 640px) {
    .footer__container {
      height: auto; } }

.footer__whiteside {
  width: 50%;
  padding: 40px 0;
  background-color: #ffffff;
  display: inline-block;
  vertical-align: top;
  text-align: right;
  height: 100%; }
  @media only screen and (max-width: 640px) {
    .footer__whiteside {
      width: 100%;
      display: block;
      padding: 30px 0; }
      .footer__whiteside .footer__wrapper {
        text-align: center;
        padding-bottom: 70px; }
      .footer__whiteside .btn__yellow-line {
        width: 100%; } }

.footer__contacts {
  font-size: 21px;
  font-family: 'light';
  line-height: 25px; }
  @media only screen and (max-width: 640px) {
    .footer__contacts {
      font-size: 14px; } }

.footer__social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto; }
  .footer__social p {
    font-size: 18px;
    font-family: 'light';
    margin-bottom: 15px; }
    @media only screen and (max-width: 640px) {
      .footer__social p {
        font-size: 12px; } }

.footer__yellowside {
  width: 50%;
  padding: 40px 0;
  background-color: #fecc08;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  height: 100%;
  float: right; }
  @media only screen and (max-width: 640px) {
    .footer__yellowside {
      float: none;
      width: 100%;
      display: block; } }

.footer__wrapper {
  width: 540px;
  margin: 0 55px;
  display: inline-block;
  text-align: left;
  height: 100%;
  position: relative;
  padding-right: 60px; }
  @media only screen and (max-width: 640px) {
    .footer__wrapper {
      margin: 0;
      padding: 0 15px;
      width: 100%; } }
  .footer__wrapper h2 {
    text-align: left;
    color: #262626; }
    @media only screen and (max-width: 640px) {
      .footer__wrapper h2 {
        text-align: center; } }

.footer__formText {
  font-size: 14px;
  font-family: 'light';
  line-height: 20px;
  margin-bottom: 25px; }

.footer__form {
  width: 100%;
  position: relative; }
  .footer__form button {
    width: 100%; }

.footer__attachment {
  position: absolute;
  right: 8px;
  top: 190px;
  padding: 5px 5px 5px 4px;
  border: 1px solid #000;
  cursor: pointer; }
  .footer__attachment span {
    font-size: 22px; }

.footer .copyright {
  background-color: #3e3e3e; }
  .footer .copyright p {
    font-size: 12px;
    color: #898989;
    font-family: 'light';
    padding-top: 15px;
    margin: 0;
    display: inline-block;
    width: 50%; }
    @media only screen and (max-width: 640px) {
      .footer .copyright p {
        display: block;
        width: 100%; } }
    .footer .copyright p a {
      color: inherit; }
  .footer .copyright__antares {
    text-align: right;
    padding-bottom: 15px; }
    @media only screen and (max-width: 640px) {
      .footer .copyright__antares {
        text-align: left; } }

.icon {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  text-decoration: none;
  font-family: "fontello";
  font-size: 18px; }
  @media only screen and (max-width: 640px) {
    .icon {
      font-size: 10px; } }
  .icon:before {
    width: 40px;
    height: 40px;
    background: #c9c8c8;
    line-height: 40px;
    text-align: center;
    margin: 0 1px;
    -webkit-transition: all .3s;
    transition: all .3s; }
    @media only screen and (max-width: 640px) {
      .icon:before {
        width: 25px;
        height: 25px;
        line-height: 25px; } }
  .icon.icon-facebook:hover:before {
    background: #3b5998; }
  .icon.icon-youtube:hover:before {
    background: #bb0000; }
  .icon.icon-instagram:hover:before {
    background: #517fa4; }
  .icon.icon-twitter:hover:before {
    background: #0084b4; }
  .icon.icon-vkontakte:hover:before {
    background: #45688E; }

.video {
  position: relative; }
  @media only screen and (max-width: 640px) {
    .video {
      display: none; } }
  .video video {
    height: 100%;
    width: 100%;
    cursor: pointer; }
    .video video:hover + .video__button {
      opacity: 1; }
  .video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    margin-left: -75px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer; }
    .video__button:hover {
      opacity: 1; }
    .video__button-pause, .video__button-play {
      display: none; }
    .video__button-active {
      display: block; }
      .video__button-active .st0 {
        fill: rgba(255, 255, 255, 0.1);
        -webkit-transition: all .3s;
        transition: all .3s; }
      .video__button-active:hover .st0 {
        fill: #ffffff; }

.info {
  background-color: #ffffff;
  padding: 55px 0; }
  @media only screen and (max-width: 640px) {
    .info {
      padding: 0;
      background-image: url("../images/mobileBG.jpg");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover; } }
  .info__about {
    display: inline-block;
    vertical-align: middle;
    width: 65%;
    margin-right: 10%; }
    @media only screen and (max-width: 640px) {
      .info__about {
        display: block;
        width: 100%;
        margin-right: 0;
        padding: 150px 0; } }
  .info__title {
    margin-bottom: 30px; }
    @media only screen and (max-width: 640px) {
      .info__title {
        margin-bottom: 15px;
        font-size: 25px;
        font-family: 'bold';
        color: #ffffff;
        line-height: 30px; } }
  .info__description {
    font-family: 'regular';
    font-size: 18px;
    line-height: 25px; }
    @media only screen and (max-width: 640px) {
      .info__description {
        font-size: 12px;
        color: #ffffff;
        line-height: 20px; } }
  .info__btns {
    display: inline-block;
    vertical-align: middle;
    width: 25%; }
    @media only screen and (max-width: 640px) {
      .info__btns {
        display: block;
        width: 100%; }
        .info__btns .btn__yellow {
          width: 47%;
          padding: 5px; }
          .info__btns .btn__yellow:first-of-type {
            margin-right: 3%; }
          .info__btns .btn__yellow:last-of-type {
            margin-left: 3%; } }

.projects {
  background-color: #f5f5f5;
  padding: 55px 0; }
  @media only screen and (max-width: 360px) {
    .projects {
      padding: 35px 0; } }
  .projects__item {
    position: relative;
    width: 255px;
    height: 180px;
    margin-right: 15px;
    overflow: hidden; }
    .projects__item:hover .projects__description {
      opacity: 1; }
    .projects__item:hover .projects__link-hide {
      width: 85px;
      opacity: 1;
      -webkit-transition: width .3s, opacity .5s;
      transition: width .3s, opacity .5s; }
    .projects__item img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    @media only screen and (max-width: 640px) {
      .projects__item {
        display: inline-block;
        width: 45%;
        margin: 0 0 10%;
        height: 100px; }
        .projects__item:nth-child(odd) {
          margin-right: 5%; }
        .projects__item:nth-child(even) {
          margin-left: 5%; } }
  .projects__link {
    position: absolute;
    bottom: 0;
    z-index: 1;
    right: 0;
    padding: 10px;
    color: #ffffff;
    background-color: #fecc08;
    font-size: 20px; }
    @media only screen and (max-width: 640px) {
      .projects__link {
        padding: 0; } }
    .projects__link span {
      vertical-align: middle; }
    .projects__link-hide {
      display: inline-block;
      -webkit-transition: width .5s, opacity .2s;
      transition: width .5s, opacity .2s;
      width: 0;
      padding: 0;
      font-size: 16px;
      height: 100%;
      opacity: 0; }
      @media only screen and (max-width: 640px) {
        .projects__link-hide {
          display: none; } }
  .projects__description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    color: #fff;
    padding: 25px 20px;
    font-family: 'regular';
    font-size: 16px; }
    @media only screen and (max-width: 640px) {
      .projects__description {
        opacity: 1;
        font-size: 10px;
        padding: 5px 28px 5px 5px; } }
  .projects__arrow {
    position: absolute;
    top: 56%;
    cursor: pointer;
    display: none; }
    .projects__arrow.slick-arrow {
      display: block; }
    .projects__arrow.slick-arrow.slick-hidden {
      display: none; }
    .projects__arrow:before {
      width: 35px;
      height: 35px;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      border-right: 2px solid #b8b8b8;
      border-top: 2px solid #b8b8b8;
      content: '';
      display: block;
      -webkit-transition: border-color .3s;
      transition: border-color .3s; }
    .projects__arrow-left {
      left: 20px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .projects__arrow-right {
      right: 20px; }

.steps {
  border-color: #ffffff;
  padding: 55px 0;
  min-height: 550px; }
  @media only screen and (max-width: 640px) {
    .steps {
      padding: 35px 0; } }
  .steps__item h3 {
    text-align: center;
    margin-bottom: 30px; }
    .steps__item h3 span {
      border-radius: 25px;
      border: 2px solid #fecc08;
      display: inline-block;
      padding: 10px;
      position: relative;
      width: 200px; }
  .steps__image, .steps__description {
    display: inline-block;
    width: 50%;
    vertical-align: top; }
    @media only screen and (max-width: 640px) {
      .steps__image, .steps__description {
        display: block;
        width: 100%; } }
  .steps__description {
    padding-left: 5%; }
    @media only screen and (max-width: 640px) {
      .steps__description {
        padding-left: 0; } }
    .steps__description p, .steps__description li, .steps__description td {
      font-size: 14px;
      font-family: 'light';
      color: #262626; }
      @media only screen and (max-width: 640px) {
        .steps__description p, .steps__description li, .steps__description td {
          font-size: 12px; } }
    .steps__description p {
      margin-bottom: 15px; }
    .steps__description a {
      color: inherit;
      font-style: italic; }
    .steps__description ul {
      list-style: none;
      margin-left: 40px; }
      .steps__description ul li {
        position: relative;
        line-height: 20px; }
        .steps__description ul li:before {
          position: absolute;
          left: -15px;
          top: 7px;
          border-radius: 50%;
          background-color: #fecc08;
          display: block;
          width: 5px;
          height: 5px;
          content: ''; }
  .steps__image {
    padding-right: 5%; }
    @media only screen and (max-width: 640px) {
      .steps__image {
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px; } }
    .steps__image img {
      max-width: 100%; }
  .steps .slick-dots {
    top: 73px;
    width: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
    @media only screen and (max-width: 640px) {
      .steps .slick-dots {
        top: auto;
        bottom: -30px;
        left: 0;
        width: 100%;
        -webkit-transform: none;
                transform: none; }
        .steps .slick-dots li {
          margin: 0 1%;
          width: 10%;
          height: 5px; }
          .steps .slick-dots li.slick-active .dot {
            background-color: #fecc08; }
          .steps .slick-dots li .dot {
            border-radius: 0;
            border: none;
            box-shadow: none;
            background-color: #c9c8c8; } }
  @media only screen and (min-width: 420px) {
    .steps .dot:before {
      content: '';
      width: 1px;
      height: 50px;
      display: block;
      background-color: #ccc;
      position: absolute;
      top: -53px;
      margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0; }
    .steps .dot-active:after {
      content: '';
      width: 2px;
      height: 50px;
      display: block;
      background-color: #fecc08;
      position: absolute;
      top: -53px;
      margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0; } }

.team__container {
  height: 450px;
  background-color: #fcfcfc; }
  @media only screen and (max-width: 640px) {
    .team__container {
      height: auto; } }

.team__image {
  display: inline-block;
  width: 50%;
  vertical-align: bottom;
  height: 100%;
  float: left; }
  @media only screen and (max-width: 640px) {
    .team__image {
      display: block;
      width: 100%;
      float: none; } }
  .team__image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }

.team__wrapper {
  display: inline-block;
  width: 50%;
  vertical-align: bottom;
  position: relative;
  float: right;
  padding-left: 50px; }
  @media only screen and (max-width: 640px) {
    .team__wrapper {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
      padding: 0 0 4% 4%;
      float: none; } }

.team__title {
  text-align: left;
  margin-top: 120px;
  margin-bottom: 50px; }
  @media only screen and (max-width: 640px) {
    .team__title {
      margin: 0;
      text-align: center;
      font-size: 18px;
      line-height: 20px;
      padding: 5%; } }

.team__description {
  width: 535px; }
  @media only screen and (max-width: 640px) {
    .team__description {
      padding-top: 20%;
      width: 100%;
      max-width: 100%; } }
  .team__description h4 {
    font-family: 'light';
    font-size: 21px;
    margin-bottom: 15px; }
    @media only screen and (max-width: 640px) {
      .team__description h4 {
        font-size: 14px; } }
  .team__description p {
    font-family: 'light';
    font-size: 14px; }
    @media only screen and (max-width: 640px) {
      .team__description p {
        text-align: left;
        font-size: 12px; } }

.team__arrow {
  display: inline-block;
  cursor: pointer; }
  .team__arrow:before {
    width: 50px;
    height: 50px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-right: 2px solid #b8b8b8;
    border-top: 2px solid #b8b8b8;
    content: '';
    display: block;
    -webkit-transition: border-color .3s;
    transition: border-color .3s; }
    @media only screen and (max-width: 640px) {
      .team__arrow:before {
        width: 30px;
        height: 30px; } }
  .team__arrow-left {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.team .slick-dots {
  top: -35px;
  text-align: left; }
  @media only screen and (max-width: 640px) {
    .team .slick-dots {
      top: 15px; } }
  .team .slick-dots li {
    margin: 0 10px;
    width: 10px;
    height: 10px; }
    .team .slick-dots li:first-of-type {
      margin-left: 0; }

.gallery {
  background-color: #f5f5f5;
  padding: 50px 0; }
  @media only screen and (max-width: 640px) {
    .gallery {
      padding: 30px 0; }
      .gallery .wrapper {
        padding: 0; } }
  .gallery__container {
    position: relative; }
  .gallery__fullImage {
    margin-bottom: 30px;
    height: 660px; }
    @media only screen and (max-width: 640px) {
      .gallery__fullImage {
        height: 240px; } }
  .gallery__item {
    position: relative;
    text-align: center; }
  .gallery__wrapper {
    display: inline-block;
    position: relative;
    height: 100%;
    max-width: 100%; }
  .gallery__image {
    position: relative;
    height: 180px;
    margin-right: 15px;
    overflow: hidden;
    cursor: pointer; }
    .gallery__image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .gallery__image-full {
      max-width: 100%;
      height: 100%;
      margin: 0 auto; }
  .gallery__text {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 45px 125px 35px 125px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    @media only screen and (max-width: 640px) {
      .gallery__text {
        display: none; } }
    .gallery__text:hover .gallery__description {
      max-height: 100px; }
  .gallery__title {
    font-size: 24px;
    font-family: 'light'; }
  .gallery__description {
    font-size: 16px;
    font-family: 'regular';
    max-height: 0px;
    margin-top: 20px;
    overflow: hidden;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .gallery__arrow {
    position: absolute;
    top: 48%;
    cursor: pointer; }
    .gallery__arrow:before {
      width: 35px;
      height: 35px;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      border-right: 2px solid #b8b8b8;
      border-top: 2px solid #b8b8b8;
      content: '';
      display: block;
      -webkit-transition: border-color .3s;
      transition: border-color .3s; }
    .gallery__arrow-left {
      left: -50px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
      @media only screen and (max-width: 640px) {
        .gallery__arrow-left {
          display: none; } }
    .gallery__arrow-right {
      right: -50px; }
      @media only screen and (max-width: 640px) {
        .gallery__arrow-right {
          display: none; } }
  .gallery__imagesList {
    position: relative; }
    @media only screen and (max-width: 640px) {
      .gallery__imagesList {
        display: none; } }
    .gallery__imagesList-arrowRight, .gallery__imagesList-arrowLeft {
      top: 40%; }
      @media only screen and (max-width: 640px) {
        .gallery__imagesList-arrowRight, .gallery__imagesList-arrowLeft {
          display: none; } }

.content {
  background-color: #ffffff;
  padding: 55px 0; }
  @media only screen and (max-width: 640px) {
    .content {
      padding: 35px 0; } }
  .content-yellow {
    background-color: #fecc08;
    padding: 25px 35px;
    margin-bottom: 35px; }
    .content-yellow p {
      font-size: 15px;
      font-family: 'regular';
      color: #404040;
      margin-bottom: 20px;
      line-height: 20px; }
      @media only screen and (max-width: 640px) {
        .content-yellow p {
          font-size: 12px; } }
      .content-yellow p:last-of-type {
        margin-bottom: 0; }
      .content-yellow p span {
        font-weight: bold;
        margin-right: 5px;
        display: inline-block; }
  .content__text p, .content__text td {
    font-family: 'regular';
    font-size: 15px;
    color: #404040;
    margin-bottom: 20px;
    line-height: 25px;
    max-width: 100%; }
    @media only screen and (max-width: 640px) {
      .content__text p, .content__text td {
        font-size: 12px; } }
  .content__text table {
    width: 100%; }
  .content__text thead {
    background-color: #ebebeb; }
    .content__text thead th {
      font-weight: bold;
      padding: 10px; }
  .content__text tbody tr:nth-child(even) {
    background-color: #fcfcfc; }
  .content__text tbody td {
    padding: 10px; }
  .content__text a {
    text-decoration: none;
    color: #0db7d3; }
  .content__text ul {
    list-style: none; }
    .content__text ul li {
      color: #757575;
      font-size: 16px;
      position: relative;
      margin-bottom: 20px;
      line-height: 25px; }
      .content__text ul li:before {
        position: absolute;
        left: -15px;
        top: 7px;
        border-radius: 50%;
        border: 2px solid #fecc08;
        display: block;
        width: 5px;
        height: 5px;
        content: ''; }
  .content__download {
    text-align: center;
    margin: 30px 0; }
    @media only screen and (max-width: 640px) {
      .content__download {
        text-align: left; } }
    .content__download-item {
      text-decoration: none;
      width: 30%;
      display: inline-block;
      margin-right: 3%; }
      @media only screen and (max-width: 640px) {
        .content__download-item {
          width: 100%;
          margin-right: 0;
          margin-bottom: 10px; } }
      .content__download-item:last-of-type {
        margin-right: 0; }
      .content__download-item img {
        vertical-align: middle; }
      .content__download-item p {
        padding: 10px;
        font-weight: bold;
        margin: 0;
        line-height: 20px;
        display: inline-block;
        max-width: 75%;
        vertical-align: middle; }
  .content__float-left {
    float: left;
    margin: 25px 25px 25px 0; }
    @media only screen and (max-width: 640px) {
      .content__float-left {
        margin: 10px 10px 10px 0;
        width: 45%; } }
    .content__float-left .projects__item {
      margin: 0;
      width: 100%; }
    .content__float-left + .content__text li {
      display: inline-block;
      min-width: 51%; }
  .content__projectDescription {
    padding: 25px 15px;
    border: 2px solid #e8e8e8;
    width: 100%; }

.videoGallery {
  padding: 55px 0;
  height: 420px; }
  @media only screen and (max-width: 640px) {
    .videoGallery {
      height: auto;
      padding: 35px 0; } }
  .videoGallery__active {
    width: 48%;
    display: inline-block;
    margin-right: 1%;
    height: 100%;
    vertical-align: top; }
    @media only screen and (max-width: 640px) {
      .videoGallery__active {
        width: 100%;
        display: block;
        margin-bottom: 10px; } }
    .videoGallery__active iframe {
      width: 100%;
      height: 100%; }
  .videoGallery__list {
    width: 48%;
    display: inline-block;
    margin-left: 1%;
    height: 100%;
    vertical-align: top; }
    @media only screen and (max-width: 640px) {
      .videoGallery__list {
        display: block;
        width: 100%;
        margin: 0; } }
  .videoGallery__item {
    margin-bottom: 20px;
    cursor: pointer;
    position: relative; }
    @media only screen and (max-width: 640px) {
      .videoGallery__item {
        display: inline-block;
        width: 33%;
        vertical-align: top; } }
    .videoGallery__item:not(.videoGallery__item-active):after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.3);
      content: '';
      display: block; }
    .videoGallery__item:last-of-type {
      margin-bottom: 0; }
    .videoGallery__item img {
      width: 25%;
      vertical-align: middle; }
      @media only screen and (max-width: 640px) {
        .videoGallery__item img {
          width: 100%;
          margin-bottom: 15px; } }
    .videoGallery__item p {
      width: 75%;
      padding-left: 15px;
      display: inline-block;
      vertical-align: middle;
      font-size: 15px;
      font-family: 'regular';
      color: #404040;
      line-height: 20px; }
      @media only screen and (max-width: 640px) {
        .videoGallery__item p {
          width: 100%; } }

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fecc08;
  z-index: 100;
  text-align: center;
  display: none; }
  .popup__wrapper {
    width: 430px;
    min-height: 350px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    text-align: left;
    margin-left: -215px; }
    @media only screen and (max-width: 640px) {
      .popup__wrapper {
        left: 5%;
        width: 90%;
        margin-left: 0; } }
  .popup__title {
    font-size: 28px;
    font-family: 'light';
    text-align: left;
    color: #262626;
    padding-right: 30px; }
  .popup__text {
    font-size: 16px;
    font-family: 'light';
    line-height: 25px;
    margin-bottom: 25px; }
  .popup__close {
    position: absolute;
    top: 0;
    right: -100px;
    cursor: pointer;
    width: 30px;
    height: 30px; }
    @media only screen and (max-width: 640px) {
      .popup__close {
        right: 0; } }
    .popup__close:before {
      position: absolute;
      top: 0;
      left: 50%;
      content: '';
      width: 2px;
      height: 30px;
      background-color: #262626;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .popup__close:after {
      position: absolute;
      top: 0;
      left: 50%;
      content: '';
      width: 2px;
      height: 30px;
      background-color: #262626;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }

.mobile-links {
  background-color: #f5f5f5;
  padding: 30px 0 0; }
  @media only screen and (min-width: 420px) {
    .mobile-links {
      display: none; } }
  .mobile-links .prevPage {
    position: relative;
    padding-left: 15px;
    cursor: pointer;
    color: #262626;
    text-decoration: none; }
    .mobile-links .prevPage:before {
      display: inline-block;
      border-top: 1px solid #262626;
      border-left: 1px solid #262626;
      width: 12px;
      height: 12px;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
      content: '';
      position: absolute;
      left: 0;
      top: 2px; }
