@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.eot");
  src: url("fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Regular.woff2") format("woff2"), url("fonts/Lato-Regular.woff") format("woff"), url("fonts/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Medium.eot");
  src: url("fonts/Lato-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Medium.woff2") format("woff2"), url("fonts/Lato-Medium.woff") format("woff"), url("fonts/Lato-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Heavy.eot");
  src: url("fonts/Lato-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Lato-Heavy.woff2") format("woff2"), url("fonts/Lato-Heavy.woff") format("woff"), url("fonts/Lato-Heavy.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  text-rendering: optimizeLegibility;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 14px;
  color: #000;
}

.container {
  width: 1112px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
.row.align-center {
  align-items: center;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

h1 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 1em 0;
}

h2 {
  display: block;
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
  margin: 0 auto 1em auto;
  width: fit-content;
  z-index: 1;
}
h2:after {
  content: "";
  width: 60vw;
  height: 1.5em;
  position: absolute;
  left: -1em;
  top: 0;
  background-image: linear-gradient(87deg, #ffe73e, rgba(255, 255, 255, 0));
  border-radius: 1.25em;
  z-index: -1;
}

h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 0.8em 0;
}
h3 a {
  color: #000;
}

h3.second {
  margin-bottom: 1.5em;
}

h4 {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 0 0.8em 0;
}

p {
  margin: 0 0 1em 0;
}
p.small {
  font-size: 0.8rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul.circle li {
  position: relative;
  margin-bottom: 1.5em;
  padding-left: 25px;
}
ul.circle li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #44ace1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.4em;
}

.bold {
  font-weight: 900;
}

a {
  color: #44ace1;
}

img {
  max-width: 100%;
  height: auto;
}

header#head {
  position: fixed;
  width: 100%;
  background-color: #ffe73e;
  padding: 12px 0;
  transition: all 0.3s;
  z-index: 999;
}
header#head .row {
  justify-content: space-between;
}
header#head .logo {
  width: 55px;
  z-index: 999;
}
header#head .logo img {
  position: absolute;
  top: 12px;
  width: 55px;
  transition: all 0.3s;
}
header#head.small .logo img {
  width: 40px;
  top: 5px;
}
header#head .menu ul {
  display: flex;
}
header#head .menu ul li:not(:last-child) {
  margin-right: 15px;
}
header#head .menu ul li a {
  color: #000;
  text-decoration: none;
}
header#head .lang {
  display: flex;
  align-items: center;
}
header#head .lang ul {
  display: flex;
}
header#head .lang ul li {
  font-size: 12px;
  line-height: 26px;
  font-weight: 900;
}
header#head .lang ul li:not(:last-child) {
  margin-right: 15px;
}
header#head .lang ul li.active {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #44ace1;
  text-align: center;
}
header#head .lang ul li a {
  color: #000;
  text-decoration: none;
}
header#head #menu_open {
  display: inline-block;
  cursor: pointer;
  margin-left: 28px;
  z-index: 999;
}
header#head #menu_open .bar1, header#head #menu_open .bar2, header#head #menu_open .bar3 {
  width: 22px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.4s;
}
header#head #menu_open.close .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 4px);
  transform: rotate(-45deg) translate(-5px, 4px);
}
header#head #menu_open.close .bar2 {
  opacity: 0;
}
header#head #menu_open.close .bar3 {
  -webkit-transform: rotate(45deg) translate(-4px, -4px);
  transform: rotate(45deg) translate(-4px, -4px);
}

section {
  padding: 40px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden;
}
section.gray {
  background-color: #ececeb;
}
section.gray h2:after {
  left: inherit;
  right: -1em;
  background-image: linear-gradient(87deg, rgba(255, 255, 255, 0), #ffe73e);
}

section#main {
  padding-top: 80px;
}
section#main ul li {
  position: relative;
  margin-bottom: 1em;
  padding-left: 30px;
}
section#main ul li:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #44ace1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: -0.3px 3px 7px 0 rgba(0, 0, 0, 0.15);
}
section#main .download {
  display: flex;
  margin-top: 35px;
}
section#main .download a {
  display: block;
  width: 130px;
  height: 42px;
  object-fit: contain;
  box-shadow: -0.9px 10px 10px 0 rgba(1, 1, 1, 0.2);
}
section#main .download a.appstore {
  background: url("../images/appstore_icon.png") no-repeat center;
  background-size: contain;
  margin-right: 20px;
}
section#main .download a.googleplay {
  background: url("../images/googleplay_icon.png") no-repeat center;
  background-size: contain;
}

section#features .row > div:first-child {
  display: flex;
  align-items: center;
}
section#features .round {
  width: 57px;
  height: 114px;
  z-index: 1;
}
section#features .round div {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: -0.9px 10px 25px 0 rgba(1, 1, 1, 0.15);
}
section#features ul.change_slide {
  position: relative;
  max-width: 390px;
  box-shadow: -0.9px 10px 25px 0 rgba(1, 1, 1, 0.15);
  background-color: #ffffff;
  box-sizing: border-box;
}
section#features ul.change_slide li {
  position: relative;
  padding: 10px 15px 10px 60px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.29;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}
section#features ul.change_slide li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #44ace1;
  border-radius: 50%;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
section#features ul.change_slide li.active {
  background-color: #44ace1;
}
section#features ul.change_slide li.active:before {
  background-color: #ffe73e;
}
section#features ul.change_slide:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/logo.png") no-repeat center;
  background-size: contain;
  width: 79px;
  height: 79px;
  object-fit: contain;
  -webkit-filter: drop-shadow(5px 0 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(5px 0 5px rgba(0, 0, 0, 0.2));
  z-index: 3;
}
section#features .swiper-container .swiper-wrapper {
  align-items: center;
}
section#features .swiper-container .swiper-wrapper .swiper-slide {
  background: url("../images/func_back.svg") no-repeat right bottom 15px;
}
section#features .swiper-container .swiper-wrapper .swiper-slide p {
  max-width: 420px;
  font-weight: 500;
  line-height: 1.5;
}
section#features .swiper-container .swiper-wrapper .swiper-slide img {
  margin-left: auto;
  display: block;
}

section#roaming .withtable {
  flex: none;
  width: 55%;
}
section#roaming .small-font p.xsmall {
  font-size: 12px;
}
section#roaming table {
  margin-bottom: 1em;
}
section#roaming table td.light {
  background-color: #e7eef7;
}
section#roaming table td:first-child {
  width: 40%;
  background-color: #44ace1;
  color: #fff;
}

.withslider {
  position: relative;
}

.swiper-container {
  max-width: 100%;
}

.swiper-pagination-bullets {
  position: relative;
  margin-top: 30px;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 3px solid #44ace1;
  margin: 0 10px;
  box-sizing: border-box;
  opacity: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #44ace1;
}

.swiper-button-prev, .swiper-button-next {
  width: 12.27px;
  height: 25.12px;
  background-image: url("../images/arrow_l.svg");
  background-size: contain;
}

.swiper-button-next {
  transform: rotateZ(180deg);
}

table {
  border-collapse: collapse;
  text-align: center;
}
table thead {
  border-bottom: 5px solid #fff;
}
table thead th {
  border: 1px solid #fff;
  background-color: #44ace1;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 10px;
}
table td {
  border: 1px solid #fff;
  background-color: #d0dfef;
  font-size: 10px;
  font-weight: 400;
  padding: 10px 7px;
}

section.gray table thead {
  border-color: #ececeb;
}
section.gray table thead th {
  border-color: #ececeb;
}
section.gray table td {
  border-color: #ececeb;
}

section#packages table {
  margin: auto;
  width: 100%;
}

section#chat_bots .swiper-slide > div {
  max-width: 288px;
  margin: auto;
}
section#chat_bots .swiper-slide > div h3 {
  min-height: 2.4em;
}
section#chat_bots .swiper-slide > div img {
  display: block;
  margin-bottom: 1.5rem;
}

section#web .bighidden {
  text-align: center;
}

.accordion header {
  position: relative;
  font-size: 16px;
  font-weight: 900;
  padding: 0.8em 50px 0.8em 0;
  border-bottom: 3px solid #44ace1;
  cursor: pointer;
}
.accordion header:after {
  content: "";
  width: 19px;
  height: 19px;
  object-fit: contain;
  background: url(../images/arr_r.png) no-repeat center, #ffe73e;
  background-size: auto 50%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.accordion header.active:after {
  transform: translateY(-50%) rotateZ(90deg);
}
.accordion .acc_content {
  display: none;
  font-weight: 500;
  padding: 1.5em 0;
}

#top {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: -0.4px 5px 10px 0 rgba(1, 1, 1, 0.15);
  background: url(../images/arr_top.png) no-repeat center, #ececeb;
  background-size: auto 60%;
  position: fixed;
  right: 50px;
  bottom: 120px;
  cursor: pointer;
  z-index: 997;
}
#top a {
  display: block;
  height: 100%;
}

footer#footer {
  background-color: #ffe73e;
  font-size: 10px;
  font-weight: 500;
  padding: 2em 0 2.5em 0;
}

section#activity img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.in-bl {
  display: inline-block;
}

@media (max-width: 767px) {
  .mobilehidden {
    display: none !important;
  }

  header#head .menu {
    position: fixed;
    left: 100vw;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #ffe73e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    z-index: 998;
  }
  header#head .menu > div:first-child {
    height: 70px;
  }
  header#head .menu.opened {
    left: 0;
  }
  header#head .menu ul {
    flex-direction: column;
    justify-content: space-between;
  }
  header#head .menu ul li {
    font-size: 20px;
    line-height: 24px;
    margin: 12px 0;
  }
  header#head .menu .footer {
    padding: 0 10px;
  }
  header#head .menu .footer div {
    padding: 15px 0 20px 0;
    font-weight: 500;
    font-size: 10px;
    line-height: 14px;
    border-top: 1.5px solid #000000;
  }

  .row.equal {
    flex-direction: column;
  }
  .row.equal > div:not(:last-child) {
    margin-bottom: 30px;
  }

  section#features .swiper-container .swiper-wrapper .swiper-slide {
    background-position: center bottom 15px;
    background-size: 250px;
  }
  section#features .swiper-container .swiper-wrapper .swiper-slide img {
    max-width: 170px;
    margin: auto;
    transform: translateX(20px);
  }

  .withslider {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
  }

  .row.small_reverse {
    flex-direction: column-reverse;
  }

  .magr0 {
    margin-bottom: 0 !important;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets {
    display: none;
  }

  .mob50vw {
    max-width: 50vw;
  }

  section#main .download {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  html, body {
    font-size: 16px;
  }

  h1, h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: 40px 0 30px 0;
  }

  .row.equal > div {
    width: 50%;
  }
  .row.equal > div:first-child {
    padding-right: 20px;
  }
  .row.equal > div:last-child {
    padding-left: 20px;
  }

  header#head {
    padding: 30px 0;
  }
  header#head.small {
    padding: 15px 0;
  }
  header#head.small .logo img {
    width: 50px;
    top: 5px;
  }
  header#head .logo img {
    top: 34px;
    width: 94px;
  }
  header#head .lang ul li {
    font-size: 14.5px;
    line-height: 30px;
  }
  header#head .lang ul li.active {
    width: 30px;
    height: 30px;
  }
  header#head #menu_open {
    display: none;
  }
  header#head .menu .footer {
    display: none;
  }

  section#main {
    padding-top: 120px;
  }
  section#main .download {
    margin-top: 40px;
  }
  section#main .download a {
    width: 168px;
    height: 55px;
  }
  section#main .download a.appstore {
    margin-right: 30px;
  }

  section#chat_bots .swiper-pagination {
    display: none;
  }

  .swiper-button-prev, .swiper-button-next {
    display: none;
  }

  table thead {
    border-bottom: 13px solid #fff;
  }
  table thead th {
    border: 3px solid #fff;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 15px 10px;
  }
  table td {
    border: 3px solid #fff;
    font-size: 1rem;
    font-weight: 400;
    padding: 10px;
  }

  section#roaming table th, section#roaming table td {
    font-size: 15px;
  }

  ul.circle li {
    padding-left: 30px;
  }

  .accordion header {
    font-size: 1.25rem;
  }
  .accordion header:after {
    width: 30px;
    height: 30px;
  }

  footer#footer {
    font-size: 15px;
  }

  section#chat_bots .swiper-slide > div h3 {
    text-align: center;
  }
}
@media (min-width: 998px) {
  html, body {
    font-size: 18px;
  }

  section#packages table {
    width: 900px;
  }

  h3.second {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  section#features .swiper-container .swiper-wrapper .swiper-slide img {
    margin-top: -2rem;
  }

  .bighidden {
    display: none !important;
  }

  section#web {
    background: url(../images/web_back.jpg) no-repeat bottom center;
    background-size: auto 80%;
  }
  section#web .left {
    max-width: 250px;
    margin-top: 200px;
  }

  section#in_out .small {
    font-size: 17px;
  }

  section#main .download a.appstore {
    margin-right: 50px;
  }
}
@media (max-width: 997px) {
  .midhidden {
    display: none;
  }

  .desktop-slider .swiper-wrapper {
    flex-direction: column;
  }
  .desktop-slider .swiper-wrapper .swiper-slide:not(:last-child) {
    margin-bottom: 30px;
  }

  .mid-column {
    flex-direction: column;
  }
  .mid-column > div:not(:last-child) {
    margin-bottom: 30px;
  }
  .mid-column.equal > div {
    width: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .mid-marg-auto {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 998px) {
  header#head .menu ul li:not(:last-child) {
    margin-right: 30px;
  }
  header#head .lang ul li:not(:last-child) {
    margin-right: 30px;
  }

  section#roaming .small-font p, section#roaming table th, section#roaming table td {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  section#main .mail {
    align-self: center;
  }
}
@media (min-width: 1200px) {
  html, body {
    font-size: 20px;
  }

  section {
    min-height: 100vh;
  }

  section#features ul.change_slide li {
    padding: 10px 70px 10px 100px;
    font-size: 17px;
  }
  section#features ul.change_slide li:before {
    left: 65px;
  }

  section#roaming .small-font p, section#roaming table th, section#roaming table td {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  section#features .swiper-container .swiper-wrapper .swiper-slide {
    background-size: 350px;
  }
  section#features .swiper-container .swiper-wrapper .swiper-slide img {
    max-width: 250px;
  }

  .row.equal > div.w6_mid {
    width: 60%;
  }
  .row.equal > div.w4_mid {
    width: 40%;
  }

  .max300 img {
    max-width: 300px;
  }
}
@media (min-width: 1400px) {
  h1 {
    margin: 0 0 1.35em 0;
  }

  p {
    margin: 0 0 1.5em 0;
  }

  section#main ul li {
    margin-bottom: 1.5em;
  }
  section#main .download {
    margin-top: 80px;
  }
  section#main .mail {
    margin-left: -130px;
  }

  section#features ul.change_slide li {
    padding: 15px 70px 15px 100px;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets {
    margin-top: 60px;
  }
}

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