/* Variables */
:root {
  --main-color: #fff;
  --main-color-lighter: #fff;
  --secondary-color: #979797;
  --purple: #3d4554;
  --dark-purple: #2E3540;
  --light-gray: #EFEFEF;
  --blue: #4687ff;
  --red: #f64f64;
  --space-1: .5rem;
	--space-2: 1rem;
 	--space-3: 2rem;
  --space-4: 4rem;
  --circles-final-scale: 4.0; 
  --highlight: #F13225;
}

body {
  font-family: "Avenir Next", sans-serif;
  font-size: 2em;
  background: #161616;
  color: var(--secondary-color);
  font-weight: 400;
}

body.payment {
  background: #f8f8f8;
  font-weight: 400;
  font-size: 1.6em;
}


a {
  color: var(--main-color);
  font-weight: bold;
}

a:hover,
a:focus {
  color: var(--main-color-lighter)
}

h1, h2, h3, h4 {
  font-weight: bold;
  color: var(--main-color)
}

#homepage {
  margin-top: 10px;
}
.homepage-section-separator {
  margin-top: 20rem;
  margin-bottom: 20rem
}

#logo {
  max-width: 20rem;
  min-width: 20rem;
  display: inline-block;
}

.navigation {
  z-index: 9999;
}

.pill {
  padding: 0.5em 1em;
  border-radius: 5px;
  border: 1px solid;
  font-weight: bold;
  font-size: 1.3rem;
}

.pill.white_green {
  border-color: var(--main-color);
  background: #fff;
  color: var(--main-color);
}

.pill.blocked {
  background: #fff;
  color: #161616;
  border-color: #fff;
}

.pill.red {
  background: #ed7467;
  color: #fff;
}

.pill.gray {
  background: #c6c7cb;
  color: #fff;
}

/* Header */
.header {
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background: #111111;
}

.header > * {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

#atf, #atf2 {
  margin-top: 2rem;
}

#atf p, #atf2 p {
  font-size: 2.3rem;
  font-weight: 400;
}

#atf button, #atf2 button {
  z-index: 99999999;
  position: relative;
  border: 0px;
  background-color: var(--highlight);
}

#atf h1, #atf2 h1 {
  font-weight: 700;
  /* text-align: center; */
  color: var(--main-color);
  font-size: 3.6rem;
}

#atf #active-pulse-phone {
  position: relative;
  max-width: 356px;
  margin: 0 auto;
}

#atf .stripe {
  text-align: center;
  width: 100%;
  z-index: 99999999;
  position: relative;
  display: block;
  font-weight: 400;
  color: #bbb;
  font-size: 1.8rem;
}


#atf #smart-vpn-box {
  position: absolute;
  top: 0;
  left:0;
  /* left: 0; */
}

#atf #atf-circles {
  position: absolute;
  top: 220px;
  left: 67px;
  background: rgba(255,255,255,0.1))
  width: 221px;
  height: 221px;
}

#atf-circles .circle {
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  width: 221px;
  height: 221px;
  -webkit-animation: expandCircle 5s infinite; /* Safari 4+ */
  -moz-animation:    expandCircle 5s infinite; /* Fx 5+ */
  -o-animation:      expandCircle 5s infinite; /* Opera 12+ */
  animation:         expandCircle 5s infinite; /* IE 10+, Fx 29+ */
  /* animation-name: expandCircle; */
  /* animation-duration: 4s; */
  /* animation-iteration-count: infinite; */
  
}

#atf2 svg {
  fill: var(--main-color);
}
#atf2 .stripe {
  display: block;
  font-size: 1.5rem;
  width: 80%;
  text-align: center;
}

#atf2 .stripe a {
  color: rgb(96, 108, 118);
  font-weight: 500;
}

#atf2 button {
    margin-left: 0;
    margin-right: 0;
    width: 80%;
}

#atf2 h1 {
  margin-bottom: 0.5rem;
}

#atf2 h2 {
  font-size: 3.0rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

#atf2 li {
  font-size: 1.8rem;
}

.phone {
}

/* Payment Receipt */

.payment h1 {
  /* color: var */
  font-size: 3.6rem;
  /* font-weight: 600; */
}

.payment a {
  white-space: pre-wrap;
}

.payment h2 {
  color: var(--main-color);

  font-size: 3rem;
  font-weight: 400;
}

.payment h3 {
  font-weight: 600;
}

.payment li {
  margin-bottom: 3rem;
}

.green-text {
  color: var(--main-color);
}
/* PRESS */
#press-strip {
  margin: 3rem 0;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
  padding: 2rem 0;
}

#press-strip > div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* Footer */

#footer {
  font-size: 1.9rem;
}

#footer {
  background: #fff;;
}

#footer h4 {
  color: #161616;
  font-size: 1.6rem;
  font-weight: 400;
}

#footer a {
  color: #161616;
  font-weight: 600;
}




/* milligram overrides */

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: var(--main-color);
  border-color: var(--main-color);
  text-transform: initial;
}


.button:focus,
.button:hover,
button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
  background-color: var(--main-color-lighter);
  border-color: var(--main-color-lighter);
  color: #fff;
  outline: 0;
}

input[type='color']:focus, 
input[type='date']:focus, 
input[type='datetime']:focus, 
input[type='datetime-local']:focus, 
input[type='email']:focus, 
input[type='month']:focus, 
input[type='number']:focus, 
input[type='password']:focus, 
input[type='search']:focus, 
input[type='tel']:focus, 
input[type='text']:focus, 
input[type='url']:focus, 
input[type='week']:focus, 
input:not([type]):focus, 
textarea:focus, select:focus {
  border-color: var(--blue);
  outline: 0;
}

.button.big {
  font-size: 1.9rem;
  font-weight: 600;
  height: 5.3rem;
  letter-spacing: .1rem;
  line-height: 5.3rem;
  padding: 0 6rem;
}

/* -- end MG overrides */

/* Utilities */
.center {
  text-align: center;
}
.mx-auto {
  margin: 0 auto;
}

.block {
  display: block;
}

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

.purple {
  background-color: var(--purple);
}

.dark-purple {
  background-color: var(--dark-purple);
}

.light-gray {
  background-color: var(--light-gray);
}

.p0 { padding: 0}
.p1 { padding: var(--space-1) }
.p2 { padding: var(--space-2) }
.p3 { padding: var(--space-3) }
.p4 { padding: var(--space-4) }

.mb0 { margin-bottom: 0 }
.mb1 { margin-bottom: var(--space-1) }
.mb2 { margin-bottom: var(--space-2) }
.mb3 { margin-bottom: var(--space-3) }
.mb4 { margin-bottom: var(--space-4) }

.mr0 { margin-right: 0 }
.mr1 { margin-right: var(--space-1) }
.mr2 { margin-right: var(--space-2) }
.mr3 { margin-right: var(--space-3) }
.mr4 { margin-right: var(--space-4) }

.ml0 { margin-left: 0 }
.ml1 { margin-left: var(--space-1) }
.ml2 { margin-left: var(--space-2) }
.ml3 { margin-left: var(--space-3) }
.ml4 { margin-left: var(--space-4) }

.mt0 { margin-top: 0 }
.mt1 { margin-top: var(--space-1) }
.mt2 { margin-top: var(--space-2) }
.mt3 { margin-top: var(--space-3) }
.mt4 { margin-top: var(--space-4) }

.pl1 { padding-left: var(--space-1) }
.pl2 { padding-left: var(--space-2) }
.pl3 { padding-left: var(--space-3) }
.pl4 { padding-left: var(--space-4) }

.pr1 { padding-right: var(--space-1) }
.pr2 { padding-right: var(--space-2) }
.pr3 { padding-right: var(--space-3) }
.pr4 { padding-right: var(--space-4) }

.pt1 { padding-top: var(--space-1) }
.pt2 { padding-top: var(--space-2) }
.pt3 { padding-top: var(--space-3) }
.pt4 { padding-top: var(--space-4) }

.pv1 { padding-top: var(--space-1); padding-bottom: var(--space-1)}
.pv2 { padding-top: var(--space-2); padding-bottom: var(--space-2)}
.pv3 { padding-top: var(--space-3); padding-bottom: var(--space-3)}
.pv4 { padding-top: var(--space-4); padding-bottom: var(--space-4)}

.list-reset { list-style: none; }

.display-none { display: none; }

.right {
  text-align: right;
}

.flex {
  display: flex
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}


.sm-hide {
  display: none!important;
}

.md-hide {
  display: block;;
}

/* Larger than mobile screen */
/* @media only screen 
    and (device-width : 414px) 
    and (device-height : 736px) 
    and (-webkit-device-pixel-ratio : 3) {

    .m-hide {
      display: none;
    }

} */

@media (max-width: 40rem) {
  #atf h1 , #atf2 h2{
    text-align: left;
    margin-top: 5rem;

  }

  #atf2 h2 {
  }

  #atf2 .column-50 {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: inherit;
    padding: 0 1.0rem;
    
  }

  #atf2 button{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  #atf2 .stripe {
    width: 100%;
  }

  #atf2 ul {
    width: 100%;
    margin: 0 auto 5rem auto;
    text-align: left;
    font-weight: 500;
  }
}

@media (min-width: 40rem) {
  #atf2 .column-50 {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: inherit;
    padding: 0 1.0rem;
  }

  #atf2 button{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }


}

/* Larger than tablet screen */
@media (min-width: 80rem) {

  #atf2 h1, #atf2 h2 {
    text-align: left;
  }

  #atf2 .column-50 {
    flex: 0 0 50%;
    
  }

  #atf2 button {
    margin-left: 0;
    margin-right: 0;
  }

  #atf2 .stripe {
    width: 80%;
  }

  #atf2 ul {
    width: auto;
    margin: 0;
    text-align: left;
  }


  
  .header {
    position: fixed;
  }

  .get-dnt, .get-dnt:hover {
    background: var(--highlight);
    border: 0px;
  }

  .sm-hide {
    display: block!important;
  }

  .md-hide {
    display: none!important;
  }

  .navigation a {
    display: inline-block;
    color: #919291;
    font-weight: 600;
    margin-right: 2rem;
    font-size: 1.7rem;
    transition: opacity 0.6s;
  }

  .navigation a.hidden{
    opacity: 0;
  }

  .header section {
    margin: 0 auto;
    margin-top: 0px;
    max-width: 112rem;
    padding: 0 2rem;
    position: relative;
    width: 100%;
  }

  #press-strip > div {
    justify-content: space-between;
  }

  .m-hide {
    display: block;
  }

  #atf, #atf2 {
    margin-top: 15rem;
  }

  #atf h1 {
    text-align: center;
  }
  #atf h1, #atf2 h1 {
    font-weight: 700;
    font-size: 6rem;
  }

  .button.big {
    font-size: 1.9rem;
    font-weight: 600;
    height: 5.3rem;
    letter-spacing: .1rem;
    line-height: 5.3rem;
    padding: 0 10rem;
  }
}

/* Larger than desktop screen */
@media (min-width: 120rem) {
  #atf2 h1, #atf2 h2 {
    text-align: left;
  }

  #atf2 .column-50 {
    flex: 0 0 50%;
    
  }

  #atf2 button {
    margin-left: 0;
    margin-right: 0;
  }

  #atf2 .stripe {
    width: 80%;
  }

  #atf2 ul {
    width: auto;
    margin: 0;
    text-align: left;
  }
  .m-hide-2 {
    display: ;
  }
}


/* Animations */

@keyframe expandCircle {
  0% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
      opacity 1;
  }
  100% {
      transform: scale(var(--circles-final-scale));
      -webkit-transform: scale(var(--circles-final-scale));
      opacity: 0;
  }
}

@-webkit-keyframes expandCircle {
  0%   { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    opacity: 1;
   }
  100% { 
    transform: scale(var(--circles-final-scale));
      -webkit-transform: scale(var(--circles-final-scale));
      opacity: 0;
   }
}
@-moz-keyframes expandCircle {
  0%   { 
          transform: scale(1.0);
      -webkit-transform: scale(1.0);
      opacity: 1;
   }
  100% { 
    transform: scale(var(--circles-final-scale));
      -webkit-transform: scale(var(--circles-final-scale));
      opacity: 0;
   }
}
@-o-keyframes expandCircle {
  0%   { 
          transform: scale(1.0);
      -webkit-transform: scale(1.0);
      opacity: 1;
   }
  100% { 
    transform: scale(var(--circles-final-scale));
      -webkit-transform: scale(var(--circles-final-scale));
      opacity: 0;
   }
}
@keyframes expandCircle {
  0%   { 
          transform: scale(1.0);
      -webkit-transform: scale(1.0);
      opacity: 1;
   }
  100% { 
    transform: scale(var(--circles-final-scale));
      -webkit-transform: scale(var(--circles-final-scale));
      opacity: 0;
   }
}