@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;
  }
}
.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;
  }
}
a {
  text-decoration: none;
}

.header {
  height: 48px;
  width: 100%;
  background: #33333D;
}
.header__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px 0 32px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.header__content__ip {
  padding-top: 11px;
  margin: auto 20px auto 25px;
  width: 131px;
  text-align: center;
}
.header__content__ip__name {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat-Medium", sans-serif;
}
.header__content__ip__data {
  font-size: 10px;
  color: #fff;
  font-family: "Montserrat-Medium", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__content__twitter {
  width: 20px;
  height: 20px;
  margin-top: 15px;
}
.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;
  cursor: pointer;
}

.header__hamburger {
  top: 25px;
  right: 20px;
  transform: translate(0%, -50%);
  position: absolute;
  width: 20px;
  cursor: pointer;
  z-index: 1;
}
.header__hamburger--open:before, .header__hamburger--open:after, .header__hamburger--open div {
  background: #10D8F2;
  z-index: 1;
}
.header__hamburger--open:before {
  transform: translateY(5px) rotate(135deg);
}
.header__hamburger--open:after {
  transform: translateY(-5px) rotate(-135deg);
}
.header__hamburger--open div {
  transform: scale(0);
}
.header__hamburger:before, .header__hamburger:after, .header__hamburger div {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.5s;
}

.mobile-menu-container {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 100;
  background-color: #33333D;
}

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

.mobile-menu {
  width: 1135px;
  margin: auto;
  margin-left: 40px;
  list-style: none;
}
.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) {
  .header {
    height: 80px;
  }
  .header__logo {
    width: 61px;
    height: 61px;
    margin: 8px 0 0 0;
  }
  .header__content {
    width: 672px;
    margin: auto;
    padding: 0 60px 0 0;
  }
  .header__content__ip {
    width: 328px;
    margin: auto;
    margin-right: 75px;
  }
  .header__content__ip__name {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .header__content__ip__data {
    font-size: 16px;
  }
  .header__content__twitter {
    margin-top: 20px;
    width: 40px;
    height: 40px;
  }
  .header__content__twitter img {
    width: 40px;
  }
  .header__hamburger {
    top: 39px;
    right: 0;
    width: 40px;
  }
  .header__hamburger {
    width: 40px;
  }
  .header__hamburger--open:before {
    transform: translateY(11px) rotate(135deg);
  }
  .header__hamburger--open:after {
    transform: translateY(-11px) rotate(-135deg);
  }
  .header__hamburger:before, .header__hamburger:after, .header__hamburger div {
    height: 4px;
    border-radius: 0;
    margin: 7px 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;
  }
  .mobile-menu__logo {
    margin-left: 32px;
  }
  .mobile-menu {
    list-style: none;
  }
  .mobile-menu__item {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 25px 0 10px 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: 25px;
  }
  .mobile-menu__submenu--open {
    display: block;
  }
  .mobile-menu__submenu-item {
    margin: 0 0 20px 0;
    font-size: 28px;
    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) {
  .header {
    height: 80px;
  }
  .header__logo {
    width: 155px;
    height: 55px;
    margin: 12px 0 0 0;
  }
  .header__content__twitter {
    margin-top: 25px;
    width: 30px;
    height: 30px;
  }
  .header__hamburger {
    right: 5px;
    width: 25px;
  }
  .header__hamburger--open:before {
    transform: translateY(5px) rotate(135deg);
  }
  .header__hamburger--open:after {
    transform: translateY(-9px) rotate(-135deg);
  }
  .header__hamburger:before, .header__hamburger:after, .header__hamburger div {
    height: 3px;
    border-radius: 3px;
    margin: 4px 0;
  }
  .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 {
    margin-left: unset;
    margin: auto;
  }
}
.check-vpn {
  width: 320px;
  margin: auto;
  margin-bottom: 60px;
}
.check-vpn__header {
  margin-top: 36px;
  font-size: 18px;
  font-family: "Montserrat-Medium", sans-serif;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
  animation: blinker 1.5s linear infinite;
}
.check-vpn__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 20px;
  animation: blinker 1.5s linear infinite;
}
.check-vpn__animation {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -50px;
}
.check-vpn__animation-cover {
  position: relative;
  width: 160px;
  height: 70px;
  margin: auto;
}
.check-vpn__data__item {
  text-align: center;
  margin-top: 30px;
  color: #5ECFB8;
  font-size: 14px;
  font-family: "Montserrat-Regular", sans-serif;
}
.check-vpn__data-status-image-cover {
  position: relative;
  width: 148px;
  height: 70px;
  margin: auto;
}
.check-vpn__results {
  width: 320px;
  margin: auto;
}
.check-vpn__results__country-data {
  padding: 15px 0;
  height: 105px;
  background-color: #2F2F3A;
  border-radius: 10px;
  margin-bottom: 5px;
  margin-top: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: flex;
}
.check-vpn__results__dns-data {
  border-radius: 7px;
  background-color: #2F2F3A;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  font-size: 14px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 13px 0 18px 15px;
  font-family: "Montserrat-Light", sans-serif;
}
.check-vpn__results__dns-data__ip {
  font-size: 13px;
  color: #fff;
  padding-top: 5px;
  font-family: "Montserrat-Regular", sans-serif;
}
.check-vpn__results__status {
  height: 35px;
  border-radius: 7px;
  background-color: #2F2F3A;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5ECFB8;
  font-size: 16px;
  font-family: "Montserrat-Medium", sans-serif;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.info__status--connected {
  color: #5ECFB8;
}

.info__status--disconnected {
  color: #E60608;
}

.country-data__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.country-data__item__icon {
  width: 30px;
  height: 30px;
}
.country-data__item__icon--lang {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat-Light", sans-serif;
}
.country-data__item__name {
  font-size: 14px;
  font-family: "Montserrat-Light", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 11px;
}
.country-data__item:first-child {
  margin-left: 26px;
  margin-right: 23px;
}
.country-data__item:nth-child(2) {
  border-left: 0.5px solid rgba(255, 255, 255, 0.3);
  border-right: 0.5px solid rgba(255, 255, 255, 0.3);
  padding: 0 10px;
}
.country-data__item:last-child {
  margin-left: 13px;
}

.status-image {
  position: absolute;
  width: 148px;
  height: 148px;
  top: -55px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.popular-tab__header {
  font-size: 25px;
  color: #fff;
  font-family: "Montserrat-Regular", sans-serif;
  padding-bottom: 25px;
  text-align: center;
}
.popular-tab__social {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popular-tab__social__item {
  display: flex;
  width: 322px;
  justify-content: space-between;
  padding-bottom: 18px;
  cursor: pointer;
}
.popular-tab__social__item:not(.popular-tab__social__item:last-child) {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.25);
}
.popular-tab__social__item:not(.popular-tab__social__item:first-child) {
  padding-top: 18px;
}
.popular-tab__social__item__icon {
  height: 22px;
}
.popular-tab__social__item__text {
  font-size: 18px;
  color: #ffffff;
  font-family: "Montserrat-Regular", sans-serif;
}
.popular-tab__social__item__arrow {
  position: relative;
  width: 24px;
  height: 24px;
}
.popular-tab__social__item__arrow::before {
  width: 24px;
  height: 24px;
  content: " ";
  background: url("../images/check-vpn/chevron_right_grey_24dp.svg") no-repeat center center/cover;
  position: absolute;
}
.popular-tab__social__item__arrow::after {
  width: 24px;
  height: 24px;
  content: " ";
  background: url("../images/check-vpn/chevron_right_light-grey_24dp.svg") no-repeat center center/cover;
  position: absolute;
  right: 5px;
}

.ip-guide-tab__header {
  font-size: 25px;
  font-family: "Montserrat-Regular", sans-serif;
  color: #fff;
  text-align: center;
  padding: 32px 0 35px;
}
.ip-guide-tab__test-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 55px;
}

.test-block {
  display: flex;
  width: 320px;
  height: 80px;
  background-color: #fff;
  border-radius: 14px;
  text-decoration: none;
  align-items: center;
}
.test-block:first-child {
  margin-bottom: 20px;
}
.test-block__icon {
  width: 42px;
  height: 42px;
  margin: 0 21px 0 16px;
}
.test-block__header {
  color: #272730;
  font-size: 18px;
  font-family: "Montserrat-SemiBold", sans-serif;
  padding-bottom: 3px;
}
.test-block__subheader {
  color: rgba(39, 39, 48, 0.75);
  font-size: 14px;
  font-family: "Montserrat-Regular", sans-serif;
}

.learn-tab__header {
  color: #fff;
  font-size: 25px;
  font-family: "Montserrat-Regular", sans-serif;
  padding-bottom: 44px;
  text-align: center;
}
.learn-tab__description__header {
  font-size: 21px;
  color: #ffffff;
  font-family: "Montserrat-SemiBold", sans-serif;
  padding-bottom: 14px;
  padding-left: 31px;
  width: 360px;
  margin: auto;
}
.learn-tab__description__text {
  width: 300px;
  margin: auto;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 50px;
}
.learn-tab__description__text__link {
  color: #5ECFB8;
  cursor: pointer;
}
.learn-tab__description__text__link img {
  padding-left: 4px;
}
.learn-tab__description__image {
  display: block;
  width: 320px;
  margin: auto auto 118px auto;
}

@media only screen and (min-width: 768px) {
  .check-vpn {
    width: 672px;
  }
  .check-vpn__header {
    font-size: 28px;
    margin-bottom: 21px;
    margin-top: 45px;
  }
  .check-vpn__text {
    font-size: 21px;
    margin-bottom: 40px;
  }
  .check-vpn__animation {
    position: absolute;
    width: 238px;
    height: 238px;
    top: -50px;
  }
  .check-vpn__animation-cover {
    position: relative;
    width: 238px;
    height: 160px;
    margin: auto;
  }
  .check-vpn__data__item {
    font-size: 21px;
    margin-top: 0;
  }
  .check-vpn__data-status-image-cover {
    width: 222px;
  }
  .check-vpn__results {
    width: 672px;
  }
  .check-vpn__results__country-data {
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  .check-vpn__results__dns-data {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .check-vpn__results__dns-data__ip {
    font-size: 16px;
  }
  .check-vpn__results__status {
    font-size: 18px;
    height: 40px;
  }
  .country-data__item:first-child {
    margin-left: 0;
    margin-right: 60px;
  }
  .country-data__item:nth-child(2) {
    padding: 0 60px;
  }
  .country-data__item:last-child {
    margin-left: 60px;
  }
  .country-data__item__icon {
    width: 40px;
    height: 40px;
  }
  .country-data__item__name {
    font-size: 18px;
  }
  .status-image {
    width: 222px;
    height: 210px;
    top: -70px;
  }
  .popular-tab__header {
    font-size: 42px;
    padding-bottom: 52px;
  }
  .popular-tab__social__item {
    width: 670px;
    justify-content: unset;
  }
  .popular-tab__social__item__text {
    margin: 0px 390px 0 15px;
    min-width: 195px;
  }
  .popular-tab__social__item__arrow {
    min-width: 24px;
  }
  .ip-guide-tab__test-block {
    flex-direction: row;
    margin-bottom: 140px;
  }
  .test-block {
    width: 328px;
    height: 100px;
  }
  .test-block:first-child {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .test-block__icon {
    width: 56px;
    height: 56px;
  }
  .learn-tab__header {
    font-size: 42px;
    padding-bottom: 70px;
  }
  .learn-tab__description__header {
    font-size: 42px;
    padding-left: 0;
    width: 656px;
  }
  .learn-tab__description__text {
    width: 656px;
  }
  .learn-tab__description__image {
    width: 611px;
    height: 360px;
  }
}
@media only screen and (min-width: 1280px) {
  .popular-tab__social__item {
    width: 810px;
  }
  .popular-tab__social__item__text {
    margin-right: 530px;
  }
  .ip-guide-tab__test-block {
    margin-bottom: 160px;
  }
  .test-block {
    width: 395px;
  }
  .test-block__header {
    font-size: 21px;
  }
  .test-block__subheader {
    font-size: 16px;
  }
  .learn-tab {
    width: 1225px;
    margin: auto;
  }
  .learn-tab__description {
    display: flex;
    justify-content: space-between;
  }
  .learn-tab__description-cover {
    margin-bottom: 135px;
  }
  .learn-tab__description__header {
    margin: unset;
  }
  .learn-tab__description__text {
    margin: unset;
    width: 545px;
  }
  .learn-tab__description__image {
    width: 550px;
    margin: unset;
  }
  .direction-fix {
    flex-direction: row-reverse;
  }
}

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