@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

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

html {
  font-size: 62.5%; }

body {
  box-sizing: border-box; }

@font-face {
  font-family: 'Onest';
  src: url("/fonts/onest/OnestBlack1602-hint.woff") format("woff"), url("/fonts/onest/OnestBlack1602-hint.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'Onest';
  src: url("/fonts/onest/OnestMedium1602-hint.woff") format("woff"), url("/fonts/onest/OnestMedium1602-hint.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Onest';
  src: url("/fonts/onest/OnestLight1602-hint.woff") format("woff"), url("/fonts/onest/OnestLight1602-hint.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Onest';
  src: url("/fonts/onest/OnestThin1602-hint.woff") format("woff"), url("/fonts/onest/OnestThin1602-hint.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'Onest';
  src: url("/fonts/onest/OnestBold1602-hint.woff") format("woff"), url("/fonts/onest/OnestBold1602-hint.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Onest';
  src: url("/fonts/onest/OnestRegular1602-hint.woff") format("woff"), url("/fonts/onest/OnestRegular1602-hint.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

body {
  font-family: "Onest", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.7;
  color: #202020; }

/*
.heading-primary {
    color: $color-white;
    text-transform: uppercase;
    margin-bottom: 6rem;

    backface-visibility: hidden;

    &--main {
        display: block;
        font-size: 6rem;
        font-weight: 400;
        letter-spacing: 3.5rem;

        animation-name: moveInLeft;
        animation-duration: 1s;
        animation-timing-function: ease-out;
    }

    &--sub {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 1.75rem;
        animation: moveInRight 1s ease-out;
    }
}

.heading-secondary {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    //background-image: linear-gradient(to right, $color-primary-light, $color-primary-dark);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: .2rem;
    transition: all .2s;

    &:hover {
        transform: skewY(2deg) skewX(20deg) scale(1.1);
        text-shadow: .5rem 1rem 2rem rgba($color-black, .2);
    }
}

.heading-tertiary {
    font-size: $default-font-size;
    font-weight: 700;
    text-transform: uppercase;
}

.paragraph {
    font-size: $default-font-size;

    &:not(:last-child){
        margin-bottom: 3rem;
    }
}*/
.button:link, .button:visited {
  color: #202020;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem; }

.button--primary {
  background-color: #FECC00;
  color: #202020; }
  .button--primary img {
    transition: all .2s;
    margin-left: 3px;
    margin-top: -3px; }
  .button--primary:hover img {
    transform: translateX(3px); }
  .button--primary::after {
    background-color: #FECC00; }

.button--green {
  background-color: #FECC00;
  color: #fff; }
  .button--green::after {
    background-color: #FECC00; }

.button::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.button--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

/*
.btn-text {
    &:link, &:visited {
        font-size: $default-font-size;
        color: $color-primary;
        display: inline-block;
        text-decoration: none;
        border-bottom: 1px solid $color-primary;
        padding: 3px;
        transition: all .2s;
    }

    &:hover {
        background-color: $color-primary;
        color: $color-white;
        box-shadow: 0 1rem 2rem rgba($color-black, .15);
        transform: translateY(-2px);
    }

    &:active {
        box-shadow: 0 .5rem 1rem rgba($color-black, .15);
        transform: translateY(0);
    }
}*/
.feature-box {
  margin-bottom: 1.5rem; }
  .feature-box > div {
    background-color: #F8F8F8;
    box-shadow: 0 0.5rem 1.5rem rgba(32, 32, 32, 0.1);
    border-radius: 5px;
    padding: 2.5rem 1.5rem;
    min-height: 100%; }

.feature-icon-box img {
  height: 64px;
  width: 64px;
  min-width: 64px}

.service-box {
  margin-bottom: 2rem; }
  .service-box > div {
    background-color: #444;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    transition: all .3s;
    height: 100%; }
    .service-box > div:hover {
      background-color: #FECC00; }
      .service-box > div:hover h3 {
        color: #202020; }
      .service-box > div:hover ul li a {
        color: #202020; }
      .service-box > div:hover svg path:not(.icon-yellow-color) {
        fill: #202020; }
    .service-box > div h3 {
      color: #fff;
      margin-bottom: 1rem; }
    .service-box > div ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .service-box > div ul li {
        margin-bottom: 5px; }
        .service-box > div ul li a {
          color: #FECC00;
          font-size: 1.5rem;
          text-decoration: none; }
          .service-box > div ul li a:hover {
            color: #fff; }
  .service-box__icon {
    display: block;
    text-align: center;
    margin-bottom: 3rem; }
    .service-box__icon svg {
      height: 90px; }
    .service-box__icon svg path:not(.icon-yellow-color) {
      fill: #FECC00; }

.header__menu-phone {
  padding: 10px 15px; }
  #phone-dropdown {
    color: #FECC00;
    padding: 0;
    font-size: 18px;
    background-color: transparent;
    border: 0;
  }
  #header-dropdown-menu {
    background-color: #202020;
  }
  #header-dropdown-menu > li {
    font-size: 15px;
    font-weight: 300;
  }
  .header__menu-phone a {
    color: #FECC00;
    text-decoration: none; }
    .header__menu-phone a:hover {
      text-decoration: underline; }
  .header__menu-phone img {
    margin-right: 8px; }

.header__top {
  background-color: #202020;
  color: #FECC00;
  margin: 0 0 2rem 0; }
  .header__top-menu {
    list-style: none;
    margin: 0;
    padding: 10px 15px; }
    .header__top-menu li {
      display: inline-block; }
      .header__top-menu li a, .header__top-menu li span {
        color: #FECC00;
        text-decoration: none;
        padding: 1.3rem 1.5rem;
        transition: all .3s; }
        .header__top-menu li a:hover, .header__top-menu li span:hover {
          background-color: #FECC00;
          color: #202020;
          cursor: pointer; }
        .header__top-menu li a img, .header__top-menu li span img {
          margin-right: 3px;
          margin-top: -3px; }
  .header__canvas-top-menu {
    list-style: none;
    padding-left: 0;
    border-top: 1px solid #202020;
    padding-top: 1rem;
  }
  .header__canvas-top-menu li {
    padding: 1.3rem 0;
    border-bottom: 0!important;
    text-decoration: none;
    color: #202020;
    font-weight: 400;
  }
  .header__canvas-top-menu li a {
    text-decoration: none;
    color: #202020;
    font-weight: 400;
  }
  .header__top-right {
    text-align: right; }
    .header__top-right .button {
      float: left; }
  .header__top-lang {
    display: inline-block;
    padding: 10px 15px; }

.header__logo-box img {
  transition: all .3s; }
  .header__logo-box img:hover {
    transform: translateY(-3px); }

.header__menu {
  padding: 0.5rem 0; }
  .header__menu-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: right; }
    .header__menu-list li {
      display: inline-block; }
      .header__menu-list li a {
        color: #202020;
        padding: 2.8rem 2rem;/*3.5rem 2rem*/
        font-size: 1.4rem;
        font-weight: 700;
        text-transform: uppercase;
        border-top: 2px solid transparent;
        border-bottom: 2px solid transparent;
        text-decoration: none;
        transition: all .3s; }
        .header__menu-list li a:hover {
          color: #FECC00;
          border-bottom: 2px solid #FECC00; }
        .header__menu-list li a.active {
          color: #FECC00;
          border-bottom: 2px solid #FECC00; }

.header__top-mobile {
  background-color: #202020;
  color: #FECC00;
  margin: 0 0 2rem 0; }

.footer__main {
  padding: 2rem;
  background-color: #202020; }

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 10px 15px; }
  .footer__menu li {
    display: inline-block; }
    .footer__menu li a {
      color: #FECC00;
      text-decoration: none;
      padding: 1.3rem 1.5rem;
      transition: all .3s;
      font-weight: 500; }
      .footer__menu li a:hover {
        background-color: #FECC00;
        color: #202020;
        border-radius: 0; }
      .footer__menu li a img {
        margin-right: 3px;
        margin-top: -3px; }

.footer__logo-box a{
  display: inline-block; }

.footer__logo-box img{
  display: block; }

.footer__menu-box {
  padding: 2rem 0; }

.footer__right-menu {
  list-style: none;
  margin: 0;
  padding: 10px 15px;
   }
  .footer__right-menu li {
    display: inline-block; }
    .footer__right-menu li a, .footer__right-menu li span {
      color: #FECC00;
      text-decoration: none;
      padding:.8rem 1.5rem;
      transition: all .3s;
    display: block}
      .footer__right-menu li a:hover, .footer__right-menu li span:hover {
        background-color: #FECC00;
        color: #202020;
        cursor:pointer; }
      .footer__right-menu li a img, .footer__right-menu li span img {
        margin-right: 3px;
        margin-top: -3px; }

.footer__right-menu-phones {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 10px 15px;
  }
  .footer__right-menu-phones li {
    display: inline-block; }
    .footer__right-menu-phones li a {
      color: #FECC00;
      text-decoration: none;
      padding: .8rem 1.5rem;
      transition: all .3s;
    display: block}
      .footer__right-menu-phones li a:hover {
        text-decoration: underline; }
      .footer__right-menu-phones li a img {
        margin-right: 8px;
        margin-top: -3px; }
      .footer__right-menu-phones li a span {
        display: block }

.footer__copyright {
  background-color: #FECC00;
  padding: 2rem;
  text-align: center; }
  .footer__copyright img {
    height: 20px;
    transition: all .3s; }
    .footer__copyright img:hover {
      transform: translateY(-3px); }

.breadcrumb-block {
  background-color: #f8f8f8;
  padding: 10px 0;
  margin-bottom: 30px; }
  .breadcrumb-block .breadcrumb {
    margin: 0; }
    .breadcrumb-block .breadcrumb a {
      color: #FECC00;
      text-decoration: none; }
      .breadcrumb-block .breadcrumb a:hover {
        text-decoration: underline; }

.service-block {
  padding-bottom: 60px; }
  .service-block h1 {
    margin-bottom: 30px; }
  .service-block p {
    text-align: justify; }
  .service-block p strong {
  font-weight: 600; }

.section-slider {
  position: relative;
  height: 45vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden; }
  .section-slider-block {
    padding: 2px 0;
    position: relative; }
    .section-slider-block .svg-slider-top {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100%;
      z-index: 2;
      height: 3vh; }
      .section-slider-block .svg-slider-top path {
        fill: #fff; }
    .section-slider-block .svg-slider-bottom {
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 100%;
      z-index: 2;
      height: 4vh; }
      .section-slider-block .svg-slider-bottom path {
        fill: #262626; }
  .section-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom right, #FECC00, black);
    opacity: 0.3;
    z-index: 1; }
  .section-slider video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }
  .section-slider .container {
    position: relative;
    z-index: 2; }

@media (pointer: coarse) and (hover: none) {
  /* Media Query for devices withi coarse pointers and no hover functionality
    This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */
  .section-slider {
    background: url('/img/bg-main.jpg') #202020 no-repeat center center scroll; }
  video {
    display: none; } }

.section-our-services {
  background-color: #262626;
  padding: 0 0 6rem 0;
  position: relative; }
  .section-our-services h2 {
    color: #fff;
    font-size: 3.5rem;
    margin: 4rem 0; }
  .section-our-services .svg-our-services {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    z-index: 2;
    height: 3vh; }
    .section-our-services .svg-our-services path {
      fill: #F8F8F8; }

.section-features {
  background-color: #F8F8F8;
  padding: 0 0 6rem 0;
  position: relative; }
  .section-features h2 {
    color: #202020;
    font-size: 3.5rem;
    margin: 4rem 0; }
  .section-features .svg-futures {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    z-index: 2;
    height: 3vh; }
    .section-features .svg-futures path {
      fill: #fff; }

.section-our-clients {
  padding: 0 0 6rem 0; }
  .section-our-clients h2 {
    color: #202020;
    font-size: 3.5rem;
    margin: 4rem 0; }
  .section-our-clients .client-box {
    text-align: center;
    padding: 1rem;
    transition: all .3s;
    margin-bottom: 3rem; }
    .section-our-clients .client-box:hover {
      transform: translateY(-5px); }

.section-contact-us {
  background-color: #F8F8F8;
  padding: 3rem 0 7rem 0; }
  .section-contact-us h2 {
    color: #202020;
    font-size: 3.5rem;
    margin: 4rem 0; }

.modal-content {
  border: 0;
  border-radius: 0;
}

.modal-title {
  color: #202020;
  font-size: 2rem;
}

.modal-footer button {
  border: 0;
  border-radius: 0;
  font-size: 1.6rem;
  padding: 0.8rem 1.5rem;
}

.modal-footer button:active, .modal-footer button:focus {
  box-shadow: none;
  outline: 0;
}

.modal-footer .btn-primary {
  background-color: #FECC00;
  color: #202020;
}

.modal-body input, .modal-body textarea {
  border: 1px solid #FECC00;
  border-radius: 0;
  font-size: 1.6rem;
  padding: 1rem;
}

@media (max-width: 320px) {
  .header__menu-phone a {
    font-size: 1.2rem;
  }

  .header__logo-box {
    text-align: center;
  }
}

@media (min-width: 321px) and (max-width: 575px) {
  .header__menu-phone a {
    font-size: 1.2rem;
  }
}

@media  (min-width: 576px) and (max-width: 767px) {

}

@media (min-width: 768px) {

  .footer__logo-box {
    padding: 3rem 0; }

  .footer__logo {
    margin-right: 5rem; }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header__menu-list li a {
    padding: 3.5rem 1rem;
  }

  .header__menu-phone img {
    margin-right: 5px;
  }

  .header__top-menu li a, .header__top-menu li span {
    padding: 1rem;
  }

  .header__menu-phone {
    padding: 12px 0;
  }

  .header__menu-phone a {
    font-size: 14px;
  }

  .header__top-right a, .header__top-right span {
    font-size: 14px!important;
  }

  .header__top-right .button, .header__top-lang {
    padding: 14px 10px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .header__top-menu li a, .header__top-menu li span {
    padding: 1rem;
  }

  .header__menu-phone {
    padding: 12px 0;
  }

  .header__menu-phone a {
    font-size: 14px;
  }

  .header__top-right a, .header__top-right span {
    font-size: 14px!important;
  }

  .header__top-right .button, .header__top-lang {
    padding: 14px 10px;
  }
}

.custom-toggler.navbar-toggler {
  border-color: rgb(0, 0, 0);
  border-radius: 0;
  padding: 15px;
  margin-right: 10px;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url('/img/icons/menu.svg');
  width: 32px;
}

.offcanvas-body ul li {

}

.offcanvas-body ul li {
  border-bottom: 1px solid #262626;
}

.offcanvas-body ul li a {
  color: #202020;
  font-weight: 400;
  padding: 15px 0;
}

.offcanvas-body ul li a:hover {
  color: #FECC00;
}

.offcanvas-body ul li:last-child {
  border-bottom: 0;
}

.btn-main {
  background-color: #FECC00;
  color: #202020;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  transition: all .2s;
  position: relative;
  font-size: 1.5rem;
}

.btn-main:hover {
  color: #202020;
  transform: translateY(-3px);
}

.article-block {
  background-color: #f8f8f8;
  transition: all .2s;
}

.article-block:hover {
  transform: translateY(-3px);
}

.article-block a {
  text-decoration: none;
}

.article-block h2 {
  color: #FECC00;
  padding: 15px;
}

.article-block p {
  color: #202020;
  padding: 0 15px 15px 15px;
}

.section-calc {
  background-color: #F8F8F8;
  padding: 0 0 6rem 0;
  position: relative;
}

.section-calc h2 {
  color: #202020;
  font-size: 3.5rem;
  margin: 4rem 0;
}

.calc-block {
  background-color: #ffffff;
  box-shadow: 0 0.5rem 1.5rem rgb(32 32 32 / 10%);
  border-radius: 5px;
  padding: 2.5rem;
  height: 100%;
}

.calc-block-el {
  border-bottom: 1px solid #444444;
  padding-bottom: 15px;
  padding-top: 15px;
}

.calc-block-el:first-child {
  padding-top: 0;
}

.calc-block span {
  display: block;
  margin-bottom: 10px;
}

.calc-block .header-span, .calc-block p {
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px;
}

.calc-info-block {
  margin-top: 50px;
}

.calc-info-block p {
  font-weight: normal;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #FECC00;
  margin-top: -8px;
}

.calc-send-email-block {
  margin-top: 50px;
}

.calc-send-email-block input {
  margin-bottom: 15px;
  padding: 10px;
  width: 100%;
}

#calc-send-email {
  background: #FECC00;
  border: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
}

#calc-send-email:disabled {
  background-color: rgba(239, 239, 239, 0.9);
}

.calc-sent-email-block {
  display: none;
  margin-top: 50px;
}

.calc-sent-email-block > span {
  background: #FECC00;
  padding: 15px;
  text-align: center;
  width: 100%;
}

.category-block {
  background: url("/img/bg_gray.jpg") repeat;
  padding-top: 30px;
  padding-bottom: 60px;
}
.category-block h1 {
  margin-bottom: 30px; }
.category-block p {
  text-align: justify; }
.category-block p:last-child {
  margin-bottom: 0;
}
.category-block p strong {
  font-weight: 600; }

.category-block .feature-box > div {
  padding: 0;
  transition: .3s;
}
.category-block .feature-box > div a {
  color: #202020;
  display: block;
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.category-block .feature-box > div:hover {
  background: #FECC00;
}

.category-block-about {
  background-color: #F8F8F8;
  box-shadow: 0 0.5rem 1.5rem rgb(32 32 32 / 10%);
  border-radius: 5px;
  padding: 2.5rem;
  margin-top: 30px;
}

#send-request-form input, #send-request-form textarea {
  border-radius: 0;
  font-size: 14px;
  padding: 10px;
}

#send-request-btn {
  border-radius: 0;
  background: #FECC00;
  color: #202020;
  font-size: 14px;
  padding: 10px;
  offset: 0;
  border: 0;
  transition: .3s;
}

#send-request-btn:hover {
  cursor: pointer;
  transform: translateY(-3px);
}

.price-block {
  margin-bottom: 40px;
}