@font-face {
  font-family: "Montserrat-Regular";
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-ExtraLight";
  src: url("/fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  height: 100%;
}

body {
  background: #272730 0% 0% no-repeat padding-box;
  min-height: 100%;
}

.separated-block {
  display: flex;
  flex-direction: column;
}
.main-header {
  font: normal normal normal 25px "Montserrat-Medium", sans-serif;
  text-align: center;
}

.common-header {
  font: normal normal normal 25px "Montserrat-Medium", sans-serif;
  color: #FFF;
  position: relative;
}
.common-header--underlined:after {
  content: "";
  background: #5ECFB8;
  height: 3px;
  margin-top: 10px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  position: absolute;
  bottom: -12px;
}
.common-header--underlined-desktop:after {
  display: none;
}
.common-header--underlined-mobile:after {
  content: "";
  background: #5ECFB8;
  height: 3px;
  margin-top: 10px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  position: absolute;
  bottom: -12px;
}
.common-header--behind-text:before {
  content: attr(data-text);
  font-size: 60px;
  position: absolute;
  font-family: "Montserrat-Bold", sans-serif;
  color: #2F2F3A;
  left: 50%;
  top: -26px;
  z-index: -1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.common-paragraph {
  font: 18px "Montserrat-Regular", sans-serif;
  line-height: 1.5555555556;
  color: rgba(255, 255, 255, 0.6);
}

.common-link {
  color: #5ECFB8;
  text-decoration: none;
  word-break: break-all;
}
.common-link:visited {
  color: #5ECFB8;
  text-decoration: none;
}

.hidden-mobile {
  display: none;
}

.desktop-only {
  display: none;
}

.hidden-desktop {
  display: initial;
}

.main {
  width: 100%;
  min-height: 100%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
.main__content {
  flex-grow: 1;
  max-width: 960px;
  width: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.google-button {
  background-repeat: no-repeat;
  overflow: hidden;
  max-height: 5rem;
  max-width: 18rem;
  margin: 0 auto;
}
.google-button__img {
  border-radius: 40px;
  background-color: #ffffff;
}

.green-button {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 22px 27px;
  background: #5ECFB8;
  color: #FFF;
  max-height: 5rem;
  max-width: 18rem;
  border-radius: 40px;
  font-size: 18px;
  font-family: "Montserrat-Semibold", sans-serif;
}

@media only screen and (min-width: 768px) {
  .main {
    min-width: 680px;
    width: 100%;
  }
  .hidden-mobile {
    display: block;
  }
  .main-header {
    font: normal normal normal 42px "Montserrat-Medium", sans-serif;
    text-align: center;
  }
  .common-header {
    font: normal normal normal 42px "Montserrat-Medium", sans-serif;
    color: #FFF;
    position: relative;
  }
  .common-header--underlined:after {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -24px;
  }
  .common-header--underlined-desktop:after {
    content: "";
    display: block;
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -24px;
  }
  .common-header--underlined-mobile:after {
    display: none;
  }
  .common-header--behind-text:before {
    content: attr(data-text);
    font-size: 120px;
    position: absolute;
    font-family: "Montserrat-Bold", sans-serif;
    color: #2F2F3A;
    left: 50%;
    top: -55px;
    z-index: -1;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  .common-paragraph {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) { /* Maybe here must be more 1220px;*/
  .common-header {
    font-family: "Montserrat-Medium", sans-serif;
    font-weight: normal;
  }
  .common-header--behind-text:before {
    display: initial;
    font-size: 147px;
    top: -80px;
  }
  .common-header--underlined:after {
    bottom: -20px;
  }
  .common-header--underlined-mobile:after {
    display: none;
  }
  .common-header--underlined-desktop:after {
    content: "";
    display: block;
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -12px;
  }
  .main {
    max-width: 1200px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  .hidden-mobile {
    display: initial;
  }
  h2.hidden-mobile {
    display: block;
  }
  .hidden-desktop {
    display: none;
  }
  .desktop-only {
    display: initial;
  }
  .separated-block {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .green-button {
    font-size: 14px;
    font-family: "Montserrat-SemiBold", sans-serif;
  }
  .google-button {
    margin: initial;
  }
}
body {
  padding-top: 48px;
}

.header {
  background: #33333D 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1019607843);
  height: 48px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 30;
}
.header__content {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.header__logo {
  width: 36px;
  height: 36px;
  margin-top: 6px;
  float: left;
}
.header__menu {
  float: right;
}

.header-menu {
  display: none;
  font: normal normal normal 18px "Montserrat-Regular", sans-serif;
  letter-spacing: 0px;
  color: #FFFFFF;
  list-style: none;
  height: 80px;
  justify-content: center;
  align-items: center;
}
.header-menu--visible {
  display: flex;
  flex-direction: column;
}
.header-menu__item {
  margin: 0 36px;
}
.header-menu__link, .header-menu__link:visited {
  text-decoration: none;
  color: #FFFFFF;
}

.link-size {
  display: block;
  height: 100%;
  width: 100%;
  padding: 18px 0 19px 20px;
}

.header__mobile-button {
  height: 12px;
  width: 18px;
  margin: 18px 32px;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  z-index: 20;
}

.header__close {
  height: 24px;
  width: 24px;
  margin: 12px 29px;
}
.header__close img {
  height: 24px;
  width: 24px;
}

.header__hamburger span {
  display: block;
  background: #FFF;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 0;
  top: 50%;
}
.header__hamburger:before, .header__hamburger:after {
  content: "";
  display: block;
  background: #FFF;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transform-origin: center center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.header__hamburger:before {
  top: 0;
  margin-top: 0px;
}
.header__hamburger:after {
  bottom: 0px;
  margin-bottom: 0px;
}

.mobile-menu-container {
  display: block;
  position: fixed;
  background: #272730;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
}

.mobile-menu__logo {
  margin-left: 32px;
}

.mobile-menu {
  margin-top: 70px;
  margin-left: 30px;
  list-style: none;
  overflow-y: auto;
  height: 250px;
  height: -webkit-calc(100% - 100px);
  height: -moz-calc(100% - 100px);
  height: calc(100% - 100px);
}
.mobile-menu__item {
  position: relative;
  color: #FFF;
  font-size: 25px;
  padding: 20px 0 20px 50px;
  font-family: "Montserrat-Medium", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__item--numbered:before {
  position: absolute;
  left: 0;
  content: attr(data-number);
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: -10px;
  top: 50%;
}
.mobile-menu__item--active {
  color: #5ECFB8;
}
.mobile-menu__link, .mobile-menu__link:visited {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__submenu-link {
  position: relative;
  color: #FFF;
  font-size: 25px;
  padding: 20px 0 20px 50px;
  font-family: "Montserrat-Medium", sans-serif;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.mobile-menu__submenu-link--numbered:before {
  position: absolute;
  left: 0;
  content: attr(data-number);
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: -10px;
  top: 35px;
}
.mobile-menu__submenu {
  display: none;
  position: relative;
  list-style: none;
  margin-top: 36px;
}
.mobile-menu__submenu--open {
  display: block;
}
.mobile-menu__submenu-item {
  margin: 0 0 34px 0;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__submenu-item:last-child {
  margin-bottom: 0;
}
.mobile-menu__submenu-item--active {
  color: #5ECFB8;
}

.mobile-twitter-link {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 0;
  right: 67px;
  margin: 14px 0;
}

@media only screen and (min-width: 768px) {
  body {
    padding-top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    width: 61px;
    height: 61px;
    margin: 8px 0 0 0;
  }
  .header__mobile-button {
    height: 25px;
    width: 38px;
    margin: 27px 47px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 20;
  }
  .header__close {
    height: 48px;
    width: 48px;
    margin: 18px 42px;
  }
  .header__close img {
    height: 48px;
    width: 48px;
  }
  .header__hamburger span {
    display: block;
    background: #FFF;
    width: 100%;
    height: 5px;
    margin-top: -1px;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .header__hamburger:before, .header__hamburger:after {
    content: "";
    display: block;
    background: #FFF;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }
  .header__hamburger:before {
    top: 0;
    margin-top: 0px;
  }
  .header__hamburger:after {
    bottom: -4px;
    margin-bottom: 0px;
  }
  .mobile-menu-container {
    display: block;
    position: fixed;
    background: #272730;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
  }
  .mobile-menu__logo {
    margin-left: 32px;
  }
  .mobile-menu {
    margin-top: 163px;
    margin-left: 70px;
    list-style: none;
    height: 620px;
    height: -webkit-calc(100% - 163px);
    height: -moz-calc(100% - 163px);
    height: calc(100% - 163px);
  }
  .mobile-menu__item {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 36px 0 36px 130px;
    font-family: "Montserrat-Medium", sans-serif;
  }
  .mobile-menu__item--numbered:before {
    font-size: 36px;
    font-family: "Montserrat-Regular", sans-serif;
    margin-top: -22px;
    top: 50%;
  }
  .mobile-menu__item--active {
    color: #5ECFB8;
  }
  .mobile-menu__link, .mobile-menu__link:visited {
    text-decoration: none;
    color: inherit;
  }
  .mobile-menu__submenu-link {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 36px 0 36px 130px;
    font-family: "Montserrat-Medium", sans-serif;
    cursor: pointer;
  }
  .mobile-menu__submenu-link--numbered:before {
    font-size: 36px;
    font-family: "Montserrat-Regular", sans-serif;
    margin-top: 5px;
  }
  .mobile-menu__submenu {
    display: none;
    position: relative;
    list-style: none;
    margin-top: 55px;
  }
  .mobile-menu__submenu--open {
    display: block;
  }
  .mobile-menu__submenu-item {
    margin: 0 0 55px 0;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.6);
  }
  .mobile-menu__submenu-item:last-child {
    margin-bottom: 0;
  }
  .mobile-menu__submenu-item--active {
    color: #5ECFB8;
  }
  .mobile-twitter-link {
    width: 37px;
    height: 37px;
    right: 111px;
    margin: 27px 0;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    padding-top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    width: 155px;
    height: 55px;
    margin: 12px 0 0 0;
  }
  .header__hamburger {
    display: none;
  }
  .header-menu {
    display: flex;
    flex-direction: row;
  }
  .header-menu__item {
    position: relative;
  }
  .header-menu__item--active:after {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120%;
    position: absolute;
    bottom: -10px;
  }
  .header-menu__submenu-link {
    margin: 0 36px;
    position: relative;
    cursor: pointer;
  }
  .header-menu__submenu-link:after {
    content: "";
    display: inline-block;
    top: 8px;
    position: absolute;
    right: -27px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: rgba(255, 255, 255, 0.6) transparent transparent transparent;
  }
  .header-menu__submenu-link--active:before {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120%;
    position: absolute;
    bottom: -10px;
  }
  .header-menu__submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    top: calc(100% + 39px);
    background-color: #33333D;
    border-radius: 5px;
    list-style: none;
  }
  .header-menu__submenu--open {
    display: block;
  }
  .header-menu__submenu-item {
    width: 170px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 18px;
  }
  .header-menu__submenu-item:last-child {
    border-bottom: none;
  }
  .header-menu__submenu-item--active {
    background: rgba(255, 255, 255, 0.05);
  }
  .mobile-menu-container {
    display: none;
  }
}
.footer {
  background: #33333D;
}
.footer__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 90px;
  padding: 20px 0;
}
.footer__menu {
  font-size: 14px;
  font-family: "Montserrat-Regular", sans-serif;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  display: block;
  margin-top: 15px;
  font-size: 12px;
  font-family: "Montserrat-Regular", sans-serif;
}

.bottom-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: rgba(94, 207, 184, 0.6);
  font: normal normal normal 14px "Montserrat-Regular", sans-serif;
  max-width: 445px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-menu__item {
  margin: 0 15px;
}
.bottom-menu__item:last-child {
  margin-top: 15px;
}
.bottom-menu__link, .bottom-menu__link:visited {
  color: rgba(94, 207, 184, 0.6);
  text-decoration: none;
}
.bottom-menu__link:hover {
  color: rgb(94, 207, 184);
}

@media only screen and (min-width: 768px) {
  .footer__content {
    min-height: 70px;
    padding: 26px 30px;
  }
  .footer__menu {
    float: left;
    max-width: initial;
  }
  .footer__copyright {
    float: right;
    margin-top: initial;
  }
  .bottom-menu {
    flex-wrap: nowrap;
    max-width: initial;
    margin-left: initial;
    margin-right: initial;
  }
  .bottom-menu__item:first-child {
    margin-left: 0;
  }
  .bottom-menu__item--first {
    order: 1;
  }
  .bottom-menu__item--second {
    order: 2;
  }
  .bottom-menu__item--twitter {
    order: 4;
  }
  .bottom-menu__item--last {
    order: 3;
  }
  .bottom-menu__item:last-child {
    margin-top: 0px;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1220px) {
  .footer__content {
    max-width: 1200px;
    width: 100%;
    min-height: 70px;
    padding: 26px 0;
  }
  .footer__menu {
    float: left;
    font-size: 12px;
    max-width: initial;
  }
  .footer__copyright {
    float: right;
    margin-top: initial;
  }
  .bottom-menu {
    flex-wrap: nowrap;
  }
  .bottom-menu__item:last-child {
    margin-top: 0px;
    margin-left: 15px;
  }
}
body {
  padding-top: 0;
}

.footer {
  margin-top: 60px;
}

@media (min-height: 855px) and (min-width: 360px) {
  .footer {
    position: absolute;
    margin: auto;
    bottom: 0;
    width: 100%;
  }
}
@media (min-height: 855px) and (min-width: 768px) {
  .footer {
    position: unset;
    margin: unset;
    bottom: unset;
    width: 100%;
  }
}
.header {
  position: unset;
}

.flex-centered {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.text {
  flex: auto;
}

.header--centered {
  margin-top: 37px;
  margin-bottom: 12px;
  text-align: center;
  color: #404d66;
}

.speed-test {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hidden {
  display: none !important;
}

.hidden-mobile {
  display: none;
}

.speedometer {
  position: relative;
  font-size: 65px;
  width: 285px;
  margin: auto;
}
.speedometer--done {
  height: 240px;
}

.speedometer__content {
  position: absolute;
  width: 70%;
  top: 25%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}
.speedometer__content--done {
  top: 50%;
}

.speedometer__title {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 12px;
  margin: 0;
  padding-bottom: 2px;
  color: rgba(255, 255, 255, 0.75);
}

.speed-test__left-block--done {
  margin-bottom: 40px;
}

.speedometer__test-value {
  font-weight: unset;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: 4px;
  margin-bottom: 4px;
}

.speedometer__test-test-done {
  font-size: 21px;
  color: #5ECFB8;
  font-family: "Montserrat-SemiBold", sans-serif;
}

.speedometer__speed {
  font-size: 24px;
  margin: 0;
  padding: 5px 0 0;
}
.speedometer__speed--icon--done {
  margin-bottom: -15px;
}

.speedometer__speed--active {
  color: #5ECFB8;
}

.speedometer__speed-value-name {
  font-size: 14px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 10px;
  color: #fff;
}

.speedometer__percentage {
  color: #969696;
}

.speedometer__percentage-done {
  font-family: Rubik-Regular;
  font-size: 15px;
  color: #969696;
  margin: 0;
  padding: 12px 0 0;
}

.speedometer__percentage--active {
  color: #5ECFB8;
}

.custom-list {
  width: auto;
  display: table;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.custom-list__item {
  display: table-row;
  width: 100%;
  box-sizing: border-box;
}

.speed-test__information-title {
  display: table-cell;
  font-size: 18px;
  vertical-align: middle;
  color: #969696;
  padding: 13px 0;
}

.speed-test__information-data {
  font-size: 15px;
  color: #969696;
  display: table-cell;
  vertical-align: middle;
}

.speed-test__information-value-name {
  font-size: 28px;
  color: #969696;
  margin-right: 9px;
}

.item-icon {
  font-family: Rubik Regular;
  padding-left: 40px;
  width: 130px;
  background-position: 0;
  background-color: transparent;
  background-size: 25px;
  background-repeat: no-repeat;
}

.custom-list__item--active .speed-test__information-title {
  color: #404d66;
}

.custom-list__item--active .speed-test__information-value-name {
  color: #5ECFB8;
}

.speedometer__controls {
  text-align: center;
  position: relative;
  margin-top: -40px;
}

.speedometer__speed-value {
  color: #fff;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 48px;
}

.download-speed-value--active, .speedometer__speed-value--active {
  color: #5ECFB8;
}

.st0 {
  fill: #b1b1b1;
}

.st1 {
  stroke: #43434B;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.st1, .st2, .st4 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
}

.st2 {
  stroke: #ebedef;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.speed-progress-bar {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: url(#gradient);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 710px;
  stroke-dashoffset: 711px;
  transition: all 1s;
}

.st4 {
  stroke: rgba(94, 207, 184, 0.25);
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.st3 {
  fill: none;
  stroke: #ebedef;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.speed-test__head {
  padding-top: 20px;
  width: 320px;
  margin: auto;
  margin-bottom: 40px;
}
.speed-test__head__header {
  font-size: 21px;
  color: #fff;
  text-align: center;
  font-family: "Montserrat-Medium", sans-serif;
}
.speed-test__head__text {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 5px;
  font-family: "Montserrat-Regular", sans-serif;
}
.speed-test__animation__text {
  position: relative;
  height: 230px;
  width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  cursor: pointer;
  color: #5ECFB8;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 21px;
  margin-bottom: 40px;
}
.speed-test__animation__text__image {
  height: 480px;
  position: absolute;
}
.speed-test__results__speed {
  width: 320px;
  height: 115px;
  margin: auto;
  background-color: #2F2F3A;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.speed-test__results__speed:first-child {
  margin-bottom: 10px;
}
.speed-test__results__ping {
  justify-content: flex-start;
  padding-left: 20px;
}
.speed-test-download {
  padding-right: 22px;
  height: 75px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.5);
}
.speed-test-upload {
  padding-left: 22px;
}
.speed-test-data__text {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat-Light", sans-serif;
  font-size: 14px;
  padding-top: 5px;
  line-height: 1;
}
.speed-test-data__result {
  padding-top: 5px;
  color: #fff;
  font-size: 16px;
  font-family: "Montserrat-Light", sans-serif;
}
.speed-test-active {
  color: #5ECFB8;
}

.estrellas {
  position: relative;
}
.estrellas__item {
  position: absolute;
  bottom: 50px;
  left: 125px;
  width: 30px;
  height: 100px;
  line-height: 30px;
  text-align: center;
  transform-origin: top center;
  font-size: 16px;
  font-family: "Montserrat-Regular", sans-serif;
  color: rgba(255, 255, 255, 0.75);
}
.estrellas__item:nth-of-type(1) {
  transform: rotate(60deg);
}
.estrellas__item:nth-of-type(1) span {
  display: block;
  height: 30px;
  transform: translate(-5px, 140px) rotate(-60deg);
}
.estrellas__item:nth-of-type(2) {
  transform: rotate(90deg);
}
.estrellas__item:nth-of-type(2) span {
  height: 30px;
  transform: translate(0px, 140px) rotate(-90deg);
  display: block;
}
.estrellas__item:nth-of-type(3) {
  transform: rotate(125deg);
}
.estrellas__item:nth-of-type(3) span {
  height: 30px;
  transform: translate(10px, 140px) rotate(-125deg);
  display: block;
}
.estrellas__item:nth-of-type(4) {
  transform: rotate(155deg);
}
.estrellas__item:nth-of-type(4) span {
  height: 30px;
  transform: translate(10px, 140px) rotate(-155deg);
  display: block;
}
.estrellas__item:nth-of-type(5) {
  transform: rotate(180deg);
}
.estrellas__item:nth-of-type(5) span {
  height: 30px;
  transform: translate(0px, 140px) rotate(-180deg);
  display: block;
}
.estrellas__item:nth-of-type(6) {
  transform: rotate(-155deg);
}
.estrellas__item:nth-of-type(6) span {
  height: 30px;
  transform: translate(-10px, 140px) rotate(155deg);
  display: block;
}
.estrellas__item:nth-of-type(7) {
  transform: rotate(-125deg);
}
.estrellas__item:nth-of-type(7) span {
  height: 30px;
  transform: translate(-10px, 145px) rotate(125deg);
  display: block;
}
.estrellas__item:nth-of-type(8) {
  transform: rotate(-90deg);
}
.estrellas__item:nth-of-type(8) span {
  height: 30px;
  transform: translate(0px, 145px) rotate(90deg);
  display: block;
}
.estrellas__item:nth-of-type(9) {
  transform: rotate(-60deg);
}
.estrellas__item:nth-of-type(9) span {
  height: 30px;
  transform: translate(10px, 150px) rotate(60deg);
  display: block;
}

.pulsating-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 230px;
  width: 230px;
}
.pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(94, 207, 184, 0.15);
  border: 1px solid #5ECFB8;
  border-radius: 50%;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}
@media only screen and (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
  }
  .footer {
    margin-top: 200px;
    display: block;
  }
  .text {
    padding-top: 115px;
  }
  .speed-test__information-value-name {
    font-size: 34px;
  }
  .speedometer {
    width: 344px;
    margin-top: -28px;
  }
  .speedometer__test-value {
    font-size: 14px;
  }
  .speedometer__test-test-done {
    font-size: 24px;
  }
  .speedometer__title {
    font-size: 14px;
  }
  .speedometer__controls {
    margin-top: -70px;
  }
  .icon {
    width: 145px;
  }
  .header--centered {
    font-size: 44px;
    margin-top: 60px;
    margin-bottom: 84px;
  }
  .speed-test__head {
    padding-top: 55px;
    width: 417px;
    margin-bottom: 65px;
  }
  .speed-test__head__header {
    font-size: 42px;
  }
  .speed-test__head__text {
    font-size: 18px;
    margin-top: 20px;
  }
  .speed-test__animation__text {
    font-size: 24px;
    margin-bottom: 70px;
  }
  .speed-test__results {
    display: flex;
  }
  .speed-test__results__speed:first-child {
    margin-bottom: 0;
  }
  .speedometer--done {
    height: 290px;
    margin-bottom: 80px;
  }
  .pulsating-circle {
    height: 260px;
    width: 260px;
  }
  .speed-test__left-block {
    margin-bottom: 0;
  }
  .speed-test__right-block {
    width: 768px;
    margin: auto;
  }
  .hidden-mobile {
    margin-bottom: 20.7px;
    display: block;
    font-size: 28px;
    color: #404d66;
  }
  .speed-test__information-title {
    font-size: 20px;
  }
  .estrellas__item:nth-of-type(1) span {
    transform: translate(-10px, 135px) rotate(-60deg);
  }
  .estrellas__item:nth-of-type(2) span {
    transform: translate(-25px, 135px) rotate(-90deg);
  }
  .estrellas__item:nth-of-type(3) span {
    transform: translate(-25px, 155px) rotate(-125deg);
  }
  .estrellas__item:nth-of-type(4) span {
    transform: translate(-20px, 175px) rotate(-155deg);
  }
  .estrellas__item:nth-of-type(5) span {
    transform: translate(-30px, 195px) rotate(-180deg);
  }
  .estrellas__item:nth-of-type(6) span {
    transform: translate(-45px, 205px) rotate(155deg);
  }
  .estrellas__item:nth-of-type(7) span {
    transform: translate(-16px, 210px) rotate(125deg);
  }
  .estrellas__item:nth-of-type(8) span {
    transform: translate(25px, 200px) rotate(90deg);
  }
  .estrellas__item:nth-of-type(9) span {
    transform: translate(45px, 195px) rotate(60deg);
  }
}
@media only screen and (min-width: 1020px) {
  .header {
    font-size: 44px;
  }
  .item-icon {
    padding-left: 30px;
  }
  .custom-list__item {
    padding: 0 20px;
  }
  .speedometer__controls {
    z-index: 10;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    margin-top: 130px;
  }
}

/*# sourceMappingURL=speed-test.css.map */
