/***** Common style *****/
/******************************************/
/******************************************/
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, 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;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  vertical-align: baseline; }

ol, ul {
  /*list-style: none; */
}

ol {
  /*list-style-type: decimal;*/
}

/*ul li:before {*/
  /*!*content: "• ";*!*/
  /*color: #000000;*/
/*}*/

.project_list_title
{

	color: #000;
}

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

input, button, textarea, button {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }
  input:focus, button:focus, textarea:focus, button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: 0 !important; }

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: 0;
  text-decoration: none; }
  a:hover, a:focus {
    background: none;
    outline: 0 !important; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 20px;
  background: #fff;
  height: 100vh;
  color: #fff; }

@media screen and (max-width: 769px) {
  body {
    height: 100%
  }
}

/***** Basic *****/
.main-page {
  background-size: cover !important;
  height: 100%;
  padding-bottom: 50px
}
  @media screen and (max-width: 360px) {
    .main-page {
      height: 100%; } }

.header-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 768px) {
    .header-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 20px; } }

@media screen and (max-width: 768px) {
  .logo {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start; } }

.logo-img {
  width: 188px; }

.header-right-block-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.search-block {
  border-right: 1px solid #ffffff; }

.header-search-wrapper {
  display: block;
  position: relative;
  margin-right: 10px; }

.header-search-input {
  width: 330px;
  height: 30px;
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 0 30px 0 13px;
  position: relative; }
  .header-search-input::-webkit-input-placeholder {
    color: #ffffff; }
  .header-search-input::-moz-placeholder {
    color: #ffffff; }
  .header-search-input:-ms-input-placeholder {
    color: #ffffff; }
  .header-search-input::placeholder {
    color: #ffffff; }
  .header-search-input::-moz-placeholder {
    color: #ffffff; }
  .header-search-input::-webkit-input-placeholder {
    color: #ffffff; }
  .header-search-input:-ms-input-placeholder {
    color: #ffffff; }
  .header-search-input::-ms-input-placeholder {
    color: #ffffff; }
  .header-search-input::-ms-clear {
    display: none; }
  @media screen and (max-width: 515px) {
    .header-search-input {
      width: 280px; } }
  @media screen and (max-width: 415px) {
    .header-search-input {
      width: 200px; } }

.header-search-input ~ .focus-bg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1; }

.header-search-input:focus ~ .focus-bg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  left: 0;
  z-index: 1; }

.header-search-icon {
  width: 30px;
  height: 100%;
  background: url("../img/icons/ic-search.svg") 50% 50% no-repeat;
  position: absolute;
  top: 0;
  right: 7px; }

.language-select {
  background: transparent;
  font-size: 14px;
  border: none; }

.language-block {
  margin-left: 10px; }
  .language-block .active .language-select-link {
    color: #292929; }

.language-select-link {
  color: #ffffff; }
  .language-select-link:hover {
    color: #292929;
    text-decoration: none; }

.header-nav {
  border-top: 1px solid #ffffff;
  padding-top: 40px; }

.header-nav-list {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 415px) {
    .header-nav-list {
      padding: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.header-nav-item {
  margin-right: 25px; }
  .header-nav-item:last-child {
    margin-right: 0; }
  @media screen and (max-width: 515px) {
    .header-nav-item {
      margin-bottom: 30px; } }

.header-nav-link {
  color: #ffffff;
  border: 1px solid transparent;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  padding: 10px;
  -webkit-transition: border-color linear 1s;
  transition: border-color linear 1s; }
  .header-nav-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    text-decoration: none; }
  @media screen and (max-width: 515px) {
    .header-nav-link {
      font-size: 16px; } }

.contact-link {
  border: 1px solid #ffffff;
  -webkit-transition: all linear 0.5s;
  transition: all linear 0.5s; }
  .contact-link:hover {
    color: #F15201;
    background-color: rgba(255, 255, 255, 0.6); }

.header-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.header-content-inner {
  width: 552px;
  height: 552px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 5px solid rgba(255, 103, 31, 0.55);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  text-align: center;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px); }

  @media screen and (max-width: 1350px) {
    .header-content-title {
      width: 66%
    }

    .header-content-inner {
      width: 480px;
      height: 480px;
    }
  }
  @media screen and (max-width: 768px) {
    .header-content-inner {
      width: 400px;
      height: 400px; } }
  @media screen and (max-width: 515px) {
    .header-content-inner {
      width: 300px;
      height: 300px; } }

.header-content-title {
  width: 60%;
  font-size: 34px;
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  text-align: center;
  margin-top: 35%; }
  @media screen and (max-width: 768px) {
    .header-content-title {
      font-size: 24px;
      margin-top: 30%; } }
  @media screen and (max-width: 515px) {
    .header-content-title {
      font-size: 18px;
      margin-top: 30%; } }

.header-content-desc {
  width: 100%;
  font-size: 21px;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 31px;
  margin-top: 50px;
  padding: 0 30px; }
  @media screen and (max-width: 768px) {
    .header-content-desc {
      font-size: 18px; } }
  @media screen and (max-width: 515px) {
    .header-content-desc {
      font-size: 14px;
      margin-top: 15px;
      padding: 0 10px; } }

.dark-header {
  margin-bottom: 20px; }
  .dark-header .search-block {
    border-right: 1px solid #292929; }
  .dark-header .header-search-input {
    color: #292929; }
    .dark-header .header-search-input::-webkit-input-placeholder {
      color: #292929; }
    .dark-header .header-search-input::-moz-placeholder {
      color: #292929; }
    .dark-header .header-search-input:-ms-input-placeholder {
      color: #292929; }
    .dark-header .header-search-input::placeholder {
      color: #292929; }
    .dark-header .header-search-input::-moz-placeholder {
      color: #292929; }
    .dark-header .header-search-input::-webkit-input-placeholder {
      color: #292929; }
    .dark-header .header-search-input:-ms-input-placeholder {
      color: #292929; }
    .dark-header .header-search-input::-ms-input-placeholder {
      color: #292929; }
  .dark-header .header-search-input ~ .focus-bg {
    background-color: rgba(41, 41, 41, 0.2); }
  .dark-header .header-search-icon {
    background: url("../img/icons/ic-search-dark.svg") 50% 50% no-repeat; }
  .dark-header .language-select-link {
    color: #292929; }
    .dark-header .language-select-link:hover {
      color: #F15201; }
  .dark-header .language-block .active .language-select-link {
    color: #F15201; }
  .dark-header .header-nav {
    border-top: 1px solid #292929; }
  .dark-header .header-nav-link {
    color: #292929; }
    .dark-header .header-nav-link:hover {
      color: #292929;
      border-color: #292929; }
  .dark-header .contact-link {
    border: 1px solid #292929; }
    .dark-header .contact-link:hover {
      color: #F15201;
      background-color: rgba(41, 41, 41, 0.1); }

.main-block-about-us {
  background-size: cover !important;
  padding: 232px 0 234px;
  margin: 0 36px 0 44px; }
  @media screen and (max-width: 1024px) {
    .main-block-about-us {
      width: 100%;
      margin: 0;
      background-position: 80% 100% !important; } }

.about-us-block {
  padding-left: 80px; }
  @media screen and (max-width: 768px) {
    .about-us-block {
      padding: 0 20px; } }

.about-us-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  padding-left: 26px;
  border-left: 4px solid #F15201;
  margin-bottom: 33px; }
  @media screen and (max-width: 650px) {
    .about-us-title {
      font-size: 32px; } }

.about-us-text {
  width: 45%;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  color: #fff;
  margin-bottom: 40px; }
  @media screen and (max-width: 1024px) {
    .about-us-text {
      width: 100%; } }
  @media screen and (max-width: 650px) {
    .about-us-text {
      font-size: 20px; } }

.about-us-read-more {
  height: 29px;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid #4F4E4D; }
  .about-us-read-more:hover {
    border-color: #F15201; }

.about-us-read-more-link {
  color: #fff; }
  .about-us-read-more-link:hover {
    text-decoration: none;
    color: #fff; }

.projects-block {
  background-color: #fff;
  padding: 60px 0 80px 0; }
  @media screen and (max-width: 515px) {
    .projects-block {
      padding: 50px 0; } }

.projects-top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media screen and (max-width: 515px) {
    .projects-top-block {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }

.projects-top-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.projects-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #292929; }
  @media screen and (max-width: 1024px) {
    .projects-title {
      font-size: 28px; } }
  @media screen and (max-width: 650px) {
    .projects-title {
      font-size: 20px; } }

.projects-slider-nav {
  margin-right: 20px; }
  @media screen and (max-width: 515px) {
    .projects-slider-nav {
      margin: 20px 5px 0 0; } }

.project-slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #CACDD2;
  -webkit-border-radius: 50%;
          border-radius: 50%; }
  @media screen and (max-width: 650px) {
    .project-slider-btn {
      width: 30px;
      height: 30px; } }

.rp-prev {
  background: url("../img/icons/ic-slider-prev.svg") 50% 50% no-repeat;
  margin-right: 30px; }
  @media screen and (max-width: 515px) {
    .rp-prev {
      margin-right: 10px; } }

.rp-next {
  background: url("../img/icons/ic-slider-next.svg") 50% 50% no-repeat; }

.projects-cards-slider {
  margin-top: 40px;
  overflow: hidden; }

.projects-card-item {
  padding: 0 40px 0 0; }

.project-img-wrapper {
  max-width: 360px;
  overflow: hidden;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  max-height: 240px; }
  @media screen and (max-width: 1200px) {
    .project-img-wrapper {
      width: 280px; } }
  @media screen and (max-width: 768px) {
    .project-img-wrapper {
      width: 250px; } }

.project-item-img {
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out; }
  .project-item-img:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); }

.projects-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px; }

.projects-item-category {
  font-size: 13px;
  font-weight: 400;
  color: #4C4B49;
  background-color: #E2E2E2;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  padding: 5px 10px;
  margin-right: 4px; }

.projects-item-title {
  font-size: 20px;
  font-weight: 500;
  color: #292929;
  margin-top: 20px;
  padding: 0 0 20px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E2E2E2; }
  @media screen and (max-width: 768px) {
    .projects-item-title {
      font-size: 18px; } }

.project-slider-desc {
  margin-top: 10px; }

.project-desc-row {
  font-size: 16px;
  font-weight: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #909090;
  margin-top: 10px; }

.project-desc-col-1 {
  width: 60%; }

.project-desc-col-2 {
  width: 40%;
  text-align: right;
  color: #292929; }

.project-slider-show-all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.project-table-head {
 font-size: 15px;
 font-weight: 700;
 color: #292929;
 background: #F3F4F5;
 border: 1px solid #E2E2E2;
 line-height: 18px; }

.project-table-head-row {
 height: 56px; }

.table-title {
 vertical-align: middle !important;
 padding-left: 10px;
 border-right: 1px solid #E2E2E2; }
 .table-title:first-child {
   width: 10%; }
 .table-title:nth-child(2) {
   width: 35%; }
 .table-title:nth-child(3) {
   width: 25%; }
 .table-title:nth-child(4) {
   width: 15%; }
 .table-title:last-child {
   width: 15%; }

 /*.table-title {*/
 /*vertical-align: middle !important;*/
 /*padding-left: 10px;*/
 /*border-right: 1px solid #E2E2E2; }*/
 /*.table-title:first-child {*/
   /*width: 8%; }*/
 /*.table-title:nth-child(2) {*/
   /*width: 8%; }*/
 /*.table-title:nth-child(3) {*/
   /*width: 30%; }*/
 /*.table-title:nth-child(4) {*/
   /*width: 16%; }*/
 /*.table-title:last-child {*/
   /*width: 20%; }*/

.table-content-row {
 height: 76px; }
 .table-content-row:nth-child(even) {
   background: #F3F4F5; }

.table-content {
 font-size: 15px;
 font-weight: 400;
 color: #4C4B49;
 line-height: 18px;
 vertical-align: middle !important;
 padding-left: 10px; }

.table-content-year {
 color: #909090; }

.project-table {
 width: 100%; }
 @media screen and (max-width: 1024px) {
   .project-table .project-table-head {
     display: none; }
   .project-table .table-content-row {
     height: 100%;
     display: block;
     margin-bottom: 10px;
     border: none; }
   .project-table .table-content {
     display: block;
     text-align: right;
     padding: 10px; } }
 @media screen and (max-width: 1024px) and (max-width: 650px) {
   .project-table .table-content {
     text-align: right; } }
 @media screen and (max-width: 1024px) {
     .project-table .table-content::before {
       content: attr(data-label);
       float: left;
       font-weight: bold; } }
   @media screen and (max-width: 1024px) and (max-width: 650px) {
     .project-table .table-content::before {
       margin-right: 20px; } }

.projects-list-block .pagination-block {
 -webkit-box-pack: end;
 -webkit-justify-content: flex-end;
     -ms-flex-pack: end;
         justify-content: flex-end; }


.view-all-projects {
  width: 240px;
  height: 48px;
  border: 2px solid #D6D6D6;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background: transparent;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin-top: 75px; }
  .view-all-projects:hover {
    border-color: #F15201; }

.view-all-projects-link {
  color: #292929; }
  .view-all-projects-link:hover {
    color: #292929;
    text-decoration: none; }

.recruitment-main-block {
  background-size: cover !important;
  padding: 202px 0 203px;
  margin: 40px 36px 0 44px; }
  @media screen and (max-width: 1024px) {
    .recruitment-main-block {
      width: 100%;
      margin: 20px 0 0 0;
      background-position: 7% 100% !important; } }

.recruitment-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.recruitment-info {
  width: 50%;
  padding-right: 80px; }
  @media screen and (max-width: 1024px) {
    .recruitment-info {
      width: 100%;
      padding: 0 20px 0 20px; } }

.recruitment-info-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  padding-left: 24px;
  border-left: 4px solid #F15201;
  margin-bottom: 40px; }
  @media screen and (max-width: 650px) {
    .recruitment-info-title {
      font-size: 32px; } }

.recruitment-info-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  color: #fff;
  margin-bottom: 40px; }
  @media screen and (max-width: 650px) {
    .recruitment-info-text {
      font-size: 20px; } }

.recruitment-info-btn {
  width: 152px;
  height: 60px;
  border: none;
  background: #F15201;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase; }

.recruitment-info-btn-link {
  color: #fff; }
  .recruitment-info-btn-link:hover {
    color: #fff;
    text-decoration: none; }

.map-main-block {
  background: #fff;
  padding: 20px 0 71px 0;
  border-bottom: 1px solid #E2E2E2;
  margin: 0 36px 0 44px; }
  @media screen and (max-width: 1024px) {
    .map-main-block {
      padding: 50px 0;
      margin: 0; } }

.map {
  width: 100%;
  height: 500px;
  margin-bottom: 60px; }
  @media screen and (max-width: 1024px) {
    .map {
      height: 250px; } }

.map-title {
  font-size: 48px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 60px; }
  @media screen and (max-width: 650px) {
    .map-title {
      font-size: 32px; } }
  @media screen and (max-width: 515px) {
    .map-title {
      font-size: 26px; } }

.map-blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 59px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.map-block-item {
  width: 25%;
  height: 240px;
  color: #292929;
  padding: 40px 29px 0 29px;
  border-right: 1px solid #E2E2E2; }
  .map-block-item:first-child {
    padding-left: 0; }
  .map-block-item:last-child {
    border: none; }
  @media screen and (max-width: 650px) {
    .map-block-item {
      width: 50%;
      height: auto;
      margin-bottom: 20px;
      text-align: center;
      padding: 0;
      border-right: none; } }
  @media screen and (max-width: 515px) {
    .map-block-item {
      width: 100%;
      margin-bottom: 40px; } }

.map-item-counter {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px; }
  @media screen and (max-width: 1200px) {
    .map-item-counter {
      font-size: 25px; } }
  @media screen and (max-width: 1024px) {
    .map-item-counter {
      font-size: 20px; } }

.map-item-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #909090; }
  @media screen and (max-width: 1200px) {
    .map-item-desc {
      font-size: 17px;
      line-height: 22px; } }
  @media screen and (max-width: 1024px) {
    .map-item-desc {
      font-size: 15px;
      line-height: 20px; } }

.vacancies-main-block {
  background: #fff;
  padding: 69px 0 60px 0; }

.vacancies-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media screen and (max-width: 515px) {
    .vacancies-top {
      -webkit-box-align: baseline;
      -webkit-align-items: baseline;
          -ms-flex-align: baseline;
              align-items: baseline; } }

.vacancies-title {
  font-size: 32px;
  font-weight: 500;
  color: #292929;
  text-transform: uppercase;
  margin-bottom: 59px; }
  @media screen and (max-width: 1024px) {
    .vacancies-title {
      font-size: 26px; } }
  @media screen and (max-width: 515px) {
    .vacancies-title {
      font-size: 20px; } }

.upload-cv-btn {
  width: 200px;
  height: 60px;
  background: #F15201 url("../img/icons/ic-upload.svg") 18% 50% no-repeat;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px; }
  @media screen and (max-width: 1024px) {
    .upload-cv-btn {
      width: 160px;
      height: 50px;
      font-size: 14px; } }
  @media screen and (max-width: 515px) {
    .upload-cv-btn {
      width: 150px;
      height: 40px; } }

@media screen and (max-width: 768px) {
  .vacancies-table {
    display: none; } }

.vacancies-table-row {
  padding: 30px 0;
  border-bottom: 1px solid #E2E2E2; cursor: pointer; }

.column-title {
  font-size: 14px;
  font-weight: 500;
  color: #909090;
  line-height: 20px; }
  @media screen and (max-width: 1024px) {
    .column-title {
      font-size: 12px; } }

.column-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  color: #292929;
  margin-top: 3px; }
  @media screen and (max-width: 1024px) {
    .column-desc {
      font-size: 16px; } }

.date {
  font-weight: 300;
  color: #4C4B49; }

.vacancies-show-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.vacancies-show-btn {
  width: 240px;
  height: 48px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #D6D6D6;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-top: 40px; }
  .vacancies-show-btn:hover {
    border-color: #F15201; }

.vacancies-show-btn-link {
  color: #292929; }
  .vacancies-show-btn-link:hover {
    color: #292929;
    text-decoration: none; }

.vacancies-table-mobile {
  display: none; }
  @media screen and (max-width: 768px) {
    .vacancies-table-mobile {
      display: block; } }
  .vacancies-table-mobile .column-title {
    font-size: 20px;
    font-weight: 500; }
    @media screen and (max-width: 515px) {
      .vacancies-table-mobile .column-title {
        font-size: 18px; } }
  .vacancies-table-mobile .show-vacancy {
    margin-top: 0; }
  .vacancies-table-mobile .mobile-controls {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }

.vacanciest-mobile-main-row {
  border-bottom: 1px solid #CACDD2;
  padding: 20px 0 10px; }

.mobile-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.mobile-col {
  width: 50%;
  height: 100%; }
  .mobile-col:last-child {
    padding-left: 30px;
    text-align: right; }

.pagination-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.pagination {
  margin: 60px 0; }
  .pagination .active a {
    background-color: #FA7A50;
    color: #fff !important; }

.pagination-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.page-item {
  width: 30px;
  height: 30px;
  color: #888888;
  font-size: 12px;
  font-weight: 400; }

.page-btn {
  width: 30px;
  height: 30px;
  border: none;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  font-weight: normal;
  margin-right: 4px; }

.page-prev-start {
  background: #E2E2E2 url("../img/icons/ic-double-arrow-prev.svg") 50% 50% no-repeat; }

.page-prev-one {
  background: #E2E2E2 url("../img/icons/ic-slider-prev.svg") 50% 50% no-repeat; }

.page-next-one {
  background: #E2E2E2 url("../img/icons/ic-slider-next.svg") 50% 50% no-repeat; }

.page-next-end {
  background: #E2E2E2 url("../img/icons/ic-double-arrow-next.svg") 50% 50% no-repeat; }

.page-btn-link {
  color: #888888; }

.page-link {
  color: #888888 !important;
  border: none !important;
  -webkit-border-radius: 3px !important;
          border-radius: 3px !important; }

/*.footer {*/
  /*background: #292929; }*/

.footer {
  background: #e2e2e2; }

.footer-nav {
  /*border-bottom: 1px solid #343333; */
  border-bottom: 1px solid #B9B9B9;
}

/*.footer-menu {*/
  /*width: 100%;*/
  /*display: -webkit-box;*/
  /*display: -webkit-flex;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-pack: center;*/
  /*-webkit-justify-content: center;*/
      /*-ms-flex-pack: center;*/
          /*justify-content: center;*/
  /*-webkit-box-align: center;*/
  /*-webkit-align-items: center;*/
      /*-ms-flex-align: center;*/
          /*align-items: center; }*/
  /*@media screen and (max-width: 515px) {*/
    /*.footer-menu {*/
      /*-webkit-box-orient: vertical;*/
      /*-webkit-box-direction: normal;*/
      /*-webkit-flex-direction: column;*/
          /*-ms-flex-direction: column;*/
              /*flex-direction: column; } }*/

.footer-menu {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 515px) {
    .footer-menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.footer-menu-item {
  padding: 30px 30px;
  cursor: pointer; }
  @media screen and (max-width: 1024px) {
    .footer-menu-item {
      padding: 20px 20px; } }
  @media screen and (max-width: 650px) {
    .footer-menu-item {
      padding: 20px 10px; } }
  @media screen and (max-width: 515px) {
    .footer-menu-item {
      width: 100%;
      text-align: center; } }

.footer-menu-link {
  font-size: 14px;
  font-weight: 400;
  /*color: #fff;*/
  color: #292929;
  opacity: 0.6;
}
  .footer-menu-link:hover {
    /*color: #fff;*/
    color: #292929;
    opacity: 0.6;
    text-decoration: none; }
  @media screen and (max-width: 1024px) {
    .footer-menu-link {
      font-size: 12px; } }

.footer-bottom {
  padding: 36px 0 42px 0;
  /*color: #B9B9B9; */
  color: #909090;
}

.footer-bottom-icons {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px; }

.footer-icons {
  width: 40px;
  height: 40px;
  border: none;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-right: 20px;
  background: #4C4B49; }
  .footer-icons a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0; }

.facebook:hover path {
  fill: #3b5999; }

.instargram:hover path {
  fill: #e4405f; }

.linkedin:hover path {
  fill: #0077B5; }

.footer-bottom-rights {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 30px;
  color: #909090; }

.footer ul li:before {
  /*content: "• ";*/
  color: #909090;
}

/***** Modal window *****/
.leftsidemodal {
  padding-right: 0 !important; }

.leftsidemodal .modal-dialog {
  max-width: 430px;
  height: 100%;
  margin: auto;
  margin-right: 0; }
  @media screen and (max-width: 330px) {
    .leftsidemodal .modal-dialog {
      width: 100%; } }

.leftsidemodal .modal-dialog .modal-content {
  height: 100%;
  -webkit-border-radius: 0;
          border-radius: 0;
  border: none;
  overflow: auto; }

.leftsidemodal.modal.fade .modal-dialog {
  -webkit-transform: translate(50%, 0);
      -ms-transform: translate(50%, 0);
          transform: translate(50%, 0); }

.leftsidemodal.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0); }

.nav-menu-leftsidemodal li::before{
  content: "\00a0";
  color: transparent;
  display: none
}

.modal-header {
  padding: 30px 30px; }

.modal-title {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  color: #292929; }

.close {
  margin-top: 3px !important;
  opacity: 1; }
  .close span {
    font-size: 30px;
    color: #B9B9B9 !important; }

.modal-header {
  border: none; }

.modal-body {
  padding: 0 30px; }

.modal-title {
  font-size: 24px;
  font-weight: 500;
  color: #292929;
  text-transform: uppercase; }
  @media screen and (max-width: 330px) {
    .modal-title {
      font-size: 20px; } }

.modal-title-country {
  color: #F15201;
  padding-left: 5px; }

.project-modal-item {
  padding: 30px 0 19px 0;
  border-bottom: 1px solid #E2E2E2; }
  @media screen and (max-width: 515px) {
    .project-modal-item img {
      width: 100%; } }
  .project-modal-item .projects-item-title {
    border: none; }

.office-map-block {
  width: 100% !important;
  height: 300px !important;
}

.map-project-title {
    font-size: 48px;
    font-weight: 600;
    color: #292929;
    margin-top: 30px;
}

.projects-list-block {
  padding-bottom: 110px; }

.projects-list-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 37px 0 40px 0; }
  @media screen and (max-width: 1024px) {
    .projects-list-top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.projects-list-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 40px; }
  @media screen and (max-width: 1024px) {
    .projects-list-controls {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.projects-list-title {
  font-size: 32px;
  font-weight: 700;
  color: #292929;
  text-transform: uppercase; }
  @media screen and (max-width: 1024px) {
    .projects-list-title {
      margin-bottom: 30px; } }
  @media screen and (max-width: 650px) {
    .projects-list-title {
      font-size: 26px; } }

.list-search-wrapper {
  display: block;
  position: relative;
  margin-right: 40px; }
  @media screen and (max-width: 1024px) {
    .list-search-wrapper {
      margin: 0 0 30px; } }

.list-search-input {
  width: 360px;
  height: 38px;
  border: 1px solid #D6D6D6;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 0 32px 0 20px;
  color: #292929;
  font-size: 14px;
  font-weight: 400; }
  @media screen and (max-width: 515px) {
    .list-search-input {
      width: 300px; } }

.list-search-icon {
  width: 32px;
  height: 100%;
  background: url("../img/icons/ic-search-2.svg") 50% 50% no-repeat;
  position: absolute;
  top: 0;
  right: 0; }

.datepicker-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 1024px) {
    .datepicker-controls {
      margin-bottom: 30px; } }
  @media screen and (max-width: 515px) {
    .datepicker-controls {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.year-select-wrapper {
  display: block;
  position: relative; }
  @media screen and (max-width: 515px) {
    .year-select-wrapper {
      margin-bottom: 10px; } }

.year-select {
  width: 175px;
  height: 38px;
  border: 1px solid #E2E2E2;
  color: #292929;
  margin-right: 10px;
  padding: 0 50px 0 12px;
  font-size: 13px;
  font-weight: 400; }
  @media screen and (max-width: 515px) {
    .year-select {
      width: 260px; } }

.year-select-icon {
  width: 50px;
  height: 100%;
  background: url("../img/icons/ic-calendar.svg") 50% 50% no-repeat;
  position: absolute;
  top: 0;
  right: 0; }

.categories-blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.project-dd-btn {
  width: 160px;
  height: 38px;
  background: #F3F4F5 url("../img/icons/ic-black-arrow.svg") 90% 50% no-repeat;
  color: #292929;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  padding-left: 20px;
  margin-left: 20px; }
  @media screen and (max-width: 650px) {
    .project-dd-btn {
      width: 140px;
      margin-left: 5px; } }

.project-btn-active {
  background: #F15201 url("../img/icons/ic-white-arrow.svg") 90% 50% no-repeat;
  color: #fff; }

.list-dd {
  width: 160px;
  max-height: 180px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  position: absolute;
  top: 100%;
  overflow: auto;
  padding: 10px 20px; }

.list-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px; }

.list-name {
  font-size: 14px;
  font-weight: 400;
  color: #909090; }

.category-list {
  display: none;
  left: 36.85%; }
  @media screen and (max-width: 1024px) {
    .category-list {
      left: 32%; } }
  @media screen and (max-width: 768px) {
    .category-list {
      left: 28%; } }
  @media screen and (max-width: 650px) {
    .category-list {
      left: 5%; } }

.country-list {
  display: none;
  right: 33.35%; }
  @media screen and (max-width: 1024px) {
    .country-list {
      right: 30%; } }
  @media screen and (max-width: 1024px) {
    .country-list {
      right: 25%; } }
  @media screen and (max-width: 650px) {
    .country-list {
      right: 5%; } }

.checkbox-item[type="checkbox"] {
  display: none; }

.checkbox-item-label {
  color: #000;
  cursor: default;
  font-weight: normal;
  vertical-align: middle; }
  .checkbox-item-label::before {
    content: " ";
    display: inline-block;
    position: relative;
    text-align: center;
    text-indent: 0;
    width: 16px;
    height: 16px;
    background: #FFF;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    vertical-align: middle; }

.checkbox-item:checked + label:before {
  content: "";
  color: #fff;
  background: #F15201 url("../img/icons/ic-check.svg") 50% 50% no-repeat;
  border-color: #F15201; }

.checkbox-item-selected {
  color: #292929; }

.projects-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media screen and (max-width: 768px) {
    .projects-cards {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; } }
  @media screen and (max-width: 650px) {
    .projects-cards {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; } }
  .projects-cards .projects-card-item {
    width: 33.3%;
    margin-bottom: 51px; }
    @media screen and (max-width: 768px) {
      .projects-cards .projects-card-item {
        width: 35%; } }
    @media screen and (max-width: 650px) {
      .projects-cards .projects-card-item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        padding: 0; } }

.project-main-info-block {
  background-size: cover;
  padding: 209px 0 40px 0; }
  @media screen and (max-width: 1200px){
    .project-main-info-block{
      padding: 60px 0 40px 0;
    }
  }
  .project-main-info-block .main-info-title {
    width: 60%;
    font-size: 48px;
    font-weight: 500;
    padding-left: 24px;
    border-left: 4px solid #F15201;
    margin-top: 20px; }
    @media screen and (max-width: 650px) {
      .project-main-info-block .main-info-title {
        width: 100%;
        font-size: 20px; } }
  .project-main-info-block .projects-item-location {
    font-weight: 400;
    color: #fff;
    margin-top: 20px; }
    .project-main-info-block .projects-item-location span {
      color: #fff;
      font-weight: 300; }

.project-main-info-block-without-image {
  background-size: cover;
  padding: 30px 0 20px 0; }
  .project-main-info-block-without-image .main-info-title {
    width: 60%;
    color: #000;
    font-size: 48px;
    font-weight: 500;
    padding-left: 24px;
    border-left: 4px solid #F15201;
    margin-top: 20px; }
    @media screen and (max-width: 650px) {
      .project-main-info-block-without-image .main-info-title {
        width: 100%;
        font-size: 20px; } }
  .project-main-info-block-without-image .projects-item-location {
    font-weight: 400;
    color: #000;
    margin-top: 20px; }
    .project-main-info-block-without-image .projects-item-location span {
      color: #000;
      font-weight: 300; }

.project-info-blocks {
  padding: 10px 0 79px 0; }

.project-info-left {
  /*font-size: 18px;*/
  /*font-weight: 400;*/
  color: #000000;
  padding-right: 100px;
}
  /*.project-info-left p:first-child {*/
    /*font-size: 24px;*/
    /*color: #292929;*/
    /*line-height: 35px;*/
    /*margin-bottom: 40px; }*/
  /*.project-info-left p:nth-child(3), .project-info-left p:nth-child(6), .project-info-left p:nth-child(7) {*/
    /*line-height: 26px;*/
    /*margin-bottom: 20px; }*/
  /*.project-info-left p:nth-child(4) {*/
    /*line-height: 26px;*/
    /*margin-bottom: 40px; }*/
  /*.project-info-left h4 {*/
    /*font-size: 32px;*/
    /*font-weight: 400;*/
    /*color: #292929;*/
    /*line-height: 46px;*/
    /*text-transform: uppercase;*/
    /*margin-bottom: 20px; }*/
  @media screen and (max-width: 650px) {
    .project-info-left {
      padding: 0 20px; } }

.right-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
  color: #292929;
  margin-bottom: 20px; }

.info-title {
  font-size: 16px;
  font-weight: 400;
  color: #909090; }

.grey {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #292929;
  margin-bottom: 16px; }

.info-bottom-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 29px; }

.contact-us {
  width: 180px;
  height: 48px;
  border: 1px solid #D6D6D6;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #292929;
  margin-right: 20px; }
  .contact-us:hover {
    border-color: #F15201; }

.vacancy-list-block {
  padding-bottom: 155px; }

.vacancy-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0; }
  @media screen and (max-width: 650px) {
    .vacancy-top {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.vacancy-title {
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  color: #292929; }
  @media screen and (max-width: 650px) {
    .vacancy-title {
      font-size: 26px;
      margin-bottom: 30px; } }

.vacancy-search-wrapper {
  display: block;
  position: relative; }

.vacancy-search-input {
  width: 380px;
  height: 38px;
  border: 1px solid #E2E2E2;
  -webkit-border-radius: 50px;
          border-radius: 50px;
  padding: 0 40px 0 20px;
  color: #292929; }
  @media screen and (max-width: 515px) {
    .vacancy-search-input {
      width: 300px;
      font-size: 16px; } }

.vacancy-search-icon {
  width: 40px;
  height: 100%;
  background: url("../img/icons/ic-search-2.svg") 50% 50% no-repeat;
  position: absolute;
  top: 0;
  right: 0; }

.vacancy-list-block .pagination-block {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.contacts-block {
  padding: 60px 0 56px; }

.contacts-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 768px) {
    .contacts-block-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.contact-left {
  padding-right: 76px;
  width: 60%; }
  @media screen and (max-width: 768px) {
    .contact-left {
      width: 100%;
      padding: 0; } }
  .contact-left .form-control {
    margin-bottom: 20px; }
    @media screen and (max-width: 768px) {
      .contact-left .form-control {
        width: 100%; } }
    .contact-left .form-control:focus {
      border-color: #F15201; }
  .contact-left textarea {
    height: 120px;
    resize: none; }

.contact-left-title {
  font-size: 48px;
  font-weight: 500;
  color: #292929;
  margin-bottom: 20px; }
  @media screen and (max-width: 1024px) {
    .contact-left-title {
      font-size: 38px; } }

.contact-left-desc {
  font-size: 20px;
  font-weight: 400;
  color: #4C4B49;
  line-height: 29px;
  margin-bottom: 30px; }
  @media screen and (max-width: 1024px) {
    .contact-left-desc {
      font-size: 18px; } }

.contact-send {
  width: 180px;
  height: 48px;
  background: #F15201;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase; }
  @media screen and (max-width: 1024px) {
    .contact-send {
      width: 100%; } }

.contact-right {
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 768px) {
    .contact-right {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      width: 100%;
      margin-top: 50px; } }

.office-block {
  margin-bottom: 60px; }

.office-title {
  font-size: 36px;
  font-weight: 500;
  color: #292929;
  margin-bottom: 20px; }

.office-location {
  /*font-size: 18px;*/
  /*font-weight: 300;*/
  color: #000;
  width: 60%; }
  @media screen and (max-width: 650px) {
    .office-location {
      width: 100%; } }

.google-map-btn {
  width: 180px;
  height: 48px;
  border: 1px solid #D6D6D6;
  background: transparent;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-top: 20px;
  color: #4C4B49;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  -webkit-transition: border-color 0.5s ease-in-out;
  transition: border-color 0.5s ease-in-out; }
  .google-map-btn:hover {
    border-color: #F15201; }

.overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  top: 0;
  left: 0;
  cursor: pointer; }

.contact-pop-up {
  padding: 40px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f2f2f2;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  color: #292929;
  font-size: 18px;
  width: 30%;
  height: 300px;
  z-index: 7; }

.contact-pop-title {
  font-size: 26px;
  font-weight: 500; }

.pop-up-close {
  width: 180px;
  height: 48px;
  background: #F15201;
  border: none;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  color: #fff; }

.about-main-block {
  background-size: cover !important;
  padding: 342px 0 60px; }
  @media screen and (max-width: 1200px) {
    .about-main-block {
      padding: 60px 0 40px 0;
    }}
  @media screen and (max-width: 768px) {
    .about-main-block {
      background-position: center;
    }
  }

.about-main-block .about-main-title {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  padding-left: 24px;
  border-left: 4px solid #F15201; }


.about-main-block-without-image {
  background-size: cover;
  padding: 30px 0 30px; }
  @media screen and (max-width: 768px) {
    .about-main-block-without-image {
      background-position: 0 0 !important; } }

.about-main-block-without-image .about-main-title {
  font-size: 48px;
  font-weight: 500;
  color: #000;
  padding-left: 24px;
  border-left: 4px solid #F15201; }


.about-desc-text {
  padding-top: 60px;
  color: #000;
  /*padding: 60px 0;*/
  /*border-bottom: 1px solid #E2E2E2; */
}
  .about-desc-text p {
    /*font-size: 24px;*/
    /*font-weight: 400;*/
    /*line-height: 35px;*/
     }

.about-us-cards {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 60px; }
  @media screen and (max-width: 650px) {
    .about-us-cards {
      padding-bottom: 20px; } }

.about-makes-block {
  /*padding: 80px 0; */
}
  .about-makes-block p {
    color: #4C4B49; }
  @media screen and (max-width: 650px) {
    .about-makes-block {
      padding: 40px 0; } }

.recruitment-block {
  background-size: cover;
  padding: 342px 0 60px; }
@media screen and (max-width: 1000px) {
    .recruitment-block {
      padding: 80px 0 40px 0;
    }
}

.recruitment-block .recruitment-title {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  border-left: 4px solid #F15201; }
  @media screen and (max-width: 650px) {
    .recruitment-block .recruitment-title {
      font-size: 26px; } }

.recruitment-block-without-image {
  background-size: cover;
  padding: 40px 0 10px; }

.recruitment-block-without-image .recruitment-title {
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  color: #000;
  border-left: 4px solid #F15201; }
  @media screen and (max-width: 650px) {
    .recruitment-block-without-image .recruitment-title {
      font-size: 36px; } }

.recruitment-block .breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  padding-top: 10px;
  /*border-left: 4px solid #F15201;*/
}
  @media screen and (max-width: 650px) {
    .recruitment-block .breadcrumbs {
      font-size: 12px; } }

.recruitment-block-without-image .breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  color: #000;
  padding-top: 10px;
  /*border-left: 4px solid #F15201;*/
}
  @media screen and (max-width: 650px) {
    .recruitment-block-without-image .breadcrumbs {
      font-size: 12px; } }

.about-main-block .breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  padding-top: 10px;
  /*border-left: 4px solid #F15201;*/
}
  @media screen and (max-width: 650px) {
    .about-main-block .breadcrumbs {
      font-size: 12px; } }

.about-main-block-without-image .breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 24px;
  color: #000;
  padding-top: 10px;
  /*border-left: 4px solid #F15201;*/
}
  @media screen and (max-width: 650px) {
    .about-main-block-without-image .breadcrumbs {
      font-size: 12px; } }

.project-main-info-block .breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  /*padding-left: 24px;*/
  padding-top: 10px;
  /*border-left: 4px solid #F15201;*/
}
  @media screen and (max-width: 650px) {
    .project-main-info-block .breadcrumbs {
      font-size: 12px; } }

.project-main-info-block-without-image .breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  /*padding-left: 24px;*/
  color: #000;
  padding-top: 10px;
  /*border-left: 4px solid #F15201;*/
}
  @media screen and (max-width: 650px) {
    .project-main-info-block-without-image .breadcrumbs {
      font-size: 12px; } }


.professional-registration-block {
  padding-bottom: 10px; }

.professional-registration-desc {
  color: #000;
  padding: 60px 0; }
  .professional-registration-desc p {
    /*font-size: 24px;*/
    /*font-weight: 400;*/
    /*line-height: 35px;*/
    color: #000;
  }
    @media screen and (max-width: 515px) {
      .professional-registration-desc p {
        text-align: justify; } }

.registration-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .registration-form input::-webkit-input-placeholder {
    color: #909090; }
  .registration-form input::-moz-placeholder {
    color: #909090; }
  .registration-form input:-moz-placeholder {
    color: #909090; }
  .registration-form input:-ms-input-placeholder {
    color: #909090; }
  @media screen and (max-width: 1024px) {
    .registration-form {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.form-input-block {
  width: 55%; }
  @media screen and (max-width: 1024px) {
    .form-input-block {
      width: 100%;
      margin-bottom: 20px; } }

.file-uploads-block {
  width: 45%; }
  @media screen and (max-width: 1024px) {
    .file-uploads-block {
      width: 100%; } }

.registration-form-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px; }

.personal-info {
  margin-bottom: 30px; }

.personal-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 20px; }

.info-input {
  width: 280px;
  height: 48px;
  border: 1px solid #E2E2E2;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 14px;
  padding-left: 20px;
  color: #292929; }
  @media screen and (max-width: 1024px) {
    .info-input {
      margin-bottom: 10px; } }
  @media screen and (max-width: 515px) {
    .info-input {
      width: 100%; } }

.input-first {
  margin-right: 20px; }

.contact-detail-input-first-row {
  margin-bottom: 20px; }

.contact-detail-input-second-row {
  margin-bottom: 20px; }

.skype-input {
  width: 580px;
  height: 48px;
  border: 1px solid #E2E2E2;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding-left: 20px;
  font-size: 14px;
  color: #292929; }
  @media screen and (max-width: 650px) {
    .skype-input {
      width: 100%; } }

.full-input {
 width: 580px;
 height: 48px;
 border: 1px solid #E2E2E2;
 -webkit-border-radius: 4px;
         border-radius: 4px;
 padding-left: 20px;
 font-size: 14px;
 color: #292929;
 margin-bottom: 20px; }
 @media screen and (max-width: 650px) {
   .full-input {
     width: 100%; } }

.vacancy-select-input {
 width: 580px;
 height: 48px;
 border: 1px solid #E2E2E2;
 -webkit-border-radius: 4px;
         border-radius: 4px;
 padding-left: 20px;
 font-size: 14px;
 color: #909090;
 margin-bottom: 20px; }
 @media screen and (max-width: 650px) {
   .vacancy-select-input {
     width: 100%; } }

.file-upload-title {
  font-size: 24px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 10px; }

.file-upload-desc {
  font-size: 14px;
  font-weight: 400;
  color: #4C4B49; }

.file-type {
  margin-bottom: 31px; }

.upload-file-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (max-width: 650px) {
    .upload-file-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 20px; } }

.upload-block-title {
  width: 30%;
  font-size: 20px;
  font-weight: 300;
  color: #000; }
  @media screen and (max-width: 650px) {
    .upload-block-title {
      margin-bottom: 10px;
      -webkit-align-self: flex-start;
          -ms-flex-item-align: start;
              align-self: flex-start; } }

.upload-block-control {
  width: 70%; }
  @media screen and (max-width: 650px) {
    .upload-block-control {
      width: 100%; } }

.upload-file-block {
  margin-bottom: 10px; }

.file-upload-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 400px;
  height: 60px;
  background: #F3F4F5;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  padding: 0 0 0 10px; }
@media screen and (max-width: 650px){
  .file-upload-control {
    width: 100%;
}
}


.file-name {
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
  color: #909090; }

#english-file, #french-file, #spanish-file {
  position: absolute;
  left: -9999px; }

.file-upload {
  width: 87px;
  height: 38px;
  display: inline-block;
  background: #4C4B49;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 10px; }

.gdpr-desc {
  border: 4px solid #c6c5c5;
  margin: 30px 0 20px;
  padding: 0px 10px 0px;
  color: #000; }
  @media screen and (max-width: 650px) {
    .gdpr-desc {
      padding: 10px; } }

.check-box-policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px; }

.share-policy-text {
  font-size: 11px;
  font-weight: 400;
  color: #292929;
  padding-left: 10px; }

.share-checkbox-item[type="checkbox"] {
  display: none; }

.share-checkbox-label {
  color: #000;
  cursor: default;
  font-weight: normal;
  vertical-align: middle; }
  .share-checkbox-label::before {
    content: " ";
    display: inline-block;
    position: relative;
    text-align: center;
    text-indent: 0;
    width: 24px;
    height: 24px;
    background: #FFF;
    border: 1px solid #B9B9B9;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    vertical-align: middle; }

.share-checkbox-item:checked + label:before {
  content: "";
  color: #fff;
  background: #fff url("../img/icons/ic-check-orange.svg") 50% 50% no-repeat;
  border-color: #D6D6D6; }

.form-send-btn {
  width: 280px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: #909090;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: none;
  margin: 14px 0 60px; }
  @media screen and (max-width: 515px) {
    .form-send-btn {
      width: 200px;
      height: 40px; } }

.satisfaction-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px; }
  @media screen and (max-width: 650px) {
    .satisfaction-title {
      font-size: 24px; } }

.satisfaction-version {
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  color: #000;
  margin-bottom: 10px; }
  @media screen and (max-width: 650px) {
    .satisfaction-version {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      font-size: 14px; } }

.version-link {
  color: #017EF1;
  padding-left: 5px; }
  .version-link:hover {
    text-decoration: none;
    color: #017EF1; }

.satisfaction-link-block {
  position: relative; }

.button-send-block {
  position: relative; }

.btn-notification-block {
  display: none;
  width: 197px;
  height: 80px;
  background: #F15201;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 25px;
  position: absolute;
  top: -90px;
  left: 20%; }
  .btn-notification-block::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 16px;
    border-color: #F15201 #F15201 transparent;
    position: absolute;
    bottom: -9px;
    left: 20px; }
  @media screen and (max-width: 515px) {
    .btn-notification-block {
      width: 120px;
      height: 50px;
      font-size: 14px;
      padding: 5px;
      top: -40px;
      left: 50%; } }

.notification-block {
  display: none;
  width: 197px;
  height: 80px;
  background: #F15201;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 25px;
  position: absolute;
  top: -100px;
  left: 50%; }
  .notification-block::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 16px;
    border-color: #F15201 #F15201 transparent;
    position: absolute;
    bottom: -9px;
    left: 20px; }
  @media screen and (max-width: 515px) {
    .notification-block {
      width: 120px;
      height: 50px;
      font-size: 14px;
      padding: 5px;
      top: -20px; } }

.construction-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 0; }

.construction-logo {
  width: 155px !important;
  height: 100px !important;
  margin-bottom: 70px; }

.construction-title {
  font-size: 48px;
  font-weight: 400;
  color: #292929;
  margin-top: 40px; }
  @media screen and (max-width: 515px) {
    .construction-title {
      font-size: 30px; } }

.construction-desc {
  font-size: 24px;
  font-weight: 400;
  color: #909090;
  margin-top: 10px; }
  @media screen and (max-width: 515px) {
    .construction-desc {
      text-align: center;
      line-height: 30px; } }

@media screen and (max-width: 515px) {
  .contruction-main-img {
    width: 100%; } }

.btn-up {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: -50px;
  right: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: none;
  background: #f15201;
  z-index: 99999;
  outline: 0 !important;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-up::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.btn-up-active {
  bottom: 50px;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px); } }

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px); } }

/***** animation scale-up-hor-left *****/
@-webkit-keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; } }
@keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0; } }

/***** animation slide-right *****/
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px); }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/***** adaptability *****/
