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

/* gift card terms */
body .main-offer-terms{
    text-align: center;
    margin-bottom: 4rem;
}
.offer-terms h3 {
    color: #007dba;
    font-size: 25px;
    padding: 0rem 0 1rem;
}
.offer-terms p.note {
    margin: 0;
    font-size: 1.4rem;
}
/* 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;
}

/*Address Widget*/

ul.streetAPI {
    border-radius: 5px;
    position: absolute;
    width: 100%;
    left: 0px;
    background: #fff;
    -webkit-box-shadow: 0 0 47px -3px rgba(0, 0, 0, .3) !important;
    box-shadow: 0 0 47px -3px rgba(0, 0, 0, .3);
    overflow-y: scroll;
    z-index: 999;
    list-style: none !important;
    max-height: 0px;
    min-height: 0px;
}

.hidden-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

ul.streetAPI.active {
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    padding: 10px 0 !important;
    max-height: 250px;
}

ul.streetAPI li {
    padding: 2px 0 2px 10px;
    margin: 0 0 10px;
    cursor: pointer;
    font-size: 14px;
    outline: none;
}

ul.streetAPI li:hover {
    background: #e5e5e5;
}

.submitForm {
    position: relative;
}

.header-wrapper {
    overflow: visible !important;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000007a;
    display: none;
}

.loader img {
    width: 80px;
    margin-top: 50px;
}

/*new widget css*/
/* .form-holder-wrap {
    margin-top: -100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 0;
} */

.form-holder-wrap.wrap-open {
    margin-top: 0;
    opacity: 1;
    z-index: 999;
}

.form-holder {
    /* position: relative; */
    margin: 3.5rem 0px;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border: 2px solid #d7d7d7;
}

.form-holder.widget-open {
    /*margin-top: 1.5rem;
  margin-bottom: 0rem;*/
  /* height: auto; */
  background-color: #fff;
  border-color: #ccc;
  /* z-index: 1; */
}

.plan-btn {
    display: inline-block;
    padding: 0 2.4rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: #fff;
    line-height: 3.5rem;
    text-decoration: none;
    background-color: #007dba;
    border-radius: 5px;
    border: none;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.streetAPI li.selected {
    background-color: #e6f7ff;
}

.form-holder>p {
    font-size: 18px;
    text-align: center;
    line-height: 24px;
    margin-bottom: 9px;
    font-weight: 600;
    color: #444444;
}

.form-holder .checkbox-able-side {
    display: inline-block;
    margin-top: 7px;
    flex-wrap: wrap;
    display: inline-flex;
    row-gap: 16px;
    column-gap: 16px;
}

.row.input-able-bx {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
}

.form-holder .col-set {
    width: 100%;
}

.form-holder .col-set .userInput {
    height: 45px;
}

.form-holder .col-set .input-able.service-form.userInput:before {
    top: 9px;
}

.form-holder .checkbox-able-bx {
    padding: 0px;
}

.form-holder .checkbox-able label {
    display: flex;
    align-items: center;
}

.icon-mobile,
.icon-wifi {
    padding-right: 10px;
}

.icon-mobile i,
.icon-wifi i {
    width: 20px;
    height: 20px;
    color: #fff;
    background-color: #f68d1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-mobile i:before {
    font-size: 12px;
}

.icon-wifi i:before {
    font-size: 10px;
}

.form-holder .checkbox-able-bx .checkbox-able label span {
    top: 0;
    margin-left: 5px;
}

.rather-chat-num {
    text-align: center;
    margin-top: 20px;
}

.rather-chat-num a {
    color: #000;
    text-decoration: underline;
}

.addressform {
    text-align: center;
}
#widget .main-input{
    width: 100%;
}
#widget .userInput{
    width: 100%;
    text-align: left;
}
#widget .main-input {
    width: 70%;
    text-align: left;
    position: relative;
}
#widget .check-side-col{
    width: 30%;
}
#widget .addressError{
    margin: 0px;
}
#widget #addressWidget{
    width: calc(100% - 40px);
    padding: 0px 10px;
    line-height: inherit;
    height: 42px;
    border: 2px solid #d7d7d7;
    border-bottom-width: 4px;
    border-radius: 4px;
}
#widget #addressWidget:focus-visible{
    outline: inherit;
    border-color: #007db0;
}
#widget #submitData{
    width: 100%;
    background-color: #007db0;
    border: 1px solid #00a3e0;
    border-bottom-width: 4px;
    border-radius: 4px;
    color: #fff;
    height: 48px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}
#widget #submitData:disabled {
    cursor: not-allowed;
}
#widget .checkText {
    font-size: 16px;
    color: #333333;
}
#addressWidget::placeholder {
    color: #333333;
}

#addressWidget:-ms-input-placeholder {
    color: #333333;
}

#addressWidget::-ms-input-placeholder {
    color: #333333;
}
/*new widget end*/
/* 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 {
    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: 'Get started for $0 down today';
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: absolute;
    margin: 0;
    padding: 2.3rem 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-transform: none;
    transform: rotate(-15deg);
    border-radius: 50%;
    background-color: #f68d1f;
    background-color: var(--color-elnk-orange);
}
.main-reverse .inner.down-elink{
    padding-top: 30px;
}
.main-reverse .inner.down-elink .intro-txt{
    font-weight: bold;
    font-size: 1.8rem;
}

.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;
}
.responsive-view-logos{
    display: none;
}
/* 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;
}

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

/* popup modal */
.modal {
	z-index: 10000;
	visibility: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 110.145ms 0ms;
}

.modal.is-visible {
	visibility: visible;
}

.modal-overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 0%, 0.5);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}

.modal-wrapper {
	position: fixed;
	z-index: 9999;
	width: 38em;
	background-color: #fff;
	box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-transition {
	transition: all 0.3s 0.12s;
	transform: translateY(-10%);
	opacity: 0;
}

.modal.is-visible .modal-transition {
	transform: translateY(0);
	opacity: 1;
}

.modal-header,
.modal-content {
	padding: 1em;
}

.modal-header {
	position: relative;
	box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
	border-bottom: 1px solid #e8e8e8;
	background-color: #007db0;
	color: #fff;
}

.modal-close {
	position: absolute;
    top: 8px;
    right: 12px;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
    color: #fff;
}

.modal-close:hover {
	color: #777;
}

.modal-heading {
	font-size: 1.125em;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.modal-content>*:first-child {
	margin-top: 0;
}

.modal-content>*:last-child {
	margin-bottom: 0;
}

.add-another {
	border: none;
	cursor: pointer;
	color: #007db0;
	background-color: inherit;
	font-weight: bold;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	margin: 10px 0 20px;
}

.modal-cancel-btn {
	padding: 1rem;
	border-color: #d9d9d9;
	background-color: transparent;
	border: 1px solid #d9d9d9;
	cursor: pointer;
}

.modal-submit-btn {
	padding: 1rem;
	background-color: #007db0;
	border: none;
	color: #fff;
	cursor: pointer;
}

#unit-number {
	width: 100%;
	padding: 1rem;
	box-sizing: border-box;
	height: 40px;
	font-family: "Montserrat", sans-serif !important;
}

.unit-type #unit-type {
	padding: 1rem;
	text-align: center;
	border-color: #d3d3d3;
}

#location-edit-icon,
#close-second-unit-type {
	cursor: pointer;
}

.main-item {
	display: flex;
	align-items: center;
	column-gap: 16px;
	width: 400px;
	margin: 10px 0 0px;
}

.single-item {
	width: 50%;
	position: relative;
}

.single-item label {
	width: 100%;
	display: inline-block;
	font-size: 14px;
}

.single-item select {
	height: 40px;
	width: 100%;
	text-align: left;
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	padding: 0 11px;
	color: rgba(0,0,0,.85);
	appearance: none;
	font-family: 'Montserrat',sans-serif;
	background-color: transparent;
}
.single-item .downIcon{	
    position: absolute;
    bottom: 10px;
    right: 8px;
    font-size: 12px;
    color: #d9d9d9;
}
.unit-Number {
	height: 40px;
	width: 100%;
	text-align: left;
	margin: 0;
	box-sizing: border-box;
	border: 1px solid #d9d9d9;
	border-radius: 2px;
	padding: 0 11px;
	color: rgba(0,0,0,.85);
	font-family: 'Montserrat',sans-serif;
}

.second-option-widget p {
	margin: 0px;
	font-weight: 600;
}

.inner-modal-content p {
	font-weight: bold;
}

.selected-address {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.selected-address svg {
	width: 15px;
	vertical-align: -2px;
}

.selected-address svg path {
	fill: #007db0;
}

.selected-address h3 {
	margin: 0 4px;
	font-size: 14px;
	font-weight: normal;
	color: rgba(0,0,0,.85);
}
.selected-address > p{
	font-size: 15px;
}

#second-unit-dv {
	margin-bottom: 20px;
}

#second-unit-dv .main-item {
	position: relative;
}

#second-unit-dv .clear-second {
	position: absolute;
	right: -25px;
	top: 30px;
}

#second-unit-dv .clear-second svg path {
	fill: #007db0;
}

.address-btn-wrapp{
	display: flex;
	justify-content: flex-end;
	column-gap: 16px;
}
.address-btn-wrapp > button{
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0,0,0,.015);
    cursor: pointer;
    display: inline-block;
    font-size: 14px;    
    padding: 8px 15px;
    text-align: center;
    font-family: 'Montserrat',sans-serif;    
}
/* popup modal */

/* 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(max-width:767px){
    .main-reverse{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .responsive-none{
        display: none;
    }
    .responsive-view-logos{
        display: block;
        margin: 8px 18px 0px;
    }
}
@media only screen and (max-width: 639px) {
    header .btn {
        margin: 0;
        padding: 1.2rem 0;
    }
    /* .site-navigation{
        display: none;
    } */
    .row.input-able-bx{
        display: block;
    }
    #widget .main-input {
        width: 100%;
    }
    #widget #addressWidget {
        width: 100%;
        box-sizing: border-box;
    }
    .row.input-able-bx{
        justify-content: center;
    }
    #widget .check-side-col {
        width: 60%;
        margin: 10px auto 1px;
    }
}

@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 (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;
        background-position: 100% 88%;
    }
    
    .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;   
    }

    .main-reverse .inner.down-elink .intro-txt{
        font-size: 2rem;
    }
    
    .hero h1 {
        padding: 3rem 1.5rem 1.5rem;
        font-size: 3.6rem;
        line-height: 1;
    }
    
    .intro h3 {
        font-size: 4rem;
        text-align: left;
    }

    .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(65vh);
    }
    
    .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 only screen and (min-width: 768px) and (max-width: 959px) {
    .internet-plans{
        padding-top: 35px;
    }
}

@media only screen and (max-width: 959px) {
    .plan h3:before{
        font-size: 10px;
        width: 65px;
        height: 65px;
    }
    .main-reverse .inner.down-elink{
        padding-top: 30px;
    }

    .intro p {
        font-size: 1.8rem;
        text-align: center;
    }
}

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