@charset "UTF-8";

* {
  margin: 0;
  list-style: none;
}
 
@font-face {
  font-family: 'opensans';
  src: url("../fonts/OpenSans/OpenSans-ExtraBold.woff");
}

@font-face {
  font-family: 'opensanslight';
  src: url("../fonts/OpenSans/OpenSans-Light.woff");
}

@font-face {
  font-family: 'opensansregular';
  src: url("../fonts/OpenSans/OpenSans-Regular.woff");
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
}

.menu {
  position: absolute;
  z-index: 100;
  top: 50px;
  width: 100%;
  height: auto;
}

.menu .menu-btn {
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
}

.menu .menu-btn p {
  position: absolute;
  left: 51px;
  top: 10px;
  font-size: 20px;
  color: white;
  font-family: 'opensans';
}

.menu .menu-btn span {
  position: absolute;
  content: '';
  border: 2px solid white;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-animation: pulse 1.8s linear infinite;
          animation: pulse 1.8s linear infinite;
  opacity: 1;
}

.menu .menu-btn span::after {
  position: absolute;
  content: '';
  border: 2px solid white;
  left: -12px;
  right: -12px;
  top: -12px;
  bottom: -12px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-animation: pulse 1.8s linear infinite;
          animation: pulse 1.8s linear infinite;
  opacity: 1;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.menu .menu-btn_active p {
  position: absolute;
  left: 51px;
  top: 0px;
  font-size: 0px;
}

.menu .menu-btn_active span {
  width: 10px;
  left: 17px;
  top: 20px;
  bottom: 29px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-border-radius: 0;
          border-radius: 0;
  border: 1px solid white;
}

.menu .menu-btn_active span:after {
  width: 12px;
  left: -2px;
  top: 5px;
  bottom: -6px;
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-border-radius: 0;
          border-radius: 0;
  border: 1px solid white;
}

.menu .menu-block {
  position: relative;
  /*  left: 50px;
          top: 20px; */
}

.menu .menu-nav a {
  width: 100px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 100;
  display: inline-block;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  background: rgba(255, 255, 255, 0.397);
  text-align: center;
  border: 1px solid white;
  font-family: 'opensansregular';
}

.menu .menu-nav a:hover {
  background: rgba(255, 255, 255, 0.637);
}

.menu .menu-nav {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scaleX(0) translateX(0%);
      -ms-transform: scaleX(0) translateX(0%);
          transform: scaleX(0) translateX(0%);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
  visibility: hidden;
  height: 50px;
  line-height: 50px;
  padding-left: 52px;
  margin-right: -25px;
  position: absolute;
}

.menu .menu-nav_active {
  -webkit-transform: scaleX(1) translateX(0%);
      -ms-transform: scaleX(1) translateX(0%);
          transform: scaleX(1) translateX(0%);
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

.footer {
  background: #192431;
  padding-top: 130px;
}

.footer .get-in-touch h3 {
  font-family: 'opensansregular';
  font-size: 13px;
  color: #fff;
  margin-bottom: 25px;
}

.footer .get-in-touch p {
  font-family: 'opensanslight';
  font-size: 13px;
  color: #fff;
  line-height: 20px;
}

.footer .get-in-touch .tour {
  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;
  margin-top: 60px;
}

.footer .get-in-touch .tour a {
  margin-bottom: 10px;
  text-decoration: none;
  font-family: 'opensanslight';
  font-size: 13px;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .get-in-touch .tour a:hover {
  color: #4bccff;
}

.footer .form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer .form-group input {
  padding: 10px;
  width: 100%;
  height: 57px;
  -webkit-border-radius: 5px 0px 0px 5px;
          border-radius: 5px 0px 0px 5px;
  border: 0px;
}

.footer .form-group button {
  width: 70px;
  height: 57px;
  border: 0px;
  -webkit-border-radius: 0px 5px 5px 0px;
          border-radius: 0px 5px 5px 0px;
  font-size: 20px;
  background: #82ca9c;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.footer .form-group button:hover {
  background: #5dd188;
}

.footer h3 {
  font-family: 'opensansregular';
  font-size: 13px;
  color: #fff;
  margin-bottom: 25px;
}

.footer p {
  font-family: 'opensanslight';
  font-size: 13px;
  color: #57697f;
  line-height: 20px;
  margin-top: 20px;
}

.video {
  min-height: 100vh;
  text-align: center;
  width: 100%;
  display: table;
}

.video .text {
  position: relative;
}

.video .text .text-2 {
  position: absolute;
  color: #fafafa;
  text-align: start;
  top: 40vh;
  font-family: 'roboto100';
}

.video .text .text-2 h3 {
  font-family: 'opensanslight';
  font-size: 60px;
  margin-bottom: 25px;
}

.video .text .text-2 p {
  font-family: 'opensanslight';
  font-size: 13px;
  line-height: 20px;
}

.video .phon {
  position: relative;
}

.video .phon .im {
  position: absolute;
  top: 20vh;
}

.video .phon .im img {
  width: 100%;
  height: auto;
}

.start_something {
  margin-top: 140px;
}

.start_something h3 {
  font-family: 'opensanslight';
  font-size: 35px;
  color: #222626;
}

.start_something p {
  font-size: 14px;
  margin-top: 40px;
  color: #959595;
  font-family: 'opensanslight';
  line-height: 20px;
}

.start_nemo {
  margin-top: 333px;
}

.start_nemo p {
  font-size: 14px;
  margin-top: 40px;
  color: #959595;
  font-family: 'opensanslight';
  line-height: 20px;
}

.blog {
  margin-top: 80px;
  margin-bottom: 80px;
}

.blog_design {
  padding: 30px;
  background: #f5989d;
  width: 100%;
  height: 276px;
}

.blog_design h3 {
  font-size: 30px;
  font-family: 'opensanslight';
  color: #fff;
}

.blog_design p {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 20px;
  color: #fff;
  font-size: 13px;
  font-family: 'opensansregular';
}

.blog_design a {
  text-decoration: none;
  font-family: 'opensans';
  font-size: 14px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
}

.blog_design a:hover {
  color: #6e6e6e;
}

.blog_design a::after {
  content: '→';
}

.blog_our-clients .gif {
  position: relative;
  display: block;
  width: 100%;
  height: 276px;
  background: url(../images/gif-img-2.png) no-repeat center center;
  background-repeat: repeat-y, repeat-y;
  -webkit-background-size: 100% auto;
          background-size: 100% auto;
}

.blog_our-clients .fire {
  position: relative;
  display: block;
  width: 100%;
  height: 276px;
  background: url(../images/gif-img-3.png) no-repeat center center;
  background-repeat: repeat-y, repeat-y;
  -webkit-background-size: 100% auto;
          background-size: 100% auto;
}

.blog_our-clients .flame {
  position: relative;
  display: block;
  width: 100%;
  height: 276px;
  background: url(../images/gif-img-4.png) no-repeat center center;
  background-repeat: repeat-y, repeat-y;
  -webkit-background-size: 100% auto;
          background-size: 100% auto;
}

.blog_our-clients .gif img {
  visibility: hidden;
  /* @include wh ('','', 318px, 172px); */
  width: 100%;
  height: 276px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_our-clients .gif:hover {
  background: none;
}

.blog_our-clients .gif:hover img {
  visibility: visible;
  border: 0;
}

.blog_our-clients a {
  color: #fff;
}

.blog_our-clients a::after {
  content: '→';
}

.blog_our-clients .our {
  position: absolute;
  top: 28px;
  left: 30px;
  right: 20px;
}

.blog_our-clients .our h3 {
  font-size: 30px;
  font-family: 'opensanslight';
  color: #fff;
}

.blog_our-clients .our p {
  margin-top: 30px;
  margin-bottom: 55px;
  line-height: 20px;
  color: #fff;
  font-size: 13px;
  font-family: 'opensansregular';
}

.blog_our-clients .our a {
  text-decoration: none;
  font-family: 'opensans';
  font-size: 14px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.blog_our-clients .our a:hover {
  color: #6e6e6e;
}

.blog_our-clients .our button {
  position: absolute;
  top: 180px;
  left: 90%;
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
  background: 0;
  border: 0px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.blog_our-clients .our button:hover {
  color: #c83c23;
}

.blog .cub {
  padding-right: 0px;
  padding-left: 0px;
}

.details {
  margin-bottom: 160px;
}

.details h2 {
  font-size: 35px;
  font-family: 'opensanslight';
  color: #222626;
}

.details .web {
  margin-top: 70px;
}

.details .web h3 {
  font-family: 'opensans';
  color: #67676d;
  font-size: 13px;
  margin-bottom: 30px;
}

.details .web p {
  font-family: 'opensanslight';
  color: #67676d;
  font-size: 14px;
  line-height: 20px;
}

.car {
  background: url(../images/car.jpg);
  width: 100%;
  height: auto;
}

.car .more-power {
  margin-top: 60%;
  margin-bottom: 20%;
}

.car .more-power h3 {
  font-family: 'opensanslight';
  font-size: 60px;
  color: #fff;
}

.car .more-power p {
  font-family: 'opensanslight';
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.car .more-power a {
  font-family: 'opensans';
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.car .more-power a:hover {
  color: #aaaaaa;
}

.reasons {
  background: #82ca9c;
  padding-top: 120px;
  padding-bottom: 160px;
}

.reasons h2 {
  font-size: 35px;
  font-family: 'opensanslight';
  color: #ffffff;
}

.reasons .web-based {
  margin-top: 70px;
}

.reasons .web-based h3 {
  font-family: 'opensans';
  color: #fdfdff;
  font-size: 13px;
  margin-bottom: 30px;
}

.reasons .web-based p {
  font-family: 'opensanslight';
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}

.window {
  padding-top: 50px;
  padding-bottom: 140px;
  background: #f6f7fa;
}

.window .go {
  margin-top: 50px;
  background: #f6f7fa;
  padding: 47px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.window .go:hover {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.window .go a {
  font-family: 'opensansregular';
  font-size: 13px;
  text-decoration: none;
  padding: 5px 10px;
  background: #e1e1e1;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.window .go a:hover {
  background: #bd8cbf;
}

.window .go h3 {
  font-family: 'opensanslight';
  font-size: 30px;
  color: #2e3b4e;
  margin-top: 24px;
  margin-bottom: 26px;
}

.window .go p {
  font-family: 'opensansregular';
  font-size: 14px;
  color: #2e3b4e;
  line-height: 20px;
  margin-bottom: 30px;
}

.window .go button {
  font-size: 13px;
  text-transform: uppercase;
  padding: 17px 33px;
  color: #fff;
  background: #82ca9c;
  border: 0px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.window .go button:hover {
  background: #41cc74;
}

.window .go .go-solo {
  margin-top: 20px;
}

.window .go .go-solo a {
  font-size: 20px;
  background: 0;
  color: #c5c5c5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.window .go .go-solo a:hover {
  color: #4bccff;
}

@media screen and (max-width: 1269px) {
  .blog_design h3 {
    font-size: 22px;
  }

  .blog_design p {
    font-size: 11px;
  }

  .blog_our-clients .our h3 {
    font-size: 22px;
  }

  .blog_our-clients .our p {
    font-size: 11px;
    margin-bottom: 30px;
  }

  .reasons h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 992px) {
  .menu .menu-nav {
    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;
    height: 200px;
    -webkit-border-top-left-radius: 27px;
            border-top-left-radius: 27px;
  }
}

@media screen and (max-width: 767px) {
  .start_nemo {
    margin-top: 40px;
  }
}

@media screen and (max-width: 534px) {
  .car .more-power h3 {
    font-size: 35px;
  }
}