/*! 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
	 ========================================================================== */

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

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

.serviceable,
.sorry,
.thanks {
  background-color: #57585c;
}

/*
 * 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%;
  height: auto;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 0.1rem;
  border: 0;
  border-top: 0.1rem 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 0.8rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.1;
}

h1 {
  font-weight: 800;
}

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

h3 {
  font-size: 2rem;
}

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

ul {
  margin: 1.8rem 0;
  padding: 0;
}

ul li {
  line-height: 1.5;
}

body a {
  color: #007dba;
}

strong,
b {
  font-weight: 600;
}

#root .thanks-card-betterinternet .tfn-change,
#root a[href^="tel:"]:not(.tfn-change),
[href^="tel:"]:not(.tfn-change) {
  display: block;
  padding: 0.7rem 1.6rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background-color: #007dba;
  border-radius: 2.4rem;
  border: 0.3rem solid #00a3e0;
  -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;
}

#root a[href^="tel:"]:hover:not(.tfn-change),
[href^="tel:"]:hover:not(.tfn-change) {
  color: #000;
  background-color: #00a3e0;
}
/*
 * 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: 0.1rem;
  margin: -0.1rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 0.1rem;
  /* 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 */

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

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

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

@keyframes iconwiggle {
  0% {
    transform: rotate(-11deg);
  }
  80% {
    transform: rotate(-11deg);
  }
  85% {
    transform: rotate(1deg);
  }
  95% {
    transform: rotate(-11deg);
  }
  100% {
    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;
}

/* header */

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0.5rem 0;
  text-align: center;
  background-color: #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;
}

.countdown {
  margin: 1rem auto;
  text-shadow: 0 0.1rem 0.2rem rgb(0 0 0 / 20%);
}

.limited {
  color: #fff;
}

.limited:before {
  content: "\f252";
  margin-right: 0.4rem;
  font-family: "FontAwesome", "Font Awesome 5 Free";
}

#timer {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  width: 4.5rem;
  font-weight: 600;
  color: red;
  text-shadow: none;
  background-color: #f2f2f2;
  border: 0.1rem solid #979797;
  border-radius: 0.4rem;
}

header .tfn {
  position: relative;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  background-color: #007dba;
  border-radius: 2rem;
}

header .tfn:before {
  content: "\f3cd";
  display: inline-block;
  margin-right: 0.4rem;
  font-family: "FontAwesome", "Font Awesome 5 Free";
}

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 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

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

/* structure */

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

/* hero */

.hero {
  position: relative;
  padding: 3rem 0 0;
  background: #f7f7f7;
  overflow: hidden;
}

.thanks .hero {
  padding-bottom: 0;
  background: #f7f7f7;
}

.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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 999;
}

.illo-image,
.text,
.serviceable-form {
  -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;
}

.illo-image {
  padding: 0 0 3rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #007dba;
}

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

.hero .cents {
  display: inline-block;
  -webkit-transform: translate(0.4rem, -0.6rem);
  -ms-transform: translate(0.4rem, -0.6rem);
  transform: translate(0.4rem, -0.6rem);
  font-size: 1.5rem;
  border-bottom: 0.2rem solid #fff;
}

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

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

.text ul {
  list-style-type: none;
  text-align: left;
}

.text li {
  position: relative;
}

.text li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  background: #f68d1f;
  font-weight: bold;
  color: #fff;
  height: 1.3rem;
  width: 1.3rem;
  line-height: 1.4rem;
  font-size: 0.76rem;
  text-align: center;
  position: absolute;
  top: 0.5rem;
  left: -2.1rem;
  border-radius: 1rem;
}

.text span {
  display: block;
  margin-top: 1rem;
  font-size: 2rem;
}

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

.serviceable .hero [href^="tel:"],
.sorry .hero [href^="tel:"] {
  padding: 0;
  color: #007dba;
  text-decoration: underline;
  background-color: transparent;
  border: none;
}

.serviceable-form {
  padding: 0 0 3rem;
}

.serviceable-form form {
  padding: 10rem 0;
  text-align: center;
  background-color: #fff;
  border: 0.3rem solid #008dba;
  border-radius: 1rem;
}

/* steps */

.moving-steps {
  padding: 3rem 0;
  background: #f2f2f2 url("../images/mark-pattern-alt-3.png") center center
    repeat;
  background-size: 6rem;
}
.moving-steps.get-started-div {
  text-align: center;
}

.step {
  position: relative;
  margin-bottom: 3rem;
  padding: 1.5rem 2.6rem;
  background-color: #fff;
  border: 0.3rem solid #d7d7d7;
  border-radius: 1rem;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.step:before {
  display: block;
  position: absolute;
  top: calc(50% - 2rem);
  left: -2.4rem;
  width: 3.7rem;
  height: 3.7rem;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 3.7rem;
  color: #fff;
  text-align: center;
  background-color: #f68d1f;
  border-radius: 50%;
  border: 0.3rem solid #e07302;
  z-index: 3;
}

.step.one:before {
  content: "1";
}

.step.two:before {
  content: "2";
}

.step.three:before {
  content: "3";
}

.step h3 {
  font-size: 2rem;
  line-height: 1;
}

.step p {
  margin-bottom: 0;
}

.step [href^="tel:"],
.end [href^="tel:"] {
  display: inline;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  color: #007dba;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.step [href^="tel:"]:hover,
.step [href^="tel:"]:focus,
.end [href^="tel:"]:hover,
.end [href^="tel:"]:focus {
  color: #007dba;
  text-decoration: underline;
  background-color: transparent;
}

.step.one {
  padding: 0;
  background-color: #f7f7f7;
}

.step-text {
  padding: 1.5rem 2.6rem;
  background-color: #fff;
  border-radius: 0.8rem 0.8rem 0 0;
}

.widget {
  padding: 1.5rem 2.6rem;
}

.widget-box form {
  position: relative;
}

.widget-box input {
  padding: 1rem;
  width: calc(100% - 2.6rem);
  font-size: 1.6rem;
  border: 0.2rem solid #f68d1f;
  border-radius: 0.4rem;
}

.widget-box button {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  padding: 0 1rem;
  font-size: 1.6rem;
  line-height: 3.4rem;
  color: #fff;
  background-color: #007dba;
  border: none;
  border-radius: 0.2rem;
}

/* plans */

.internet-plans {
  padding: 3rem 0;
  text-align: center;
  background-size: 60px;
}

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

.internet-plans h1 span {
  display: block;
  font-weight: 800;
  font-size: 36px;
  color: #007dba;
  margin-top: 5px;
}

.thanks .internet-plans {
  padding-top: 0;
}

.plan {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #fff;
  border: 3px solid #d7d7d7;
  border-radius: 1rem;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.plan p + p {
  color: #444;
}

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

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

.popular:before {
  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;
  border-radius: 50%;
}

.plan h3 {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: #f68d1f;
  text-transform: uppercase;
}

.plan p {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  font-weight: 600;
  color: #007dba;
}

.plan p span {
  display: block;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
}

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

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

/* call block */

.call-block {
  position: -webkit-sticky;
  position: sticky;
  display: block;
  top: auto;
  bottom: 0;
  padding: 1.5rem 0;
  text-align: center;
  background-color: #57585c;
  box-shadow: 0 0 0.9rem 0.6rem rgb(0 0 0 / 30%);
  z-index: 9999;
}

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

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

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

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

/* end */

.end {
  margin-top: 3rem;
  padding: 3rem 0 0.3rem;
  background-color: #fff;
}

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

.right li {
  position: relative;
  margin: 0 0 1.5rem;
  padding: 2.4rem 3rem 2.4rem 10rem;
  border: 0.2rem solid #979797;
  border-radius: 0.4rem;
}

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

.right li:before {
  position: absolute;
  display: block;
  top: calc(50% - 1.6rem);
  left: 4rem;
  font-size: 3.2rem;
  font-family: "FontAwesome", "Font Awesome 5 Free";
  line-height: 1;
  color: #f68d1f;
  text-align: center;
}

.data:before {
  content: "\f1c0";
}

.customize:before {
  content: "\f7d9";
}

.security:before {
  content: "\e06c";
}

.left h2 {
  font-size: 3.6rem;
  color: #f68d1f;
}

.left h3 {
  font-size: 2.4rem;
  color: #007dba;
}

/* awards */

.awards {
  padding: 2rem 0;
  text-align: center;
  background-color: #fff;
}

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

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

/* right connection */

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

/* existing ELNK customer */

.elnk-customer {
  padding: 0;
}

.elnk-customer .inner {
  background-color: #fff;
  border: 0.3rem solid #d7d7d7;
  border-radius: 1rem;
}

.customer-illo {
  padding: 3rem 3rem 0;
  text-align: center;
}

.customer-text {
  padding: 3rem;
}

.elnk-customer [href^="tel:"],
.right-connection [href^="tel:"] {
  display: inline-block;
}

/* callout blocks */

.callout-blocks .block {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  text-align: left;
  background-color: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
}

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

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

.callout-blocks .block a {
  margin-top: 1.5rem;
}

.callout-blocks .block a,
.elnk-customer.checklist a {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #007dba;
  border-radius: 2.4rem;
  border: 0.3rem solid #00a3e0;
  -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;
}

.callout-blocks .block a:hover,
.elnk-customer.checklist a:hover {
  color: #000;
  background-color: #00a3e0;
}

/* footer */

footer {
  padding: 3rem 0 6rem;
  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;
}

/* moving widget css */
.moving-steps.page-banner-main-row {
  padding: 25px 0;
}
.get-started-div {
  padding-bottom: 0 !important;
}
.get-started-div .txt {
  margin-bottom: 0;
}
.flow-data-sec #root .form-control {
  font-size: 16px;
}
.flow-data-sec {
  padding: 0 !important;
}
.flow-data-sec > .inner {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.flow-data-sec #root .form-check-input {
  position: static;
  margin-top: -1px;
}
#root .serviceabilityCheck .btn-color-darkblue {
  text-transform: lowercase;
}
#root .serviceabilityCheck .btn-color-darkblue:first-letter {
  text-transform: capitalize;
}
/* moving widget css */

/* responsive */

@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;
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }

  .text span {
    display: inline-block;
    margin-top: 0;
  }

  .call-block .tfn {
    width: 36rem;
  }

  .call-block .tfn:hover,
  .call-block .tfn:focus {
    width: 40rem;
  }
}

@media only screen and (min-width: 600px) {
}

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

  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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  header .logo,
  header .tfn {
    margin: 0;
    width: 15rem;
  }

  .countdown {
    margin: 0 auto;
  }
}

@media only screen and (min-width: 768px) {
  header .logo,
  header .tfn {
    width: 19rem;
  }

  .hero [href^="tel:"],
  .text span {
    font-size: 2.4rem;
  }

  .internet-plans h2 {
    margin-bottom: 3rem;
  }

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

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

  .steps-row {
    display: -ms-grid;
    display: block;
    -ms-grid-columns: calc(50% - 1.5rem);
    grid-template-columns: calc(50% - 1.5rem);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  /* .steps-row {
	 display: -ms-grid;
	 display: grid;
	 -ms-grid-columns: calc(50% - 1.5rem);
	 grid-template-columns: calc(50% - 1.5rem);
	 -ms-grid-rows: 1fr;
	 grid-template-rows: 1fr;
	 grid-column-gap: 3rem;
	 grid-row-gap: 3rem;
 } */

  .steps-row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .step {
    margin-bottom: 0;
    text-align: left;
  }

  .step.one {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 1;
    grid-row: 1;

    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 2fr;
    grid-template-columns: 1fr 2fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .step.one > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .step.one > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .step-text {
    padding: 1.5rem 2.6rem;
    border-radius: 0.8rem 0 0 0.8rem;
  }

  .widget {
    padding: 0 3rem;
    text-align: center;
  }

  .step.two {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }

  .step.three {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }

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

  .elnk-customer .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
    align-items: center;
  }

  .customer-illo {
    padding: 3rem 0 3rem 3rem;
  }

  .elnk-customer.checklist .inner {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }

  .elnk-customer.checklist .inner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .elnk-customer.checklist .inner > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  .customer-text {
    padding: 3rem;
  }

  .last ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media only screen and (max-width: 959px) {
  .text ul {
    margin: 1.8rem auto;
    max-width: 26rem;
  }
  .steps-row.moving-row {
    display: block;
  }
  .moving-row .banner-text-section {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 960px) {
  /*moving widget css*/
  .moving-row {
    position: relative;
  }
  .moving-text-banner {
    position: relative;
    z-index: 2;
  }
  .moving-wdgt-section {
    position: absolute !important;
    right: 0;
    top: 0;
    margin-top: 0 !important;
    width: 100%;
  }
  .moving-wdgt-section .serviceabilityCheck {
    padding-top: 15px;
    width: calc(65.333333% + 10px);
    margin-top: 30px;
    margin-left: auto;
  }
  #root .serviceabilityCheck .card {
    background: none !important;
  }
  #root .serviceabilityCheck .check-address-title {
    background: none !important;
    color: #444 !important;
    border: none;
  }
  #root .serviceabilityCheck .card-body {
    background: none !important;
  }
  #root .serviceabilityCheck .card-body .col-lg-7.text-left {
    flex: 0 0 100%;
    max-width: calc(100% - 115px);
  }

  .flow-data-sec .moving-wdgt-section {
    position: static !important;
  }
  .flow-data-sec .moving-row {
    display: block;
  }
  /*moving widget css*/

  body {
    font-size: 1.8rem;
  }

  header .logo {
    width: 25.3rem;
  }

  header .tfn {
    padding: 0.6rem 2rem;
    border-radius: 3rem;
  }

  .hero {
    background-position: top left;
  }

  .hero .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    height: auto;
  }

  .thanks .hero .inner {
    display: block;
    text-align: center;
  }

  .illo-image,
  .text,
  .serviceable-form {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 49%;
    flex: 0 1 49%;
  }

  .sorry .text {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 75%;
    flex: 0 1 75%;
  }

  .text {
    padding-bottom: 3rem;
  }

  .illo-image {
    padding: 0;
  }

  .serviceable-form {
    padding: 3rem 0 3rem 3rem;
  }

  .hero h1 {
    font-size: 4.8rem;
    line-height: 1.1;
  }

  .hero h1 .cents {
    -webkit-transform: translate(0.1rem, -2.1rem);
    -ms-transform: translate(0.1rem, -2.1rem);
    transform: translate(0.1rem, -2.1rem);
  }

  .step h3 {
    font-size: 2.4rem;
  }

  .last .inner {
    margin: 0 auto;
    max-width: 86rem;
  }
}

@media only screen and (min-width: 1024px) {
  .inner {
    margin: 0 3rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  /* p :not(footer) {
	font-size: 1.8rem;
	margin-bottom: 2.7rem;
	} */

  header .tfn {
    font-size: 2.4rem;
  }

  .hero [href^="tel:"] {
    padding-right: 3rem;
    padding-left: 3rem;
    border-radius: 3.6rem;
    border-width: 0.3rem;
  }

  .call-block {
    padding: 3rem 0 1.5rem;
  }

  .call-block .tfn {
    margin-top: -5.9rem;
    font-size: 3rem;
  }

  .last {
    padding: 4.5rem 0;
  }

  footer .logo {
    margin: 0;
    float: left;
  }

  .copyright {
    margin: 0;
    width: auto;
    float: right;
  }
}

@media only screen and (min-width: 1200px) {
  .hero,
  .moving-steps,
  .internet-plans,
  .awards,
  .right-connection {
    padding: 5rem 0;
  }

  .couch-bg {
    background-size: 53%;
  }

  .moving-steps .inner {
    position: relative;
  }

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

  .text {
    padding: 0;
  }

  .step,
  .step-text,
  .plan {
    padding: 3rem;
  }

  .plan h3 {
    font-size: 3rem;
  }

  .elnk-customer {
    margin: 0;
  }

  .elnk-customer.checklist {
    margin-top: -2rem;
  }

  .checklist .customer-illo {
    padding-left: 0;
  }

  .end {
    margin-top: 5rem;
    padding: 5rem 0 3rem;
  }
}

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

@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: 0.1rem 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;
  }
}
