* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 1px;
}

.wrapper {
  overflow-x: hidden;
}

body {
  background-color: white;
  width: 100%;
  overflow-x: hidden;
}

.facebookIcon {
  position: fixed;
  right: -8px;
  top: 90%;
  z-index: 5;
}

.alert {
  position: fixed;
  height: 100px;
  width: 500px;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 0 0 10px 1px #000;
          box-shadow: 0 0 10px 1px #000;
  top: -200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5f5f5f;
}

.nav {
  height: 80px;
  width: 100%;
  position: fixed;
  font-weight: bolder;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__logoContainer {
  height: 100%;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav__menuContainer {
  height: 100%;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav__logo {
  height: 80px;
  cursor: pointer;
}

.nav__ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: row;
      -ms-flex: row;
          flex: row;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav__li {
  height: 100%;
  padding: 0 30px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1rem;
  -webkit-transition: 0.5s color;
  transition: 0.5s color;
}

.nav__a {
  text-decoration: none;
  color: #ddd;
}

.nav__a:hover {
  cursor: pointer;
  color: rgba(64, 199, 64, 0.726);
}

.nav__hamburgerMenu {
  position: relative;
  float: right;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 20px;
  height: 35px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}

.nav__hamburgerMenu__hamburgerLayer2 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.nav__hamburgerMenu:hover {
  cursor: pointer;
}

.nav__hamburgerMenu:hover .nav__hamburgerLayer2 {
  width: 30px;
}

.nav__hamburgerLayer {
  width: 100%;
  height: 18%;
  border-radius: 5px;
  background-color: #dddddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav__hamburgerLayer--displayNone {
  display: none;
}

.nav__hamburgerLayer--hamburgerUpper {
  position: absolute;
  top: 15px;
  -webkit-transform: rotate(138deg);
          transform: rotate(138deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav__hamburgerLayer--hamburgerLower {
  position: absolute;
  bottom: 15px;
  -webkit-transform: rotate(-138deg);
          transform: rotate(-138deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav__aside {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.section1static {
  height: 100vh;
}

.section1static__control {
  height: 70px;
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.section1static__dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
}

.section1static__dot--marked {
  border: 2px solid black;
}

.section1static__arrow {
  height: 30px;
  width: 30px;
  position: absolute;
  left: calc(50% - 15px);
  bottom: 5%;
  border-bottom: 8px solid #fff;
  border-right: 8px solid #fff;
  border-radius: 10%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
  opacity: 0;
  animation: showArrow 3s forwards, arrowMove 2s infinite alternate-reverse;
  z-index: 1;
}

.section1 {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  -webkit-animation: displayHome 2s;
          animation: displayHome 2s;
}

.section1__background {
  height: 100%;
  width: 100%;
  background-image: url(../images/tm-smart2.jpg);
  background-size: cover;
  background-position: center;
  -webkit-animation: zoomIn 7s linear forwards;
          animation: zoomIn 7s linear forwards;
}

.section1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(70, 70, 70, 0.801);
}

.section1__h1 {
  position: absolute;
  font-size: 70px;
  letter-spacing: 6px;
  color: #fafafa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  top: 30%;
  left: 10%;
  z-index: 1;
  opacity: 0;
  -webkit-animation: showText1 1.5s forwards;
          animation: showText1 1.5s forwards;
}

.section1__h1::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 0;
}

.section1__h2 {
  position: absolute;
  font-size: 25px;
  color: #d8d8d8;
  top: 45%;
  left: 15%;
  z-index: 1;
  opacity: 0;
  -webkit-animation: showText1 1.5s forwards;
          animation: showText1 1.5s forwards;
}

.section1__p {
  position: absolute;
  font-size: 20px;
  color: #cfcfcf;
  top: 55%;
  left: 15%;
  z-index: 1;
  opacity: 0;
  -webkit-animation: showText1 1.5s forwards;
          animation: showText1 1.5s forwards;
}

.section1__btn {
  position: absolute;
  top: 65%;
  left: 30%;
  height: 60px;
  width: 170px;
  color: white;
  border-radius: 30px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  margin-top: -200px;
  -webkit-animation: slideDown 1s 0.8s forwards, flashing 3s infinite;
          animation: slideDown 1s 0.8s forwards, flashing 3s infinite;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(26, 146, 32, 0.726)), color-stop(rgba(25, 148, 31, 0.76)), to(rgba(25, 148, 31, 0.616)));
  background-image: linear-gradient(90deg, rgba(26, 146, 32, 0.726), rgba(25, 148, 31, 0.76), rgba(25, 148, 31, 0.616));
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.178);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.178);
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  opacity: 0;
}

.section1__btn:hover {
  background: none;
  background-color: transparent;
  border: rgba(29, 199, 29, 0.747) solid 1px;
  color: rgba(29, 199, 29, 0.747);
}

.section1-1 {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  -webkit-animation: displayHome 2s;
          animation: displayHome 2s;
  display: none;
}

.section1-1__background {
  height: 100%;
  width: 100%;
  background-image: url(../images/tm-smart3.jpg);
  background-position: center;
  background-size: cover;
  -webkit-animation: zoomIn 7s linear forwards;
          animation: zoomIn 7s linear forwards;
}

.section1-1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(78, 78, 78, 0.781);
}

.section1-1__h1 {
  position: absolute;
  font-size: 70px;
  letter-spacing: 6px;
  color: #fafafa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  top: 30%;
  left: 10%;
  z-index: 1;
  opacity: 0;
  -webkit-animation: showText1 1.5s forwards;
          animation: showText1 1.5s forwards;
}

.section1-1__h1::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 0;
}

.section1-1__h2 {
  position: absolute;
  font-size: 25px;
  color: #d8d8d8;
  top: 45%;
  left: 15%;
  z-index: 1;
  opacity: 0;
  -webkit-animation: showText1 1.5s forwards;
          animation: showText1 1.5s forwards;
}

.section1-1__p {
  position: absolute;
  font-size: 20px;
  color: #cfcfcf;
  top: 55%;
  left: 15%;
  z-index: 1;
  opacity: 0;
  -webkit-animation: showText1 1.5s forwards;
          animation: showText1 1.5s forwards;
}

.section1-1__btn {
  position: absolute;
  top: 65%;
  left: 30%;
  height: 60px;
  width: 170px;
  color: white;
  border-radius: 30px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  margin-top: -200px;
  -webkit-animation: slideDown 1s 0.8s forwards, flashing 3s infinite;
          animation: slideDown 1s 0.8s forwards, flashing 3s infinite;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(26, 146, 32, 0.726)), color-stop(rgba(25, 148, 31, 0.76)), to(rgba(25, 148, 31, 0.616)));
  background-image: linear-gradient(90deg, rgba(26, 146, 32, 0.726), rgba(25, 148, 31, 0.76), rgba(25, 148, 31, 0.616));
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.178);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.178);
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  opacity: 0;
}

.section1-1__btn:hover {
  background: none;
  background-color: transparent;
  border: rgba(29, 199, 29, 0.747) solid 1px;
  color: rgba(29, 199, 29, 0.747);
}

.section2, .section4 {
  height: 800px;
  position: relative;
}

.section2__abstractImg, .section4__abstractImg {
  position: absolute;
  width: 30%;
  top: 65%;
  left: 20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: flashingImg 8s infinite ease-in-out;
          animation: flashingImg 8s infinite ease-in-out;
}

.section2__img, .section4__img {
  position: absolute;
  width: 30%;
  top: 55%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.section2__h1, .section4__h1 {
  position: absolute;
  top: 10%;
  right: 15%;
  font-size: 70px;
  letter-spacing: 6px;
  color: #353535;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section2__h1::after, .section4__h1::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #3cd143;
  bottom: -10px;
  left: 0;
}

.section2__textWrapper, .section4__textWrapper {
  position: absolute;
  width: 500px;
  top: 30%;
  right: 5%;
}

.section2__h2, .section4__h2 {
  font-size: 20px;
  color: #353535;
  margin: 20px;
}

.section2__p, .section4__p {
  color: #5f5f5f;
  margin: 20px;
}

.section3 {
  height: 800px;
  position: relative;
  background-color: #363636;
}

.section3__h1 {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 70px;
  letter-spacing: 6px;
  color: #e9e9e9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section3__h1::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 0;
}

.section3__textWrapper {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 600px;
}

.section3__h2 {
  font-size: 25px;
  color: #d1d1d1;
  margin: 20px;
}

.section3__p {
  margin: 20px;
  color: #cfcfcf;
}

.section3__img {
  position: absolute;
  right: 5%;
  top: -50px;
  width: 35%;
}

.section5 {
  height: 800px;
  position: relative;
  background-color: #353636;
}

.section5__form {
  height: 650px;
  width: 500px;
  position: absolute;
  top: 10%;
  right: 10%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section5__input {
  width: 100%;
  height: 50px;
  max-width: 500px;
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  color: #fff;
}

.section5__input--message {
  height: 400px;
}

.section5__input--botchecker {
  text-align: center;
  color: #f1f1f1;
}

.section5__submit {
  width: 170px;
  height: 60px;
  margin: 50px;
  border-radius: 20px;
  background-color: rgba(43, 201, 43, 0.445);
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  outline: 0;
}

.section5__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, transparent, rgba(255, 255, 255, 0.507), transparent);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.section5__submit:hover {
  background: none;
  background-color: transparent;
  border: rgba(29, 199, 29, 0.747) solid 2px;
  color: #fff;
}

.section5__textWrapper {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 600px;
}

.section5__h1 {
  position: absolute;
  left: 10%;
  top: 10%;
  font-size: 70px;
  letter-spacing: 6px;
  color: #e7e7e7;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section5__h1::after {
  content: '';
  position: absolute;
  width: 45px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 0;
}

.section5__h2 {
  margin: 20px;
  font-size: 25px;
  color: #dbdbdb;
  margin: 20px;
}

.section5__h2--form {
  font-size: 35px;
}

.section5__p {
  margin: 20px;
  color: #cfcfcf;
}

.section6 {
  height: 700px;
  position: relative;
}

.section6__h1 {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 70px;
  letter-spacing: 6px;
  color: #353535;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section6__h1::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 5px;
}

.section6__sliderWrapper {
  position: relative;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 850px;
  height: 250px;
}

.section6__slider {
  position: absolute;
  height: 100%;
  min-width: 100%;
  -webkit-box-shadow: 1px 1px 5px 1px #f0f0f0;
          box-shadow: 1px 1px 5px 1px #f0f0f0;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}

.section6__moveLeft {
  position: absolute;
  height: 15px;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.section6__moveRight {
  position: absolute;
  height: 15px;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.section6__stars {
  position: absolute;
  left: 50%;
  height: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section6__pTestimonial {
  color: #666666;
  position: absolute;
  margin: 0 50px;
  top: 35%;
  text-align: center;
}

.section6__pName {
  color: #292929;
  position: absolute;
  top: 70%;
  font-weight: bolder;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section6__photo {
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 1;
}

.section7 {
  height: 800px;
  position: relative;
  background-color: #383838;
}

.section7__textWrapper {
  position: absolute;
  top: 25%;
  left: 10%;
}

.section7__h1 {
  position: absolute;
  top: 5%;
  left: 10%;
  font-size: 70px;
  letter-spacing: 6px;
  color: #e9e9e9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section7__h1::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 0;
}

.section7__h2 {
  font-size: 25px;
  color: #d8d8d8;
  margin: 20px 0;
}

.section7__p {
  margin: 20px 0;
  color: #cfcfcf;
}

.section7__map {
  position: absolute;
  right: 5%;
  top: 10%;
}

.section8 {
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.section8__h1 {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 70px;
  letter-spacing: 6px;
  color: #353535;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section8__h1::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 5px;
  background-color: #30bb37;
  bottom: -10px;
  left: 5px;
}

.section8__imagesWrapper {
  height: 280px;
  width: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.section8__image {
  height: 100%;
  width: 350px;
}

.section8__image1 {
  background-image: url(../images/tm-smart1min.jpg);
}

.section8__image2 {
  background-image: url(../images/tm-smart2min.jpg);
}

.section8__image3 {
  background-image: url(../images/tm-smart3min.jpg);
}

.footer {
  height: 150px;
  background-color: #383838;
  color: #c9c9c9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bolder;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

@-webkit-keyframes alertAnimation {
  10% {
    top: 10px;
  }
  90% {
    top: 10px;
  }
  100% {
    top: -200px;
  }
}

@keyframes alertAnimation {
  10% {
    top: 10px;
  }
  90% {
    top: 10px;
  }
  100% {
    top: -200px;
  }
}

@-webkit-keyframes displayHome {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes displayHome {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@-webkit-keyframes showArrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showArrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes arrowMove {
  30% {
    bottom: 5%;
  }
  80% {
    bottom: 3%;
  }
}

@keyframes arrowMove {
  30% {
    bottom: 5%;
  }
  80% {
    bottom: 3%;
  }
}

@-webkit-keyframes showText1 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes showText1 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0;
  }
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    margin-top: -200px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    margin-top: -200px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@-webkit-keyframes flashing {
  0% {
    -webkit-box-shadow: 0 0 1px #1ba322;
            box-shadow: 0 0 1px #1ba322;
  }
  50% {
    -webkit-box-shadow: 0 0 13px #59b35d;
            box-shadow: 0 0 13px #59b35d;
  }
  100% {
    -webkit-box-shadow: 0 0 1px #1ba322;
            box-shadow: 0 0 1px #1ba322;
  }
}

@keyframes flashing {
  0% {
    -webkit-box-shadow: 0 0 1px #1ba322;
            box-shadow: 0 0 1px #1ba322;
  }
  50% {
    -webkit-box-shadow: 0 0 13px #59b35d;
            box-shadow: 0 0 13px #59b35d;
  }
  100% {
    -webkit-box-shadow: 0 0 1px #1ba322;
            box-shadow: 0 0 1px #1ba322;
  }
}

@-webkit-keyframes flashingImg {
  0% {
    -webkit-filter: drop-shadow(0 0 1px #24b41f);
            filter: drop-shadow(0 0 1px #24b41f);
  }
  50% {
    -webkit-filter: drop-shadow(0 0 55px #2ba524);
            filter: drop-shadow(0 0 55px #2ba524);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 1px #24b41f);
            filter: drop-shadow(0 0 1px #24b41f);
  }
}

@keyframes flashingImg {
  0% {
    -webkit-filter: drop-shadow(0 0 1px #24b41f);
            filter: drop-shadow(0 0 1px #24b41f);
  }
  50% {
    -webkit-filter: drop-shadow(0 0 55px #2ba524);
            filter: drop-shadow(0 0 55px #2ba524);
  }
  100% {
    -webkit-filter: drop-shadow(0 0 1px #24b41f);
            filter: drop-shadow(0 0 1px #24b41f);
  }
}

@media only screen and (max-width: 1600px) {
  .section7__map {
    width: 600px;
  }
}

@media only screen and (max-width: 1500px) {
  .section1static__control {
    height: 50px;
    width: 15px;
  }
  .section1static__dot {
    height: 12px;
    width: 12px;
  }
  .section1static__arrow {
    height: 24px;
    width: 24px;
    left: calc(50% - 12px);
  }
  .section1__h1, .section1-1__h1 {
    font-size: 50px;
  }
  .section1__h1::after, .section1-1__h1::after {
    width: 30px;
  }
  .section1__h2, .section1-1__h2 {
    font-size: 20px;
  }
  .section1__p, .section1-1__p {
    font-size: 15px;
  }
  .section1__btn, .section1-1__btn {
    height: 50px;
    width: 140px;
    font-size: 12px;
  }
  .section2__h1, .section4__h1 {
    font-size: 50px;
  }
  .section2__h1::after, .section4__h1::after {
    width: 30px;
  }
  .section2__textWrapper, .section4__textWrapper {
    width: 400px;
  }
  .section5__textWrapper {
    width: 450px;
  }
  .section5__h1 {
    font-size: 50px;
  }
  .section5__h1::after {
    width: 35px;
  }
  .section5__h2 {
    font-size: 20px;
  }
  .section5__p {
    font-size: 15px;
  }
  .section5__form {
    height: 550px;
    width: 400px;
    position: absolute;
    top: 15%;
    right: 5%;
  }
}

@media only screen and (max-width: 1400px) {
  .section7__map {
    width: 450px;
  }
}

@media only screen and (max-width: 1200px) {
  .section3__h1 {
    left: 5%;
    font-size: 50px;
  }
  .section3__h1::after {
    content: '';
    width: 40px;
  }
  .section3__textWrapper {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 500px;
  }
  .section3__img {
    right: 3%;
    top: 20%;
    width: 45%;
  }
  .section7 {
    height: 1100px;
    text-align: center;
  }
  .section7__textWrapper {
    top: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section7__h1 {
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section7__map {
    position: absolute;
    width: 80%;
    height: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 65%;
  }
  .section8__image3 {
    display: none;
    background-image: url(../images/tm-smart3min.jpg);
  }
}

@media only screen and (max-width: 1300px) {
  .nav__li {
    padding: 0 20px;
  }
  .nav__logoContainer {
    width: 30%;
  }
  .nav__menuContainer {
    width: 70%;
  }
  .nav__li {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1000px) {
  .nav__aside {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav__a {
    color: #ddd;
  }
}

@media only screen and (max-width: 1000px) {
  .alert {
    height: 80px;
    width: 400px;
    font-size: 14px;
  }
  .nav__menuContainer {
    display: block;
  }
  .nav__hamburgerMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav__ul {
    position: absolute;
    height: 500px;
    width: 250px;
    background-color: #fff;
    top: 100px;
    right: -250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 5px 0 5px -5px #333;
            box-shadow: 5px 0 5px -5px #333;
    -webkit-box-shadow: 0 5px 5px -5px #333;
            box-shadow: 0 5px 5px -5px #333;
  }
  .nav__a {
    color: #000;
  }
  .section2__h1, .section4__h1 {
    top: 15%;
    font-size: 40px;
  }
  .section2__h1::after, .section4__h1::after {
    width: 25px;
  }
  .section2__textWrapper, .section4__textWrapper {
    width: 300px;
  }
  .section2__h2, .section4__h2 {
    font-size: 15px;
  }
  .section2__p, .section4__p {
    font-size: 10px;
  }
  .section3__h1 {
    width: 300px;
    font-size: 40px;
  }
  .section3__h1::after {
    content: none;
  }
  .section3__textWrapper {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 300px;
  }
  .section3__h2 {
    font-size: 20px;
  }
  .section3__p {
    margin: 15px;
  }
  .section3__img {
    right: 3%;
    top: 20%;
    width: 45%;
  }
  .section5 {
    height: 1000px;
    text-align: center;
  }
  .section5__textWrapper {
    width: 100%;
    top: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section5__h1 {
    font-size: 40px;
    top: 5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section5__h1::after {
    width: 30px;
  }
  .section5__h2 {
    font-size: 20px;
  }
  .section5__p {
    font-size: 15px;
  }
  .section5__form {
    height: 550px;
    width: 80%;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section6 {
    height: 600px;
  }
  .section6__h1 {
    font-size: 50px;
  }
  .section6__h1::after {
    width: 30px;
  }
  .section6__sliderWrapper {
    top: 30%;
    width: 550px;
  }
  .section6__moveLeft {
    left: -30px;
  }
  .section6__moveRight {
    right: -30px;
  }
  .section7__h1 {
    font-size: 50px;
    top: 5%;
  }
  .section7__h1::after {
    width: 40px;
  }
  .section7__h2 {
    font-size: 20px;
  }
  .section8 {
    height: 600px;
  }
  .section8__h1 {
    font-size: 50px;
    top: 10%;
  }
  .section8__h1::after {
    width: 25px;
  }
  .section8__imagesWrapper {
    top: 35%;
  }
  .section8__image1 {
    display: none;
    background-image: url(../images/tm-smart3min.jpg);
  }
}

@media only screen and (max-width: 700px) {
  .nav {
    height: 60px;
  }
  .nav__logoContainer {
    width: 50%;
  }
  .nav__menuContainer {
    width: 50%;
  }
  .nav__logo {
    height: 60px;
  }
  .nav__hamburgerMenu {
    height: 30px;
    width: 40px;
  }
  .nav__hamburgerLayer {
    height: 13%;
  }
  .nav__hamburgerLayer--hamburgerUpper {
    top: 13px;
  }
  .nav__hamburgerLayer--hamburgerLower {
    bottom: 13px;
  }
  .section1static__control {
    top: 20%;
  }
  .section1, .section1-1 {
    text-align: center;
  }
  .section1__h1, .section1-1__h1 {
    top: 20%;
    font-size: 40px;
    left: 50%;
    width: 265px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section1__h1::after, .section1-1__h1::after {
    content: none;
  }
  .section1__h2, .section1-1__h2 {
    top: 45%;
    font-size: 15px;
    width: 195px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section1__p, .section1-1__p {
    top: 60%;
    font-size: 10px;
    width: 333px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section1__btn, .section1-1__btn {
    top: 70%;
    height: 45px;
    width: 110px;
    font-size: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section2__abstractImg, .section4__abstractImg {
    width: 50%;
    top: 55%;
    left: 50%;
  }
  .section2__img, .section4__img {
    width: 40%;
    top: 65%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section2__h1, .section4__h1 {
    top: 5%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .section2__textWrapper, .section4__textWrapper {
    width: 100%;
    top: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
  .section3 {
    text-align: center;
  }
  .section3__h1 {
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    font-size: 40px;
  }
  .section3__textWrapper {
    top: 30%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
  .section3__h2 {
    font-size: 20px;
  }
  .section3__p {
    margin: 15px;
  }
  .section3__img {
    top: 55%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section5__h2 {
    font-size: 15px;
  }
  .section5__p {
    font-size: 10px;
  }
  .section5__form {
    width: 80%;
  }
  .section5__input--botchecker {
    font-size: 10px;
  }
  .section5__submit {
    width: 130px;
    height: 50px;
  }
  .section6 {
    height: 500px;
  }
  .section6__h1 {
    font-size: 40px;
  }
  .section6__h1::after {
    width: 25px;
  }
  .section6__sliderWrapper {
    width: 450px;
    height: 200px;
  }
  .section6__moveLeft {
    left: 5px;
  }
  .section6__moveRight {
    right: 5px;
  }
  .section6__stars {
    height: 50px;
  }
  .section6__pTestimonial {
    top: 30%;
    font-size: 12px;
    margin: 0 20px;
  }
  .section6__pName {
    font-size: 16px;
  }
  .section6__photo {
    height: 50px;
  }
  .section7 {
    height: 1000px;
  }
  .section7__textWrapper {
    top: 15%;
  }
  .section7__h1 {
    font-size: 40px;
    top: 5%;
  }
  .section7__h1::after {
    width: 30px;
  }
  .section7__h2 {
    font-size: 15px;
  }
  .section7__p {
    font-size: 10px;
  }
  .section7__map {
    top: 60%;
  }
}

@media only screen and (max-width: 500px) {
  .alert {
    height: 60px;
    width: 300px;
    font-size: 12px;
  }
  .nav__ul {
    height: 400px;
    width: 200px;
    right: -200px;
  }
  .nav__li {
    font-size: 1.2rem;
  }
  .section1static__control {
    height: 50px;
    width: 15px;
    left: 30px;
  }
  .section1static__dot {
    height: 12px;
    width: 12px;
  }
  .section1static__arrow {
    height: 20px;
    width: 20px;
    border-bottom: 5px solid #fff;
    border-right: 5px solid #fff;
    left: calc(50% - 10px);
  }
  .section1__h2, .section1-1__h2 {
    width: 195px;
  }
  .section1__p, .section1-1__p {
    width: 250px;
  }
  .section2__img, .section4__img {
    width: 200px;
  }
  .section3__h2 {
    font-size: 15px;
  }
  .section3__p {
    font-size: 10px;
  }
  .section3__img {
    top: 50%;
    width: 250px;
  }
  .section6__sliderWrapper {
    width: 200px;
    height: 250px;
  }
  .section6__pTestimonial {
    top: 25%;
  }
  .section6__pName {
    top: 80%;
  }
  .section8__image {
    width: 250px;
  }
}

@media only screen and (max-width: 300px) {
  .nav__ul {
    height: 300px;
    width: 150px;
    right: -150px;
  }
  .nav__li {
    font-size: 1.0rem;
  }
  .section1__h1, .section1-1__h1 {
    font-size: 25px;
  }
  .section1__h2, .section1-1__h2 {
    font-size: 15px;
  }
  .section1__p, .section1-1__p {
    font-size: 10px;
  }
  .section1__btn, .section1-1__btn {
    height: 35px;
    width: 90px;
    font-size: 10px;
  }
  .section5__input--botchecker {
    font-size: 7px;
  }
  .footer {
    height: 140px;
  }
}

@media only screen and (max-height: 500px) {
  .facebookIcon {
    top: 70%;
  }
  .section1__h2, .section1-1__h2 {
    display: none;
  }
  .section1__p, .section1-1__p {
    display: none;
  }
}

@media only screen and (max-height: 300px) {
  .section1__h1, .section1-1__h1 {
    display: none;
  }
  .section1__btn, .section1-1__btn {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */