@import url("https://fonts.googleapis.com/css?family=Hind:100,300,400,500,700&subset=latin,cyrillic");
/*_____scrollbar________________________________________________________________________________________________________*/
::-webkit-scrollbar-button {
  background-repeat: no-repeat;
  width: 0;
  height: 0;
}

::-webkit-scrollbar-track {
  background-color: #ecedee;
  opacity: 0.5;
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: #949494;
  opacity: 0.5;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2f4050;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/*____________________________________________________________________________________________________________________*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Hind", sans-serif;
  font-size: 14px;
}

/*____________________________________________________________________________________________________________________*/
.container {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

header {
  padding-top: 70px;
}
header a.logo-box {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header a.logo-box img.logo {
  width: 40px;
  height: auto;
  margin-right: 10px;
}
header a.logo-box .logo-text {
  font-size: 16px;
  color: #212121;
}

main {
  height: calc(100vh - 110px);
  overflow: hidden;
}
main .left-part {
  padding-top: 100px;
  width: 500px;
}
main h1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 50px;
  color: #272727;
  margin-bottom: 20px;
}
main .text-box {
  font-size: 16px;
  line-height: 30px;
  color: #272727;
  margin-bottom: 60px;
}
main .install-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: #00b9ff;
  border-radius: 6px;
  box-shadow: 0 4px 0 0 #0083b5;
}
main .img1 {
  position: absolute;
  top: 10px;
  right: 220px;
  width: 350px;
  height: auto;
  z-index: 1;
  box-shadow: 0px 0px 5px #e0e0e0;
}
main .img2 {
  position: absolute;
  top: 80px;
  right: 0;
  width: 350px;
  height: auto;
  z-index: 2;
  box-shadow: 0px 0px 5px #e0e0e0;
}

@media (max-height: 650px) {
  main {
    overflow: auto;
  }
}
@media (min-width: 1500px) {
  .container {
    width: 1400px;
  }

  header {
    padding-top: 70px;
  }
  header a.logo-box img.logo {
    width: 60px;
    height: auto;
    margin-right: 20px;
  }
  header a.logo-box .logo-text {
    font-size: 20px;
  }

  main {
    height: calc(100vh - 130px);
  }
  main .left-part {
    padding-top: 180px;
    width: 550px;
  }
  main h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 20px;
  }
  main .text-box {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 60px;
  }
  main .install-btn {
    width: 230px;
    height: 50px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
  }
  main .img1 {
    top: 10px;
    right: 280px;
    width: 460px;
  }
  main .img2 {
    top: 80px;
    right: 0;
    width: 460px;
  }
}

/*# sourceMappingURL=site.css.map */
