/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #444;
  font-size: 62.5%;
  line-height: 1.5;
}

body {
	font-size: 1.6rem;
	font-family: "Montserrat", sans-serif;
	background-color: #f7f7f7;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
	max-width: 100%;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* type */

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .8rem;
	font-weight: 600;
	font-style: normal;
	line-height: 1.2;
}

h2 {
	font-size: 2.4rem;
  color: #007dba;
}

p {
  margin: 0 0 2.4rem;
  line-height: 1.5;
}

a {
	color: #007dba;
}

strong, b {
  font-weight: 600;
}

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* header */

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: .5rem 0;
  text-align: center;
  background-color: #fff;
  border-bottom: .1rem solid #f68d1f;
  z-index: 9999;
}

header .logo,
header .tfn {
	display: block;
	margin: 0 auto;
  width: 16rem;
}

header .logo {
	color: #444;
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
}

header .tfn {
  position: relative;
  color: #007dba;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
}

header .tfn:after {
  content: "Click to call";
  position: absolute;
  display: block;
  top: auto;
  right: 0;
  bottom: 1.4rem;
  left: auto;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  color: #444;
  opacity: 0;
  -webkit-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out
}

header:hover .tfn:after,
header:focus-within .tfn:after {
  bottom: -.4rem;
  opacity: 1;
}

/* structure */

.inner {
	margin: 0 3rem;
	width: auto;
}

/* hero */

.hero {
  position: relative;
  padding: 15rem 0 3rem;
  background: #f68d1f url(../images/hero-bg-v4.jpg) 7% top no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero:before {
  position: absolute;
  content: " ";
  top: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#57585c+0,57585c+100&0+0,1+100 */
  background: -moz-linear-gradient(top,  rgba(87,88,92,0) 0%, rgba(87,88,92,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(87,88,92,0) 0%,rgba(87,88,92,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(87,88,92,0) 0%,rgba(87,88,92,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0057585c', endColorstr='#57585c',GradientType=0 ); /* IE6-9 */
}

.hero .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  max-width: 86rem;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  z-index: 999
}

.text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 3.6rem;
}

.hero h1 .price {
  display: inline-block;
}

.hero h1 .cents {
  display: inline-block;
  -webkit-transform: translate(.1rem, -1.2rem);
      -ms-transform: translate(.1rem, -1.2rem);
          transform: translate(.1rem, -1.2rem);
  font-size: 2rem;
  border-bottom: 2px solid #fff;
}

.hero p {
  font-size: 2rem;
}

.hero p span {
  font-style: italic;
}

.hero [href^="tel:"] {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background-color: #007dba;
  border-radius: 2.4rem;
  border: .3rem solid #fff;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  cursor: pointer;
}

.hero [href^="tel:"]:hover {
  color: #000;
  background-color: #00a3e0;
}

/* call block */

.call-block {
  position: -webkit-sticky;
  position: sticky;
  display: block;
  top: auto;
  bottom: 0;
  padding: 1.5rem 0;
  text-align: center;
  background-color: #F68D1F;
  z-index: 9999;
}

.call-block .tfn {
  position: relative;
  display: block;
  margin: -4rem auto 1.2rem;
  padding: 1rem 0;
  width: auto;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  background-color: #007dba;
  border: .3rem solid #fff;
  border-radius: 3.6rem;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.call-block .tfn:hover {
  color: #000;
  background-color: #00a3e0;
}

.fa-mobile-alt {
  -webkit-transform: rotate(-11deg) translateY(1px);
          transform: rotate(-11deg) translateY(1px);
}

.call-block p {
  margin-bottom: 0;
  font-weight: 800;
  color: #fff;
}

/* video block */

.video-block {
	padding: 3rem 0;
  color: #fff;
	background-color: #57585C;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#57585c+0,000000+100 */
  background: rgb(87,88,92); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(87,88,92,1) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(87,88,92,1) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(87,88,92,1) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57585c', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}

.feature-text h2 {
  color: #f68d1f;
}

.feature-text a {
  color: #f68d1f;
}

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-block img {
	line-height: 0;
	border: 1px solid #ccc;
}

.video-info ul {
  margin-bottom: 1.4rem;
  padding: 0;
  list-style-type: none;
}

.video-info li {
  font-size: 2rem;
}

.video-info li:before {
  content: " ";
  display: block;
  margin: 1.4rem auto;
  width: 40px;
  height: 3px;
  background-color: #f68d1f;
}

.video-info li:last-child {
  margin-bottom: 0;
}

/* features */

.features-block {
	padding: 3rem 0;
	background-color: #eceff4;
}

.features-block h2 {
  /* margin: 0 3rem 1.5rem;
  text-align: center; */
}

.block {
	margin-bottom: 2.4rem;
  padding: 4rem;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 7px 2px #dedede;
}

.block:last-of-type {
  margin-bottom: 0;
}

.block svg {
  color: #f68d1f;
}

.block p {
	margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}

.block .fas {
  color: #f68d1f;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.block:hover .fas {
  -webkit-transform: translate(-5px, -5px) rotate(-5deg);
      -ms-transform: translate(-5px, -5px) rotate(-5deg);
          transform: translate(-5px, -5px) rotate(-5deg);
}

/* last */

.last {
  padding: 3rem 0 4rem;
  background-color: #fff;
}

.last h2 {
  text-align: center;
}

.last ul {
  padding-left: 0;
}

.last li {
  margin-left: 2rem;
}

/* footer */

footer {
  padding: 3rem 0;
  color: #fff;
  background-color: #57585C;
}

footer .inner {
  overflow: hidden;
}

footer .logo {
  display: block;
  margin: 0 auto;
  width: 12.5rem;
}

.copyright {
  margin: 2.4rem 0 0;
}

.copyright a {
  color: #fff;
}

/* responsive */

@media only screen and (min-width: 375px) {
  header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  
  .hero [href^="tel:"] {
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 480px) {
  .hero {
    padding: 4.8rem 0;
  }
  
  .hero:before {
    background: none;
  }
  
  .hero .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-line-pack: center;
        align-content: center;
    height: auto;
}
  
  .text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: left;
  }
  
  .hero [href^="tel:"] {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
  
  .call-block .tfn {
    width: 36rem;
  }
  
  .call-block .tfn:hover,
  .call-block .tfn:focus {
    width: 40rem;
  }
}

@media only screen and (min-width: 480px) and (max-width: 600px) {
  .hero {
    background-position: 20% top;
  }
}

@media only screen and (min-width: 600px) {
  header {
    padding: 1.5rem 0;
	}  

	header .logo,
  header .tfn {
    margin: 0;
    line-height: 5rem;
    width: 25rem;
	}
	
	header .tfn {
		width: auto;
		text-align: right;
	}
  
  .hero {
    background-position: left center;
  }
  
  .hero [href^="tel:"] {
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 640px) {
  .fun {
    margin-left: 3rem;
  }
  
  .streaming {
    margin-left: 6rem;
  }
  
  .data {
    margin-left: 9rem;
  }
  
  .gaming {
    margin-left: 12rem;
  }
  
  /* @keyframes right_to_left {
    from {
      margin-left: 100%;
    }
    to {
      margin-left: 0;
    }
  } */
}

@media only screen and (min-width: 768px) {
  .video-block .inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
  }

  .video-block .inner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  
  .video-block .inner > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  
  .video-info {
    margin-top: 0;
    text-align: left;
  }
  
  .video-info ul {
    margin-bottom: 0;
  }
  
  .video-info li:before {
    content: " ";
    display: block;
    margin: 1.4rem auto;
    width: 40px;
    height: 3px;
    background-color: #f68d1f;
  }
  
  .last ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media only screen and (min-width: 960px) {
  .hero {
    padding: 6rem 0;
    background-position: top left;
  }

  .text {
    -webkit-box-flex: 0;
      -ms-flex: 0 1 62%;
          flex: 0 1 62%;
  }
  
  .hero h1 {
    font-size: 4.8rem;
  }
  
  .hero h1 .cents {
    -webkit-transform: translate(.1rem, -2.1rem);
        -ms-transform: translate(.1rem, -2.1rem);
            transform: translate(.1rem, -2.1rem);
  }
  
  .last .inner {
    margin: 0 auto;
    max-width: 86rem;
  }
}

@media only screen and (min-width: 1024px) {
	.inner {
		margin: 0 3rem;
	}
	
	h2 {
		font-size: 2.6rem;
	}
	
	p {
    font-size: 1.8rem;
    margin-bottom: 2.7rem;
	}
	
	header .tfn {
		font-size: 3.6rem;
	}
  
  .hero [href^="tel:"] {
    padding-right: 3rem;
    padding-left: 3rem;
    font-size: 3.6rem;
    border-radius: 3.6rem;
    border-width: .3rem;
  }
  
  .call-block {
    padding: 3rem 0 1.5rem;
  }
  
  .call-block .tfn {
    margin-top: -6.2rem;
    font-size: 3.6rem;
  }
	
	.video-block,
	.features-block,
  .last {
		padding: 4.5rem 0;
	}
	
	.features-block .inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3rem;
    -webkit-box-align: stretch;
      -ms-flex-align: stretch;
        align-items: stretch;
}
	
	.block {
		margin-bottom: 0;
    padding: 4rem 6rem;
  }
	
  .video-info {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / 3;
    -ms-grid-row-align: center;
      align-self: center;
  }
	
	.data-caps {
    -ms-grid-column: 3;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
    
  .virus-protect {
    -ms-grid-column: 5;
    grid-column: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }
    
  .support {
    -ms-grid-column: 3;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 2 / 2;
  }
  
  .free-email {
    -ms-grid-column: 5;
    grid-column: 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
	
	footer .logo {
    margin: 0;
    float: left;
	}
	
	.copyright {
    margin: 0;
    width: auto;
    float: right;
	}
}

@media only screen and (min-width: 1200px) {
  .hero {
    padding: 10rem 0;
  }
  
  .hero p {
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 1260px) {
	.inner {
		margin: 0 auto;
		max-width: 120rem;
	}
}

@media only screen and (min-width: 1440px) {
  .hero {
    background-size: auto;
  }
  
  .text {
    flex: 0 1 58%;
  }
}

@media only screen and (min-width: 1442px) {
  body {
    margin: 0 auto;
    width: 1440px;
    border-right: 1px solid #f68d1f;
    border-left: 1px solid #f68d1f;
  }
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}