@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5,
h6, p, blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt,
dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, fieldset, a img {
  border: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
}

input[type="submit"],
button {
  cursor: pointer;
}

input[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

input, button {
  margin: 0;
  padding: 0;
  border: 0;
}

div, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none;
}

ul, ol {
  list-style-type: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

html {
  box-sizing: border-box;
}

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

.icon-burger {
  width: 1.25em;
  height: 1em;
  fill: initial;
}

.icon-calendar {
  width: 0.93em;
  height: 1em;
  fill: initial;
}

.icon-close {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-fb {
  width: 0.5em;
  height: 1em;
  fill: initial;
}

.icon-g {
  width: 1.5em;
  height: 1em;
  fill: initial;
}

.icon-in {
  width: 1.06em;
  height: 1em;
  fill: initial;
}

.icon-job-1 {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-job-2 {
  width: 0.89em;
  height: 1em;
  fill: initial;
}

.icon-job-3 {
  width: 0.82em;
  height: 1em;
  fill: initial;
}

.icon-quality-1 {
  width: 1.56em;
  height: 1em;
  fill: initial;
}

.icon-quality-2 {
  width: 1.1em;
  height: 1em;
  fill: initial;
}

.icon-quality-3 {
  width: 1.41em;
  height: 1em;
  fill: initial;
}

.icon-quality-4 {
  width: 1em;
  height: 1em;
  fill: initial;
}

.icon-time {
  width: 1em;
  height: 1em;
  fill: initial;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  animation-name: bounce;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -ms-transform-origin: top center;
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  animation-name: jello;
  -ms-transform-origin: center;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 200px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.3;
  min-width: 320px;
  font-size: 14px;
  color: #3b3b3b;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  background: none;
}

.center {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.center_small {
  max-width: 1066px;
}

.anchor {
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}

.header {
  position: relative;
  padding: 25px 0;
  box-shadow: 0 10px 20px rgba(50, 49, 49, 0.2);
  z-index: 10;
}

.header__center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  display: block;
  font-size: 0;
}

.header__pic {
  width: 191px;
}

.header__burger {
  display: none;
  width: 30px;
  margin-right: 50px;
  font-size: 0;
}

.header__burger .icon {
  font-size: 20px;
  fill: #4e2a72;
}

.header__burger .icon-close {
  display: none;
}

.header__burger.active .icon-burger {
  display: none;
}

.header__burger.active .icon-close {
  display: inline;
}

.nav, .nav__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.nav__item {
  margin-right: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #777;
  transition: color .2s;
}

.nav__item:last-child {
  margin-right: 0;
}

.nav__item:hover {
  color: #000;
}

.nav_big {
  display: block;
  min-height: 70px;
}

.nav_big .nav__container {
  width: 100%;
  padding: 25px 0;
  background: #533a7b;
  box-shadow: 0 10px 20px rgba(50, 49, 49, 0.2);
}

.nav_big .nav__item {
  color: #9b88b9;
}

.nav_big .nav__item:hover {
  color: #fff;
}

.nav_big.fixed .nav__container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.main {
  padding: 30px 0 25px;
  background-image: url("/img/landing/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.main__wrap {
  position: relative;
  max-width: 946px;
  margin: 0 auto;
  padding: 45px 195px;
  border-radius: 20px;
  /*background: rgba(255, 255, 255, 0.8) url("/img/landing/bg-main.png") no-repeat 0 0;
  box-shadow: 0 10px 20px rgba(50, 49, 49, 0.2);*/
}

.main__year {
  position: absolute;
  top: 30px;
  left: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 108px;
  height: 118px;
  background: url("/img/landing/ellipse.png") no-repeat 50% 50%/cover;
  font-size: 36px;
  font-weight: 500;
}

.main__top {
  margin-bottom: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid #777;
  text-align: center;
}

.main__logo {
  margin-bottom: 5px;
  text-align: center;
  font-size: 0;
}

.main__pic {
  max-width: 545px;
}

.main__title {
  font-size: 99px;
  font-weight: 500;
  line-height: 1;
}

.main__info {
  font-size: 63px;
  line-height: 1.05;
  color: #3b3b3b;
}

.main__bot {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 35px;
}

.main__left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.main__left .main__text {
  margin-right: 15px;
}

.main__right .main__text {
  font-weight: 500;
}

.text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #000;
}

.text__dot {
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: #3b3b3b;
}

.text__in {
  display: -ms-flexbox;
  display: flex;
}

.text__top {
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 5px;
  font-size: 12px;
}

.btn {
  display: inline-block;
  width: 310px;
  padding: 10px;
  border-radius: 25px;
  background-color: #06d680;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  transition: background .2s;
}

.btn_wide {
  width: 100%;
  max-width: 100%;
  box-shadow: 0 9px 20px rgba(59, 59, 59, 0.2);
}

.btn_small {
  width: 205px;
  padding: 13px 5px;
  font-size: 19px;
}

.btn:hover {
  background: #06e086;
}

.quality {
  padding: 75px 0 60px;
  background-image: url("/img/landing/bg-quality.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.quality__container {
  margin-bottom: 50px;
}

.quality__row {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

.quality__row:nth-child(2) {
  margin-top: -30px;
}

.quality__col {
  -ms-flex: 0 0 calc(50% - 30px);
  flex: 0 0 calc(50% - 30px);
  margin: 0 15px;
}

.quality__item {
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  border-radius: 15px;
  transition: box-shadow .2s;
}

.quality__item:hover {
  box-shadow: 0 20px 35px rgba(59, 59, 59, 0.15);
}

.quality__icon {
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  padding-top: 5px;
  text-align: center;
  font-size: 0;
}

.quality__name {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}

.quality__btns {
  text-align: center;
}

.quality .icon {
  font-size: 55px;
  fill: #9458d1;
}

.quality .icon-quality-1 {
  font-size: 50px;
}

.quality .icon-quality-4 {
  font-size: 60px;
}

.sponsor {
  position: relative;
  padding: 65px 0 60px;
}

.sponsor__list {
  max-width: 910px;
  margin: 0 auto;
}

.sponsor__container {
  margin-bottom: 20px;
}

.sponsor__top {
  margin-bottom: 45px;
}

.sponsor__top .sponsor__title {
  margin-bottom: 45px;
}

.sponsor__bot .sponsor__title {
  margin-bottom: 15px;
}

.sponsor__list {
  text-align: center;
}

.sponsor__top .sponsor__pic {
  margin: 0 50px 40px;
}

.sponsor__bot .sponsor__pic {
  width: 90px;
  margin: 0 45px 40px;
}

.sponsor__pic {
  vertical-align: middle;
}

.sponsor__other {
  margin-bottom: 65px;
  border-radius: 15px;
  box-shadow: 0 20px 35px rgba(59, 59, 59, 0.1);
}

.sponsor__head {
  padding: 19px 30px;
  border-radius: 15px 15px 0 0;
  background-color: #9458d1;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.sponsor__row {
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.sponsor__col {
  -ms-flex: 0 0 32%;
  flex: 0 0 32%;
  border-right: 1px solid #777;
  padding: 17px 30px 30px;
}

.sponsor__col:first-child {
  -ms-flex: 0 0 36%;
  flex: 0 0 36%;
}

.sponsor__col:last-child {
  border: none;
}

.sponsor__info {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.sponsor__info:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9458d1;
}

.sponsor__name {
  margin-bottom: 10px;
  font-weight: 500;
}

.sponsor__btns {
  text-align: center;
}

.title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.job {
  position: relative;
  padding: 60px 0 165px;
  background-image: url("/img/landing/bg-job.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.job__row {
  display: -ms-flexbox;
  display: flex;
}

.job__col {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.job__col:first-child {
  padding-top: 25px;
  padding-right: 40px;
}

.job__title {
  margin-bottom: 50px;
  text-align: left;
}

.job__item {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.job__item:last-child {
  margin-bottom: 0;
}

.job__item:last-child .job__text {
  font-weight: 400;
}

.job__icon {
  -ms-flex: 0 0 55px;
  flex: 0 0 55px;
  padding-top: 5px;
  text-align: center;
  font-size: 0;
}

.job__text {
  padding-left: 15px;
  font-size: 16px;
  font-weight: 500;
}

.job__link {
  display: block;
  width: 330px;
  margin-top: -130px;
  margin-left: 10px;
  padding: 12px;
  border: 1px solid #777;
  border-radius: 25px;
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  color: #777;
  transition: all .2s;
}

.job__link:hover {
  background: #06d680;
  border-color: white;
  color: white;
}

.job__preview {
  margin-left: -15px;
  font-size: 0;
}

.job__pic {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 35px rgba(59, 59, 59, 0.15);
}

.job .icon {
  fill: #9458d1;
}

.job .icon-job-1 {
  font-size: 42px;
}

.job .icon-job-2 {
  font-size: 46px;
}

.job .icon-job-3 {
  font-size: 52px;
}

.agenda {
  position: relative;
  padding: 70px 0 90px;
  background-image: url("/img/landing/bg-agenda.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.agenda__wrap {
  margin-bottom: 65px;
}

.agenda__title {
  margin-bottom: 45px;
}

.agenda__head {
  position: relative;
  padding: 0 20px;
  display: -ms-flexbox;
  display: flex;
  border-radius: 15px 15px 0 0;
  background: #9458d1;
  box-shadow: 0 20px 35px rgba(59, 59, 59, 0.1);
  z-index: 10;
}

.agenda__body {
  padding: 25px 20px 35px;
  border-radius: 0px 0px 15px 15px;
  background-color: #fff;
  box-shadow: 0 20px 35px rgba(59, 59, 59, 0.1);
}

.agenda__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.agenda__row:nth-child(2n) {
  background-color: #f9f9f9;
}

.agenda__row:last-child {
  border-bottom: 2px solid #f9f9f9;
}

.agenda__head .agenda__info,
.agenda__head .agenda__time {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.agenda__head .agenda__info {
  padding: 20px 20px 20px 30px;
}

.agenda__info {
  -ms-flex: 0 0 78%;
  flex: 0 0 78%;
  border-right: 2px solid #fff;
}

.agenda__text {
  font-weight: 400;
}

.agenda__time {
  -ms-flex: 0 0 22%;
  flex: 0 0 22%;
  padding: 0 10px 0 35px;
  font-size: 16px;
  font-weight: 500;
}

.agenda__info {
  padding: 9px 20px 8px 30px;
  font-size: 16px;
  font-weight: 500;
}

.agenda__speaker {
  position: relative;
}

.agenda__speaker:before {
  content: "";
  position: absolute;
  top: 7px;
  left: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9458d1;
}

.agenda__btns {
  text-align: center;
}

.footer__body {
  padding: 110px 0 45px;
}

.footer__center {
  display: -ms-flexbox;
  display: flex;
}

.footer__col {
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
  padding-right: 15px;
}

.footer__col:first-child {
  -ms-flex: 0 0 38%;
  flex: 0 0 38%;
}

.footer__col:last-child {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  padding-right: 0;
}

.footer__logo {
  display: block;
  margin-bottom: 20px;
  font-size: 0;
}

.footer__pic {
  width: 192px;
}

.footer__info {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.footer__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__link {
  margin-bottom: 3px;
  font-size: 16px;
  color: #777;
  transition: color .2s;
}

.footer__link:hover {
  color: #373737;
}

.footer__link:last-child {
  margin-bottom: 0;
}

.footer__bot {
  padding: 10px 0;
  background: #f9f9f9;
}

.footer__bot .footer__center {
  -ms-flex-align: center;
  align-items: center;
}

.footer__copyright {
  margin-right: 35px;
  color: #777;
}

.footer__links {
  display: -ms-flexbox;
  display: flex;
}

.footer__item {
  padding: 0 5px;
  border-right: 1px solid #777;
  font-size: 14px;
  color: #777;
  transition: color .2s;
}

.footer__item:hover {
  color: #444444;
}

.footer__item:last-child {
  border: none;
}

.footer__social {
  margin-left: auto;
}

.social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
}

.social__link {
  margin-right: 25px;
}

.social__link:last-child {
  margin-right: 0;
}

.social__link:hover .icon {
  fill: #9458d1;
}

.social .icon {
  font-size: 20px;
  fill: #cdcdd0;
  transition: fill .2s;
}

.social .icon-fb {
  font-size: 24px;
}

.map {
  position: relative;
}

.map__wrap {
  width: 100%;
  height: 550px;
}

.infobox {
  overflow: visible !important;
}

.baloon {
  position: relative;
  width: 10px;
  height: 10px;
}

.baloon__wrap {
  position: absolute;
  top: -240px;
  left: -44px;
  width: 320px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 20px 35px rgba(59, 59, 59, 0.1);
  background-color: #fff;
}

.baloon__wrap:before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 12.5px 0 12.5px;
  border-color: #fff transparent transparent transparent;
}

.baloon__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #000;
}

.baloon__body {
  padding-left: 10px;
}

.baloon__logo {
  margin-right: 20px;
}

.baloon__title {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.baloon__info {
  margin-bottom: 15px;
  font-size: 18px;
}

.baloon__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.baloon__item:last-child {
  margin-bottom: 0;
}

.baloon__icon {
  margin-right: 10px;
  font-size: 0;
}

.baloon__text {
  font-size: 18px;
}

.baloon .icon {
  font-size: 20px;
  fill: #9458d1;
}

@media only screen and (max-width: 1199px){
  .quality{
    background-position: 70% 0;
  }
}

@media only screen and (max-width: 1023px){
  .center{
    padding: 0 20px;
  }
  .anchor{
    top: 0;
  }
  .header__center{
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .header__nav{
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px 15px 40px;
    background: #fff;
  }
  .header__nav.visible{
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav .nav__item{
    margin: 0 0 25px 0;
  }
  .header__nav .nav__item:last-child{
    margin: 0;
  }
  .header__burger{
    display: inline-block;
  }
  .nav_big{
    display: none;
  }
  .main__wrap{
    padding: 45px 70px;
  }
  .main__year{
    position: relative;
    top: auto;
    left: auto;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: auto;
    height: auto;
    margin-bottom: 10px;
    background: none;
  }
  .quality{
    background-position: 40% 0;
  }
  .quality__row:nth-child(2){
    margin-top: 0;
  }
  .quality__item{
    padding: 20px 0;
  }
  .quality__icon{
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    margin-right: 10px;
  }
  .sponsor__top .sponsor__pic{
    margin: 0 20px 30px;
  }
  .sponsor__bot .sponsor__pic{
    margin: 0 25px 30px;
  }
  .sponsor__head{
    padding: 20px;
  }
  .sponsor__col{
    padding: 15px 20px 20px;
  }
  .job{
    padding: 60px 0 80px;
  }
  .job__row{
    margin-bottom: 50px;
  }
  .job__link{
    margin: 0 auto;
  }
  .job__preview{
    margin-left: 0;
    text-align: center;
  }
  .agenda__info{
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }
  .agenda__time{
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }
  .footer__body{
    padding: 70px 0 45px;
  }
}

@media only screen and (max-width: 767px){
  .center{
    padding: 0 5px;
  }
  .header{
    padding: 20px 5px;
  }
  .header__nav{
    top: 62px;
    padding: 20px 15px 30px;
  }
  .header__burger{
    margin-right: 25px;
  }
  .header__burger .icon{
    font-size: 14px;
  }
  .main{
    padding: 25px 0 45px;
  }
  .main__wrap{
    padding: 20px 15px 50px;
    background: rgba(255, 255, 255, 0.8) url("/img/landing/bg-main.png") no-repeat -35px -20px;
  }
  .main__year{
    font-size: 19px;
  }
  .main__top{
    margin-bottom: 20px;
    padding-bottom: 19px;
  }
  .main__pic{
    max-width: auto;
    width: 260px;
  }
  .main__title{
    margin-bottom: 5px;
    font-size: 48px;
  }
  .main__info{
    font-size: 31px;
  }
  .main__bot{
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 5px;
  }
  .main__left{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .main__left .main__text{
    margin-right: 10px;
  }
  .quality{
    padding: 60px 0 40px;
  }
  .quality__container{
    margin-bottom: 45px;
  }
  .quality__row{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
  }
  .quality__col{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 10px 0;
  }
  .quality__item{
    padding: 20px 10px 25px;
    border-radius: 15px;
    box-shadow: 10px 17.3px 35px rgba(59, 59, 59, 0.15);
  }
  .quality__item:hover{
    box-shadow: 10px 17.3px 35px rgba(59, 59, 59, 0.15);
  }
  .quality__icon{
    padding-top: 10px;
  }
  .sponsor{
    padding: 55px 0 60px;
  }
  .sponsor__container{
    margin-bottom: 60px;
  }
  .sponsor__top{
    margin-bottom: 90px;
  }
  .sponsor__top .sponsor__pic{
    display: block;
    margin: 0 auto 40px;
  }
  .sponsor__top .sponsor__pic:nth-child(2){
    margin-bottom: 80px;
  }
  .sponsor__top .sponsor__pic:last-child{
    margin-bottom: 0;
  }
  .sponsor__bot .sponsor__pic{
    margin: 0 25px;
  }
  .sponsor__bot .sponsor__pic:nth-child(n+4){
    /*display: none;*/
    margin-top:6px;
  }
  .sponsor__other{
    margin-bottom: 40px;
  }
  .sponsor__head{
    padding: 10px 10px 10px 30px;
    line-height: 1.1;
  }
  .sponsor__row{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 35px 0 30px;
  }
  .sponsor__col{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0 10px;
    margin-bottom: 25px;
    border: none;
  }
  .sponsor__col:first-child{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sponsor__col:last-child{
    margin-bottom: 0;
  }
  .sponsor__text{
    line-height: 1.4;
  }
  .job{
    padding: 37px 0 35px;
    background-position: 50% 0;
  }
  .job__row{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .job__col{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .job__col:first-child{
    margin-bottom: 40px;
    padding: 0;
  }
  .job__title{
    text-align: center;
  }
  .job__list{
    padding-left: 25px;
  }
  .job__link{
    width: 100%;
  }
  .agenda{
    padding: 30px 0 40px;
    background-position: 60% 0;
  }
  .agenda__wrap{
    margin-bottom: 35px;
  }
  .agenda__title{
    margin-bottom: 30px;
  }
  .agenda__head{
    display: none;
  }
  .agenda__body{
    padding: 35px 5px 15px;
    border-radius: 15px;
    box-shadow: 10px 17.3px 35px rgba(59, 59, 59, 0.1);
  }
  .agenda__row{
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 7px 0;
  }
  .agenda__row:last-child{
    border: none;
  }
  .agenda__info{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    border: none;
  }
  .agenda__time{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0 10px 0 25px;
  }
  .agenda__info{
    margin-bottom: 5px;
    padding: 0 10px 0 25px;
  }
  .footer__body{
    padding: 60px 0 65px;
  }
  .footer__center{
    padding: 0 15px;
  }
  .footer__col{
    padding: 0;
  }
  .footer__col:first-child{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .footer__col:nth-child(n+2){
    display: none;
  }
  .footer__logo{
    margin-bottom: 30px;
  }
  .footer__bot{
    padding: 20px 0;
  }
  .footer__bot .footer__center{
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__copyright{
    margin: 0 0 5px 0;
  }
  .footer__links{
    margin: 0 auto;
  }
  .footer__social{
    margin: 0 0 25px 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .footer__btn{
    width: 100%;
  }
  .baloon__wrap{
    width: 300px;
    padding: 20px 15px;
  }
}

@media only screen and (max-width: 474px){
  .sponsor__bot .sponsor__pic{
    margin: 0 3px;
  }
}

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