@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  75% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); } }
@-moz-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  75% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); } }
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  75% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); } }
@keyframes zoomIn {
  0% {
    transform-origin: 0 0;
    transform: translate(0, 0) scale(0, 0);
    opacity: 0; }
  100% {
    transform-origin: 0 0;
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
    width: 100%;
    height: 100%; } }
@keyframes zoomOut {
  0% {
    transform-origin: 0 0;
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
    width: 100%;
    height: 100%; }
  100% {
    transform-origin: 0 0;
    transform: translate(0, 0) scale(0, 0);
    opacity: 0;
    display: none; } }
@keyframes zoomInConfigurator {
  0% {
    transform-origin: 100% 0;
    transform: translate(0, 0) scale(0, 0);
    opacity: 0; }
  100% {
    transform-origin: 100% 0;
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
    width: 100%;
    height: 100%; } }
@keyframes zoomOutConfigurator {
  0% {
    transform-origin: 100% 0;
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
    width: 100%;
    height: 100%; }
  100% {
    transform-origin: 100% 0;
    transform: translate(0, 0) scale(0, 0);
    opacity: 0;
    display: none; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
* {
  margin: 0px;
  border: 0px;
  padding: 0px; }

a {
  text-decoration: none; }

html, body {
  width: 100%;
  height: 100%; }

:root {
  font-family: "Fira Sans", sans-serif; }

div,
label,
p, strong,
h1, h2, h3, h5 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased; }

div,
input,
label,
button,
form,
nav, ul, li, li > a, li span,
section,
article,
figure,
figcaption,
fieldset,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input,
button {
  outline: 0px none;
  box-shadow: none; }

input[type="submit"] {
  -webkit-appearance: none; }

button {
  display: block;
  cursor: pointer;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

button.loading {
  color: rgba(255, 255, 255, 0.01) !important;
  position: relative; }
  button.loading:after {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 50%;
    top: 50%;
    margin: -12px 0px 0px -12px;
    background: url("../img/spinner.png") 50% 50% no-repeat;
    background-size: 24px auto;
    animation: loading 1.2s 0s infinite step-end; }
  button.loading:hover {
    pointer-events: none !important; }

div.top_wrapper {
  position: relative;
  width: 100%;
  height: 100%; }
  @media only screen and (min-width: 1260px) {
    div.top_wrapper {
      min-width: 1260px; } }

.blur {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

@media only screen and (min-width: 0px) and (max-width: 575px) {
  .header {
    width: 100%;
    height: 50px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header {
    width: 100%;
    height: 50px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header {
    width: 100%;
    height: 50px; } }
@media only screen and (min-width: 992px) and (max-width: 1259px) {
  .header {
    width: 100%;
    height: 100px; } }
@media only screen and (min-width: 1260px) {
  .header {
    width: 100%;
    height: 100px; } }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  border-bottom: 2px solid #f7e821; }
  @media only screen and (min-width: 0px) and (max-width: 575px) {
    .menu {
      height: 50px; }
      .menu_nav-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: transparent; }
      .menu_tel-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        width: 50px;
        height: 50px; }
        .menu_tel-btn svg {
          max-width: 20px;
          max-height: 20px;
          fill: #334472; }
      .menu .logo a,
      .menu .logo span {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        height: 50px; }
        .menu .logo a img,
        .menu .logo span img {
          max-height: 26px; }
      .menu_list, .menu_tel {
        display: none; }
      .menu_wrp {
        height: 50px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .menu {
      height: 50px; }
      .menu_nav-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: transparent; }
      .menu_tel-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        width: 50px;
        height: 50px; }
        .menu_tel-btn svg {
          max-width: 20px;
          max-height: 20px;
          fill: #334472; }
      .menu .logo a,
      .menu .logo span {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        height: 50px; }
        .menu .logo a img,
        .menu .logo span img {
          max-height: 26px; }
      .menu_list, .menu_tel {
        display: none; }
      .menu_wrp {
        height: 50px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu {
      height: 50px; }
      .menu_nav-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: transparent; }
      .menu_tel-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        width: 50px;
        height: 50px; }
        .menu_tel-btn svg {
          max-width: 20px;
          max-height: 20px;
          fill: #334472; }
      .menu .logo a,
      .menu .logo span {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center;
        height: 50px; }
        .menu .logo a img,
        .menu .logo span img {
          max-height: 26px; }
      .menu_list, .menu_tel {
        display: none; }
      .menu_wrp {
        height: 50px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
    .menu {
      height: 100px; }
      .menu.fixed {
        border-bottom: 2px solid #f7e821; }
      .menu_nav-btn-block {
        display: none; }
      .menu_tel {
        display: none; }
        .menu_tel-btn {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          justify-content: center;
          -webkit-align-content: center;
          align-content: center;
          align-items: center;
          width: 50px;
          height: 50px; }
          .menu_tel-btn svg {
            max-width: 20px;
            max-height: 20px;
            fill: #334472; }
      .menu .new_project_btn {
        width: 180px;
        height: 40px;
        float: left;
        margin-top: 30px;
        background-color: #f7e821;
        font: 400 14px/40px "Fira Sans", sans-serif;
        color: #434343;
        border-radius: 20px;
        -webkit-transition: background-color 0.25s ease;
        -moz-transition: background-color 0.25s ease;
        -o-transition: background-color 0.25s ease;
        transition: background-color 0.25s ease; } }
    @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
      .menu .new_project_btn {
        width: 165px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
        .menu .new_project_btn:hover {
          background-color: #fffc00; }
      .menu a.new_project_btn {
        display: block;
        text-align: center;
        cursor: pointer; }
      .menu_wrp {
        position: relative;
        width: 100%;
        height: 100px;
        padding: 0px 10px;
        margin: 0px auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; } }
    @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
      .menu_wrp {
        width: 980px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
        .menu_wrp .logo {
          width: 180px;
          height: 100%;
          padding-top: 35px; } }
      @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
        .menu_wrp .logo {
          width: 170px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
          .menu_wrp .logo img {
            width: 180px; } }
        @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
          .menu_wrp .logo img {
            width: 160px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
          .menu_wrp .logo a {
            display: block;
            width: 180px;
            height: 42px;
            font-size: 0;
            cursor: pointer; }
        .menu_wrp ul {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          justify-content: space-between;
          -webkit-align-content: flex-start;
          align-content: flex-start;
          height: 100%;
          padding-right: 0px; } }
      @media only screen and (min-width: 992px) and (max-width: 1259px) and (min-width: 0px) and (max-width: 575px) {
        .menu_wrp ul {
          display: none; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
          .menu_wrp ul li {
            display: block;
            white-space: nowrap;
            list-style: none;
            font: 400 17px/100px "Fira Sans", sans-serif; } }
        @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
          .menu_wrp ul li {
            font-size: 14px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
            .menu_wrp ul li a {
              display: block;
              height: 100%;
              color: #939393;
              cursor: pointer;
              padding: 0px 15px;
              -webkit-transition: color 0.2s ease;
              -moz-transition: color 0.2s ease;
              -o-transition: color 0.2s ease;
              transition: color 0.2s ease; } }
          @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
            .menu_wrp ul li a {
              padding: 0px 7px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
              .menu_wrp ul li a:hover {
                color: #434343; }
            .menu_wrp ul li.current {
              padding: 0px 15px; } }
          @media only screen and (min-width: 992px) and (max-width: 1259px) and (max-width: 1020px) {
            .menu_wrp ul li.current {
              padding: 0px 7px; } }
  @media only screen and (min-width: 992px) and (max-width: 1259px) {
        .menu_wrp_right {
          width: auto;
          height: 100%; }
        .menu_wrp .new_project_btn {
          width: 180px;
          height: 40px;
          float: left;
          margin-top: 30px;
          background-color: #f7e821;
          font: 400 14px/40px "Fira Sans", sans-serif;
          color: #434343;
          border-radius: 20px;
          -webkit-transition: background-color 0.25s ease;
          -moz-transition: background-color 0.25s ease;
          -o-transition: background-color 0.25s ease;
          transition: background-color 0.25s ease; }
          .menu_wrp .new_project_btn:hover {
            background-color: #fffc00; }
        .menu_wrp a.new_project_btn {
          display: block;
          text-align: center;
          cursor: pointer; }
      .menu_right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        -webkit-align-content: center;
        align-content: center;
        align-items: center; } }
  @media only screen and (min-width: 1260px) {
    .menu {
      height: 100px; }
      .menu.fixed {
        border-bottom: 2px solid #f7e821; }
      .menu_nav-btn-block {
        display: none; }
      .menu_tel {
        width: 200px;
        height: 100%;
        float: left;
        font: 700 25px/100px "Fira Sans", sans-serif;
        color: #334472;
        cursor: pointer;
        white-space: nowrap; } }
    @media only screen and (min-width: 1260px) and (max-width: 1020px) {
      .menu_tel {
        font-size: 20px;
        width: auto;
        padding-right: 5px; } }
  @media only screen and (min-width: 1260px) {
        .menu_tel-btn {
          display: none; }
      .menu .new_project_btn {
        width: 180px;
        height: 40px;
        float: left;
        margin-top: 30px;
        background-color: #f7e821;
        font: 400 14px/40px "Fira Sans", sans-serif;
        color: #434343;
        border-radius: 20px;
        -webkit-transition: background-color 0.25s ease;
        -moz-transition: background-color 0.25s ease;
        -o-transition: background-color 0.25s ease;
        transition: background-color 0.25s ease; } }
    @media only screen and (min-width: 1260px) and (max-width: 1020px) {
      .menu .new_project_btn {
        width: 165px; } }
  @media only screen and (min-width: 1260px) {
        .menu .new_project_btn:hover {
          background-color: #fffc00; }
      .menu a.new_project_btn {
        display: block;
        text-align: center;
        cursor: pointer; }
      .menu_wrp {
        position: relative;
        width: 1260px;
        height: 100px;
        padding: 0px 10px;
        margin: 0px auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; } }
    @media only screen and (min-width: 1260px) and (max-width: 1020px) {
      .menu_wrp {
        width: 980px; } }
  @media only screen and (min-width: 1260px) {
        .menu_wrp .logo {
          width: 180px;
          height: 100%;
          padding-top: 35px; } }
      @media only screen and (min-width: 1260px) and (max-width: 1020px) {
        .menu_wrp .logo {
          width: 170px; } }
  @media only screen and (min-width: 1260px) {
          .menu_wrp .logo img {
            width: 180px; } }
        @media only screen and (min-width: 1260px) and (max-width: 1020px) {
          .menu_wrp .logo img {
            width: 160px; } }
  @media only screen and (min-width: 1260px) {
          .menu_wrp .logo a {
            display: block;
            width: 154px;
            height: 42px;
            font-size: 0;
            cursor: pointer; }
        .menu_wrp ul {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          justify-content: space-between;
          -webkit-align-content: flex-start;
          align-content: flex-start;
          height: 100%;
          padding-right: 0px; } }
      @media only screen and (min-width: 1260px) and (min-width: 0px) and (max-width: 575px) {
        .menu_wrp ul {
          display: none; } }
  @media only screen and (min-width: 1260px) {
          .menu_wrp ul li {
            display: block;
            white-space: nowrap;
            list-style: none;
            font: 400 17px/100px "Fira Sans", sans-serif; } }
        @media only screen and (min-width: 1260px) and (max-width: 1020px) {
          .menu_wrp ul li {
            font-size: 14px; } }
  @media only screen and (min-width: 1260px) {
            .menu_wrp ul li a {
              display: block;
              height: 100%;
              color: #939393;
              cursor: pointer;
              padding: 0px 15px;
              -webkit-transition: color 0.2s ease;
              -moz-transition: color 0.2s ease;
              -o-transition: color 0.2s ease;
              transition: color 0.2s ease; } }
          @media only screen and (min-width: 1260px) and (max-width: 1020px) {
            .menu_wrp ul li a {
              padding: 0px 7px; } }
  @media only screen and (min-width: 1260px) {
              .menu_wrp ul li a:hover {
                color: #434343; }
            .menu_wrp ul li.current {
              padding: 0px 15px; } }
          @media only screen and (min-width: 1260px) and (max-width: 1020px) {
            .menu_wrp ul li.current {
              padding: 0px 7px; } }
  @media only screen and (min-width: 1260px) {
        .menu_wrp_right {
          width: auto;
          height: 100%; }
        .menu_wrp .new_project_btn {
          width: 180px;
          height: 40px;
          float: left;
          margin-top: 30px;
          background-color: #f7e821;
          font: 400 14px/40px "Fira Sans", sans-serif;
          color: #434343;
          border-radius: 20px;
          -webkit-transition: background-color 0.25s ease;
          -moz-transition: background-color 0.25s ease;
          -o-transition: background-color 0.25s ease;
          transition: background-color 0.25s ease; }
          .menu_wrp .new_project_btn:hover {
            background-color: #fffc00; }
        .menu_wrp a.new_project_btn {
          display: block;
          text-align: center;
          cursor: pointer; } }
  .menu.fixed {
    border-bottom: 2px solid #f7e821; }

.zoomIn {
  animation-name: zoomIn; }

.zoomOut {
  animation-name: zoomOut; }

.zoomInConfigurator {
  animation-name: zoomInConfigurator; }

.zoomOutConfigurator {
  animation-name: zoomOutConfigurator; }

.fadeIn {
  animation-name: fadeIn; }

.fadeOut {
  animation-name: fadeOut; }

.burger-box {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 20px;
  height: 20px; }
.burger-inner {
  background-color: #334472;
  position: absolute;
  width: 20px;
  height: 4px;
  top: 10px;
  display: block;
  margin-top: -2px; }
  .burger-inner:after, .burger-inner:before {
    display: block;
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #334472; }
  .burger-inner:after {
    bottom: -8px; }
  .burger-inner:before {
    top: -8px; }

.content {
  width: 100%;
  min-height: -webkit-calc(100% - 480px);
  min-height: -moz-calc(100% - 480px);
  min-height: calc(100% - 480px); }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.footer--display-none {
  display: none; }
.footer--mobile {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: auto; }
  .footer--mobile > div {
    width: 100%;
    float: none; }
  .footer--mobile .footer_content {
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; }
    .footer--mobile .footer_content_column {
      width: 50%; }
    .footer--mobile .footer_content_title {
      display: none; }
  .footer--mobile .footer_menu {
    display: block;
    width: 100%;
    padding-right: 10px; }
    .footer--mobile .footer_menu li {
      display: block;
      width: 100%;
      list-style: none;
      font: 400 14px/2.143 Arial;
      color: #434343; }
      .footer--mobile .footer_menu li a {
        display: block;
        width: 100%;
        cursor: pointer;
        color: #939393;
        -webkit-transition: color 0.2s ease;
        -moz-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease; }
        .footer--mobile .footer_menu li a:hover {
          color: #434343; }
  .footer--mobile .footer_contact {
    width: 100%;
    height: 30px;
    padding-left: 50px;
    font: 400 14px/30px Arial;
    color: #434343; }
    .footer--mobile .footer_contact a {
      color: #434343; }
      .footer--mobile .footer_contact a:hover {
        text-decoration: underline; }
    .footer--mobile .footer_contact.phone {
      margin-bottom: 30px;
      background: url(../img/footer_phone.png) left no-repeat;
      background-size: auto 27px; }
    .footer--mobile .footer_contact.email {
      margin-bottom: 51px;
      background: url(../img/footer_email.png) left no-repeat;
      background-size: auto 20px; }
  .footer--mobile .footer_follow--display-none {
    display: none; }
  .footer--mobile .footer_follow_label {
    width: 53%;
    max-width: 90px;
    height: 30px;
    padding-top: 9px;
    font: 400 12px/30px Arial;
    color: #434343;
    float: left; }
  .footer--mobile .footer_follow_link {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    cursor: pointer;
    float: left;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease; }
    .footer--mobile .footer_follow_link:hover {
      opacity: .7; }
    .footer--mobile .footer_follow_link.fb {
      background: url(../img/icon_fb.png) center no-repeat;
      background-size: 30px 30px; }
    .footer--mobile .footer_follow_link.ig {
      background: url(../img/icon_ig.png) center no-repeat;
      background-size: 30px 30px; }
    .footer--mobile .footer_follow_link.vk {
      background: url(../img/icon_vk.png) center no-repeat;
      background-size: 30px 30px; }
    .footer--mobile .footer_follow_link.tw {
      background: url(../img/icon_tw.png) center no-repeat;
      background-size: 30px 30px; }
    .footer--mobile .footer_follow_link.tg {
      background: url(../img/icon_tg.png) center no-repeat;
      background-size: 30px 30px; }
    .footer--mobile .footer_follow_link.wa {
      background: url(../img/icon_wa.png) center no-repeat;
      background-size: 30px 30px; }
    .footer--mobile .footer_follow_link:last-child {
      margin-right: 0px; }
  .footer--mobile .footer_left {
    background-color: #334472; }
    .footer--mobile .footer_left .footer_content {
      display: flex;
      flex-direction: column; }
      @media only screen and (min-width: 0px) and (max-width: 575px) {
        .footer--mobile .footer_left .footer_content {
          padding: 30px 15px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .footer--mobile .footer_left .footer_content {
          padding: 30px 15px; } }
      .footer--mobile .footer_left .footer_content_top {
        width: 100%;
        height: 21px;
        margin-bottom: 22px; }
        .footer--mobile .footer_left .footer_content_top .logo_f {
          width: 100%;
          height: 21px;
          display: flex;
          flex-direction: row;
          justify-content: center; }
          .footer--mobile .footer_left .footer_content_top .logo_f img {
            width: 127px;
            height: 21px; }
        .footer--mobile .footer_left .footer_content_top .copyright {
          display: none; }
      .footer--mobile .footer_left .footer_content_text {
        display: none; }
      .footer--mobile .footer_left .footer_content_info {
        width: 100%; }
        .footer--mobile .footer_left .footer_content_info .f_info {
          position: relative;
          width: 50%;
          float: left;
          margin-bottom: 20px;
          padding-left: 40px;
          font: 400 14px/20px Arial;
          color: #fff; }
          .footer--mobile .footer_left .footer_content_info .f_info.addr {
            width: 100%; }
          .footer--mobile .footer_left .footer_content_info .f_info:before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 10px;
            height: 10px;
            background-color: #f7e821;
            border: 5px solid #5f5f5f;
            border-radius: 50%;
            box-sizing: content-box; }
          .footer--mobile .footer_left .footer_content_info .f_info a {
            color: #fff; }
  .footer--mobile .footer_right {
    background-color: #e3e3e3; }
    .footer--mobile .footer_right .footer_content {
      float: left; }
@media only screen and (min-width: 1260px) {
  .footer--desktop {
    display: block;
    width: 100%;
    height: 380px; }
    .footer--desktop > div {
      width: 50%;
      height: 100%;
      float: left; } }

@media only screen and (max-width: 340px) {
  .footer--mobile .footer_contact {
    padding-left: 40px; } }
@media only screen and (min-width: 1260px) {
  .footer--desktop .footer_content {
    width: 590px;
    height: 100%;
    padding-top: 55px; }
    .footer--desktop .footer_content_column {
      width: 50%;
      float: left;
      padding-left: 40px; }
    .footer--desktop .footer_content_title {
      font: 500 16px/18px "Fira Sans", sans-serif;
      color: #434343;
      padding-bottom: 24px; }
  .footer--desktop .footer_menu {
    display: block;
    width: 60%; }
    .footer--desktop .footer_menu li {
      display: block;
      width: 100%;
      list-style: none;
      font: 400 14px/27px Arial;
      color: #434343; }
      .footer--desktop .footer_menu li a {
        display: block;
        width: 100%;
        cursor: pointer;
        color: #939393;
        -webkit-transition: color 0.2s ease;
        -moz-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease; }
        .footer--desktop .footer_menu li a:hover {
          color: #434343; }
  .footer--desktop .footer_contact {
    width: 100%;
    height: 30px;
    padding-left: 50px;
    font: 400 14px/30px Arial;
    color: #434343; }
    .footer--desktop .footer_contact a {
      color: #434343; }
      .footer--desktop .footer_contact a:hover {
        text-decoration: underline; }
    .footer--desktop .footer_contact.phone {
      margin-top: 24px;
      margin-bottom: 28px;
      background: url(../img/footer_phone.png) left no-repeat;
      background-size: auto 27px; }
    .footer--desktop .footer_contact.email {
      margin-bottom: 24px;
      background: url(../img/footer_email.png) left no-repeat;
      background-size: auto 20px; }
  .footer--desktop .footer_follow {
    width: 100%;
    height: 30px;
    margin-bottom: 10px; }
    .footer--desktop .footer_follow_label {
      width: 110px;
      font: 400 12px/30px Arial;
      color: #434343;
      float: left; }
    .footer--desktop .footer_follow_link {
      display: block;
      width: 30px;
      height: 30px;
      margin-right: 8px;
      cursor: pointer;
      float: left;
      -webkit-transition: opacity 0.2s ease;
      -moz-transition: opacity 0.2s ease;
      -o-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease; }
      .footer--desktop .footer_follow_link:hover {
        opacity: .7; }
      .footer--desktop .footer_follow_link.fb {
        background: url(../img/icon_fb.png) center no-repeat;
        background-size: 30px 30px; }
      .footer--desktop .footer_follow_link.ig {
        background: url(../img/icon_ig.png) center no-repeat;
        background-size: 30px 30px; }
      .footer--desktop .footer_follow_link.vk {
        background: url(../img/icon_vk.png) center no-repeat;
        background-size: 30px 30px; }
      .footer--desktop .footer_follow_link.tw {
        background: url(../img/icon_tw.png) center no-repeat;
        background-size: 30px 30px; }
      .footer--desktop .footer_follow_link.tg {
        background: url(../img/icon_tg.png) center no-repeat;
        background-size: 30px 30px; }
      .footer--desktop .footer_follow_link.wa {
        background: url(../img/icon_wa.png) center no-repeat;
        background-size: 30px 30px; }
      .footer--desktop .footer_follow_link:last-child {
        margin-right: 0px; }
  .footer--desktop .footer_left {
    background-color: #334472; }
    .footer--desktop .footer_left .footer_content {
      float: right;
      padding-right: 20px; }
      .footer--desktop .footer_left .footer_content_top {
        width: 100%;
        height: 21px;
        margin-bottom: 22px; }
        .footer--desktop .footer_left .footer_content_top .logo_f {
          width: 127px;
          height: 21px;
          float: left; }
          .footer--desktop .footer_left .footer_content_top .logo_f img {
            width: 100%;
            height: 100%; }
        .footer--desktop .footer_left .footer_content_top .copyright {
          width: 260px;
          float: right;
          font: 400 14px/21px Arial;
          color: #fff; }
      .footer--desktop .footer_left .footer_content_text {
        font: 400 14px/22px Arial;
        color: #fff;
        margin-bottom: 44px; }
      .footer--desktop .footer_left .footer_content_info {
        width: 100%; }
        .footer--desktop .footer_left .footer_content_info .f_info {
          position: relative;
          width: 50%;
          height: 20px;
          float: left;
          margin-bottom: 20px;
          padding-left: 40px;
          font: 400 14px/20px Arial;
          color: #fff; }
          .footer--desktop .footer_left .footer_content_info .f_info.addr {
            width: 100%; }
          .footer--desktop .footer_left .footer_content_info .f_info:before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 10px;
            height: 10px;
            background-color: #f7e821;
            border: 5px solid #5f5f5f;
            border-radius: 50%; }
          .footer--desktop .footer_left .footer_content_info .f_info a {
            color: #fff; }
  .footer--desktop .footer_right {
    background-color: #e3e3e3; }
    .footer--desktop .footer_right .footer_content {
      float: left; } }
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: auto;
  background-color: white; }
  .modal-content {
    background-color: #fefefe;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .modal-content-wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: column nowrap;
      -moz-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      justify-content: space-between;
      -webkit-align-content: center;
      align-content: center;
      height: calc(100% - 48px);
      padding: 0 15px 40px; }
  .modal-logo {
    width: 165px;
    height: 100%; }
    .modal-logo-wrap {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      -webkit-align-content: center;
      align-content: center;
      align-items: center; }
    .modal-logo-img {
      width: 165px; }
    .modal-logo a {
      display: block;
      width: 154px;
      height: 42px;
      font-size: 0;
      cursor: pointer; }
  .modal-title {
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
    color: #334472; }
  .modal-list {
    width: 165px;
    margin: 0 auto; }
    .modal-list-item {
      margin: 0;
      padding: 0;
      list-style: none;
      color: #939393; }
      .modal-list-item + .modal-list-item {
        margin-top: 36px; }
      .modal-list-item-link {
        font-size: 16px;
        color: #434343;
        line-height: 1.05; }
        .modal-list-item-link:hover, .modal-list-item-link:focus, .modal-list-item-link:active {
          color: #f6e509; }
      .modal-list-item.current {
        position: relative; }
        .modal-list-item.current:before {
          content: "";
          position: absolute;
          top: 5px;
          left: -20px;
          width: 10px;
          height: 10px;
          background-color: #f7e821;
          border-radius: 50%; }
  .modal.zoomIn {
    width: 100%;
    height: 100%;
    animation-duration: .1s; }
    .modal.zoomIn .modal-content {
      animation-delay: .2s;
      transition: all .2s ease-in;
      animation-duration: .2s;
      animation-fill-mode: forwards;
      animation-name: fadeIn; }
  .modal.zoomOut {
    width: 0;
    height: 0;
    animation-duration: .1s; }
    .modal.zoomOut .modal-content {
      animation-delay: .2s;
      transition: all .2s ease-in;
      animation-duration: .2s;
      animation-fill-mode: forwards;
      animation-name: fadeOut; }
  .modal.zoomInConfigurator {
    width: 100%;
    height: 100%;
    animation-duration: .1s; }
    .modal.zoomInConfigurator .modal-content {
      animation-delay: .2s;
      transition: all .2s ease-in;
      animation-duration: .2s;
      animation-fill-mode: forwards;
      animation-name: fadeIn; }
  .modal.zoomOutConfigurator {
    width: 0;
    height: 0;
    animation-duration: .1s; }
    .modal.zoomOutConfigurator .modal-content {
      animation-delay: .2s;
      transition: all .2s ease-in;
      animation-duration: .2s;
      animation-fill-mode: forwards;
      animation-name: fadeOut; }
  .modal#mainNavigationModal .modal-content-wrap {
    justify-content: space-around; }

.configurator-btn {
  width: 165px;
  height: 50px;
  margin: 0 auto;
  font-size: 16px;
  background-color: #f7e821;
  color: #434343;
  border-radius: 25px;
  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease; }
  .configurator-btn:hover {
    background-color: #fffc00; }
  .configurator-btn:disabled {
    cursor: default;
    background-color: #e3e3e3;
    color: #fff; }
  .configurator-btn-block {
    width: 100%; }

.mainNavigationModalClose,
.configuratorModalClose {
  color: #334472;
  display: block;
  padding: 15px;
  font-size: 28px;
  line-height: 18px;
  font-weight: bold; }
  .mainNavigationModalClose:hover, .mainNavigationModalClose:focus,
  .configuratorModalClose:hover,
  .configuratorModalClose:focus {
    color: #232f4f;
    text-decoration: none;
    cursor: pointer; }

.top_wrapper--desktop {
  min-width: 1260px; }
  .top_wrapper--desktop .header {
    width: 100%;
    height: 100px; }
    .top_wrapper--desktop .header .menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #fff;
      z-index: 1000;
      border-bottom: 2px solid #f7e821;
      height: 100px; }
      .top_wrapper--desktop .header .menu.fixed {
        border-bottom: 2px solid #f7e821; }
      .top_wrapper--desktop .header .menu_nav-btn-block {
        display: none; }
      .top_wrapper--desktop .header .menu_tel {
        display: block;
        width: 200px;
        height: 100%;
        float: left;
        font: 700 25px/100px "Fira Sans", sans-serif;
        color: #334472;
        cursor: pointer;
        white-space: nowrap; }
        @media only screen and (max-width: 1020px) {
          .top_wrapper--desktop .header .menu_tel {
            font-size: 20px;
            width: auto;
            padding-right: 5px; } }
        .top_wrapper--desktop .header .menu_tel-btn {
          display: none; }
      .top_wrapper--desktop .header .menu .new_project_btn {
        width: 180px;
        height: 40px;
        float: left;
        margin-top: 30px;
        background-color: #f7e821;
        font: 400 14px/40px "Fira Sans", sans-serif;
        color: #434343;
        border-radius: 20px;
        -webkit-transition: background-color 0.25s ease;
        -moz-transition: background-color 0.25s ease;
        -o-transition: background-color 0.25s ease;
        transition: background-color 0.25s ease; }
        @media only screen and (max-width: 1020px) {
          .top_wrapper--desktop .header .menu .new_project_btn {
            width: 165px; } }
        .top_wrapper--desktop .header .menu .new_project_btn:hover {
          background-color: #fffc00; }
      .top_wrapper--desktop .header .menu a.new_project_btn {
        display: block;
        text-align: center;
        cursor: pointer; }
      .top_wrapper--desktop .header .menu_wrp {
        position: relative;
        width: 1260px;
        height: 100px;
        padding: 0px 10px;
        margin: 0px auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; }
        @media only screen and (max-width: 1020px) {
          .top_wrapper--desktop .header .menu_wrp {
            width: 980px; } }
        .top_wrapper--desktop .header .menu_wrp .logo {
          width: 180px;
          height: 100%;
          padding-top: 35px; }
          @media only screen and (max-width: 1020px) {
            .top_wrapper--desktop .header .menu_wrp .logo {
              width: 170px; } }
          .top_wrapper--desktop .header .menu_wrp .logo img {
            width: 180px; }
            @media only screen and (max-width: 1020px) {
              .top_wrapper--desktop .header .menu_wrp .logo img {
                width: 160px; } }
          .top_wrapper--desktop .header .menu_wrp .logo a {
            display: block;
            width: 154px;
            height: 42px;
            font-size: 0;
            cursor: pointer; }
        .top_wrapper--desktop .header .menu_wrp ul {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          justify-content: space-between;
          -webkit-align-content: flex-start;
          align-content: flex-start;
          height: 100%;
          padding-right: 0px; }
          .top_wrapper--desktop .header .menu_wrp ul li {
            display: block;
            white-space: nowrap;
            list-style: none;
            font: 400 17px/100px "Fira Sans", sans-serif; }
            @media only screen and (max-width: 1020px) {
              .top_wrapper--desktop .header .menu_wrp ul li {
                font-size: 14px; } }
            .top_wrapper--desktop .header .menu_wrp ul li a {
              display: block;
              height: 100%;
              color: #939393;
              cursor: pointer;
              padding: 0px 15px;
              -webkit-transition: color 0.2s ease;
              -moz-transition: color 0.2s ease;
              -o-transition: color 0.2s ease;
              transition: color 0.2s ease; }
              @media only screen and (max-width: 1020px) {
                .top_wrapper--desktop .header .menu_wrp ul li a {
                  padding: 0px 7px; } }
              .top_wrapper--desktop .header .menu_wrp ul li a:hover {
                color: #434343; }
            .top_wrapper--desktop .header .menu_wrp ul li.current {
              padding: 0px 15px; }
              @media only screen and (max-width: 1020px) {
                .top_wrapper--desktop .header .menu_wrp ul li.current {
                  padding: 0px 7px; } }
        .top_wrapper--desktop .header .menu_wrp_right {
          width: auto;
          height: 100%; }
        .top_wrapper--desktop .header .menu_wrp .new_project_btn {
          width: 180px;
          height: 40px;
          float: left;
          margin-top: 30px;
          background-color: #f7e821;
          font: 400 14px/40px "Fira Sans", sans-serif;
          color: #434343;
          border-radius: 20px;
          -webkit-transition: background-color 0.25s ease;
          -moz-transition: background-color 0.25s ease;
          -o-transition: background-color 0.25s ease;
          transition: background-color 0.25s ease; }
          .top_wrapper--desktop .header .menu_wrp .new_project_btn:hover {
            background-color: #fffc00; }
        .top_wrapper--desktop .header .menu_wrp a.new_project_btn {
          display: block;
          text-align: center;
          cursor: pointer; }
      .top_wrapper--desktop .header .menu .menu.fixed {
        border-bottom: 2px solid #f7e821; }
      .top_wrapper--desktop .header .menu .menu_nav-btn-block {
        display: none; }
      .top_wrapper--desktop .header .menu .menu_tel {
        width: 200px;
        height: 100%;
        float: left;
        font: 700 25px/100px "Fira Sans", sans-serif;
        color: #334472;
        cursor: pointer;
        white-space: nowrap; }
        @media only screen and (max-width: 1020px) {
          .top_wrapper--desktop .header .menu .menu_tel {
            font-size: 20px;
            width: auto;
            padding-right: 5px; } }
        .top_wrapper--desktop .header .menu .menu_tel-btn {
          display: none; }
      .top_wrapper--desktop .header .menu .new_project_btn {
        width: 180px;
        height: 40px;
        float: left;
        margin-top: 30px;
        background-color: #f7e821;
        font: 400 14px/40px "Fira Sans", sans-serif;
        color: #434343;
        border-radius: 20px;
        -webkit-transition: background-color 0.25s ease;
        -moz-transition: background-color 0.25s ease;
        -o-transition: background-color 0.25s ease;
        transition: background-color 0.25s ease; }
        @media only screen and (max-width: 1020px) {
          .top_wrapper--desktop .header .menu .new_project_btn {
            width: 165px; } }
        .top_wrapper--desktop .header .menu .new_project_btn:hover {
          background-color: #fffc00; }
      .top_wrapper--desktop .header .menu a.new_project_btn {
        display: block;
        text-align: center;
        cursor: pointer; }
      .top_wrapper--desktop .header .menu .menu_wrp {
        position: relative;
        width: 1260px;
        height: 100px;
        padding: 0px 10px;
        margin: 0px auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; }
        @media only screen and (max-width: 1020px) {
          .top_wrapper--desktop .header .menu .menu_wrp {
            width: 980px; } }
        .top_wrapper--desktop .header .menu .menu_wrp .logo {
          width: 180px;
          height: 100%;
          padding-top: 35px; }
          @media only screen and (max-width: 1020px) {
            .top_wrapper--desktop .header .menu .menu_wrp .logo {
              width: 170px; } }
          .top_wrapper--desktop .header .menu .menu_wrp .logo img {
            width: 180px; }
            @media only screen and (max-width: 1020px) {
              .top_wrapper--desktop .header .menu .menu_wrp .logo img {
                width: 160px; } }
          .top_wrapper--desktop .header .menu .menu_wrp .logo a {
            display: block;
            width: 154px;
            height: 42px;
            font-size: 0;
            cursor: pointer; }
        .top_wrapper--desktop .header .menu .menu_wrp ul {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-justify-content: space-between;
          -moz-justify-content: space-between;
          justify-content: space-between;
          -webkit-align-content: flex-start;
          align-content: flex-start;
          height: 100%;
          padding-right: 0px; }
          .top_wrapper--desktop .header .menu .menu_wrp ul li {
            display: block;
            white-space: nowrap;
            list-style: none;
            font: 400 17px/100px "Fira Sans", sans-serif; }
            @media only screen and (max-width: 1020px) {
              .top_wrapper--desktop .header .menu .menu_wrp ul li {
                font-size: 14px; } }
            .top_wrapper--desktop .header .menu .menu_wrp ul li a {
              display: block;
              height: 100%;
              color: #939393;
              cursor: pointer;
              padding: 0px 15px;
              -webkit-transition: color 0.2s ease;
              -moz-transition: color 0.2s ease;
              -o-transition: color 0.2s ease;
              transition: color 0.2s ease; }
              @media only screen and (max-width: 1020px) {
                .top_wrapper--desktop .header .menu .menu_wrp ul li a {
                  padding: 0px 7px; } }
              .top_wrapper--desktop .header .menu .menu_wrp ul li a:hover {
                color: #434343; }
            .top_wrapper--desktop .header .menu .menu_wrp ul li.current {
              padding: 0px 15px; }
              @media only screen and (max-width: 1020px) {
                .top_wrapper--desktop .header .menu .menu_wrp ul li.current {
                  padding: 0px 7px; } }
        .top_wrapper--desktop .header .menu .menu_wrp_right {
          width: auto;
          height: 100%; }
        .top_wrapper--desktop .header .menu .menu_wrp .new_project_btn {
          width: 180px;
          height: 40px;
          float: left;
          margin-top: 30px;
          background-color: #f7e821;
          font: 400 14px/40px "Fira Sans", sans-serif;
          color: #434343;
          border-radius: 20px;
          -webkit-transition: background-color 0.25s ease;
          -moz-transition: background-color 0.25s ease;
          -o-transition: background-color 0.25s ease;
          transition: background-color 0.25s ease; }
          .top_wrapper--desktop .header .menu .menu_wrp .new_project_btn:hover {
            background-color: #fffc00; }
        .top_wrapper--desktop .header .menu .menu_wrp a.new_project_btn {
          display: block;
          text-align: center;
          cursor: pointer; }
      .top_wrapper--desktop .header .menu .menu_right {
        width: auto;
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        align-content: flex-start; }
  .top_wrapper--desktop .footer {
    display: block;
    width: 100%;
    height: 380px; }
    .top_wrapper--desktop .footer > div {
      width: 50%;
      height: 100%;
      float: left; }
    .top_wrapper--desktop .footer .footer_content {
      width: 590px;
      height: 100%;
      padding-top: 55px; }
      .top_wrapper--desktop .footer .footer_content_column {
        width: 50%;
        float: left;
        padding-left: 40px; }
      .top_wrapper--desktop .footer .footer_content_title {
        font: 500 16px/18px "Fira Sans", sans-serif;
        color: #434343;
        padding-bottom: 24px; }
    .top_wrapper--desktop .footer .footer_menu {
      display: block;
      width: 60%; }
      .top_wrapper--desktop .footer .footer_menu li {
        display: block;
        width: 100%;
        list-style: none;
        font: 400 14px/27px Arial;
        color: #434343; }
        .top_wrapper--desktop .footer .footer_menu li a {
          display: block;
          width: 100%;
          cursor: pointer;
          color: #939393;
          -webkit-transition: color 0.2s ease;
          -moz-transition: color 0.2s ease;
          -o-transition: color 0.2s ease;
          transition: color 0.2s ease; }
          .top_wrapper--desktop .footer .footer_menu li a:hover {
            color: #434343; }
    .top_wrapper--desktop .footer .footer_contact {
      width: 100%;
      height: 30px;
      padding-left: 50px;
      font: 400 14px/30px Arial;
      color: #434343; }
      .top_wrapper--desktop .footer .footer_contact a {
        color: #434343; }
        .top_wrapper--desktop .footer .footer_contact a:hover {
          text-decoration: underline; }
      .top_wrapper--desktop .footer .footer_contact.phone {
        margin-top: 24px;
        margin-bottom: 28px;
        background: url(../img/footer_phone.png) left no-repeat;
        background-size: auto 27px; }
      .top_wrapper--desktop .footer .footer_contact.email {
        margin-bottom: 24px;
        background: url(../img/footer_email.png) left no-repeat;
        background-size: auto 20px; }
    .top_wrapper--desktop .footer .footer_follow {
      width: 100%;
      height: 30px;
      margin-bottom: 10px; }
      .top_wrapper--desktop .footer .footer_follow_label {
        width: 110px;
        font: 400 12px/30px Arial;
        color: #434343;
        float: left; }
      .top_wrapper--desktop .footer .footer_follow_link {
        display: block;
        width: 30px;
        height: 30px;
        margin-right: 8px;
        cursor: pointer;
        float: left;
        -webkit-transition: opacity 0.2s ease;
        -moz-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease; }
        .top_wrapper--desktop .footer .footer_follow_link:hover {
          opacity: .7; }
        .top_wrapper--desktop .footer .footer_follow_link.fb {
          background: url(../img/icon_fb.png) center no-repeat;
          background-size: 30px 30px; }
        .top_wrapper--desktop .footer .footer_follow_link.ig {
          background: url(../img/icon_ig.png) center no-repeat;
          background-size: 30px 30px; }
        .top_wrapper--desktop .footer .footer_follow_link.vk {
          background: url(../img/icon_vk.png) center no-repeat;
          background-size: 30px 30px; }
        .top_wrapper--desktop .footer .footer_follow_link.tw {
          background: url(../img/icon_tw.png) center no-repeat;
          background-size: 30px 30px; }
        .top_wrapper--desktop .footer .footer_follow_link.tg {
          background: url(../img/icon_tg.png) center no-repeat;
          background-size: 30px 30px; }
        .top_wrapper--desktop .footer .footer_follow_link.wa {
          background: url(../img/icon_wa.png) center no-repeat;
          background-size: 30px 30px; }
        .top_wrapper--desktop .footer .footer_follow_link:last-child {
          margin-right: 0px; }
    .top_wrapper--desktop .footer .footer_left {
      background-color: #334472; }
      .top_wrapper--desktop .footer .footer_left .footer_content {
        float: right;
        padding-right: 20px; }
        .top_wrapper--desktop .footer .footer_left .footer_content_top {
          width: 100%;
          height: 21px;
          margin-bottom: 22px; }
          .top_wrapper--desktop .footer .footer_left .footer_content_top .logo_f {
            width: 127px;
            height: 21px;
            float: left; }
            .top_wrapper--desktop .footer .footer_left .footer_content_top .logo_f img {
              width: 100%;
              height: 100%; }
          .top_wrapper--desktop .footer .footer_left .footer_content_top .copyright {
            width: 260px;
            float: right;
            font: 400 14px/21px Arial;
            color: #fff; }
        .top_wrapper--desktop .footer .footer_left .footer_content_text {
          font: 400 14px/22px Arial;
          color: #fff;
          margin-bottom: 44px; }
        .top_wrapper--desktop .footer .footer_left .footer_content_info {
          width: 100%; }
          .top_wrapper--desktop .footer .footer_left .footer_content_info .f_info {
            position: relative;
            width: 50%;
            height: 20px;
            float: left;
            margin-bottom: 20px;
            padding-left: 40px;
            font: 400 14px/20px Arial;
            color: #fff; }
            .top_wrapper--desktop .footer .footer_left .footer_content_info .f_info.addr {
              width: 100%; }
            .top_wrapper--desktop .footer .footer_left .footer_content_info .f_info:before {
              position: absolute;
              content: "";
              top: 0;
              left: 0;
              width: 10px;
              height: 10px;
              background-color: #f7e821;
              border: 5px solid #5f5f5f;
              border-radius: 50%; }
            .top_wrapper--desktop .footer .footer_left .footer_content_info .f_info a {
              color: #fff; }
    .top_wrapper--desktop .footer .footer_right {
      background-color: #e3e3e3; }
      .top_wrapper--desktop .footer .footer_right .footer_content {
        float: left; }

@media only screen and (min-width: 0px) and (max-width: 320px) {
  .ui-widget.ui-widget-content {
    width: calc(100% - 30px) !important; } }
.glide__arrows .glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: #334472;
  text-transform: uppercase;
  padding: 9px 12px;
  box-shadow: none;
  text-shadow: none;
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
  width: 60px;
  height: 60px;
  background-color: #f9f9f9;
  border: 2px solid #f9f9f9;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease; }
  .glide__arrows .glide__arrow:hover {
    border-color: #334472; }

.glide--horizontal .glide__arrow.prev:hover:after {
  background-image: url(../img/slider_arrow_left_white.png);
  background-size: 12px auto; }

.glide--horizontal .glide__arrow.next:hover:after {
  background-image: url(../img/slider_arrow_right_white.png);
  background-size: 12px auto; }

/*# sourceMappingURL=main.css.map */
