.columns {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html {
  scroll-behavior: smooth;
}


:root {
  --brandColor: hsl(166, 67%, 51%);
  --background: rgb(247, 247, 247);
  --textDark: hsla(0, 0%, 0%, 0.66);
  --textLight: hsla(0, 0%, 0%, 0.33);
}

body {
  background: var(--background);
  /*background: #fff;*/
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  height: 100vh;
  color: var(--textDark);
}

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700;900&display=swap');

.hero {
  z-index: 1000;
}

.tag:not(body) {
  border-radius: 20px 4px 20px 4px;
  font-weight: bold;
}
.best .tag{
  background-color: #0070C9;
    border-radius: 16px 0px 16px 0px;
  color: white;
}

.has-editors-choice {
  position: relative;
  margin: 0 auto;
}

.editors-choice-badge {
  position: absolute;
  top: -15px;
  right: 0px;
  transform: translateX(-20%);
  background-color: #0070C9; /* Bulma danger color */
  color: white;
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: bold;
    border-radius: 20px 4px 20px 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}


.hero-body {padding: 1.5em 1em!important;}
.hero-body .container {
  max-width: 700px;
}

.hero-body .title,
.hero.is-info {
  color: #222 !important;
}

.hero-body .subtitle {
  color: #222 !important;
  padding-top: 1rem;
  line-height: 1.5;
}

.vpn {
  background: white;
  border-radius: 20px;
  margin: 1rem;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
}

.vpn .button.is-danger { color: #ffffff!important; background-color: #ff3860!important}
.vpn .button.is-danger:hover { color: #ffffff!important; background-color: #d12c33!important}

.vpn a { color: #0070C9}
.vpn a :hover { color: #222}
.vpn button {color: white;}

.vpn.best{ border: 3px solid #1068b4}




.navbar-item img {
  max-height: 2.75rem !important;
}

.vpn:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px,
              rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px,
              rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.vpn h1 {
  margin-bottom: 0 !important;
}

.vpn .tag {
  position: absolute;
  left: 0;
  top: 0;
}



.left .colored {
  color: var(--brandColor);
  font-weight: 500;
  margin-top: 1rem !important;
  letter-spacing: -1px;
}

.left p,
.right .description,
.right small {
  color: var(--textLight);
  font-size: 1.15rem;
}

.right .title {
  font-weight: 800;
  letter-spacing: -1px;
}

footer li:before {
  content: '\f1b2';
  font-family: 'Font Awesome 5 Free';
  float: left;
  margin-left: -1.5em;
  color: #147efb;
}

.circle {
  border: 0.1em solid grey;
  border-radius: 100%;
  height: 2em;
  width: 2em;
  text-align: center;
}

.circle span {
  margin-top: 0.1em;
  font-size: 1.5em;
  font-weight: bold;
  font-family: sans-serif;
  color: grey;
  line-height: 1.2em;
}

.field:not(:last-child) {
  margin-bottom: 1rem;
}

input {
  font-size: 1rem;
}

input:focus {
  border-color: var(--brandColor) !important;
  box-shadow: 0 0 0 1px var(--brandColor) !important;
}

.fab,
.fas {
  color: var(--textLight);
  margin-right: 0.5rem;
}

.features,
.intro,
.sandbox {
  padding: 5rem 0;
}

.box.cta {
  border-radius: 0;
  border-left: none;
  border-right: none;
  z-index: 10000;
  position: relative;
}

.card-image > .fa {
  font-size: 8rem;
  padding: 2rem 0;
  color: #209cee;
}

.card-content .content {
  font-size: 14px;
  margin: 1rem;
}

.card-content .content h4 {
  font-size: 16px;
  font-weight: 700;
}

.card {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  margin-bottom: 2rem;
}

.tile.notification {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.is-shady {
  animation: flyintoright 0.4s backwards;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 0;
  border-radius: 10px;
  display: inline-block;
  margin: 10px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.is-shady:hover {
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.13), 0 6px 6px rgba(0, 0, 0, 0.19);
}

@keyframes move_wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

.waveWrapper {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 0;
  height: 500px!important;
}

.waveWrapperInner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  bottom: 0;
  background-image: linear-gradient(to top, #0070C9 20%, #ffffff 80%);
}

.bgTop {
  z-index: 15;
  opacity: 0.5;
}

.bgMiddle {
  z-index: 10;
  opacity: 0.75;
}

.bgBottom {
  z-index: 5;
}

.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}

.waveTop {
  background-size: 50% 100px;
  background-image: url('../img/bg/wave-top.png');
}

.waveAnimation .waveTop {
  animation: move_wave 3s;
  animation-delay: 1s;
}

.waveMiddle {
  background-size: 50% 120px;
  background-image: url('../img/bg/wave-mid.png');
}

.waveAnimation .waveMiddle {
  animation: move_wave 10s linear infinite;
}

.waveBottom {
  background-size: 50% 100px;
  background-image: url('../img/bg/wave-bot.png');
}

.waveAnimation .waveBottom {
  animation: move_wave 15s linear infinite;
}

.hero.is-info a:not(.button):not(.dropdown-item):not(.tag),
.hero.is-info strong,
.hero.is-info .navbar-link.is-active,
.hero.is-info .navbar-link:hover,
.hero.is-info a.navbar-item.is-active,
.hero.is-info a.navbar-item:hover {
  background: none !important;
}

.lds-spinner {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  z-index: 1000;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.lds-spinner div:nth-child(n) {
  transform: rotate(calc(30deg * (n - 1)));
  animation-delay: calc(-1.2s + 0.1s * (n - 1));
}

@media screen and (min-width: 769px), print {
  .hero.is-medium .hero-body {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media screen and (max-width: 769px) {



  .vpn {

    margin: 1rem;
    padding: 1rem;

  }


  h2.rating {
    margin-bottom: 0 !important;
  }

  .vpn figure.logo {
    margin: 0 auto !important;
    display: block;
    width: 50%;
    height: auto !important;
  }
}

.rating i.fa-star,
.rating i.fa-star-half {
  color: #FFD700;
}

.bullets i {
  color: #00d1b2;
}


/* Hides only between 769px and 1023px */
.hide-on-tablet-only {
  display: inline;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hide-on-tablet-only {
    display: none !important;
  }
}
