@charset "UTF-8";
/*
    HTML5 Reset :: style.css
    ----------------------------------------------------------
    We have learned much from/been inspired by/taken code where offered from:

    Eric Meyer                  :: http://meyerweb.com
    HTML5 Doctor                :: http://html5doctor.com
    and the HTML5 Boilerplate   :: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  background: transparent;
  border: 0; }

article, aside, figure, footer, header, nav, section, details, summary {
  display: block; }

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  box-sizing: inherit; }

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
*/
img,
object,
embed {
  max-width: 100%; }

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
     In fact, it *will* cause problems with Google Maps' controls at small size.
    If this is the case for you, try uncommenting the following:

#map img {
        max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll; }

/* we use a lot of ULs that aren't bulleted.
    don't forget to restore the bullets within content. */
ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  background: transparent; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-spacing: 0;
  border-collapse: collapse; }

th {
  vertical-align: bottom;
  font-weight: bold; }

td {
  vertical-align: top;
  font-weight: normal; }

hr {
  margin: 1em 0;
  display: block;
  height: 1px;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc; }

input, select {
  vertical-align: middle; }

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

select, input, textarea {
  font: 99% sans-serif; }

table {
  font: 100%;
  font-size: inherit; }

small {
  font-size: 85%; }

strong {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible; }

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:after {
  display: block;
  height: 0;
  overflow: hidden;
  content: "\0020"; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 577px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 769px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 993px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1111px) {
    .container {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 577px) {
    .container {
      width: 992px;
      max-width: 100%; } }
  @media (min-width: 769px) {
    .container {
      width: 992px;
      max-width: 100%; } }
  @media (min-width: 993px) {
    .container {
      width: 992px;
      max-width: 100%; } }
  @media (min-width: 1111px) {
    .container {
      width: 1100px;
      max-width: 100%; } }

.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 577px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 769px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 993px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1111px) {
    .container-fluid {
      padding-right: 15px;
      padding-left: 15px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px; }
  @media (min-width: 577px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 769px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 993px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 1111px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }
  @media (min-width: 577px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 769px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 993px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1111px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
      padding-right: 15px;
      padding-left: 15px; } }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.pull-0 {
  right: auto; }

.pull-1 {
  right: 8.33333%; }

.pull-2 {
  right: 16.66667%; }

.pull-3 {
  right: 25%; }

.pull-4 {
  right: 33.33333%; }

.pull-5 {
  right: 41.66667%; }

.pull-6 {
  right: 50%; }

.pull-7 {
  right: 58.33333%; }

.pull-8 {
  right: 66.66667%; }

.pull-9 {
  right: 75%; }

.pull-10 {
  right: 83.33333%; }

.pull-11 {
  right: 91.66667%; }

.pull-12 {
  right: 100%; }

.push-0 {
  left: auto; }

.push-1 {
  left: 8.33333%; }

.push-2 {
  left: 16.66667%; }

.push-3 {
  left: 25%; }

.push-4 {
  left: 33.33333%; }

.push-5 {
  left: 41.66667%; }

.push-6 {
  left: 50%; }

.push-7 {
  left: 58.33333%; }

.push-8 {
  left: 66.66667%; }

.push-9 {
  left: 75%; }

.push-10 {
  left: 83.33333%; }

.push-11 {
  left: 91.66667%; }

.push-12 {
  left: 100%; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 577px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-sm-0 {
    right: auto; }
  .pull-sm-1 {
    right: 8.33333%; }
  .pull-sm-2 {
    right: 16.66667%; }
  .pull-sm-3 {
    right: 25%; }
  .pull-sm-4 {
    right: 33.33333%; }
  .pull-sm-5 {
    right: 41.66667%; }
  .pull-sm-6 {
    right: 50%; }
  .pull-sm-7 {
    right: 58.33333%; }
  .pull-sm-8 {
    right: 66.66667%; }
  .pull-sm-9 {
    right: 75%; }
  .pull-sm-10 {
    right: 83.33333%; }
  .pull-sm-11 {
    right: 91.66667%; }
  .pull-sm-12 {
    right: 100%; }
  .push-sm-0 {
    left: auto; }
  .push-sm-1 {
    left: 8.33333%; }
  .push-sm-2 {
    left: 16.66667%; }
  .push-sm-3 {
    left: 25%; }
  .push-sm-4 {
    left: 33.33333%; }
  .push-sm-5 {
    left: 41.66667%; }
  .push-sm-6 {
    left: 50%; }
  .push-sm-7 {
    left: 58.33333%; }
  .push-sm-8 {
    left: 66.66667%; }
  .push-sm-9 {
    left: 75%; }
  .push-sm-10 {
    left: 83.33333%; }
  .push-sm-11 {
    left: 91.66667%; }
  .push-sm-12 {
    left: 100%; }
  .offset-sm-0 {
    margin-left: 0%; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 769px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-md-0 {
    right: auto; }
  .pull-md-1 {
    right: 8.33333%; }
  .pull-md-2 {
    right: 16.66667%; }
  .pull-md-3 {
    right: 25%; }
  .pull-md-4 {
    right: 33.33333%; }
  .pull-md-5 {
    right: 41.66667%; }
  .pull-md-6 {
    right: 50%; }
  .pull-md-7 {
    right: 58.33333%; }
  .pull-md-8 {
    right: 66.66667%; }
  .pull-md-9 {
    right: 75%; }
  .pull-md-10 {
    right: 83.33333%; }
  .pull-md-11 {
    right: 91.66667%; }
  .pull-md-12 {
    right: 100%; }
  .push-md-0 {
    left: auto; }
  .push-md-1 {
    left: 8.33333%; }
  .push-md-2 {
    left: 16.66667%; }
  .push-md-3 {
    left: 25%; }
  .push-md-4 {
    left: 33.33333%; }
  .push-md-5 {
    left: 41.66667%; }
  .push-md-6 {
    left: 50%; }
  .push-md-7 {
    left: 58.33333%; }
  .push-md-8 {
    left: 66.66667%; }
  .push-md-9 {
    left: 75%; }
  .push-md-10 {
    left: 83.33333%; }
  .push-md-11 {
    left: 91.66667%; }
  .push-md-12 {
    left: 100%; }
  .offset-md-0 {
    margin-left: 0%; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 993px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-lg-0 {
    right: auto; }
  .pull-lg-1 {
    right: 8.33333%; }
  .pull-lg-2 {
    right: 16.66667%; }
  .pull-lg-3 {
    right: 25%; }
  .pull-lg-4 {
    right: 33.33333%; }
  .pull-lg-5 {
    right: 41.66667%; }
  .pull-lg-6 {
    right: 50%; }
  .pull-lg-7 {
    right: 58.33333%; }
  .pull-lg-8 {
    right: 66.66667%; }
  .pull-lg-9 {
    right: 75%; }
  .pull-lg-10 {
    right: 83.33333%; }
  .pull-lg-11 {
    right: 91.66667%; }
  .pull-lg-12 {
    right: 100%; }
  .push-lg-0 {
    left: auto; }
  .push-lg-1 {
    left: 8.33333%; }
  .push-lg-2 {
    left: 16.66667%; }
  .push-lg-3 {
    left: 25%; }
  .push-lg-4 {
    left: 33.33333%; }
  .push-lg-5 {
    left: 41.66667%; }
  .push-lg-6 {
    left: 50%; }
  .push-lg-7 {
    left: 58.33333%; }
  .push-lg-8 {
    left: 66.66667%; }
  .push-lg-9 {
    left: 75%; }
  .push-lg-10 {
    left: 83.33333%; }
  .push-lg-11 {
    left: 91.66667%; }
  .push-lg-12 {
    left: 100%; }
  .offset-lg-0 {
    margin-left: 0%; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1111px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .pull-xl-0 {
    right: auto; }
  .pull-xl-1 {
    right: 8.33333%; }
  .pull-xl-2 {
    right: 16.66667%; }
  .pull-xl-3 {
    right: 25%; }
  .pull-xl-4 {
    right: 33.33333%; }
  .pull-xl-5 {
    right: 41.66667%; }
  .pull-xl-6 {
    right: 50%; }
  .pull-xl-7 {
    right: 58.33333%; }
  .pull-xl-8 {
    right: 66.66667%; }
  .pull-xl-9 {
    right: 75%; }
  .pull-xl-10 {
    right: 83.33333%; }
  .pull-xl-11 {
    right: 91.66667%; }
  .pull-xl-12 {
    right: 100%; }
  .push-xl-0 {
    left: auto; }
  .push-xl-1 {
    left: 8.33333%; }
  .push-xl-2 {
    left: 16.66667%; }
  .push-xl-3 {
    left: 25%; }
  .push-xl-4 {
    left: 33.33333%; }
  .push-xl-5 {
    left: 41.66667%; }
  .push-xl-6 {
    left: 50%; }
  .push-xl-7 {
    left: 58.33333%; }
  .push-xl-8 {
    left: 66.66667%; }
  .push-xl-9 {
    left: 75%; }
  .push-xl-10 {
    left: 83.33333%; }
  .push-xl-11 {
    left: 91.66667%; }
  .push-xl-12 {
    left: 100%; }
  .offset-xl-0 {
    margin-left: 0%; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.invisible {
  visibility: hidden !important; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 577px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 769px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 993px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1109px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1111px) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: bold; }

.alert-dismissible .close {
  position: relative;
  top: -0.75rem;
  right: -1.25rem;
  padding: 0.75rem 1.25rem;
  color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d0e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c1e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bcdff1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6d5ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faf2cc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7ecb5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebcccc;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9b9; }
  .alert-danger .alert-link {
    color: #843534; }

@font-face {
  font-family: 'FuturaNew';
  src: url("../fonts/FuturaNewBook.eot");
  src: url("../fonts/FuturaNewBook.woff") format("woff"), url("../fonts/FuturaNewBook.ttf") format("truetype"), url("../fonts/FuturaNewBook.svg") format("svg");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'FuturaNew';
  src: url("../fonts/FuturaNewMedium.eot");
  src: url("../fonts/FuturaNewMedium.woff") format("woff"), url("../fonts/FuturaNewMedium.ttf") format("truetype"), url("../fonts/FuturaNewMedium.svg") format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'FuturaNew';
  src: url("../fonts/FuturaNewBold.eot");
  src: url("../fonts/FuturaNewBold.woff") format("woff"), url("../fonts/FuturaNewBold.ttf") format("truetype"), url("../fonts/FuturaNewBold.svg") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'GaramondPremierPro';
  src: url("../fonts/GaramondPremierProItalicCaption.eot");
  src: url("../fonts/GaramondPremierProItalicCaption.woff") format("woff"), url("../fonts/GaramondPremierProItalicCaption.ttf") format("truetype"), url("../fonts/GaramondPremierProItalicCaption.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

body {
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500; }

a {
  color: inherit;
  text-decoration: none; }

input, textarea, select, button {
  font-weight: 500;
  font-size: inherit;
  font-family: inherit; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent; }
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.slick-list {
  position: relative;
  margin: 0;
  display: block;
  padding: 0;
  overflow: hidden; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    display: table;
    content: ''; }
  .slick-track:after {
    clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  display: none;
  height: 100%;
  min-height: 1px; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

html {
  -webkit-tap-highlight-color: transparent; }

body {
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility !important;
  image-rendering: -webkit-optimize-contrast; }

.header {
  position: relative;
  z-index: 100000;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 30px 22px #ffffff; }
  @media screen and (max-width: 576px) {
    .header {
      padding-top: 20px; } }
  .header.sticky {
    position: fixed;
    margin: auto; }

.header__container {
  min-height: 120px;
  padding-top: 50px; }
  @media screen and (max-width: 576px) {
    .header__container {
      min-height: 0;
      padding-top: 0; } }
  .header__container .col-8 {
    padding-right: 64px; }

.header__logo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px; }

.header__mobile-menu-button {
  margin-right: 30px; }
  @media screen and (max-width: 768px) {
    .header__mobile-menu-button {
      position: absolute; } }
  .header__mobile-menu-button:hover {
    cursor: pointer; }

.header__right-container {
  display: flex;
  align-items: center;
  height: 100%; }
  @media screen and (max-width: 768px) {
    .header__right-container {
      display: none; } }

.header__menu-container {
  display: flex;
  flex: 1 1 100%;
  height: 100%; }

.header__lang-selector-container {
  position: absolute;
  top: 50px;
  right: 15px;
  margin-top: 5px;
  flex: 0 0 100px;
  text-align: right; }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .header__lang-selector-container {
      flex: 0 0 40px; } }
  @media screen and (max-width: 576px) {
    .header__lang-selector-container {
      display: none; } }

.header__logo-container {
  display: inline-block; }
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .header__logo-container {
      margin: 2px 0 0; } }
  @media screen and (max-width: 768px) {
    .header__logo-container {
      margin: auto; } }

@media screen and (max-width: 576px) {
  .logo {
    max-width: 200px; } }

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; }

.header-menu__item {
  flex-grow: 1;
  text-align: center;
  transition: opacity 0.2s ease; }
  .header-menu__item:hover {
    opacity: 0.5; }

.header__lang-selector {
  position: relative;
  display: inline-block; }
  .header__lang-selector img {
    display: block; }

.header__lang-selector-toggle-btn {
  margin: 0;
  display: inline-block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  font: inherit;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  webkit-touch-callout: pan-y;
  webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(39, 57, 63, 0.6);
  position: relative;
  z-index: 1;
  padding-right: 13px; }
  .header__lang-selector-toggle-btn:before {
    position: absolute;
    top: 8px;
    right: 0;
    width: 0;
    height: 0;
    content: '';
    border-width: 6px 3px 0 3px;
    border-style: solid;
    border-color: #000000 transparent transparent transparent;
    transition: border-color 0.15s ease; }

.header__lang-selector-toggle-btn:hover:before,
.header__lang-selector-toggle-btn--active:before {
  border-top-color: #d71418; }

.header__lang-selector-list {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 5px 0;
  opacity: 0;
  text-align: left;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(-35px);
  transform: translateY(-35px);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  pointer-events: none; }

.header__lang-selector-list--open {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  pointer-events: auto; }

.header__lang-selector-link {
  display: inline-block;
  padding: 5px 0;
  transition: opacity 0.15s ease; }
  .header__lang-selector-link:hover {
    opacity: 0.4; }

.is-expanded .header-expanded {
  top: 0;
  box-shadow: none; }
  @media screen and (max-width: 768px) {
    .is-expanded .header-expanded {
      height: auto; } }
  @media screen and (max-width: 576px) {
    .is-expanded .header-expanded {
      bottom: 0;
      padding-bottom: 0;
      overflow: scroll; } }

@media screen and (max-width: 576px) {
  .is-expanded .header-expanded__container {
    opacity: 1; } }

.banner--unstick .header-expanded {
  padding-bottom: 0; }

.banner--unstick .header-expanded__inner-container {
  background-color: transparent; }

.flash-message-outer-container ~ .header {
  box-shadow: none; }

.header-expanded {
  position: absolute;
  top: -260%;
  right: 0;
  left: 0;
  z-index: 1;
  min-height: 120px;
  overflow: hidden;
  color: #ffffff;
  transition: 0.5s top; }
  @media screen and (max-width: 576px) {
    .header-expanded {
      height: 160%;
      min-height: 0;
      transition: none; } }
  .header-expanded .header__mobile-menu-button {
    margin-right: 30px;
    flex-basis: 10%; }
    @media screen and (min-width: 577px) and (max-width: 768px) {
      .header-expanded .header__mobile-menu-button {
        position: relative; } }
    @media screen and (max-width: 576px) {
      .header-expanded .header__mobile-menu-button {
        position: absolute;
        top: 22px;
        left: 23px; } }

.header__mobile-menu-langs-list {
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0; }
  @media screen and (min-width: 577px) {
    .header__mobile-menu-langs-list {
      display: none; } }
  .header__mobile-menu-langs-list a {
    display: block;
    width: 33px;
    height: 33px;
    overflow: hidden;
    border-width: 2px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 50%; }
    .header__mobile-menu-langs-list a img {
      width: 100%; }

.header-expanded__inner-container {
  min-height: 100%;
  background-color: #d71418;
  box-shadow: 0 0 30px 22px #d71418; }

.header-expanded__container {
  display: flex;
  justify-content: space-between;
  min-height: 120px;
  padding-top: 50px; }
  @media screen and (max-width: 576px) {
    .header-expanded__container {
      flex-direction: column;
      min-height: 0;
      padding-top: 20px;
      opacity: 0;
      transition: 0.2s opacity; } }

.header-expanded-menu {
  min-width: 90%; }
  .header-expanded-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .header-expanded-menu ul {
        justify-content: flex-start; } }
  @media screen and (max-width: 768px) {
    .header-expanded-menu li {
      margin-bottom: 20px;
      flex: 1 1 33.333%;
      max-width: 33.333%;
      text-align: center; } }
  @media screen and (max-width: 576px) {
    .header-expanded-menu li {
      margin: 0;
      text-align: left;
      flex-basis: 100%;
      max-width: 100%; } }
  .header-expanded-menu a {
    display: inline-block;
    color: #ffffff;
    transition: opacity 0.2s ease; }
    .header-expanded-menu a:hover {
      opacity: 0.75; }
    @media screen and (max-width: 576px) {
      .header-expanded-menu a {
        font-size: 18px;
        line-height: 34px; } }

.header-expanded-buttons-container {
  display: none;
  flex-direction: column;
  justify-content: space-between; }
  @media screen and (max-width: 576px) {
    .header-expanded-buttons-container {
      display: flex; } }
  .header-expanded-buttons-container .button {
    margin: auto auto 20px;
    display: block;
    width: 190px;
    padding-top: 7px;
    padding-bottom: 10px; }

.header-expanded-contacts {
  margin-top: 16px;
  display: none;
  padding-bottom: 25px;
  font-family: "GaramondPremierPro", "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 20px;
  line-height: 30px;
  text-align: center; }
  @media screen and (max-width: 576px) {
    .header-expanded-contacts {
      display: block; } }
  .header-expanded-contacts a {
    color: #ffffff; }

.pre-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  color: #ffffff;
  background-color: #000000; }

.subscription {
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  text-align: center; }
  @media screen and (max-width: 576px) {
    .subscription {
      flex-direction: column; } }
  .subscription a {
    text-decoration: underline;
    color: #ffffff; }
    .subscription a:hover {
      text-decoration: none; }

.subscription--active {
  display: flex; }

.subscription__inner {
  width: 100%; }

.subscription__image-container {
  flex: 0 0 85px;
  max-width: 85px; }

.subscription__text {
  padding-right: 10px;
  padding-left: 10px; }

@media screen and (max-width: 576px) {
  .subscribe__button {
    margin-top: 35px;
    margin-bottom: 35px; } }

.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; }
  @media screen and (max-width: 576px) {
    .subscribe-form {
      flex-wrap: wrap; } }

.subscribe-form__text-control {
  max-width: 275px;
  padding-right: 45px; }
  @media screen and (max-width: 576px) {
    .subscribe-form__text-control {
      max-width: 100%;
      padding-top: 25px;
      padding-right: 0; } }

.subscribe-form__radio-control {
  width: 250px;
  padding-right: 20px;
  font-size: 0; }
  @media screen and (max-width: 576px) {
    .subscribe-form__radio-control {
      width: 100%;
      padding-top: 25px;
      padding-right: 0; } }
  .subscribe-form__radio-control label {
    font-size: 14px;
    color: #aeaeae; }
  .subscribe-form__radio-control input[type="checkbox"] {
    visibility: hidden;
    width: 0;
    height: 0; }
    .subscribe-form__radio-control input[type="checkbox"] + label {
      display: block;
      text-align: left; }
    .subscribe-form__radio-control input[type="checkbox"].error + label:before {
      border-color: red; }

@media screen and (max-width: 576px) {
  .subscribe-form__button-container {
    width: 100%;
    padding-top: 25px; } }

.subscribe-form__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; }

@media screen and (max-width: 576px) {
  .subscribe-form__button {
    margin-top: 35px;
    margin-bottom: 35px; } }

.footer {
  padding-top: 36px;
  padding-bottom: 32px;
  color: #ffffff;
  background-color: #d71418; }
  @media screen and (max-width: 576px) {
    .footer {
      padding-bottom: 56px;
      text-align: center; } }
  .footer img {
    display: inline-block;
    vertical-align: top; }
  .footer a {
    color: inherit; }

@media screen and (min-width: 577px) {
  .footer__top-row {
    min-height: 115px; } }

@media screen and (max-width: 576px) {
  .footer__logo-container {
    margin: 0 0 50px; } }

@media screen and (max-width: 576px) {
  .footer__contacts-links-container {
    margin: 0 0 42px; } }

.footer__contacts-link {
  font-size: 22px;
  line-height: 1.36; }

@media screen and (max-width: 576px) {
  .socials-list {
    margin: 0 auto 40px;
    max-width: 180px; } }

.socials-list__link {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: 0.4s -webkit-transform;
  transition: 0.4s transform;
  transition: 0.4s transform, 0.4s -webkit-transform; }
  .socials-list__link:hover {
    cursor: pointer;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }

.socials-list__link--fb {
  background-image: url(/images/fb.svg); }

.socials-list__link--tw {
  background-image: url(/images/tw.svg); }

.socials-list__link--vk {
  background-image: url(/images/vk.svg); }

.socials-list__link--me {
  background-image: url(/images/me.svg); }

.socials-list__link--yt {
  background-image: url(/images/yt.svg); }

.socials-list__link--ha {
  background-image: url(/images/ha.svg);
  background-position: 65% 60%; }

.contacts-list {
  line-height: 1.25; }
  @media screen and (min-width: 577px) {
    .contacts-list {
      padding: 10px 0 0; } }
  @media screen and (max-width: 576px) {
    .contacts-list {
      margin: 0 auto 40px;
      max-width: 280px;
      text-align: left; } }

.contacts-list__heading {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700; }

.copyright {
  font-size: 13px;
  font-weight: 400; }

.error-page {
  padding: 5vh 0 15vh;
  text-align: center; }
  .error-page h2 {
    margin: 0 0 40px;
    font-size: 30px;
    line-height: 1.2; }
  .error-page img {
    margin: 0 0 40px;
    display: inline-block;
    vertical-align: top; }

[data-aos][data-aos][data-aos-duration='50'], body[data-aos-duration='50'] [data-aos] {
  transition-duration: 50ms; }

[data-aos][data-aos][data-aos-delay='50'], body[data-aos-delay='50'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='50'].aos-animate, body[data-aos-delay='50'] [data-aos].aos-animate {
  transition-delay: 50ms; }

[data-aos][data-aos][data-aos-duration='100'], body[data-aos-duration='100'] [data-aos] {
  transition-duration: .1s; }

[data-aos][data-aos][data-aos-delay='100'], body[data-aos-delay='100'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='100'].aos-animate, body[data-aos-delay='100'] [data-aos].aos-animate {
  transition-delay: .1s; }

[data-aos][data-aos][data-aos-duration='150'], body[data-aos-duration='150'] [data-aos] {
  transition-duration: .15s; }

[data-aos][data-aos][data-aos-delay='150'], body[data-aos-delay='150'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='150'].aos-animate, body[data-aos-delay='150'] [data-aos].aos-animate {
  transition-delay: .15s; }

[data-aos][data-aos][data-aos-duration='200'], body[data-aos-duration='200'] [data-aos] {
  transition-duration: .2s; }

[data-aos][data-aos][data-aos-delay='200'], body[data-aos-delay='200'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='200'].aos-animate, body[data-aos-delay='200'] [data-aos].aos-animate {
  transition-delay: .2s; }

[data-aos][data-aos][data-aos-duration='250'], body[data-aos-duration='250'] [data-aos] {
  transition-duration: .25s; }

[data-aos][data-aos][data-aos-delay='250'], body[data-aos-delay='250'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='250'].aos-animate, body[data-aos-delay='250'] [data-aos].aos-animate {
  transition-delay: .25s; }

[data-aos][data-aos][data-aos-duration='300'], body[data-aos-duration='300'] [data-aos] {
  transition-duration: .3s; }

[data-aos][data-aos][data-aos-delay='300'], body[data-aos-delay='300'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='300'].aos-animate, body[data-aos-delay='300'] [data-aos].aos-animate {
  transition-delay: .3s; }

[data-aos][data-aos][data-aos-duration='350'], body[data-aos-duration='350'] [data-aos] {
  transition-duration: .35s; }

[data-aos][data-aos][data-aos-delay='350'], body[data-aos-delay='350'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='350'].aos-animate, body[data-aos-delay='350'] [data-aos].aos-animate {
  transition-delay: .35s; }

[data-aos][data-aos][data-aos-duration='400'], body[data-aos-duration='400'] [data-aos] {
  transition-duration: .4s; }

[data-aos][data-aos][data-aos-delay='400'], body[data-aos-delay='400'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='400'].aos-animate, body[data-aos-delay='400'] [data-aos].aos-animate {
  transition-delay: .4s; }

[data-aos][data-aos][data-aos-duration='450'], body[data-aos-duration='450'] [data-aos] {
  transition-duration: .45s; }

[data-aos][data-aos][data-aos-delay='450'], body[data-aos-delay='450'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='450'].aos-animate, body[data-aos-delay='450'] [data-aos].aos-animate {
  transition-delay: .45s; }

[data-aos][data-aos][data-aos-duration='500'], body[data-aos-duration='500'] [data-aos] {
  transition-duration: .5s; }

[data-aos][data-aos][data-aos-delay='500'], body[data-aos-delay='500'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='500'].aos-animate, body[data-aos-delay='500'] [data-aos].aos-animate {
  transition-delay: .5s; }

[data-aos][data-aos][data-aos-duration='550'], body[data-aos-duration='550'] [data-aos] {
  transition-duration: .55s; }

[data-aos][data-aos][data-aos-delay='550'], body[data-aos-delay='550'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='550'].aos-animate, body[data-aos-delay='550'] [data-aos].aos-animate {
  transition-delay: .55s; }

[data-aos][data-aos][data-aos-duration='600'], body[data-aos-duration='600'] [data-aos] {
  transition-duration: .6s; }

[data-aos][data-aos][data-aos-delay='600'], body[data-aos-delay='600'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='600'].aos-animate, body[data-aos-delay='600'] [data-aos].aos-animate {
  transition-delay: .6s; }

[data-aos][data-aos][data-aos-duration='650'], body[data-aos-duration='650'] [data-aos] {
  transition-duration: .65s; }

[data-aos][data-aos][data-aos-delay='650'], body[data-aos-delay='650'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='650'].aos-animate, body[data-aos-delay='650'] [data-aos].aos-animate {
  transition-delay: .65s; }

[data-aos][data-aos][data-aos-duration='700'], body[data-aos-duration='700'] [data-aos] {
  transition-duration: .7s; }

[data-aos][data-aos][data-aos-delay='700'], body[data-aos-delay='700'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='700'].aos-animate, body[data-aos-delay='700'] [data-aos].aos-animate {
  transition-delay: .7s; }

[data-aos][data-aos][data-aos-duration='750'], body[data-aos-duration='750'] [data-aos] {
  transition-duration: .75s; }

[data-aos][data-aos][data-aos-delay='750'], body[data-aos-delay='750'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='750'].aos-animate, body[data-aos-delay='750'] [data-aos].aos-animate {
  transition-delay: .75s; }

[data-aos][data-aos][data-aos-duration='800'], body[data-aos-duration='800'] [data-aos] {
  transition-duration: .8s; }

[data-aos][data-aos][data-aos-delay='800'], body[data-aos-delay='800'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='800'].aos-animate, body[data-aos-delay='800'] [data-aos].aos-animate {
  transition-delay: .8s; }

[data-aos][data-aos][data-aos-duration='850'], body[data-aos-duration='850'] [data-aos] {
  transition-duration: .85s; }

[data-aos][data-aos][data-aos-delay='850'], body[data-aos-delay='850'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='850'].aos-animate, body[data-aos-delay='850'] [data-aos].aos-animate {
  transition-delay: .85s; }

[data-aos][data-aos][data-aos-duration='900'], body[data-aos-duration='900'] [data-aos] {
  transition-duration: .9s; }

[data-aos][data-aos][data-aos-delay='900'], body[data-aos-delay='900'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='900'].aos-animate, body[data-aos-delay='900'] [data-aos].aos-animate {
  transition-delay: .9s; }

[data-aos][data-aos][data-aos-duration='950'], body[data-aos-duration='950'] [data-aos] {
  transition-duration: .95s; }

[data-aos][data-aos][data-aos-delay='950'], body[data-aos-delay='950'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='950'].aos-animate, body[data-aos-delay='950'] [data-aos].aos-animate {
  transition-delay: .95s; }

[data-aos][data-aos][data-aos-duration='1000'], body[data-aos-duration='1000'] [data-aos] {
  transition-duration: 1s; }

[data-aos][data-aos][data-aos-delay='1000'], body[data-aos-delay='1000'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1000'].aos-animate, body[data-aos-delay='1000'] [data-aos].aos-animate {
  transition-delay: 1s; }

[data-aos][data-aos][data-aos-duration='1050'], body[data-aos-duration='1050'] [data-aos] {
  transition-duration: 1.05s; }

[data-aos][data-aos][data-aos-delay='1050'], body[data-aos-delay='1050'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1050'].aos-animate, body[data-aos-delay='1050'] [data-aos].aos-animate {
  transition-delay: 1.05s; }

[data-aos][data-aos][data-aos-duration='1100'], body[data-aos-duration='1100'] [data-aos] {
  transition-duration: 1.1s; }

[data-aos][data-aos][data-aos-delay='1100'], body[data-aos-delay='1100'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1100'].aos-animate, body[data-aos-delay='1100'] [data-aos].aos-animate {
  transition-delay: 1.1s; }

[data-aos][data-aos][data-aos-duration='1150'], body[data-aos-duration='1150'] [data-aos] {
  transition-duration: 1.15s; }

[data-aos][data-aos][data-aos-delay='1150'], body[data-aos-delay='1150'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1150'].aos-animate, body[data-aos-delay='1150'] [data-aos].aos-animate {
  transition-delay: 1.15s; }

[data-aos][data-aos][data-aos-duration='1200'], body[data-aos-duration='1200'] [data-aos] {
  transition-duration: 1.2s; }

[data-aos][data-aos][data-aos-delay='1200'], body[data-aos-delay='1200'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1200'].aos-animate, body[data-aos-delay='1200'] [data-aos].aos-animate {
  transition-delay: 1.2s; }

[data-aos][data-aos][data-aos-duration='1250'], body[data-aos-duration='1250'] [data-aos] {
  transition-duration: 1.25s; }

[data-aos][data-aos][data-aos-delay='1250'], body[data-aos-delay='1250'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1250'].aos-animate, body[data-aos-delay='1250'] [data-aos].aos-animate {
  transition-delay: 1.25s; }

[data-aos][data-aos][data-aos-duration='1300'], body[data-aos-duration='1300'] [data-aos] {
  transition-duration: 1.3s; }

[data-aos][data-aos][data-aos-delay='1300'], body[data-aos-delay='1300'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1300'].aos-animate, body[data-aos-delay='1300'] [data-aos].aos-animate {
  transition-delay: 1.3s; }

[data-aos][data-aos][data-aos-duration='1350'], body[data-aos-duration='1350'] [data-aos] {
  transition-duration: 1.35s; }

[data-aos][data-aos][data-aos-delay='1350'], body[data-aos-delay='1350'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1350'].aos-animate, body[data-aos-delay='1350'] [data-aos].aos-animate {
  transition-delay: 1.35s; }

[data-aos][data-aos][data-aos-duration='1400'], body[data-aos-duration='1400'] [data-aos] {
  transition-duration: 1.4s; }

[data-aos][data-aos][data-aos-delay='1400'], body[data-aos-delay='1400'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1400'].aos-animate, body[data-aos-delay='1400'] [data-aos].aos-animate {
  transition-delay: 1.4s; }

[data-aos][data-aos][data-aos-duration='1450'], body[data-aos-duration='1450'] [data-aos] {
  transition-duration: 1.45s; }

[data-aos][data-aos][data-aos-delay='1450'], body[data-aos-delay='1450'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1450'].aos-animate, body[data-aos-delay='1450'] [data-aos].aos-animate {
  transition-delay: 1.45s; }

[data-aos][data-aos][data-aos-duration='1500'], body[data-aos-duration='1500'] [data-aos] {
  transition-duration: 1.5s; }

[data-aos][data-aos][data-aos-delay='1500'], body[data-aos-delay='1500'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1500'].aos-animate, body[data-aos-delay='1500'] [data-aos].aos-animate {
  transition-delay: 1.5s; }

[data-aos][data-aos][data-aos-duration='1550'], body[data-aos-duration='1550'] [data-aos] {
  transition-duration: 1.55s; }

[data-aos][data-aos][data-aos-delay='1550'], body[data-aos-delay='1550'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1550'].aos-animate, body[data-aos-delay='1550'] [data-aos].aos-animate {
  transition-delay: 1.55s; }

[data-aos][data-aos][data-aos-duration='1600'], body[data-aos-duration='1600'] [data-aos] {
  transition-duration: 1.6s; }

[data-aos][data-aos][data-aos-delay='1600'], body[data-aos-delay='1600'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1600'].aos-animate, body[data-aos-delay='1600'] [data-aos].aos-animate {
  transition-delay: 1.6s; }

[data-aos][data-aos][data-aos-duration='1650'], body[data-aos-duration='1650'] [data-aos] {
  transition-duration: 1.65s; }

[data-aos][data-aos][data-aos-delay='1650'], body[data-aos-delay='1650'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1650'].aos-animate, body[data-aos-delay='1650'] [data-aos].aos-animate {
  transition-delay: 1.65s; }

[data-aos][data-aos][data-aos-duration='1700'], body[data-aos-duration='1700'] [data-aos] {
  transition-duration: 1.7s; }

[data-aos][data-aos][data-aos-delay='1700'], body[data-aos-delay='1700'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1700'].aos-animate, body[data-aos-delay='1700'] [data-aos].aos-animate {
  transition-delay: 1.7s; }

[data-aos][data-aos][data-aos-duration='1750'], body[data-aos-duration='1750'] [data-aos] {
  transition-duration: 1.75s; }

[data-aos][data-aos][data-aos-delay='1750'], body[data-aos-delay='1750'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1750'].aos-animate, body[data-aos-delay='1750'] [data-aos].aos-animate {
  transition-delay: 1.75s; }

[data-aos][data-aos][data-aos-duration='1800'], body[data-aos-duration='1800'] [data-aos] {
  transition-duration: 1.8s; }

[data-aos][data-aos][data-aos-delay='1800'], body[data-aos-delay='1800'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1800'].aos-animate, body[data-aos-delay='1800'] [data-aos].aos-animate {
  transition-delay: 1.8s; }

[data-aos][data-aos][data-aos-duration='1850'], body[data-aos-duration='1850'] [data-aos] {
  transition-duration: 1.85s; }

[data-aos][data-aos][data-aos-delay='1850'], body[data-aos-delay='1850'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1850'].aos-animate, body[data-aos-delay='1850'] [data-aos].aos-animate {
  transition-delay: 1.85s; }

[data-aos][data-aos][data-aos-duration='1900'], body[data-aos-duration='1900'] [data-aos] {
  transition-duration: 1.9s; }

[data-aos][data-aos][data-aos-delay='1900'], body[data-aos-delay='1900'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1900'].aos-animate, body[data-aos-delay='1900'] [data-aos].aos-animate {
  transition-delay: 1.9s; }

[data-aos][data-aos][data-aos-duration='1950'], body[data-aos-duration='1950'] [data-aos] {
  transition-duration: 1.95s; }

[data-aos][data-aos][data-aos-delay='1950'], body[data-aos-delay='1950'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='1950'].aos-animate, body[data-aos-delay='1950'] [data-aos].aos-animate {
  transition-delay: 1.95s; }

[data-aos][data-aos][data-aos-duration='2000'], body[data-aos-duration='2000'] [data-aos] {
  transition-duration: 2s; }

[data-aos][data-aos][data-aos-delay='2000'], body[data-aos-delay='2000'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2000'].aos-animate, body[data-aos-delay='2000'] [data-aos].aos-animate {
  transition-delay: 2s; }

[data-aos][data-aos][data-aos-duration='2050'], body[data-aos-duration='2050'] [data-aos] {
  transition-duration: 2.05s; }

[data-aos][data-aos][data-aos-delay='2050'], body[data-aos-delay='2050'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2050'].aos-animate, body[data-aos-delay='2050'] [data-aos].aos-animate {
  transition-delay: 2.05s; }

[data-aos][data-aos][data-aos-duration='2100'], body[data-aos-duration='2100'] [data-aos] {
  transition-duration: 2.1s; }

[data-aos][data-aos][data-aos-delay='2100'], body[data-aos-delay='2100'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2100'].aos-animate, body[data-aos-delay='2100'] [data-aos].aos-animate {
  transition-delay: 2.1s; }

[data-aos][data-aos][data-aos-duration='2150'], body[data-aos-duration='2150'] [data-aos] {
  transition-duration: 2.15s; }

[data-aos][data-aos][data-aos-delay='2150'], body[data-aos-delay='2150'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2150'].aos-animate, body[data-aos-delay='2150'] [data-aos].aos-animate {
  transition-delay: 2.15s; }

[data-aos][data-aos][data-aos-duration='2200'], body[data-aos-duration='2200'] [data-aos] {
  transition-duration: 2.2s; }

[data-aos][data-aos][data-aos-delay='2200'], body[data-aos-delay='2200'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2200'].aos-animate, body[data-aos-delay='2200'] [data-aos].aos-animate {
  transition-delay: 2.2s; }

[data-aos][data-aos][data-aos-duration='2250'], body[data-aos-duration='2250'] [data-aos] {
  transition-duration: 2.25s; }

[data-aos][data-aos][data-aos-delay='2250'], body[data-aos-delay='2250'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2250'].aos-animate, body[data-aos-delay='2250'] [data-aos].aos-animate {
  transition-delay: 2.25s; }

[data-aos][data-aos][data-aos-duration='2300'], body[data-aos-duration='2300'] [data-aos] {
  transition-duration: 2.3s; }

[data-aos][data-aos][data-aos-delay='2300'], body[data-aos-delay='2300'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2300'].aos-animate, body[data-aos-delay='2300'] [data-aos].aos-animate {
  transition-delay: 2.3s; }

[data-aos][data-aos][data-aos-duration='2350'], body[data-aos-duration='2350'] [data-aos] {
  transition-duration: 2.35s; }

[data-aos][data-aos][data-aos-delay='2350'], body[data-aos-delay='2350'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2350'].aos-animate, body[data-aos-delay='2350'] [data-aos].aos-animate {
  transition-delay: 2.35s; }

[data-aos][data-aos][data-aos-duration='2400'], body[data-aos-duration='2400'] [data-aos] {
  transition-duration: 2.4s; }

[data-aos][data-aos][data-aos-delay='2400'], body[data-aos-delay='2400'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2400'].aos-animate, body[data-aos-delay='2400'] [data-aos].aos-animate {
  transition-delay: 2.4s; }

[data-aos][data-aos][data-aos-duration='2450'], body[data-aos-duration='2450'] [data-aos] {
  transition-duration: 2.45s; }

[data-aos][data-aos][data-aos-delay='2450'], body[data-aos-delay='2450'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2450'].aos-animate, body[data-aos-delay='2450'] [data-aos].aos-animate {
  transition-delay: 2.45s; }

[data-aos][data-aos][data-aos-duration='2500'], body[data-aos-duration='2500'] [data-aos] {
  transition-duration: 2.5s; }

[data-aos][data-aos][data-aos-delay='2500'], body[data-aos-delay='2500'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2500'].aos-animate, body[data-aos-delay='2500'] [data-aos].aos-animate {
  transition-delay: 2.5s; }

[data-aos][data-aos][data-aos-duration='2550'], body[data-aos-duration='2550'] [data-aos] {
  transition-duration: 2.55s; }

[data-aos][data-aos][data-aos-delay='2550'], body[data-aos-delay='2550'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2550'].aos-animate, body[data-aos-delay='2550'] [data-aos].aos-animate {
  transition-delay: 2.55s; }

[data-aos][data-aos][data-aos-duration='2600'], body[data-aos-duration='2600'] [data-aos] {
  transition-duration: 2.6s; }

[data-aos][data-aos][data-aos-delay='2600'], body[data-aos-delay='2600'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2600'].aos-animate, body[data-aos-delay='2600'] [data-aos].aos-animate {
  transition-delay: 2.6s; }

[data-aos][data-aos][data-aos-duration='2650'], body[data-aos-duration='2650'] [data-aos] {
  transition-duration: 2.65s; }

[data-aos][data-aos][data-aos-delay='2650'], body[data-aos-delay='2650'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2650'].aos-animate, body[data-aos-delay='2650'] [data-aos].aos-animate {
  transition-delay: 2.65s; }

[data-aos][data-aos][data-aos-duration='2700'], body[data-aos-duration='2700'] [data-aos] {
  transition-duration: 2.7s; }

[data-aos][data-aos][data-aos-delay='2700'], body[data-aos-delay='2700'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2700'].aos-animate, body[data-aos-delay='2700'] [data-aos].aos-animate {
  transition-delay: 2.7s; }

[data-aos][data-aos][data-aos-duration='2750'], body[data-aos-duration='2750'] [data-aos] {
  transition-duration: 2.75s; }

[data-aos][data-aos][data-aos-delay='2750'], body[data-aos-delay='2750'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2750'].aos-animate, body[data-aos-delay='2750'] [data-aos].aos-animate {
  transition-delay: 2.75s; }

[data-aos][data-aos][data-aos-duration='2800'], body[data-aos-duration='2800'] [data-aos] {
  transition-duration: 2.8s; }

[data-aos][data-aos][data-aos-delay='2800'], body[data-aos-delay='2800'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2800'].aos-animate, body[data-aos-delay='2800'] [data-aos].aos-animate {
  transition-delay: 2.8s; }

[data-aos][data-aos][data-aos-duration='2850'], body[data-aos-duration='2850'] [data-aos] {
  transition-duration: 2.85s; }

[data-aos][data-aos][data-aos-delay='2850'], body[data-aos-delay='2850'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2850'].aos-animate, body[data-aos-delay='2850'] [data-aos].aos-animate {
  transition-delay: 2.85s; }

[data-aos][data-aos][data-aos-duration='2900'], body[data-aos-duration='2900'] [data-aos] {
  transition-duration: 2.9s; }

[data-aos][data-aos][data-aos-delay='2900'], body[data-aos-delay='2900'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2900'].aos-animate, body[data-aos-delay='2900'] [data-aos].aos-animate {
  transition-delay: 2.9s; }

[data-aos][data-aos][data-aos-duration='2950'], body[data-aos-duration='2950'] [data-aos] {
  transition-duration: 2.95s; }

[data-aos][data-aos][data-aos-delay='2950'], body[data-aos-delay='2950'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='2950'].aos-animate, body[data-aos-delay='2950'] [data-aos].aos-animate {
  transition-delay: 2.95s; }

[data-aos][data-aos][data-aos-duration='3000'], body[data-aos-duration='3000'] [data-aos] {
  transition-duration: 3s; }

[data-aos][data-aos][data-aos-delay='3000'], body[data-aos-delay='3000'] [data-aos] {
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay='3000'].aos-animate, body[data-aos-delay='3000'] [data-aos].aos-animate {
  transition-delay: 3s; }

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease; }

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in; }

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out; }

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out; }

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,-webkit-transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform; }

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0); }

[data-aos=fade-up] {
  -webkit-transform: translateY(100px);
  transform: translateY(100px); }

[data-aos=fade-down] {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px); }

[data-aos=fade-right] {
  -webkit-transform: translate(-100px);
  transform: translate(-100px); }

[data-aos=fade-left] {
  -webkit-transform: translate(100px);
  transform: translate(100px); }

[data-aos=fade-up-right] {
  -webkit-transform: translate(-100px, 100px);
  transform: translate(-100px, 100px); }

[data-aos=fade-up-left] {
  -webkit-transform: translate(100px, 100px);
  transform: translate(100px, 100px); }

[data-aos=fade-down-right] {
  -webkit-transform: translate(-100px, -100px);
  transform: translate(-100px, -100px); }

[data-aos=fade-down-left] {
  -webkit-transform: translate(100px, -100px);
  transform: translate(100px, -100px); }

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity,-webkit-transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform; }

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
  transform: translate(0) scale(1); }

[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
  transform: scale(0.6); }

[data-aos=zoom-in-up] {
  -webkit-transform: translateY(100px) scale(0.6);
  transform: translateY(100px) scale(0.6); }

[data-aos=zoom-in-down] {
  -webkit-transform: translateY(-100px) scale(0.6);
  transform: translateY(-100px) scale(0.6); }

[data-aos=zoom-in-right] {
  -webkit-transform: translate(-100px) scale(0.6);
  transform: translate(-100px) scale(0.6); }

[data-aos=zoom-in-left] {
  -webkit-transform: translate(100px) scale(0.6);
  transform: translate(100px) scale(0.6); }

[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

[data-aos=zoom-out-up] {
  -webkit-transform: translateY(100px) scale(1.2);
  transform: translateY(100px) scale(1.2); }

[data-aos=zoom-out-down] {
  -webkit-transform: translateY(-100px) scale(1.2);
  transform: translateY(-100px) scale(1.2); }

[data-aos=zoom-out-right] {
  -webkit-transform: translate(-100px) scale(1.2);
  transform: translate(-100px) scale(1.2); }

[data-aos=zoom-out-left] {
  -webkit-transform: translate(100px) scale(1.2);
  transform: translate(100px) scale(1.2); }

[data-aos^=slide][data-aos^=slide] {
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translate(0);
  transform: translate(0); }

[data-aos=slide-up] {
  -webkit-transform: translateY(100%);
  transform: translateY(100%); }

[data-aos=slide-down] {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

[data-aos=slide-right] {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

[data-aos=slide-left] {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
  transform: perspective(2500px) rotateY(-100deg); }

[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
  transform: perspective(2500px) rotateY(100deg); }

[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
  transform: perspective(2500px) rotateX(-100deg); }

[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0); }

[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
  transform: perspective(2500px) rotateX(100deg); }

[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0); }
/*!
 * Tabby v11.2.0: Simple, mobile-first toggle tabs.
 * (c) 2016 Chris Ferdinandi
 * MIT License
 * http://github.com/cferdinandi/tabby
 */
/**
 * Tab content
 */
/* line 4, /Users/cferdinandi/Sites/tabby/src/sass/components/_tabby.scss */
.js-tabby .tabs-pane {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/* line 14, /Users/cferdinandi/Sites/tabby/src/sass/components/_tabby.scss */
.js-tabby .tabs-pane.active {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/* line 23, /Users/cferdinandi/Sites/tabby/src/sass/components/_tabby.scss */
.js-tabby .tabs-pane:focus {
  outline: none; }

.radio-control {
  position: relative;
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .radio-control__label {
    margin-bottom: 20px;
    display: block;
    font-size: 16px;
    line-height: 1.2; }
  .radio-control__input-label {
    margin-bottom: 22px;
    display: block; }

.radio-control input[type="radio"] {
  display: none; }
  .radio-control input[type="radio"] + label {
    position: relative;
    padding-left: 42px;
    cursor: pointer; }
    .radio-control input[type="radio"] + label:before, .radio-control input[type="radio"] + label:after {
      position: absolute;
      content: '';
      border-radius: 50%;
      transition: all 0.3s ease; }
    .radio-control input[type="radio"] + label:before {
      top: -1px;
      left: 0;
      width: 20px;
      height: 20px;
      background: #000000;
      border: 2px solid #000000;
      box-shadow: inset 0 0 0 20px #ffffff; }
    .radio-control input[type="radio"] + label:after {
      top: 49%;
      left: 9px;
      width: 54px;
      height: 54px;
      opacity: 0;
      background: rgba(0, 0, 0, 0.3);
      -webkit-transform: translate(-50%, -50%) scale(0);
      transform: translate(-50%, -50%) scale(0); }
  .radio-control input[type="radio"]:checked + label:before {
    box-shadow: inset 0 0 0 2px #ffffff; }
  .radio-control input[type="radio"]:checked + label:after {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-animation: ripple 1s none;
    animation: ripple 1s none; }

@-webkit-keyframes ripple {
  5%, 100% {
    opacity: 0; }
  5% {
    opacity: 1; } }

@keyframes ripple {
  5%, 100% {
    opacity: 0; }
  5% {
    opacity: 1; } }

.text-control {
  position: relative;
  width: 100%;
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.text-control label.error {
  padding-top: 2px;
  font-size: 12px;
  color: tomato; }

.text-control .text-control-input-container {
  margin-top: 10px; }

.text-control__input {
  width: 100%;
  padding: 4px 10px 6px 0;
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #000000;
  outline: none; }
  .text-control__input.error {
    color: #d71418; }

.text-control__input.error {
  border-color: tomato; }

.text-control input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.text-control input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.text-control input:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.text-control input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.text-control input.error::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #d71418; }

.text-control input.error::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #d71418; }

.text-control input.error:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #d71418; }

.text-control input.error:-moz-placeholder {
  /* Firefox 18- */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #d71418; }

.number-label {
  width: 12px;
  font-size: 10px;
  text-align: center;
  color: #d71418; }

.text-control .number-label {
  position: absolute;
  top: 9px;
  left: -14px; }

.radio-control .number-label {
  position: absolute;
  top: 4px;
  left: -14px; }

.text-control--white-black .text-control__input {
  color: #ffffff;
  background-color: #000000;
  border-bottom: 2px solid #ffffff; }

.text-control--white-black .text-control__input.error {
  color: red;
  background-color: #000000;
  border-bottom: 2px solid red; }

.text-control.text-control--white-black input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff; }

.text-control.text-control--white-black input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff; }

.text-control.text-control--white-black input:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff; }

.text-control.text-control--white-black input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff; }

.text-control.text-control--white-black.error input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: red; }

.text-control.text-control--white-black.error input::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: red; }

.text-control.text-control--white-black.error input:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: red; }

.text-control.text-control--white-black.error input:-moz-placeholder {
  /* Firefox 18- */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: red; }

.form-page-padding, .price-calculation-page, .recommend-candidate-form-page,
.recommend-yourself-form-page,
.recommend-company-form-page,
.request-service-form-page,
.feedback-form-page,
.send-cv-form-page, .team-page, .recommend-full-rules, .recommend-cards-page {
  padding-top: 80px;
  padding-bottom: 65px; }
  @media screen and (max-width: 768px) {
    .form-page-padding, .price-calculation-page, .recommend-candidate-form-page,
    .recommend-yourself-form-page,
    .recommend-company-form-page,
    .request-service-form-page,
    .feedback-form-page,
    .send-cv-form-page, .team-page, .recommend-full-rules, .recommend-cards-page {
      padding-top: 65px;
      padding-bottom: 55px; } }
  @media screen and (max-width: 576px) {
    .form-page-padding, .price-calculation-page, .recommend-candidate-form-page,
    .recommend-yourself-form-page,
    .recommend-company-form-page,
    .request-service-form-page,
    .feedback-form-page,
    .send-cv-form-page, .team-page, .recommend-full-rules, .recommend-cards-page {
      padding-top: 39px; } }

.form-page__heading {
  margin-bottom: 68px; }
  @media screen and (max-width: 576px) {
    .form-page__heading {
      margin-bottom: 48px; } }

.form-container {
  margin: auto;
  max-width: 425px; }

.add-control-button {
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }
  .add-control-button:hover {
    color: #000000;
    cursor: pointer; }
    .add-control-button:hover .add-control-button__plus {
      background-image: url(../images/plus-hover.svg); }
  .add-control-button__plus {
    position: relative;
    top: 4px;
    margin-right: 20px;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(../images/plus.svg);
    background-size: 100%;
    background-repeat: no-repeat; }

.textarea-control {
  position: relative;
  border: solid 2px #000000;
  border-radius: 4px; }
  .textarea-control textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 7px 10px 10px;
    font-size: 16px;
    border: none; }
  .textarea-control .number-label {
    position: absolute;
    top: 4px;
    left: -14px; }

.textarea-control textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.textarea-control textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.textarea-control textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.textarea-control textarea:-moz-placeholder {
  /* Firefox 18- */
  font-family: "FuturaNew", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #8a8a8a; }

.radio-control input[type="checkbox"] {
  display: block;
  visibility: hidden;
  width: 0;
  height: 0; }

.radio-control input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 42px;
  cursor: pointer; }

.radio-control input[type="checkbox"] + label:before,
.radio-control input[type="radio"] + label:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  transition: all 0.3s ease; }

.radio-control input[type="checkbox"] + label:before {
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #000000;
  border: 2px solid #000000;
  box-shadow: inset 0 0 0 20px #ffffff; }

.radio-control input[type="checkbox"] + label:after {
  top: 49%;
  left: 9px;
  width: 54px;
  height: 54px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0); }

.radio-control input[type="checkbox"]:checked + label:before {
  box-shadow: inset 0 0 0 2px #ffffff; }

.radio-control input[type="checkbox"]:checked + label:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-animation: ripple 1s none;
  animation: ripple 1s none; }

.radio-control .error + label {
  color: #d71418; }

.radio-control .error + label:before {
  border: 2px solid #d9534f !important; }

.pricing {
  margin-bottom: 220px; }
  @media screen and (max-width: 576px) {
    .pricing {
      margin-bottom: 70px; } }

.pricing__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px; }
  @media screen and (max-width: 410px) {
    .pricing__navigation {
      height: 60px;
      padding-bottom: 20px;
      overflow-x: scroll;
      overflow-y: hidden; } }

.pricing__row {
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1); }

.pricing__navigation-item {
  flex: 1 1 33.33333%;
  text-align: center; }

.pricing__navigation-link {
  margin: 0;
  display: inline-block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  font: inherit;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  webkit-touch-callout: pan-y;
  webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(39, 57, 63, 0.6);
  font-size: 20px;
  padding-right: 5px;
  padding-left: 5px;
  line-height: 25px;
  text-align: center;
  color: #9b9b9b;
  transition: color 0.15s ease; }

.pricing__navigation-link--active {
  color: #000000; }

.pricing__slider {
  margin: 0 0 10px;
  font-size: 20px; }

.pricing__slide {
  padding: 40px 0;
  text-align: center; }

.events {
  display: flex;
  flex-wrap: wrap; }

.events__full-width-block {
  flex: 0 0 100%; }

.events__half-width-block {
  flex: 1 0 50%; }
  @media screen and (max-width: 768px) {
    .events__half-width-block {
      flex: 0 0 100%; } }

.events__block-inner {
  display: flex;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
  color: inherit; }
  .events__block-inner img {
    margin: 0 auto;
    display: block; }

.events__unreal-dev-hub {
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 10px 50px;
  text-align: center;
  color: #ffffff;
  background-image: url(../images/unreal-dev-hub-bg.png);
  background-position: 50%;
  background-size: cover; }
  @media screen and (min-width: 769px) {
    .events__unreal-dev-hub:hover h2 {
      -webkit-transform: scale(1.15, 1.15);
      transform: scale(1.15, 1.15); } }
  .events__unreal-dev-hub h2 {
    margin: 10px 0;
    font-size: 100px;
    line-height: 1;
    font-weight: 700; }
    @media screen and (max-width: 992px) {
      .events__unreal-dev-hub h2 {
        font-size: 10vw; } }
    @media screen and (max-width: 768px) {
      .events__unreal-dev-hub h2 {
        font-size: 12vw; } }
    @media screen and (min-width: 769px) {
      .events__unreal-dev-hub h2 {
        transition: -webkit-transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
        transition: transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
        transition: transform 1s cubic-bezier(0.07, 0.59, 0.36, 1), -webkit-transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
        -webkit-transform-origin: 50%;
        transform-origin: 50%; } }
  .events__unreal-dev-hub p {
    margin: 0 auto;
    max-width: 75%; }

.events__ithr-times {
  align-items: center;
  justify-content: space-around;
  padding: 20px 0 0;
  background-color: #f8b1b1; }
  @media screen and (max-width: 410px) {
    .events__ithr-times {
      flex-direction: column;
      align-items: stretch;
      justify-content: space-between; } }
  .events__ithr-times:hover .events__ithr-times-text img {
    -webkit-transform: scale(1.15, 1.15);
    transform: scale(1.15, 1.15); }

.events__ithr-times-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  text-align: center; }
  @media screen and (max-width: 410px) {
    .events__ithr-times-text {
      display: block; } }
  .events__ithr-times-text img {
    margin: 0 auto 40px; }
    @media screen and (min-width: 769px) {
      .events__ithr-times-text img {
        transition: -webkit-transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
        transition: transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
        transition: transform 1s cubic-bezier(0.07, 0.59, 0.36, 1), -webkit-transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
        -webkit-transform-origin: 50%;
        transform-origin: 50%; } }
    @media screen and (max-width: 410px) {
      .events__ithr-times-text img {
        margin-bottom: 20px;
        width: 130px; } }

.events__ithr-times-img {
  align-self: flex-end;
  padding: 0 15px; }
  @media screen and (max-width: 410px) {
    .events__ithr-times-img {
      align-self: auto; } }
  .events__ithr-times-img img {
    margin: 0 auto -1px; }
    @media screen and (max-width: 410px) {
      .events__ithr-times-img img {
        width: 172px; } }

.events__ithr-community {
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 15px 55px;
  text-align: center;
  color: #ffffff;
  background-color: #000000; }
  @media screen and (min-width: 769px) {
    .events__ithr-community {
      padding-right: 40px;
      padding-left: 40px; }
      .events__ithr-community:hover img + img {
        -webkit-transform: scale(1.15, 1.15);
        transform: scale(1.15, 1.15); } }
  @media screen and (max-width: 576px) {
    .events__ithr-community {
      justify-content: space-around;
      padding: 30px 15px; } }
  @media screen and (min-width: 769px) {
    .events__ithr-community img + img {
      transition: -webkit-transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
      transition: transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
      transition: transform 1s cubic-bezier(0.07, 0.59, 0.36, 1), -webkit-transform 1s cubic-bezier(0.07, 0.59, 0.36, 1);
      -webkit-transform-origin: 50%;
      transform-origin: 50%; } }
  .events__ithr-community p {
    margin: 0 auto;
    max-width: 75%; }

.data-processing-agreement-page {
  padding: 30px 0 110px;
  line-height: 1.25;
  font-weight: 400; }
  .data-processing-agreement-page h1 {
    margin: 0 0 2em;
    font-size: 30px;
    line-height: 1.2;
    text-align: center; }
  .data-processing-agreement-page b,
  .data-processing-agreement-page .font-weight-bold {
    font-weight: 500; }
  .data-processing-agreement-page a {
    border-bottom: 1px solid black;
    transition: border-bottom 0.2s ease; }
    .data-processing-agreement-page a:hover {
      border-bottom: 1px solid transparent; }

.data-processing-agreement__text-block {
  margin: 0 auto 2em;
  max-width: 630px; }

.data-processing-agreement__button-container {
  padding: 35px 0 0;
  text-align: center; }

.page {
  min-width: 320px;
  overflow-x: hidden; }
  .page.header-sticked {
    padding-top: 83px; }

.main__heading, .services__heading {
  margin-bottom: 65px; }

@media screen and (max-width: 576px) {
  html.is-expanded {
    overflow: hidden; } }

@media screen and (max-width: 576px) {
  html.is-expanded .banner {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: scroll; } }

.skyscraper-container {
  padding-right: 15px;
  padding-left: 5px; }
  @media screen and (max-width: 768px) {
    .skyscraper-container {
      order: 1;
      width: 100%;
      padding-right: 10px;
      padding-left: 10px;
      text-align: center; } }
  @media screen and (max-width: 576px) {
    .skyscraper-container {
      padding-right: 0;
      padding-left: 0; } }

.skyscraper {
  margin-top: -100px;
  display: inline-block; }
  @media screen and (max-width: 768px) {
    .skyscraper {
      margin-top: 0; } }
  .skyscraper__body {
    position: relative;
    max-width: 410px;
    font-size: 0; }
  .skyscraper__body-inner-container {
    position: relative; }
  .skyscraper__block-container img {
    width: 100%; }
  .skyscraper__main-image-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .skyscraper__blocks-container {
    position: relative;
    z-index: 100;
    padding-top: 793px;
    padding-right: 12px;
    padding-left: 10px; }
    @media screen and (max-width: 410px) {
      .skyscraper__blocks-container {
        padding-top: 194vw;
        padding-right: 2.7vw;
        padding-left: 2.5vw; } }
  .skyscraper__block-image {
    margin-right: -12px;
    margin-left: -10px;
    border-right: 12px solid #ffffff;
    border-left: 10px solid #ffffff; }
    @media screen and (max-width: 410px) {
      .skyscraper__block-image {
        margin-right: -2.7vw;
        margin-left: -2.5vw;
        border-right: 2.7vw solid #ffffff;
        border-left: 2.5vw solid #ffffff; } }

.skyscraper-main-image {
  width: 100%; }

.skyscraper-top-image {
  margin-bottom: -130px;
  padding-right: 4px;
  padding-left: 10px; }
  @media screen and (max-width: 410px) {
    .skyscraper-top-image {
      margin-bottom: -32vw;
      padding-right: 3px;
      padding-left: 2.5vw; } }

.skyscraper__block-container {
  margin-top: -129px; }
  @media screen and (max-width: 410px) {
    .skyscraper__block-container {
      margin-top: -32vw; } }
  @media screen and (max-width: 410px) {
    .skyscraper__block-container--3 {
      margin-top: -31.5vw; } }
  @media screen and (max-width: 410px) {
    .skyscraper__block-container--4 {
      margin-top: -31.5vw; } }
  @media screen and (max-width: 410px) {
    .skyscraper__block-container--6 {
      margin-top: -31.5vw; } }
  @media screen and (max-width: 410px) {
    .skyscraper__block-container--7 {
      margin-top: -31.5vw; } }
  @media screen and (max-width: 410px) {
    .skyscraper__block-container--8 {
      margin-top: -31.5vw; } }

.buildings {
  position: relative;
  height: 582px; }
  .buildings img {
    position: absolute;
    top: -162px;
    left: -522px;
    max-width: none; }
    @media screen and (max-width: 410px) {
      .buildings img {
        left: -126.5vw;
        width: 496vw; } }

.about {
  padding-top: 128px; }
  @media screen and (max-width: 768px) {
    .about {
      padding-top: 30px; } }
  .about .about__heading {
    max-height: 108px;
    font-size: 30px;
    line-height: 36px; }
    @media screen and (max-width: 768px) {
      .about .about__heading {
        text-align: center; } }
    @media screen and (max-width: 576px) {
      .about .about__heading {
        font-size: 20px;
        line-height: 26px; } }
  .about .about__stats {
    margin-top: 18px; }
    @media screen and (max-width: 768px) {
      .about .about__stats {
        display: none !important; } }
  .about .about__bottom {
    margin-bottom: 113px;
    padding-top: 30px; }
    @media screen and (max-width: 992px) {
      .about .about__bottom {
        margin-top: 69px;
        margin-bottom: 40px; } }
    @media screen and (max-width: 768px) {
      .about .about__bottom {
        display: none !important; } }
  .about .about-bottom__col {
    display: flex;
    align-items: center; }
  .about .about__recommend-text {
    margin: 0 auto;
    max-width: 180px;
    padding-top: 20px;
    padding-right: 33px;
    padding-left: 33px;
    text-align: center; }
    @media screen and (min-width: 769px) {
      .about .about__recommend-text {
        padding: 0; } }
  .about .about__recommend-text-col {
    align-self: center;
    padding-top: 0; }
  .about .about__recommend-button-container {
    position: relative;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px;
    background-position: center center;
    background-repeat: no-repeat; }
    .about .about__recommend-button-container .mobile-picture-container {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      display: block;
      content: '';
      background-image: url("/images/miniiphone.png");
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat;
      transition: 1.3s -webkit-transform ease;
      transition: 1.3s transform ease;
      transition: 1.3s transform ease, 1.3s -webkit-transform ease; }
    .about .about__recommend-button-container .button {
      position: relative;
      z-index: 2; }
      .about .about__recommend-button-container .button:hover + .mobile-picture-container {
        -webkit-transform: rotate(-40deg);
        transform: rotate(-40deg); }
  .about .about__recommend-mobile {
    position: relative;
    z-index: 1;
    margin-top: -350px;
    display: none;
    align-items: center;
    justify-content: center;
    order: 2;
    width: 100%;
    height: 705px;
    text-align: center;
    background-image: url(/images/iphone-mobile.png);
    background-position: center;
    background-repeat: no-repeat; }
    @media screen and (max-width: 576px) {
      .about .about__recommend-mobile {
        display: flex; } }
  .about .about__recommend-mobile-button.button {
    color: #d71418;
    background-color: #ffffff;
    border-color: #ffffff; }
    .about .about__recommend-mobile-button.button:hover, .about .about__recommend-mobile-button.button:active {
      color: #d71418;
      background-color: #ffffff;
      border-color: #ffffff; }
  .about .about__recommend-mobile-text {
    margin: auto;
    align-self: center;
    max-width: 170px;
    text-align: center; }
  .about .about__recommend-mobile-button-container {
    margin-top: 20px; }
    .about .about__recommend-mobile-button-container .button {
      width: 190px; }
  .about .about__recommend-mobile-inner {
    position: relative;
    top: -5px;
    margin: auto; }
  .about .about__mobile-buttons-container {
    margin-top: 30px;
    display: none;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .about .about__mobile-buttons-container {
        display: flex; } }
    @media screen and (max-width: 576px) {
      .about .about__mobile-buttons-container {
        flex-direction: column; } }
    .about .about__mobile-buttons-container .button {
      margin: auto;
      width: 190px; }
    .about .about__mobile-buttons-container .button--red-white {
      font-size: 16px; }
      @media screen and (max-width: 576px) {
        .about .about__mobile-buttons-container .button--red-white {
          margin-bottom: 20px; } }
  .about .about__mobile-contacts-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 22px;
    margin: 30px 0; }
    @media screen and (min-width: 769px) {
      .about .about__mobile-contacts-container {
        display: none; } }
  .about .about__contacts {
    margin-bottom: 9px; }

.stats-item {
  max-height: 119px;
  padding-top: 28px; }
  .stats-item__digit {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #d71418; }
  .stats-item__text {
    font-family: "GaramondPremierPro", "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 20px;
    color: #9b9b9b; }

.button {
  display: inline-block;
  min-width: 190px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 15px;
  padding-left: 12px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  background-color: #ffffff;
  border: solid 2px #d71418;
  border-radius: 100px;
  transition: 0.3s background-color, 0.2s color;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  @media screen and (max-width: 1110px) {
    .button {
      min-width: 150px; } }
  .button:hover {
    text-decoration: none;
    cursor: pointer; }
  .button:focus, .button.focus {
    outline: 0; }
  .button:hover {
    color: #ffffff;
    background-color: #d71418; }
  .button--white-black-white-white {
    color: #ffffff; }
  .button--white-black-white {
    background-color: #000000;
    border-color: #ffffff; }
    .button--white-black-white:hover {
      color: #ffffff;
      background-color: #d71418;
      border-color: #d71418; }
  .button--white-red-white {
    color: #ffffff;
    background-color: #d71418;
    border-color: #ffffff; }
  .button--white-transparent-white {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff; }
  .button--red-transparent-black {
    color: #000000;
    background-color: transparent;
    border-color: #d71418; }
  .button--red-white {
    font-size: 14px;
    color: #ffffff;
    background-color: #d71418; }
  .button--white-white-black {
    color: #000000;
    border-color: #ffffff; }
    .button--white-white-black:hover {
      color: #ffffff; }
  .button--black-white-black {
    border-color: #000000; }
    .button--black-white-black:hover {
      border-color: #d71418; }
  .button .w-190 {
    width: 190px; }

.button-container {
  text-align: center; }

@media screen and (max-width: 768px) {
  .clients {
    display: none !important; } }

.clients-group {
  min-height: 371px; }
  .clients-group:nth-child(4) {
    margin-top: -20px; }
  .clients-group:nth-child(7) {
    margin-top: -10px; }
  .clients-group__heading {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 31px;
    text-align: left;
    color: #9b9b9b; }
  .clients-group__logo {
    display: flex;
    align-items: center;
    height: 95px; }

.heading {
  font-size: 30px;
  font-weight: 700;
  text-align: center; }

.how-we-work {
  margin-bottom: 170px; }
  @media screen and (max-width: 576px) {
    .how-we-work {
      margin-bottom: 90px;
      display: none; } }
  .how-we-work__container {
    padding-right: 124px;
    padding-left: 124px; }
    @media screen and (max-width: 992px) {
      .how-we-work__container {
        padding-right: 40px;
        padding-left: 40px; } }
    @media screen and (max-width: 768px) {
      .how-we-work__container {
        padding-right: 20px;
        padding-left: 30px; } }
  .how-we-work__digit {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-family: 'FuturaNewReg', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    border-radius: 50%; }
  .how-we-work__feature {
    padding-top: 32px;
    text-align: center; }
  .how-we-work__text {
    padding-top: 26px;
    line-height: 1.25;
    font-weight: 400; }
  .how-we-work__image-container {
    margin-top: 80px;
    font-size: 0;
    text-align: center; }
    @media screen and (max-width: 800px) {
      .how-we-work__image-container--1 img {
        max-width: 100%; } }
    @media screen and (max-width: 800px) {
      .how-we-work__image-container--2 img {
        max-width: 100%; } }
    @media screen and (max-width: 800px) {
      .how-we-work__image-container--3 img {
        max-width: 100%; } }
    .how-we-work__image-container--4 img {
      max-width: 355px; }
      @media screen and (max-width: 800px) {
        .how-we-work__image-container--4 img {
          max-width: 100%; } }
    .how-we-work__image-container--4 + .how-we-work__feature-list .how-we-work__feature {
      padding-top: 20px; }

.how-we-work__digit--1 {
  background-color: #7fc5c8; }

.how-we-work__digit--2 {
  background-color: #ffe4b0; }

.how-we-work__digit--3 {
  background-color: #ff8d84; }

.how-we-work__digit--4 {
  background-color: #b0c3c6; }

.how-we-work__digit--5 {
  background-color: #dfc2a1; }

.how-we-work__digit--6 {
  background-color: #7fc5c8; }

.how-we-work__digit--7 {
  background-color: #dfc2a1; }

.how-we-work__digit--8 {
  background-color: #7fc5c8; }

.how-we-work__digit--9 {
  background-color: #fee4b0; }

.how-we-work__digit--10 {
  background-color: #7fc5c8; }

.how-we-work__digit--11 {
  background-color: #e3d1db; }

.how-we-work__digit--12 {
  background-color: #e7ceb0; }

.how-we-work__digit--13 {
  background-color: #de5445; }

.services {
  margin-bottom: 170px; }
  .services__container {
    padding-right: 70px;
    padding-left: 70px; }
    .services__container .button {
      margin-top: 40px; }
  .services__image-container {
    margin-bottom: 30px;
    text-align: center; }
    @media screen and (max-width: 576px) {
      .services__image-container {
        margin-bottom: 5px; } }
  .services__text {
    font-weight: 400;
    text-align: center; }
  .services__service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    transition: 0.4s opacity; }
    @media screen and (max-width: 576px) {
      .services__service {
        min-height: 105px; } }
    .services__service:hover {
      opacity: 0.6;
      cursor: pointer; }
  @media screen and (max-width: 576px) {
    .services__heading {
      margin-bottom: 43px; } }

.js-services-slider .slick-prev {
  left: -21px; }

.js-services-slider .slick-next {
  right: -40px; }

.partners {
  margin-bottom: 190px; }
  @media screen and (max-width: 576px) {
    .partners {
      margin-bottom: 105px; } }
  .partners__list {
    margin-bottom: 54px;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-animation-name: animation_14;
    animation-name: animation_14;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
    @media screen and (max-width: 576px) {
      .partners__list {
        margin-bottom: 42px;
        -webkit-transform: none;
        transform: none;
        -webkit-animation: none;
        animation: none; } }
  .partners__partner {
    text-align: center; }
  .partners .button {
    width: 263px; }
  @media screen and (max-width: 576px) {
    .partners__image-container {
      max-height: 60px;
      padding-top: 5px;
      padding-bottom: 5px;
      text-align: center;
      border-top: 1px solid #c1c1c1; } }
  @media screen and (max-width: 576px) {
    .partners__image-container img {
      height: 47px;
      max-width: 200px; } }
  .partners__row {
    display: block;
    width: 3000px;
    font-size: 0; }
    @media screen and (max-width: 576px) {
      .partners__row {
        margin-right: 0;
        margin-left: 0;
        width: auto; } }
  .partners__col {
    display: inline-block;
    width: auto;
    padding-right: 50px;
    padding-left: 50px;
    vertical-align: middle; }
    @media screen and (max-width: 576px) {
      .partners__col {
        display: none;
        padding-right: 0;
        padding-left: 0; } }
    @media screen and (max-width: 576px) {
      .partners__col:nth-child(1), .partners__col:nth-child(2), .partners__col:nth-child(3) {
        display: block; } }
    @media screen and (max-width: 576px) {
      .partners__col:nth-child(3) {
        border-bottom: 1px solid #c1c1c1; } }

.full-width-container {
  margin: auto;
  max-width: 1440px;
  padding-right: 15px;
  padding-left: 15px; }
  @media screen and (max-width: 576px) {
    .full-width-container {
      padding-right: 0;
      padding-left: 0; } }

.team {
  margin-bottom: 190px; }
  @media screen and (max-width: 576px) {
    .team {
      margin-bottom: 70px; } }

.persons-list {
  margin-bottom: 20px; }
  .persons-list .persons-list__col {
    flex-basis: 20%;
    max-width: 20%;
    outline: none; }
    @media (max-width: 900px) {
      .persons-list .persons-list__col {
        flex-basis: 100%;
        max-width: 100%; } }

.person {
  padding-bottom: 15px;
  text-align: center;
  transition: 0.4s -webkit-transform;
  transition: 0.4s transform;
  transition: 0.4s transform, 0.4s -webkit-transform; }
  .person:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  .person__image-container {
    text-align: center; }
    .person__image-container img {
      max-width: 120px; }
  .person__social-links-list {
    margin: auto;
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    max-width: 45px; }
  .person__role {
    margin-top: 5px;
    font-family: "GaramondPremierPro", "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 16px;
    text-align: center; }
  .person__name {
    margin-top: 7px;
    font-size: 20px;
    color: #d71418; }
  .person .social-link img {
    opacity: 0.48;
    transition: 0.4s opacity; }
  .person .social-link:hover img {
    opacity: 1; }

.slick-slide {
  outline: none; }
  .slick-slide img {
    margin: auto; }
  .slick-slide .person__image-container img {
    margin: auto; }

.slick-slider {
  text-align: center;
  flex-wrap: initial; }

.slick-dots {
  margin: auto;
  display: inline-block;
  width: auto;
  font-size: 0;
  background-color: #ededed;
  border-radius: 10px; }
  .slick-dots li {
    display: inline-block; }
    .slick-dots li.slick-active button {
      display: inline-block;
      background-color: #000000; }
  .slick-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    font-size: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 10px;
    outline: none; }

.slick-arrow {
  position: absolute;
  width: 18px;
  height: 32px;
  font-size: 0;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none; }

.slick-prev {
  top: 50%;
  left: -30px;
  opacity: 0.25;
  background: url(/images/arrow.svg), no-repeat;
  -webkit-transform: rotate(180deg) translate(0, -50%);
  transform: rotate(180deg) translate(0, -50%);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0; }

.slick-next {
  top: 50%;
  right: -30px;
  opacity: 0.25;
  background: url(/images/arrow.svg), no-repeat;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%); }

.social-link img {
  max-width: 12px; }

.inner-links-list__item {
  display: inline-block; }
  @media screen and (max-width: 576px) {
    .inner-links-list__item {
      display: block; } }

@media screen and (max-width: 768px) {
  .main-team-button {
    display: none !important; } }

.banner--clone {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); }

.banner--stick {
  -webkit-transform: translateY(0%);
  transform: translateY(0%); }

[data-aos^=fade-out][data-aos^=fade-out] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform; }

[data-aos^=fade-out][data-aos^=fade-out].aos-animate {
  opacity: 0;
  -webkit-transform: translate(0);
  transform: translate(0); }

.skyscraper__block-heading {
  position: fixed;
  bottom: 80px;
  display: none;
  width: 100%;
  max-width: 388px;
  opacity: 0;
  font-size: 30px;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.69);
  color: #ffffff;
  transition: 0.2s opacity; }
  @media screen and (max-width: 768px) {
    .skyscraper__block-heading {
      display: block; } }

.how-we-work-mobile {
  display: none; }
  @media screen and (max-width: 576px) {
    .how-we-work-mobile {
      display: block; } }
  .how-we-work-mobile .how-we-work-mobile__container {
    padding-right: 0;
    padding-left: 0; }

.how-we-work-mobile__image-container {
  display: flex;
  align-items: flex-end;
  min-height: 300px; }
  .how-we-work-mobile__image-container img {
    width: 100%; }
  @media (max-width: 576px) {
    .how-we-work-mobile__image-container {
      margin-bottom: 24px; }
      .how-we-work-mobile__image-container img {
        margin: 0; } }
  @media (max-width: 500px) {
    .how-we-work-mobile__image-container {
      min-height: 100vw; } }

.how-we-work-mobile__feature-list .slick-next, .how-we-work-mobile__feature-list .slick-prev {
  top: 80%; }

.how-we-work-mobile__feature-list .slick-next {
  right: 10px; }

.how-we-work-mobile__feature-list .slick-prev {
  left: 30px;
  z-index: 10; }
  @media screen and (max-width: 576px) {
    .how-we-work-mobile__feature-list .slick-prev {
      display: none !important; } }

@media screen and (max-width: 576px) {
  .how-we-work-mobile__feature-list .how-we-work__digit--9, .how-we-work-mobile__feature-list .how-we-work__digit--10, .how-we-work-mobile__feature-list .how-we-work__digit--11, .how-we-work-mobile__feature-list .how-we-work__digit--12, .how-we-work-mobile__feature-list .how-we-work__digit--13 {
    margin-top: 20px; } }

.man-mobile {
  margin-left: auto !important;
  margin-right: 30px !important;
  display: inline-block !important;
  width: auto !important;
  height: 80px !important; }

.rocket-mobile {
  margin-right: auto !important;
  display: inline-block !important;
  width: auto !important;
  height: 300px !important; }

.how-we-work-mobile {
  margin-bottom: 50px; }
  .how-we-work-mobile .how-we-work__feature {
    padding-top: 0; }
    .how-we-work-mobile .how-we-work__feature .how-we-work__text {
      padding-right: 40px;
      padding-left: 40px; }

.rocket-animation__rocket-container {
  position: relative;
  margin-left: 120px;
  display: inline-block;
  width: 73px;
  height: 323px; }

.rocket-animation__rocket {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 2s top ease-in, 1.5s -webkit-transform ease-in;
  transition: 2s top ease-in, 1.5s transform ease-in;
  transition: 2s top ease-in, 1.5s transform ease-in, 1.5s -webkit-transform ease-in; }
  .rocket-animation__rocket.starting {
    top: -1000px;
    -webkit-transform: scale(2);
    transform: scale(2); }
  .rocket-animation__rocket.gone {
    display: none; }

.rocket-animation__cloud-left {
  position: absolute;
  bottom: 0px;
  left: -40px; }

.rocket-animation__cloud-right {
  position: absolute;
  right: -40px;
  bottom: 0; }

.rocket-animation__building-container {
  position: relative;
  display: inline-block;
  width: 470px;
  height: 232px; }

.rocket-animation__astronaut {
  position: absolute;
  right: -20px;
  bottom: 0; }

[data-aos=fade-left] {
  -webkit-transform: translate(300px);
  transform: translate(300px); }

.partnership {
  margin-top: 47px; }
  .partnership .slick-list {
    overflow: visible; }
  @media screen and (max-width: 576px) {
    .partnership .slick-slide {
      padding-right: 0;
      padding-left: 0; } }

.partnership__button {
  margin-top: 71px; }
  @media screen and (max-width: 576px) {
    .partnership__button {
      margin-top: 53px; } }

.partnership__qa {
  margin-top: 80px;
  margin-bottom: 65px; }
  @media screen and (max-width: 768px) {
    .partnership__qa {
      margin-top: 65px;
      margin-bottom: 55px; } }
  @media screen and (max-width: 576px) {
    .partnership__qa {
      margin-top: 39px; } }

.partnership__heading {
  margin-bottom: 65px; }
  @media screen and (max-width: 576px) {
    .partnership__heading {
      margin-bottom: 49px; } }

.partnership-type {
  display: block;
  text-align: center;
  outline: none; }
  @media screen and (max-width: 768px) {
    .partnership-type {
      margin-bottom: 5px; } }
  .partnership-type__text {
    font-weight: 400;
    text-align: center; }
  .partnership-type__image-container {
    margin-bottom: 36px;
    display: inline-block;
    max-width: 80%;
    text-align: center; }
    @media screen and (max-width: 576px) {
      .partnership-type__image-container {
        margin-bottom: 40px; } }

.partnership-content {
  margin-top: 68px; }
  @media screen and (max-width: 576px) {
    .partnership-content {
      margin-top: 2px; } }

.narrow-container {
  margin: auto;
  max-width: 640px; }

.partnership-tab__partners-list.partnership-tab__partners-list--horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; }
  .partnership-tab__partners-list.partnership-tab__partners-list--horizontal li {
    padding-right: 50px;
    padding-left: 50px; }

.partnership-tab__partners {
  margin-top: 84px;
  text-align: center; }
  @media screen and (max-width: 576px) {
    .partnership-tab__partners {
      margin-top: 51px; } }

.partnership-tab__partners-text {
  margin-bottom: 20px; }
  @media screen and (max-width: 576px) {
    .partnership-tab__partners-text {
      font-size: 20px; } }

.partnership-tab__text {
  padding-right: 5px;
  padding-left: 5px;
  font-weight: 400; }

.w-260 {
  width: 260px; }

.w-340 {
  width: 340px; }
  @media screen and (max-width: 576px) {
    .w-340 {
      width: auto; } }

.w-160 {
  width: 160px; }

.questions-and-answers__heading {
  margin-bottom: 36px; }

.questions-and-answers__question-and-answer {
  padding-top: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer; }

.questions-and-answers__question {
  font-size: 20px;
  line-height: 1.25;
  transition: 0.3s color; }

.questions-and-answers__answer {
  margin-top: 10px;
  margin-bottom: 15px;
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  transition: 0.5s max-height; }

.questions-and-answers__question-and-answer.is-expanded .questions-and-answers__answer {
  max-height: 800px; }

.questions-and-answers__question-and-answer.is-expanded .questions-and-answers__question {
  color: #9b9b9b; }

.questions-and-answers__question-and-answer .qa_answer {
  max-height: 800px;
  font-weight: 400;
  margin: 13px 0; }

.more-questions-button {
  margin: auto;
  margin-top: 45px;
  display: block;
  width: 200px; }
  @media screen and (max-width: 576px) {
    .more-questions-button {
      margin-top: 43px; } }

.conditions {
  margin-top: 80px; }
  @media screen and (max-width: 576px) {
    .conditions {
      margin-top: 23px; } }
  .conditions__qa {
    margin-top: 144px;
    margin-bottom: 200px; }
  .conditions__tab-handle a {
    outline: none;
    margin-top: -1px;
    margin-bottom: -1px;
    display: inline-block;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 8px;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
    color: #9b9b9b;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: 0.3s color, 0.3s border; }
    .conditions__tab-handle a.active {
      color: #000000;
      border: 2px solid #000000; }
  .conditions__tabs {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    @media screen and (max-width: 576px) {
      .conditions__tabs {
        display: none; } }
  .conditions__condition {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; }
    @media screen and (max-width: 576px) {
      .conditions__condition {
        margin-bottom: 23px;
        justify-content: flex-start;
        width: 50%;
        padding-left: 7px;
        border-left: 1px solid rgba(0, 0, 0, 0.1); } }
    .conditions__condition:last-of-type {
      margin-bottom: 0; }
  .conditions__condition-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 41px; }
    @media screen and (max-width: 576px) {
      .conditions__condition-container {
        flex-direction: row;
        padding-top: 20px;
        padding-bottom: 30px; } }
    .conditions__condition-container--last {
      background-color: #F1F0EC; }
      @media screen and (max-width: 576px) {
        .conditions__condition-container--last .conditions__condition {
          width: 100%;
          padding-left: 0;
          border: 0; } }
  .conditions__condition-heading {
    margin-bottom: 21px;
    color: #9b9b9b; }
    @media screen and (max-width: 576px) {
      .conditions__condition-heading {
        margin-bottom: 20px; } }
  .conditions__condition-ordered-list {
    margin-top: 21px; }
  .conditions ol {
    padding-left: 17px; }
  .conditions__condition-text {
    color: #000000; }
    @media screen and (max-width: 576px) {
      .conditions__condition-text {
        padding-right: 15px; } }
  .conditions__button {
    margin: auto;
    margin-top: 60px;
    display: block; }
    @media screen and (max-width: 576px) {
      .conditions__button {
        margin-top: 24px; } }
  .conditions__heading {
    margin-bottom: 57px; }
    @media screen and (max-width: 576px) {
      .conditions__heading {
        margin-bottom: 35px; } }
  .conditions__narrow-container {
    margin-top: 32px; }
    @media screen and (max-width: 576px) {
      .conditions__narrow-container {
        margin-top: 23px; } }
  @media screen and (max-width: 576px) {
    .conditions__container {
      padding-top: 16px; } }
  .conditions__red-info {
    margin-top: 20px;
    text-align: center; }

.conditions-tab {
  font-weight: 400;
  outline: none; }
  .conditions-tab p {
    margin-bottom: 13px; }
  @media screen and (max-width: 576px) {
    .conditions-tab__text {
      display: none; } }
  .conditions-tab__heading {
    font-weight: 500;
    color: #000000; }
  .conditions-tab__select-container {
    position: relative;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, 0.03); }

.conditions-common__condition {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 26px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  border-top: 1px solid #e5e5e5; }
  @media screen and (max-width: 576px) {
    .conditions-common__condition {
      padding-top: 10px;
      padding-right: 10px;
      padding-bottom: 15px; } }

.conditions-common__heading {
  margin-top: 45px;
  margin-bottom: 62px;
  font-weight: 500;
  text-align: center; }
  @media screen and (max-width: 576px) {
    .conditions-common__heading {
      display: none; } }

.col-1of5 {
  flex-basis: 25%;
  max-width: 25%; }
  @media screen and (max-width: 768px) {
    .col-1of5 {
      flex-basis: 33.3%;
      max-width: 33.3%; } }
  @media screen and (max-width: 576px) {
    .col-1of5 {
      flex-basis: 50%;
      max-width: 50%; } }

.heading-small {
  font-size: 20px;
  line-height: 1.2; }

.grey-wrapper {
  background-color: rgba(0, 0, 0, 0.03); }
  @media screen and (min-width: 769px) {
    .grey-wrapper {
      background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03) 75%, #F1F0EC 75%, #F1F0EC); } }

.select {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  width: 100%;
  height: 30px;
  font-size: 21px;
  line-height: 30px;
  color: #6d6d6d;
  background: none;
  border: none; }
  .select__select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none; }
  .select__result {
    position: relative;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #d71418; }
  .select__result-container {
    position: relative; }
    .select__result-container:after {
      position: absolute;
      top: 0px;
      right: 0;
      display: inline-block;
      width: 10px;
      height: 10px;
      content: '▾';
      font-size: 16px;
      color: #000000; }
      @media screen and (max-width: 576px) {
        .select__result-container:after {
          right: -25px; } }

.select-label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000000; }

.other-tabs {
  margin-top: 44px;
  display: none; }
  @media screen and (max-width: 576px) {
    .other-tabs {
      margin-top: 26px;
      display: block; } }
  .other-tabs a {
    font-size: 20px;
    line-height: 36px;
    color: #d71418; }

.recommend {
  margin-top: 80px; }
  @media screen and (max-width: 576px) {
    .recommend {
      margin-top: 18px; } }
  .recommend__heading {
    margin-bottom: 50px; }

.heading-medium {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400; }

.recommend-candidate {
  text-align: center;
  color: #ffffff;
  background-color: #d71418;
  background-image: url(/images/iphone.png);
  background-position: center -130px;
  background-repeat: no-repeat; }
  @media screen and (max-width: 576px) {
    .recommend-candidate {
      background-color: #ffffff;
      background-image: url(/images/iphone-new.png);
      background-position: top center; } }
  .recommend-candidate__inner {
    padding-top: 22px;
    padding-bottom: 60px;
    background-color: rgba(255, 0, 0, 0.4); }
    @media screen and (max-width: 576px) {
      .recommend-candidate__inner {
        padding-top: 90px;
        background-color: transparent; } }
  .recommend-candidate__text {
    font-size: 20px;
    line-height: 1.2; }
    @media screen and (min-width: 769px) {
      .recommend-candidate__text br:nth-child(odd) {
        display: none; } }
    @media screen and (max-width: 576px) {
      .recommend-candidate__text {
        font-size: 16px;
        line-height: 1.25;
        font-weight: 400; } }
  .recommend-candidate__heading {
    margin-bottom: 13px;
    font-weight: 500;
    text-align: left; }
    @media screen and (max-width: 576px) {
      .recommend-candidate__heading {
        margin-bottom: 55px;
        padding-right: 22%;
        padding-left: 22%;
        text-align: center; } }
  .recommend-candidate__button {
    margin-top: 23px;
    width: 200px; }
    @media screen and (max-width: 576px) {
      .recommend-candidate__button {
        margin-top: 60px; } }

.recommend-yourself {
  padding-top: 22px;
  padding-bottom: 60px;
  text-align: center;
  background-color: #ccc;
  background-image: url(/images/recommend-yourself.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media screen and (max-width: 576px) {
    .recommend-yourself {
      padding-top: 78px;
      padding-bottom: 95px;
      background-image: url(/images/recommend-yourself-mobile.jpg);
      background-position: 0 0;
      background-size: cover; } }
  .recommend-yourself__text {
    font-size: 20px;
    line-height: 1.2; }
    @media screen and (max-width: 576px) {
      .recommend-yourself__text {
        font-size: 16px;
        line-height: 1.25;
        font-weight: 400; } }
  .recommend-yourself__heading {
    margin-bottom: 42px;
    font-weight: 500;
    text-align: left; }
    @media screen and (max-width: 576px) {
      .recommend-yourself__heading {
        margin-bottom: 55px;
        padding-right: 20%;
        padding-left: 20%;
        text-align: center; } }
  .recommend-yourself__button {
    margin: auto;
    margin-top: 42px;
    display: block;
    width: 200px; }
    @media screen and (max-width: 576px) {
      .recommend-yourself__button {
        margin-top: 70px; } }

.recommend-rules {
  padding-top: 87px;
  padding-bottom: 94px; }
  @media screen and (max-width: 576px) {
    .recommend-rules {
      padding-top: 94px;
      padding-bottom: 94px; } }
  .recommend-rules__heading {
    margin-bottom: 28px; }
  .recommend-rules__list-container {
    margin: auto;
    max-width: 640px; }
  .recommend-rules__list {
    margin-bottom: 10px;
    padding-left: 30px; }
  .recommend-rules li {
    padding-left: 22px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400; }
    @media screen and (max-width: 576px) {
      .recommend-rules li {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.25; } }

.more-info-link-button {
  font-family: "GaramondPremierPro", "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
  color: #9b9b9b; }

.text-centered {
  text-align: center; }

.recommend-clients {
  padding-bottom: 100px;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #8e8e8e; }
  @media screen and (max-width: 576px) {
    .recommend-clients {
      padding-bottom: 0;
      font-weight: 400; } }
  @media screen and (max-width: 576px) {
    .recommend-clients__container {
      padding: 0; } }
  .recommend-clients__inner-container {
    margin: auto;
    max-width: 700px;
    padding-top: 53px;
    padding-right: 36px;
    padding-bottom: 73px;
    padding-left: 36px;
    background-color: #f1f0ec;
    border-radius: 10px; }
    @media screen and (max-width: 576px) {
      .recommend-clients__inner-container {
        padding-top: 30px;
        padding-right: 25px;
        padding-bottom: 42px;
        padding-left: 25px;
        border-radius: 0; } }
  .recommend-clients__text {
    font-weight: 500; }
    @media screen and (max-width: 576px) {
      .recommend-clients__text {
        font-size: 16px;
        line-height: 20px; } }
  .recommend-clients__heading {
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 0.8;
    font-weight: bold;
    text-align: center;
    color: #9f9f9f; }
    @media screen and (max-width: 576px) {
      .recommend-clients__heading {
        line-height: 1.2; } }
  .recommend-clients b {
    color: #000000; }

.m-t-5 {
  margin-top: 5px; }

.p-t-5 {
  padding-top: 5px; }

.m-b-5 {
  margin-bottom: 5px; }

.p-b-5 {
  padding-bottom: 5px; }

.m-l-5 {
  margin-left: 5px; }

.p-l-5 {
  padding-left: 5px; }

.m-r-5 {
  margin-right: 5px; }

.p-r-5 {
  padding-right: 5px; }

.m-t-10 {
  margin-top: 10px; }

.p-t-10 {
  padding-top: 10px; }

.m-b-10 {
  margin-bottom: 10px; }

.p-b-10 {
  padding-bottom: 10px; }

.m-l-10 {
  margin-left: 10px; }

.p-l-10 {
  padding-left: 10px; }

.m-r-10 {
  margin-right: 10px; }

.p-r-10 {
  padding-right: 10px; }

.m-t-15 {
  margin-top: 15px; }

.p-t-15 {
  padding-top: 15px; }

.m-b-15 {
  margin-bottom: 15px; }

.p-b-15 {
  padding-bottom: 15px; }

.m-l-15 {
  margin-left: 15px; }

.p-l-15 {
  padding-left: 15px; }

.m-r-15 {
  margin-right: 15px; }

.p-r-15 {
  padding-right: 15px; }

.m-t-20 {
  margin-top: 20px; }

.p-t-20 {
  padding-top: 20px; }

.m-b-20 {
  margin-bottom: 20px; }

.p-b-20 {
  padding-bottom: 20px; }

.m-l-20 {
  margin-left: 20px; }

.p-l-20 {
  padding-left: 20px; }

.m-r-20 {
  margin-right: 20px; }

.p-r-20 {
  padding-right: 20px; }

.m-t-25 {
  margin-top: 25px; }

.p-t-25 {
  padding-top: 25px; }

.m-b-25 {
  margin-bottom: 25px; }

.p-b-25 {
  padding-bottom: 25px; }

.m-l-25 {
  margin-left: 25px; }

.p-l-25 {
  padding-left: 25px; }

.m-r-25 {
  margin-right: 25px; }

.p-r-25 {
  padding-right: 25px; }

.m-t-30 {
  margin-top: 30px; }

.p-t-30 {
  padding-top: 30px; }

.m-b-30 {
  margin-bottom: 30px; }

.p-b-30 {
  padding-bottom: 30px; }

.m-l-30 {
  margin-left: 30px; }

.p-l-30 {
  padding-left: 30px; }

.m-r-30 {
  margin-right: 30px; }

.p-r-30 {
  padding-right: 30px; }

.m-t-35 {
  margin-top: 35px; }

.p-t-35 {
  padding-top: 35px; }

.m-b-35 {
  margin-bottom: 35px; }

.p-b-35 {
  padding-bottom: 35px; }

.m-l-35 {
  margin-left: 35px; }

.p-l-35 {
  padding-left: 35px; }

.m-r-35 {
  margin-right: 35px; }

.p-r-35 {
  padding-right: 35px; }

.m-t-40 {
  margin-top: 40px; }

.p-t-40 {
  padding-top: 40px; }

.m-b-40 {
  margin-bottom: 40px; }

.p-b-40 {
  padding-bottom: 40px; }

.m-l-40 {
  margin-left: 40px; }

.p-l-40 {
  padding-left: 40px; }

.m-r-40 {
  margin-right: 40px; }

.p-r-40 {
  padding-right: 40px; }

.m-t-45 {
  margin-top: 45px; }

.p-t-45 {
  padding-top: 45px; }

.m-b-45 {
  margin-bottom: 45px; }

.p-b-45 {
  padding-bottom: 45px; }

.m-l-45 {
  margin-left: 45px; }

.p-l-45 {
  padding-left: 45px; }

.m-r-45 {
  margin-right: 45px; }

.p-r-45 {
  padding-right: 45px; }

.m-t-50 {
  margin-top: 50px; }

.p-t-50 {
  padding-top: 50px; }

.m-b-50 {
  margin-bottom: 50px; }

.p-b-50 {
  padding-bottom: 50px; }

.m-l-50 {
  margin-left: 50px; }

.p-l-50 {
  padding-left: 50px; }

.m-r-50 {
  margin-right: 50px; }

.p-r-50 {
  padding-right: 50px; }

.m-t-58 {
  margin-top: 58px; }

.p-t-58 {
  padding-top: 58px; }

.m-b-58 {
  margin-bottom: 58px; }

.p-b-58 {
  padding-bottom: 58px; }

.m-l-58 {
  margin-left: 58px; }

.p-l-58 {
  padding-left: 58px; }

.m-r-58 {
  margin-right: 58px; }

.p-r-58 {
  padding-right: 58px; }

.m-t-65 {
  margin-top: 65px; }

.p-t-65 {
  padding-top: 65px; }

.m-b-65 {
  margin-bottom: 65px; }

.p-b-65 {
  padding-bottom: 65px; }

.m-l-65 {
  margin-left: 65px; }

.p-l-65 {
  padding-left: 65px; }

.m-r-65 {
  margin-right: 65px; }

.p-r-65 {
  padding-right: 65px; }

.m-t-70 {
  margin-top: 70px; }

.p-t-70 {
  padding-top: 70px; }

.m-b-70 {
  margin-bottom: 70px; }

.p-b-70 {
  padding-bottom: 70px; }

.m-l-70 {
  margin-left: 70px; }

.p-l-70 {
  padding-left: 70px; }

.m-r-70 {
  margin-right: 70px; }

.p-r-70 {
  padding-right: 70px; }

.underlined {
  text-decoration: underline; }

.is-hidden {
  display: none; }

.pages-list {
  list-style: disc; }

.team-page {
  padding-top: 119px; }
  .team-page .persons-list {
    width: 100%;
    margin-bottom: 0; }
  .team-page .person {
    padding-bottom: 50px; }

.red-info {
  font-weight: 400;
  color: #d71418; }

.recommend-full-rules {
  font-weight: 400; }
  .recommend-full-rules p {
    margin-bottom: 20px; }
  .recommend-full-rules .text-bold {
    font-weight: 500; }
  .recommend-full-rules__heading-small {
    margin-bottom: 23px;
    font-weight: 500; }
  .recommend-full-rules p + h3 {
    padding-top: 18px; }

.flipcard-container {
  display: inline-block;
  -webkit-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000; }

.flipcard-container:hover .back, .flipcard-container.hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.flipcard-container:hover .front, .flipcard-container.hover .front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.flipcard-container, .front, .back {
  width: 100%;
  height: 401px; }
  @media screen and (max-width: 768px) {
    .flipcard-container, .front, .back {
      width: 100%; } }

.flipper {
  position: relative;
  transition: 0.6s;
  -moz-transform: perspective(1000px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.front, .back {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.6s;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.front {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg); }

.back {
  background: #ffffff;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg); }

.vertical.flipcard-container {
  position: relative; }

.vertical .back {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg); }

.vertical.flipcard-container .flipper {
  -webkit-transform-origin: 100% 213.5px;
  transform-origin: 100% 213.5px; }

.vertical.flipcard-container:hover .back, .vertical.flipcard-container.hover .back {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.vertical.flipcard-container:hover .front, .vertical.flipcard-container.hover .front {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg); }

.recommend-clients-card .front {
  background-image: url(/images/recommend-clients-card.jpg); }

.recommend-clients-card .back {
  border: 1px solid #9B9B9B;
  border-radius: 6px; }

.recommend-yourself-card .front {
  background-image: url(/images/recommend-yourself-card.jpg); }

.recommend-yourself-card .back {
  border: 1px solid #9B9B9B;
  border-radius: 6px; }

.recommend-candidate-card .front {
  background-image: url(/images/recommend-candidate-card.png); }

.recommend-candidate-card .back {
  background-image: url(/images/iphone-contur.png);
  background-size: contain;
  background-repeat: no-repeat;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px; }

.recommend-candidate-card__subheading {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #ffffff; }

.recommend-clients-card .front, .recommend-candidate-card .front, .recommend-yourself-card .front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  background-size: contain;
  background-repeat: no-repeat; }

.recommend-clients-card .back, .recommend-candidate-card .back, .recommend-yourself-card .back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
  text-align: center; }

.recommend-clients-card__heading, .recommend-candidate-card__heading, .recommend-yourself-card__heading {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #ffffff; }

.recommend-clients-card .more-info-link-button, .recommend-candidate-card .more-info-link-button, .recommend-yourself-card .more-info-link-button {
  margin-top: 60px; }

.text-red {
  color: #d71418; }

.recommend-cards-page .col-lg-4 {
  margin: auto; }

.recommend-cards-page__qa {
  margin-top: 160px; }

.card {
  margin: auto;
  width: 300px;
  height: 401px; }

.recommend-cards__col {
  min-width: 340px;
  padding-bottom: 40px; }

@-webkit-keyframes animation_14 {
  0% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1370, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1370, 0, 0, 1); } }

@keyframes animation_14 {
  0% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1370, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1370, 0, 0, 1); } }

.col {
  outline: none; }

.js-parallax {
  transition: 0.4s background-position; }

.partnership-type img {
  transition: 0.4s -webkit-transform;
  transition: 0.4s transform;
  transition: 0.4s transform, 0.4s -webkit-transform; }

.partnership-type.active img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2); }

@media screen and (max-width: 768px) {
  .js-partnership-slider {
    margin-bottom: 40px; } }

.js-partnership-slider.slick-initialized .col-md-2,
.js-partnership-slider.slick-initialized .col-sm-4 {
  flex: initial;
  max-width: initial; }

.radio-control {
  transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;
  -webkit-animation-duration: 0s !important;
  animation-duration: 0s !important; }

body.preload .radio-control input[type="radio"]:checked + label:after {
  transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;
  -webkit-animation-duration: 0s !important;
  animation-duration: 0s !important; }

li.inner-links-list__item:after {
  margin-left: -2px;
  display: inline;
  content: ","; }

li.inner-links-list__item:last-of-type:after {
  margin-left: -2px;
  display: none;
  content: ","; }

[role="option"] {
  outline: none; }

.flash-messages {
  margin-top: 100px; }

.partners__image-container img {
  max-height: 70px; }

.js-services-slider {
  justify-content: center; }

.rocket-fire-container {
  position: relative;
  display: inline-block;
  width: 100px;
  text-align: center; }
  .rocket-fire-container img {
    position: relative;
    top: 0;
    z-index: 2;
    display: inline-block; }

.fire {
  position: absolute;
  bottom: -60px;
  left: -34px;
  z-index: 1;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  .fire .flames {
    position: absolute;
    bottom: 40%;
    left: 50%;
    width: 60%;
    height: 60%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg); }
    .fire .flames .flame {
      position: absolute;
      right: 0%;
      bottom: 0%;
      width: 0%;
      height: 0%;
      background-color: #ffdc01;
      border-radius: 10px; }
      .fire .flames .flame:nth-child(2n + 1) {
        -webkit-animation: flameodd 0.7s ease-in infinite;
        animation: flameodd 0.7s ease-in infinite; }
      .fire .flames .flame:nth-child(2n) {
        -webkit-animation: flameeven 0.7s ease-in infinite;
        animation: flameeven 0.7s ease-in infinite; }
      .fire .flames .flame:nth-child(1) {
        -webkit-animation-delay: 0s;
        animation-delay: 0s; }
      .fire .flames .flame:nth-child(2) {
        -webkit-animation-delay: 0.175s;
        animation-delay: 0.175s; }
      .fire .flames .flame:nth-child(3) {
        -webkit-animation-delay: 0.35s;
        animation-delay: 0.35s; }
      .fire .flames .flame:nth-child(4) {
        -webkit-animation-delay: 0.525s;
        animation-delay: 0.525s; }

@-webkit-keyframes flameodd {
  0% {
    right: 0%;
    bottom: 0%;
    z-index: 1000000;
    width: 0%;
    height: 0%;
    background-color: #ffdc01; }
  25% {
    right: 1%;
    bottom: 2%;
    width: 100%;
    height: 100%; }
  40% {
    z-index: 1000000;
    background-color: #fdac01; }
  100% {
    right: 150%;
    bottom: 170%;
    z-index: -10;
    width: 0%;
    height: 0%;
    background-color: #f73b01; } }

@keyframes flameodd {
  0% {
    right: 0%;
    bottom: 0%;
    z-index: 1000000;
    width: 0%;
    height: 0%;
    background-color: #ffdc01; }
  25% {
    right: 1%;
    bottom: 2%;
    width: 100%;
    height: 100%; }
  40% {
    z-index: 1000000;
    background-color: #fdac01; }
  100% {
    right: 150%;
    bottom: 170%;
    z-index: -10;
    width: 0%;
    height: 0%;
    background-color: #f73b01; } }

@-webkit-keyframes flameeven {
  0% {
    right: 0%;
    bottom: 0%;
    z-index: 1000000;
    width: 0%;
    height: 0%;
    background-color: #ffdc01; }
  25% {
    right: 2%;
    bottom: 1%;
    width: 100%;
    height: 100%; }
  40% {
    z-index: 1000000;
    background-color: #fdac01; }
  100% {
    right: 170%;
    bottom: 150%;
    z-index: -10;
    width: 0%;
    height: 0%;
    background-color: #f73b01; } }

@keyframes flameeven {
  0% {
    right: 0%;
    bottom: 0%;
    z-index: 1000000;
    width: 0%;
    height: 0%;
    background-color: #ffdc01; }
  25% {
    right: 2%;
    bottom: 1%;
    width: 100%;
    height: 100%; }
  40% {
    z-index: 1000000;
    background-color: #fdac01; }
  100% {
    right: 170%;
    bottom: 150%;
    z-index: -10;
    width: 0%;
    height: 0%;
    background-color: #f73b01; } }

.rocket-animation__rocket-img {
  position: relative;
  z-index: 2; }

.fire {
  opacity: 0;
  transition: 1s opacity; }

.starting .fire {
  opacity: 1; }

.alert-success {
  width: 100%;
  text-align: center;
  color: #ffffff;
  background-color: #009640;
  border-color: #009640;
  margin-bottom: 0; }

.flash-message-outer-container {
  position: relative;
  z-index: 100000;
  background: #009640; }
  .flash-message-outer-container ~ .header {
    box-shadow: none; }

@media screen and (max-width: 650px) {
  .is-not-slider .service__col {
    flex: 0 0 100%;
    max-width: 100%; } }

.service__col {
  padding: 0 50px; }

@media screen and (max-width: 1000px) {
  .service__col {
    padding: 0 25px; } }

@media screen and (max-width: 650px) {
  .is-not-slider .service__col {
    margin-bottom: 40px;
    flex: 0 0 100%;
    max-width: 100%; }
  .services__image-container img {
    min-height: 40px;
    max-height: 20px; }
  .services__service {
    min-height: 80px; }
  .services__image-container {
    margin-bottom: 20px; } }

@media screen and (max-width: 550px) {
  .services__image-container img {
    min-height: auto;
    max-height: 30px; } }
