@charset "utf-8";

/* generally */

*,
*::after,
*::before {
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: #2e2e2e;
  font-size: 100%;
  background: #fff;
  font-weight: 500;
  min-width: 320px;
}

a {
  color: #3f84e5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a img {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 600;
  margin: 0rem 0rem 0.75rem 0rem;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.875em;
}

p {
  font-size: 0.875em;
  line-height: 1.4;
  margin: 0rem 0rem 1rem 0rem;
}

table {
  border-collapse: collapse;
  margin: 0.5rem 0;
}

table th {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.875em;
  line-height: 1.4;
  text-align: left;
}

table td {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.875em;
  line-height: 1.4;
}

table tr th {
  background: #ededed;
}

table tr:nth-child(2n+1) td {
  background: #ededed;
}

table tr:nth-child(2n) td {
  background: #dfdede;
}

ul, ol {
  margin: 1rem 0;
  padding: 0rem;
  font-size: 0.875em;
  list-style-position: inside;
  line-height: 1.4;
}

li ul,
li ol {
  margin: 0rem;
  font-size: 0.875em;
}

li {
  padding: 0.125rem 0;
  margin: 0rem;
}

li li {
  padding-left: 1.25rem;
}

iframe {
  border: none;
}

/* forms */

form {
  margin: 0;
  padding: 0;
}

.form-item {
  margin-bottom:0.75rem;
}

.form-item .desc {
  display:block;
  margin-bottom:0.375rem;
  font-size:0.813em;
}

.form-item.required .desc:after {
  content:' *';
}

input[type=text],
input[type=tel],
input[type=email],
input[type=url],
input[type=search],
input[type=password],
textarea,
select {
  font-size: 0.813em;
  font-family: inherit;
  width: 100%;
  border: 0.063rem solid #2e2e2e;
  box-shadow: none;
  height:2.75rem;
  padding: 0rem 0.75rem;
  margin: 0;
  color: #2e2e2e;
  border-radius:0.25rem;
  background: #fff;
  line-height: 1.4;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:focus {
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  border: none;
  width: 0.938rem;
  width: 0.938rem;
  padding: 0rem;
  margin: 0rem 0.25rem 0rem 0rem;
}

textarea {
  min-height: 8rem;
  resize: none;
  overflow: auto;
}

button,
input[type=submit] {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: none;
  font-size: 1em;
  line-height: 1.4;
  font-family: inherit;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

::-moz-placeholder {
  opacity: 1;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

label {
  display: block;
  font-size: 1em;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

/* forms end */

/* buttons */

.button {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  font-weight: 600;
  color: #2e2e2e;
  text-align: center;
  cursor: pointer;
  margin: 0.5rem 0rem;
  line-height: 1.4;
  min-width: 15rem;
  border-radius: 0.25rem;
  box-shadow: none;
}

.button:hover {
  text-decoration: none;
}

.button.small {
  font-size: 1em;
  padding: 0.688rem 0.875rem;
}

.button.medium {
  font-size: 1.125em;
  padding: 0.875rem 1rem;
}

.button.proceed {
  background: #ffd248;
}

.button.proceed:active {
  background: #3f84e5;
  color: #fff;
}

.button.back {
  background: #888;
}

.button.back:active {
  background: #aaa;
}

/* buttons end */

/* status messages */

.status-message {
  padding: 0.813rem 0.75rem;
  color: #fff;
  line-height: 1.4;
  margin: 0rem 0 0.75rem 0;
  animation: status-showing 0.5s 1.5s 1 alternate forwards;
  opacity: 0;
  left: 3rem;
  position: relative;
  clear: both;
  font-size: 0.813em;
  border:0.063rem solid;
  fonts-size:600;
  border-radius:0.25rem;
}

.status-message.success {
  border-color: #1ea60c;
  color:#1ea60c;
}

.status-message.error {
  border-color: #cf1616;
  color:#cf1616;
}

.status-message.info {
  border-color: #2035bb;
  color:#2035bb;
}

.status-message:nth-child(1) {
  animation: status-showing 0.5s 0.5s 1 alternate forwards;
}

.status-message:nth-child(2) {
  animation: status-showing 0.5s 0.75s 1 alternate forwards;
}

.status-message:nth-child(3) {
  animation: status-showing 0.5s 1s 1 alternate forwards;
}

.status-message:nth-child(4) {
  animation: status-showing 0.5s 1.25s 1 alternate forwards;
}

@keyframes status-showing {
  0% {
    opacity: 0;
    left: 3em;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.status-message * {
  font-size: 1em;
}

.status-message *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.status-message a {
  color: inherit;
  transition: 0.3s;
  opacity: 0.7;
}

.status-message a:hover {
  opacity: 1;
}

/* status messages end */

/* popup generally */

.popup {
  position:fixed;
  width:100%;
  height:100%;
  overflow:hidden;
  left:0;
  top:0;
  z-index:300;
}

.popup-cover {
  position:fixed;
  width:100%;
  height:100%;
  left:0;
  top:0;
  display:block;
  content:'';
  z-index:5;
  background:rgba(0,0,0,0.9);
}

.popup-content-wrapper {
  width:100%;
  height:100%;
  position:fixed;
  z-index:10;
  overflow:auto;
}

.popup-content {
  z-index:10;
  position:relative;
  margin:0 auto;
  padding:1.25rem;
  max-width:640px;
}

.popup-window {
  background:#fff;
  border-radius: 0.25rem;
  width:100%;
  padding:2.25rem 1.25rem;
}

.popup-window .proceed {
  width: 100%;
}

.popup-close {
  position:absolute;
  right:1.25rem;
  top:1.25rem;
  display:block;
  width:2rem;
  height:2rem;
  cursor:pointer;
  background:url(../images/style/controls/icon-close-3.svg) center center / 12px auto no-repeat;
}

/* popup generally end */

/* app download generally */

.app-download .app-link{
  display: block;
  width: 12.125rem;
  height: 3.625rem;
  margin: 0 auto 0rem auto;
  border: 0.125rem solid #ffffff;
  border-radius: 0.438rem;
  background: center center / 143px auto no-repeat #2e2e2e;
}

.app-download .app-link.apple{background-image: url(../images/style/appstore-badge.svg);}
.app-download .app-link.android{background-image: url(../images/style/googleplay-badge.svg);}

.app-download .app-link:active{
  background-color: #3f84e5;
}

.app-download .qr-code {
  display: none;
}

@media(min-width:1280px){
  .app-download .qr-code {
    margin: 0 auto 0rem auto;
    display: block;
    width:15.625rem;
  }
}

/* app download generally end */

/* contact form */

.contact-form .proceed {
  margin:0.25rem 0 1.563rem 0;
}

.contact-form .info {
  margin:0;
  font-size:0.75em;
}


/* contact form end */

/* page container */

.page-container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
}

.page-container:after {
  width: 100%;
  height: 0;
  display: block;
  content: '';
  clear: both;
}

.page-container .inner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  float: left;
}

/* page container end */

/* page header generally */

.page-header {
  float: left;
  width: 100%;
  position: relative;
  z-index: 200;
}

.page-header .logo{
  width: 2.25rem;
  float: left;
  display:block;
}

.page-header .logo .image{
  width:100%;
}

/* page header generally end */

/* header ribbon */

.header-ribbon {
  float: left;
  width: 100%;
  padding: 1rem 0;
}

.header-ribbon .menu-opener{
  float: right;
  display: block;
  cursor: pointer;
  line-height: 1.625rem;
  letter-spacing: 0.117rem;
  color: #3f84e5;
  font-size: 0.875em;
  transition: 0.3s;
}

.header-ribbon .menu-opener:hover{
  color: #000;
}

/* header ribbon end */

/* menu */

.menu{
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 1150px;
  background: #2e2e2e;
  text-align: center;
  top: 0;
  overflow: auto;
  display: none;
}

.menu .menu-strip{
  float: left;
  width: 100%;
  padding: 1rem 1.25rem 2rem 1.25rem;
}

.menu .menu-strip .menu-closer{
  float: right;
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  cursor: pointer;
  background: url(../images/style/controls/icon-close-2.svg) center center / 22px auto no-repeat;
}

.menu .list{
  margin: 0 0 2.5rem 0;
  padding: 0;
  font-size: 1em;
  list-style: none;
}

.menu .item{
  margin: 0;
  padding: 0;
}

.menu .link{
  text-decoration: none;
  font-size: 1.25em;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  padding: 0.313rem 0;
}

.menu .link:hover{
  text-decoration: none;
}

.menu .link:active {
  color: #3f84e5;
}

.menu .app-download .app-link{
  margin-bottom: 0.625rem;
}

.menu .app-download .app-link:last-of-type{
  margin-bottom: 3.5rem;
}

.menu .app-download .qr-code {
  display: none;
}

/* menu end */

/* page content generally */

.page-content {
  float: left;
  width: 100%;
  text-align: center;
}

.page-block {
  width: 100%;
  margin: 0 auto;
  max-width: 1110px;
  padding: 2.5rem 0;
}

.page-block:after {
  width: 100%;
  height: 0;
  display: block;
  content: '';
  clear: both;
}

.page-block .introduce{
  color: #3f84e5;
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0 0 2.25rem 0;
}

/* page content generally */

/* hero */

.hero {
  padding-top: 0.5rem;
}

.hero .logo{
  width: 7.938rem;
  margin: 0 auto 1.375rem auto;
}

.hero .perex{
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 1.875rem;
}

.hero .app-download .app-link{
  margin-bottom: 0.625rem;
}

.hero .app-download .qr-code {
  margin-top:-0.438rem;
  margin-bottom: -0.625rem;
}
  
  /* hero end */

/* claims */

.claims {
  background: #ecf3fc;
}

.claims .item{
  font-size: 1.125em;
  padding: 4.875rem 0 2rem 0;
  background: center top / 59px auto no-repeat;
}

.claims .item:nth-of-type(1){background-image: url(../images/style/controls/icon-place.svg);}
.claims .item:nth-of-type(2){background-image: url(../images/style/controls/icon-speed.svg);}
.claims .item:nth-of-type(3){background-image: url(../images/style/controls/icon-thumb.svg); padding-bottom:0;}

.claims .perex{
  margin: 0;
  font-size: 1.125em;
}

/* claims end */

/* internet nolimit */

.internet-nolimit{
  color: #fff;
  background: url(../images/style/bg-surf.jpg) center center no-repeat;
}

.internet-nolimit .inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
  align-items: center;
}

.internet-nolimit .introduce{
  margin-bottom: 0;
  flex: none;
  width: 100%;
  color: inherit;
  align-self: flex-start;
}

.internet-nolimit .item{
  flex: none;
  width: 100%;
  padding-bottom: 3.5rem;
}

.internet-nolimit .headline{
  margin-bottom: 1.125rem;
}

.internet-nolimit .perex{
  font-size: 1em;
  margin-bottom: 1.5rem;
}

.internet-nolimit .proceed{
  margin: 0;
}

/* internet nolimit end */

/* coverage */

.coverage {
  padding-bottom: 0;
}

.coverage .inner {
  padding-left: 0;
  padding-right: 0;
}

.coverage .introduce{
  margin-bottom: 0.813rem;
}

.coverage .headline {
  margin-bottom: 2rem;
}

.coverage .map .sample {
  width: 100%;
}

/* coverage end */

/* faq */

.faq {
  max-width: 1150px;
}

.faq .introduce{
  margin-bottom: 1.313rem;
}

.faq .item{
  text-align: left;
  border-top: 0.125rem solid #979797;
}

.faq .item:last-of-type{
  border-bottom: 0.125rem solid #979797;
}

.faq .item .question{
  margin: 0;
  font-size: 1em;
  padding: 0.875rem 2rem 0.875rem 0;
}


.faq .item .answer {
  margin: 0rem 0 0.875rem 0;
  font-weight: 400;
}

/* faq end */

/* for partners */

.for-partners{
  color: #fff;
  background: url(../images/style/bg-partners.jpg) center center / cover no-repeat;
}

.for-partners .inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 400px;
  align-items: center;
}

.for-partners .introduce{
  margin-bottom: 0;
  flex: none;
  width: 100%;
  color: inherit;
  align-self: flex-start;
}

.for-partners .item{
  flex: none;
  width: 100%;
  padding-bottom: 3.5rem;
}

.for-partners .headline{
  margin-bottom: 1.125rem;
}

.for-partners .perex{
  font-size: 1em;
  margin-bottom: 1.5rem;
}

.for-partners .proceed{
  margin: 0;
  background-color: #fff;
}

/* for partners end */

/* conditions */

.conditions ol {
  line-height: 1.6;
  font-weight: normal;
  font-size: 0.75em;
  margin: 0rem;
  padding: 0rem;
  list-style-type:decimal;
}

.conditions > .inner > ol {
  font-size: 1em;
  font-weight: bold;
}

.conditions ol ol {
  padding-top: 1.25rem;
}

.conditions li {
  margin:0;
  padding:0 0 1.25rem 0;
}

.conditions li:last-of-type {
  padding-bottom: 0;
}

/* conditions end */

/* page footer generally */

.page-footer {
  margin: 0 auto;
  width: 100%;
  clear: both;
  color: #fff;
  max-width: 1110px;
  text-align: center;
  background: #2e2e2e;
}

.page-footer:after {
  width: 100%;
  height: 0;
  display: block;
  content: '';
  clear: both;
}

.footer-block {
  width: 100%;
  float: left;
  padding: 2.5rem 0;
  border-bottom: 0.063rem solid #979797;
}

.footer-block .headline {
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 1.125rem;
}


/* page footer generally end */

/* socials */

.socials .link {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  margin: 0 0.5rem;
}

.socials .link.fb {background: url(../images/style/controls/icon-fb.svg) center center / 11px auto no-repeat #5492d0;}
.socials .link.fb:active {background-color: #8eb8e3;}
.socials .link.yt {background: url(../images/style/controls/icon-yt.svg) center center / 22px auto no-repeat #ea3d37;}
.socials .link.yt:active {background-color: #ed8c89;}
.socials .link.inst {background: url(../images/style/controls/icon-inst.svg) center center / 23px auto no-repeat #ba8ecb;}
.socials .link.inst:active {background-color: #d2afdf;}

.socials .text {
  display: none;
}

/* socials end */

/* contacts */

.contacts .link {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  color: inherit;
}

.contacts .link:before {
  display: block;
  margin: 0 auto 0.938rem auto;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  content: '';
  background: url(../images/style/controls/icon-email.svg) center center / 21px auto no-repeat #4d4d4d;
}

.contacts .link:hover {
  text-decoration: none;
}

.contacts .link:active:before {
  background-color: #696868;
}

/* contacts end */

/* copyright */

.copyright{
  border-bottom: 0;
  color: #9b9b9b;
  font-weight: 400;
}

.copyright .link{
  color: inherit;
}

.copyright .rowek{
  margin-bottom: 0.75rem;
}

.copyright .rowek:last-of-type{
  margin-bottom: 0;
}

.copyright .rowek.terms .link{
  color: #fff;
}

/* copyright end */















































