main [class*=ico-] {
  background-color: transparent;
  background-image: url(../images/icons.png);
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: top;
  width: 84px;
  height: 84px;
}
@media only screen and (max-width: 1297px) {
  main [class*=ico-] {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    margin: 0 -0.3em -0.8em -0.3em;
  }
}
main [class*=ico-].ico-seal {
  width: 55px;
  background-position: -976px 0;
}
main [class*=ico-].ico-secret {
  width: 71px;
  background-position: -1254px 0;
}
main [class*=ico-].ico-hd {
  width: 93px;
  background-position: -333px 0;
}
main [class*=ico-].ico-ads {
  width: 70px;
  background-position: -669px 0;
}
main [class*=ico-].ico-devices {
  width: 98px;
  background-position: -149px 0;
}
main [class*=ico-].ico-invoice {
  width: 70px;
  background-position: -512px 0;
}
main [class*=ico-].ico-discret {
  width: 51px;
  background-position: -1117px 0;
}
main [class*=ico-].ico-shield {
  width: 63px;
  background-position: 0 0;
}
main [class*=ico-].ico-lock {
  width: 65px;
  background-position: -825px 0;
}
main section {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 60px 0;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media only screen and (max-width: 1297px) {
  main section {
    padding: 40px 15px;
    min-height: 50vh;
  }
}
main section .more {
  text-align: center;
  margin: -10px auto 0 auto;
}
main section .more a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  gap: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 0 auto;
}
main section .more a:hover {
  -webkit-filter: opacity(80%);
  -moz-filter: opacity(80%);
  -ms-filter: opacity(80%);
  -o-filter: opacity(80%);
  filter: opacity(80%);
}
@media only screen and (max-width: 1297px) {
  main section .more a {
    font-size: 14px;
  }
}
main section .icons {
  margin-top: 150px;
}
@media only screen and (max-width: 1297px) {
  main section .icons {
    margin: 20px 0 0 0;
    gap: 15px 0;
    align-items: flex-start;
  }
}
main section .icons .item {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 1297px) {
  main section .icons .item {
    max-width: 50%;
    padding: 0 5px;
  }
}
main section .icons .item .title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f3cc30;
}
@media only screen and (max-width: 1297px) {
  main section .icons .item .title {
    font-size: 13px;
    padding: 0 15px;
  }
}
main section .icons .item .desc {
  font-size: 15px;
  font-weight: 500;
  color: #adadad;
}
@media only screen and (max-width: 1297px) {
  main section .icons .item .desc {
    font-size: 11px;
  }
  main section .icons .item .desc br {
    display: none;
  }
}
main section .accordion {
  padding: 0;
  max-width: 850px;
  margin: 70px auto;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
@media only screen and (max-width: 1297px) {
  main section .accordion {
    padding: 0 8px;
    margin: 30px auto;
  }
}
main section .accordion .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
}
main section .accordion .item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 20px 18px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media only screen and (max-width: 1297px) {
  main section .accordion .item label {
    padding: 14px 8px;
    font-size: 14px;
  }
}
main section .accordion .item label:after {
  content: "+";
  font-weight: 800;
  font-size: 32px;
  color: #fff;
}
@media only screen and (max-width: 1297px) {
  main section .accordion .item label:after {
    font-size: 22px;
  }
}
main section .accordion .item label:hover {
  background: rgba(255, 255, 255, 0.04);
}
main section .accordion .item .inner {
  border-top: 0;
  padding: 0 20px;
  font-size: 15px;
  line-height: 150%;
  max-height: 0px;
  overflow: hidden;
  color: #adadad;
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -ms-transition: all 0s linear;
  transition: all 0s linear;
}
@media only screen and (max-width: 1297px) {
  main section .accordion .item .inner {
    padding: 0 10px;
    font-size: 13px;
  }
}
main section .accordion .item input {
  position: absolute;
  top: 0;
  left: 0;
  filter: opacity(0%);
}
main section .accordion .item input:checked ~ label {
  color: #fff;
}
main section .accordion .item input:checked ~ label:after {
  content: "-";
}
main section .accordion .item input:checked ~ .inner {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 30px 20px;
  max-height: 800px;
}
@media only screen and (max-width: 1297px) {
  main section .accordion .item input:checked ~ .inner {
    padding: 20px 10px;
  }
}
main section.s1 {
  padding-top: 190px;
  background-image: url(../images/s1.jpg);
}
@media only screen and (max-width: 1297px) {
  main section.s1 {
    padding-top: 40px;
  }
}
main section.s1 .titles {
  gap: 10px;
}
main section.s1 .titles .t1 {
  font-size: 30px;
  color: #fff;
}
@media only screen and (max-width: 1297px) {
  main section.s1 .titles .t1 {
    font-size: 20px;
  }
}
main section.s1 .titles .t1 strong {
  color: #f3cc30;
}
main section.s2 {
  margin: 0;
}
@media only screen and (max-width: 1297px) {
  main section.s2 {
    padding: 20px 5px;
  }
}
main section.s3 {
  background-image: url(../images/s3.jpg);
}
main section.s3 .buttons {
  margin: 150px 0 0 0;
}
@media only screen and (max-width: 1297px) {
  main section.s3 .buttons {
    margin: 30px 0 0 0;
  }
}
main section.s3 .buttons .more {
  margin-top: 30px;
}
@media only screen and (max-width: 1297px) {
  main section.s3 .buttons .more {
    margin-top: 20px;
  }
}
main section.s4 {
  margin: 0;
}
@media only screen and (max-width: 1297px) {
  main section.s4 {
    padding: 20px 5px;
  }
}
main section.s5 {
  background-image: url(../images/s5.jpg);
}
main section.s5 .txt {
  max-width: 600px;
  font-size: 22px;
  line-height: 150%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 60px auto;
}
@media only screen and (max-width: 1297px) {
  main section.s5 .txt {
    font-size: 15px;
    margin: 30px auto;
    padding: 0 20px;
  }
}
main section.s6 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background-color: transparent !important;
}
main section.s7 {
  background-image: url(../images/s7.jpg);
  margin-bottom: -50px;
}
@media only screen and (max-width: 1297px) {
  main section.s7 {
    margin-bottom: -30px;
  }
}
main section.s7 .center {
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
main section.s7 .center::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 50px;
}
main section.s7 .center::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}
main section.s7 .center::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}
main section.s7 .center {
  scrollbar-face-color: rgba(255, 255, 255, 0.2);
  scrollbar-track-color: rgba(255, 255, 255, 0.1);
}
main section.data .logo {
  margin-top: 20px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1297px) {
  main section.data .logo {
    margin-top: 0px;
    margin-bottom: 40px;
  }
}
main section.data .logo img {
  max-width: 70vw;
}
main section.data .form {
  width: 100%;
}
main section.data .data_join {
  max-height: 600px;
  margin: 40px auto;
}
@media only screen and (max-width: 1297px) {
  main section.data .data_join {
    margin: 20px auto;
  }
}
main section.data .data_join form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 12px;
}
main section.data .data_join div.load_default {
  position: fixed !important;
}
main section.data .buttons {
  width: 100%;
  margin: 0;
}
main section.data .buttons button {
  cursor: pointer;
  padding: 0 50px;
}
@media only screen and (max-width: 1297px) {
  main section.data .buttons button {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1297px) {
  main section.data .icons {
    margin-top: 50px;
  }
}
main .e404 {
  padding-top: 220px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1297px) {
  main .e404 {
    padding-top: 80px;
  }
}
main .e404 ~ .s1 {
  padding-top: 60px;
}
@media only screen and (max-width: 1297px) {
  main .e404 ~ .s1 {
    padding-top: 40px;
  }
}

footer {
  border-top: 0;
}

#toast-container * {
  transition-duration: 0s;
}
#toast-container > div {
  font-size: 15px !important;
  margin: 14px !important;
  box-shadow: none !important;
  opacity: 0.95 !important;
}
@media only screen and (max-width: 1297px) {
  #toast-container > div {
    font-size: 13px !important;
    margin: 5px !important;
  }
}
#toast-container > div:hover {
  opacity: 0.9 !important;
}
