/*! 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.
 
 internettp
 4gDr9BFLKVETndW
 */

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

:root {
      --color-elnk-orange: #f68d1f;
      --color-elnk-lightorange: #ffa300;
      --color-elink-textorange: #cb741a;
      --color-elnk-blue: #007db0;
      --color-elnk-lightblue: #00a3e0;
      --color-elnk-darkblue: #00a3e0;
      --color-elnk-darkgray: #57585c;
    }

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

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

/*
 * 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.3;
}

h1 {
    font-weight: 800; 
}

h2 {
    font-size: 2.4rem;
    color: #007db0;
    color: var(--color-elnk-blue);
}

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

ul {
    margin: 0 0 2.4rem;
}

li {
    line-height: 1.5;
}

a {
    color: #007db0;
    color: var(--color-elnk-blue);
}

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;
}

/* animations */

@-webkit-keyframes wiggle {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    80% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    85% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    95% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@keyframes wiggle {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    80% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    85% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    95% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@-webkit-keyframes wiggleslower {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    80% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    85% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    95% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@keyframes wiggleslower {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    80% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    85% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    95% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@-webkit-keyframes hourglassrotate {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    33% { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
    66% { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes hourglassrotate {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    33% { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
    66% { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes iconwiggle {
    0% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
    80% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
    85% { -webkit-transform: rotate(1deg); transform: rotate(1deg); }
    95% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
    100% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
}

@keyframes iconwiggle {
    0% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
    80% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
    85% { -webkit-transform: rotate(1deg); transform: rotate(1deg); }
    95% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
    100% { -webkit-transform: rotate(-11deg); transform: rotate(-11deg); }
}

.wigglewiggle {
    display: inline-block;
    animation: wiggle 3s infinite;
}

.wiggleslow {
    display: inline-block;
    animation: wiggleslower 3s infinite;
}

.spin-pause:before {
    display: inline-block;
    animation: hourglassrotate 3s infinite;
}

.iconwiggle:before {
    display: inline-block;
    animation: iconwiggle 3s infinite;
}

/* buttons */

.btn {
    position: relative;
    display: inline-block;
    padding: 1.8rem 2.4rem;
    font-weight: 600;
    font-size: 1.8rem;
    color: #fff;
    line-height: 5.5rem;
    text-decoration: none;
    background-color: #00a3e0;
    background-color: var(--color-elnk-blue);
    border-radius: .4rem;
    border: none;
    -webkit-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
    cursor: pointer;
}

.btn:after {
    position: absolute;
    display: block;
    content: " ";
    top: 0;
    right: 0;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    background-color: #00a3e0;
    background-color: var(--color-elnk-lightblue);
    border-radius: 6px;
    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.btn:hover,
[href^="tel:"]:hover {
    color: #000;
    background-color: #00a3e0;
    background-color: var(--color-elnk-darkblue);
}

[href^="tel:"] {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    background-color: #007db0;
    background-color: var(--color-elnk-blue);
    -webkit-transition: all .25s ease-in-out;
         -o-transition: all .25s ease-in-out;
            transition: all .25s ease-in-out;
    cursor: pointer;
}

[href^="tel:"].no-btn {
    display: inline-block;
    font-weight: 600;
    color: #cb741a;
    color: var(--color-elink-textorange);
    background-color: transparent;
}

/* header */

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 1.5rem 0;
    text-align: center;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&1+0,0.7+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#b3000000',GradientType=0 ); /* IE6-9 */
    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;
}

.hdr-gift-card {
    margin: 1rem auto 0;
    color: #fff;
}

.hdr-gift-card:before {
    content: "\f09d";
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    margin-right: .4rem;
    font-family: "FontAwesome", "Font Awesome 5 Free";
    color: var(--color-elnk-orange);
    -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
            transform: rotate(-10deg);
}

.limited {
    color: #fff;
}

.site-navigation {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.5rem;
}

.skip-nav {
    display: inline-block;
    position: absolute;
    top: -6.4rem;
    left: 0;
    width: 100%;
    padding: 1.55rem 0;
    color: #fff;
    line-height: 1;
    background-color: green;
    border-radius: 0.6rem;
    z-index: 999;
    opacity: 0;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

.skip-nav:focus-visible,
.skip-nav:focus {
    top: 0;
    opacity: 1;
}

.nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 4.3rem;
            flex: 0 1 4.3rem;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav li {
    position: relative;
}

.open-menu {
    display: block;
    font-size: 2rem;
    line-height: 4.2rem;
    color: #000;
    background-color: #f68d1f;
    background-color: var(--color-elnk-orange);
    border-radius: .4rem;
}

.open-menu:after {
    position: absolute;
    display: block;
    content: " ";
    top: 0;
    right: 0;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    background-color: #f68d1f;
    background-color: var(--color-elink-textorange);
    border-radius: 6px;
    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.nav:hover .open-menu,
.nav:focus .open-menu,
.nav:focus-within .open-menu,
.nav:active .open-menu {
    border-radius: .4rem .4rem 0 0;
}

.nav .dropmenu {
    visibility: hidden;
    position: absolute;
    top: 4.3rem;
    right: 0;
    margin: 0;
    padding: 0;
    width: 22rem;
    text-align: left;
    list-style-type: none;
    background-color: #f68d1f;
    background-color: var(--color-elnk-orange);
    border-radius: .4rem 0 .4rem .4rem;
    z-index: 999;
    opacity: 0;
    -webkit-transition: opacity .25s ease-in-out;
    -o-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    overflow: hidden;
}

.nav:hover .dropmenu,
.nav:focus .dropmenu,
.nav:focus-within .dropmenu {
    visibility: visible;
    opacity: 1;
}

.dropmenu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.dropmenu > li {
    border-bottom: 0.1rem solid #333;
}

.dropmenu li a,
.dropmenu li span {
    display: block;
    padding: 1rem;
    font-weight: 600;
    line-height: 1;
}

.dropmenu li a {
    color: #000;
    text-decoration: none;
}

.dropmenu li a:hover,
.dropmenu li a:focus,
.dropmenu li a:active {
    color: #fff;
    background-color: var(--color-elink-textorange);
}

/* .dropmenu li span {
    padding-bottom: 0;
} */

.dropmenu ul li a {
    font-weight: 400;
}

.dropmenu ul li a::before {
    content: "› ";
}

header .btn {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 5.8rem);
            flex: 0 1 calc(100% - 5.8rem);
    margin: 0.2rem 0;
    padding: 1.2rem 2.4rem;
}

header .btn:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f3cd";
    margin-right: .8rem;
    font-family: "FontAwesome", "Font Awesome 5 Free";
}

header .tfn:before,
.fa-mobile-alt {
    -webkit-transform: rotate(-11deg) translateY(1px);
        -ms-transform: rotate(-11deg) translateY(1px);
            transform: rotate(-11deg) translateY(1px);
}

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

/* structure */

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

/* hero */

.hero {
    position: relative;
    padding: 0 0 1.5rem;
}

.hero .inner {
    /* color: #fff; */
}

.hero h1 {
    margin: 0;
    padding: 1.5rem;
    font-size: 2.4rem;
    color: var(--color-elnk-blue);
    text-align: center;
}

.intro {
    margin: 0 1.5rem;
}

.intro p {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.intro .btn {
    margin-bottom: 3rem;
}

/* lists */

.lists p {
    margin-bottom: .9rem;
    font-weight: 600;
    font-size: 2rem;
}

.list-one ul,
.list-two ul {
    list-style-type: none;
    padding-left: 2.4rem;
}

.list-one li:before,
.list-two li:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    font-family: "FontAwesome", "Font Awesome 5 Free";
    margin-left: -2.4rem;
    margin-right: 0.6rem;
    font-weight: 900;
    font-size: var(--fa-font-solid);
}

.list-one li:before {
    content: "\f058";
    color: #94d600;
}

.list-two li:before {
    content: "\f055";
}

/* form */

.form-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 2.4rem;
    text-align: center;
    border-radius: 0.6rem;
    -webkit-box-pack: space-between;
        -ms-flex-pack: space-between;
            justify-content: space-between;
}

.form-box img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    height: 5rem;
}

.main-img {
    height: 25rem;
    background: transparent url("../images/father-son-playing-video-games-together-home-v5.jpg") right bottom no-repeat;
    background-size: 68rem;
}

/* plans */

.internet-plans.large {
    display: none;
}

.internet-plans {
    padding: 1.5rem 0;
}

.internet-plans h1 {
    margin-bottom: 36px;
    font-weight: 600;
}

.internet-plans h1 span {
    display: block;
    font-weight: 800;
    font-size: 48px;
    color: #007db0;
    color: var(--color-elnk-blue);
}

.internet-plans .btn {
    margin: 0 auto;
    max-width: 34.5rem;
    text-align: center;
}

.internet-plans .btn:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    animation: iconwiggle 3s infinite;
    content: "\f3cd";
    margin-right: .8rem;
    font-family: "FontAwesome", "Font Awesome 5 Free";
}

.plan {
    position: relative;
    margin-bottom: 3rem;
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    border: .2rem solid #D7D7D7;
    border-radius: .6rem;
    -webkit-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.plan ul {
    margin-bottom: 0;
    padding-left: 1.8rem;
}

.plan li {
    font-size: 1.6rem;
    text-align: left;
}

.plan:hover {
    -webkit-transform: translateY(-.5rem);
    -ms-transform: translateY(-.5rem);
    transform: translateY(-.5rem);
}

.popular {
    position: relative;
    border-color: #f68d1f;
}

.popular:before {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: "\f005";
    display: block;
    position: absolute;
    top: -21px;
    left: calc(50% - 1.85rem);
    width: 3.7rem;
    height: 3.7rem;
    line-height: 3.7rem;
    font-family: 'FontAwesome', 'Font Awesome 5 Free';
    color: #fff;
    background-color: #f68d1f;
    background-color: var(--color-elnk-orange);
    border-radius: 50%;
}

.plan h3 {
    position: relative;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    color: #007db0;
    color: var(--color-elnk-blue);
    text-transform: uppercase;
}

.plan h3:before {
    content: "$40 off today";
    position: absolute;
    display: block;
    margin: 0;
    padding: 2.3rem .5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-transform: none;
    width: 6.5rem;
    transform: rotate(-15deg);
    border-radius: 50%;
    background-color: #f68d1f;
    background-color: var(--color-elnk-orange);
}

.plan p {
    margin-bottom: 1.8rem;
}

.plan p span {
    display: block;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #007db0;
    color: var(--color-elnk-blue);
}

.plan p + p + p {
    color: #444;
}

.plan a {
    padding: 0;
    font-size: 2rem;
    line-height: 4.8rem;
    border: none;
    border-radius: .4rem;
}

/* awards */

.awards {
    padding: 1.5rem 0;
    background-color: #fff;
}

.awards ul {
    margin: 1.8rem auto;
    width: auto;
    max-width: 72rem;
    text-align: left;
}

.awards .inner + .inner {
    text-align: center;
}

.awards img {
    margin: 1rem 1.5rem;
}

/* callout blocks */

.callout-blocks .block {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    text-align: left;
    background-color: #fff;
    border-radius: .6rem;
    border: .2rem solid #d7d7d7;
}

.callout-blocks .block h3 i {
    padding: 0 2px;
    font-size: 20px;
    color: #f68d1f;
}

.callout-blocks .block p {
    margin-bottom: 0;
}

/* get started */

.get-started .btn {
    display: inline-block;
}

/* disclaimer */

.disclaimer {
    padding: 1.5rem 0;
    background-color: #fff;
}

.disclaimer h2 {
    text-align: center;
}

.disclaimer p,
.disclaimer a {
    font-size: 1.4rem;
}

.disclaimer [href^="tel:"] {
    display: inline;
    color: var(--color-elnk-blue);
    text-decoration: underline;
    background-color: inherit;
}

/* right connection */

.right-connection {
    padding: 1.5rem 0;
}

/* footer */

footer {
    padding: 1.5rem 0 4.5rem;
    color: #fff;
    background: var(--color-elnk-darkgray) url("../images/ftr-orb@2x.png") center bottom no-repeat;
    background-size: 8.3rem;
}

footer .inner {
    margin: 0;
    overflow: hidden;
}

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

.copyright,
.tcs {
    margin: 0 auto;
    text-align: center;
}

.tcs {
    
}

.copyright a,
.tcs a {
    color: #fff;
}

/* responsive */

@media only screen and (min-width: 400px) {
    .lists {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    
    .list-one,
    .list-two {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 calc(50% - 1.5rem);
                flex: 0 1 calc(50% - 1.5rem);
    }
}

@media only screen and (min-width: 590px) {
    .intro h2 {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 calc(100% - 20rem);
                flex: 0 1 calc(100% - 20rem);
        max-width: 42rem;
        text-align: left;
    }
    
    .form-box img {
        height: 9.7rem;
    }
}

@media only screen and (min-height: 666px) {
    .get-started {
        /* position: sticky;
        bottom: 0; */
        padding: 1.5rem 0;
        background-color: #f2f2f2;
        border-top: .2rem solid #ccc;
        z-index: 999;
    }
    
    .get-started .inner {
        display: block !important;
        text-align: center;
    }
}

@media only screen and (min-width: 375px) {
    .hero [href^="tel:"] {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 480px) {
    .hero:before {
        background: none;
    }
    
    .hero [href^="tel:"] {
        display: inline-block;
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 639px) {
    header .btn {
        margin: 0;
        padding: 1.2rem 0;
    }
}

@media only screen and (min-width: 640px) {
    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: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    header .logo {
        margin: 0;
        width: 15rem;
    }
    
    .site-navigation {
        margin-top: 0;
        width: 24rem;
    }
    
    header .btn {
        margin: 0;
        padding: 1.2rem 0;
    }
    
    .hdr-gift-card {
        margin: 0 auto;
    }
    
    .main-img {
        height: 38rem;
        background-size: 100rem;
    }
}

@media only screen and (min-width: 768px) {
    header .logo {
        width: 19rem;
    }
    
    .site-navigation {
        width: 24rem
    }
    
    .hero [href^="tel:"] {
        font-size: 2.4rem;
    }
    
    header .btn {
        font-size: 1.8rem;
    }
    
    .btn {
        font-size: 2.4rem;
    }
    
    .plans-row {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 0px;
        margin-bottom: 2.7rem;
    }
        
    .plans-row > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
        
    .plans-row > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
        
    .plans-row > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
        
    .plan {
        margin-bottom: 0;
    }
     
    .callout-blocks {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 3rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-rows: 1fr 3rem 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
        margin-bottom: 2.7rem
    }
    
    .callout-blocks > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1
    }
    
    .callout-blocks > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3
    }
    
    .callout-blocks > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1
    }
    
    .callout-blocks > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 3
    }
    
    .callout-blocks .block {
        margin-bottom: 0;
    }
    
    .plan h3:before {
        top: 0;
        left: -3.5rem;
    }
}

@media only screen and (max-width: 959px) {    
    .intro p {
        font-size: 1.8rem;
        text-align: center;
    }
}

@media only screen and (min-width: 960px) {
    header .logo,
    .site-navigation {
        width: 25.3rem;
    }
    
    header .tfn {
        padding: .6rem 2rem;
        border-radius: 3rem;
    }
    
    .content {
        position: relative;
        background: transparent url("../images/father-son-playing-video-games-together-home-v5.jpg") right bottom no-repeat;
        background-size: cover;
    }
    
    .content:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        display: block;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+30,ffffff+65&0.9+0,0.8+30,0+65 */
        background: -moz-linear-gradient(left,  rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0) 65%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left,  rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.8) 30%,rgba(255,255,255,0) 65%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right,  rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.8) 30%,rgba(255,255,255,0) 65%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */


    }
    
    .hero {
        padding: 0;
        background-color: inherit;
    }
    
    .hero .inner {
        position: relative;
        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;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -ms-flex-line-pack: center;
            align-content: center;
        height: auto;
        -webkit-transition: all .25s ease-in-out;
        -o-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
        z-index: 999;   
    }
    
    .hero h1 {
        padding: 3rem 1.5rem 1.5rem;
        font-size: 3.6rem;
        line-height: 1;
    }
    
    .intro h3 {
        font-size: 4rem;
        text-align: left;
    }
    
    .internet-plans.small {
        display: none;
    }
    
    .internet-plans.large {
        display: block;
    }
    
    .left {
        position: relative;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 calc(50% - 1.5rem);
                flex: 0 1 calc(50% - 1.5rem);
    }
    
    .form-box img {
        height: 7rem;
    }
    
    .main-img {
        display: none;
    }
    
    .right-connection {
        padding: 3rem 0;
    }
    
    footer {
        padding: 1.5rem;
    }
    
    footer .inner {
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
          justify-content: space-between;
    }
    
    .copyright,
    .tcs {
        margin: 0;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
    }
}

@media only screen and (min-height: 768px) and (min-width: 960px) {
    .content {
        height: calc(100vh - 19.4rem);
    }
    
    .internet-plans {
        padding-top: 0;
    }
    
    .internet-plans .inner {
        margin-top: -3rem;
    }
}

@media only screen and (min-width: 1024px) {
    .inner {
        margin: 0 1.5rem;
    }
    
    h2 {
        font-size: 2.6rem;
    }
    
    header .tfn {
        font-size: 2.4rem;
    }
    
    .hero [href^="tel:"] {
        padding-right: 3rem;
        padding-left: 3rem;
        border-width: .3rem;
    }
    
    footer .logo {
        margin: 0;
        float: left;
    }
    
    .copyright {
        margin: 0;
        width: auto;
    }
}

@media only screen and (min-width: 1200px) {
    .offer-connect {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
          justify-content: space-between;
    }
    
    .intro h2 {
        font-size: 5.6rem;
        max-width: inherit;
    }
    
    .intro p {
        font-size: 2.4rem;
    }
    
    .form-box {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    
    .form-box img {
        height: 9.7rem;
    }
    
    .plan {
        padding: 3rem;
    }
    
    .plan h3 {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 1260px) {
    .inner {
        margin: 0 auto;
        width: 120rem;
    }
    
    .left {
        position: relative;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 calc(50% - 1.5rem);
                flex: 0 1 calc(50% - 1.5rem);
    }
    
    .plan h3:before {
        top: -0.7rem;
        left: -5rem;
    }
}

@media only screen and (min-width: 1440px) {
    body {
        font-size: 1.8rem;
    }
    
    .intro h2 {
        font-size: 6.4rem;
    }
    
    .internet-plans .inner {
        margin-top: -2rem;
    }
}

@media only screen and (min-width: 1540px) {
    .hero-left {
        -webkit-box-flex: 0;
                -ms-flex: 0 1 50%;
                    flex: 0 1 50%;
    }
    .internet-plans .inner {
        margin-top: -3rem;
    }
}

@media only screen and (min-width: 1681px) {
    .intro h2 {
        font-size: 7.2rem;
    }
    .internet-plans .inner {
        margin-top: -4rem;
    }
}

@media only screen and (min-width: 1920px) {
    .inner {
        margin: 0 auto;
        max-width: 162rem;
    }
    .internet-plans .inner {
        margin-top: -6rem;
    }
}

@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;
    }
}