@charset "UTF-8";
html {
  box-sizing: border-box !important;
  width: 100%;
}

body {
  color: #F78F1E;
  margin: 0;
  font-size: 3vw;
}
body h1 {
  font-family: Raleway, sans-serif;
  font-size: 5em;
  font-weight: bold;
  text-align: center;
  margin: 0.75em 0 0.5em 0;
  line-height: 1em;
}
body h2 {
  font-family: Raleway, sans-serif;
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  color: #0D1A2E;
  margin: 0.5em 0 0.25em 0;
  line-height: 1em;
}
body h3 {
  font-family: Raleway, sans-serif;
  font-size: 2.5em;
  margin: 0.5em 0 0.5em 0;
  font-weight: 800;
  color: #0D1A2E;
  line-height: 1em;
}
body h4 {
  font-family: Manrope, sans-serif;
  font-weight: bold;
  font-size: 1.9em;
  color: #F78F1E;
  margin: 0.25em 0 0.25em 0;
}
body p, body li {
  font-family: Manrope, sans-serif;
  color: #999;
  word-wrap: break-word;
  margin: 1.5em 0em 1.5em 0em;
  font-size: 1.75rem;
}
body table {
  margin-top: 1em;
  margin-bottom: 2em;
  border-collapse: collapse;
}
body th, body td {
  text-align: left;
  padding: 1em 1em 0.5em 1em;
  color: black;
}
body th {
  border-bottom: #F78F1E 2px solid;
  font-weight: bold;
}
body td {
  border-bottom: rgba(54, 53, 55, 0.2117647059) 1px solid;
}
@media (max-width: 800px) {
  body h1 {
    font-size: 4em;
    margin: 0.5em 0 0.25em 0;
  }
  body h2 {
    font-size: 2em;
  }
  body h3 {
    font-size: 1.5em;
  }
  body h4 {
    font-size: 1.2em;
  }
  body p, body li {
    font-size: 1em;
  }
}

.content {
  padding: 0% 5% 0% 5%;
  font-size: inherit;
}

.flexcol {
  display: flex;
  flex-direction: column;
}

.flexrow {
  display: flex;
  flex-direction: row;
}

.banner {
  margin-top: 1em;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background-color: white;
}

.decorline {
  width: 12em;
  height: 2px;
  background-color: #F78F1E;
}

.drop-shadow {
  box-shadow: 10px 5px 5px 5px rgba(128, 128, 128, 0.1019607843);
}

@media (max-width: 800px) {
  .decorline {
    width: 10em;
  }
}
@media (min-width: 1600px) {
  body {
    font-size: 30px;
  }
  .content {
    margin-left: auto;
    margin-right: auto;
    width: 1600px;
  }
}
.button-orange {
  font-family: Raleway, sans-serif;
  font-weight: bold;
  font-size: 1em;
  background-color: #F78F1E;
  color: white;
  border-radius: 0.3em;
  padding: 0.75em 1em 0.75em 1em;
  max-width: 8em;
  border: none;
  text-decoration: none;
  text-align: center;
}

.button-orange:hover {
  transform: scale(1.1);
  opacity: 0.75;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.quick-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
.quick-links .button-orange {
  font-size: 1.5em;
  width: 8em;
  border-radius: 1em;
}

.carousel {
  --swiper-pagination-color: #F78F1E;
}

.swiper {
  width: 100%;
  margin: 4em 0 4em 0;
}

.carousel-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: #F78F1E;
}

.fadein {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50%);
  transition: all 1.25s;
}

.fadein.appear {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0%);
}

.fadein:nth-child(1) {
  transition-delay: 0.2s;
}

.fadein:nth-child(2) {
  transition-delay: 0.3s;
}

.fadein:nth-child(3) {
  transition-delay: 0.4s;
}

.fadein:nth-child(4) {
  transition-delay: 0.5s;
}

.switch-to-enet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.switch-to-enet .faq {
  width: 100%;
}

.banner img {
  margin-top: 2em;
  width: 100%;
  object-fit: cover;
  display: block;
}

.switched-steps {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  padding-bottom: 2em;
  justify-content: space-evenly;
}

.switched-steps img {
  flex-shrink: 1;
  object-fit: contain;
  padding: 0 1em 0 1em;
  max-width: 30%;
  width: auto;
  height: auto;
}

@media (max-width: 800px) {
  .switched-steps {
    flex-direction: column;
  }
  .switched-steps img {
    max-width: 80%;
  }
}
.error404, .thank-you {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  margin-top: 20vh;
  margin-bottom: 40vh;
}
.error404 h1, .thank-you h1 {
  font-size: 3em;
  line-height: 1em;
}
.error404 p, .thank-you p {
  text-align: center;
  margin-top: 0.5em;
}

.topbar {
  display: flex;
  flex-direction: row;
  background-color: #0D1A2E;
  color: white;
  justify-content: flex-end;
  font-size: 0.5em;
  margin: 0;
  padding: 0% 5% 0% 5%;
  width: 100%;
}
.topbar p {
  font-size: 1.5em;
  padding-right: 1em;
}
.topbar a {
  text-decoration: none;
}

.whitebar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0% 5% 0% 5%;
  box-shadow: 10px 5px 8px #888888;
}

.logo-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  float: left !important;
  width: 20%;
  margin: 0;
  position: relative;
}
.logo-button img {
  width: 70% !important;
}

.menu-button {
  width: 80%;
  margin: 0;
  float: right !important;
  display: flex;
  justify-content: right;
  align-items: center;
}

.burger-icon {
  font-size: 4em;
}

@media (max-width: 990px) {
  .logo-button {
    width: 50% !important;
  }
  .menu-button {
    width: 50%;
  }
  .burger-icon {
    font-size: 2em;
  }
}
.w3-bar, .w3-bar-block {
  font-family: Raleway, sans-serif;
  font-size: 12px;
  color: #0D1A2E;
}
.w3-bar .w3-button, .w3-bar-block .w3-button {
  font-weight: 900;
  text-transform: uppercase;
}
.w3-bar .w3-button:hover, .w3-bar .w3-button:focus, .w3-bar-block .w3-button:hover, .w3-bar-block .w3-button:focus {
  color: #F78F1E !important;
  background-color: white !important;
}

.mobile-version {
  position: absolute;
  display: none;
  padding: 10px 20px 10px 20px;
  box-shadow: 10px 5px 4px #888888;
  margin-left: 50%;
  width: 50%;
  float: right;
}

.pc-version .animated-dropdown .dropdown-anim {
  display: block !important;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pc-version .animated-dropdown:hover .dropdown-anim {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-show {
  display: block !important;
  position: absolute !important;
  z-index: 2;
}
.mobile-show .mobile-show {
  display: relative !important;
  position: relative !important;
  border: none;
  box-shadow: none;
  padding-left: 1em;
}

.bottombar {
  display: flex;
  background-color: #0D1A2E;
  margin-top: 15em;
}
.bottombar p {
  font-size: 1em;
  margin: 0.5 0 1em 0;
}
.bottombar a {
  text-decoration: none;
  color: white;
  line-height: 1.25em;
  width: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.bottombar a:hover {
  color: #F78F1E;
}
.bottombar i {
  font-size: 3em;
}
.bottombar div {
  display: inherit;
  padding: 1em;
}
.bottombar .info {
  display: inherit;
  flex-direction: row;
}
.bottombar .logo-side {
  flex-grow: 1;
  padding-left: 2em;
}
.bottombar .logo-side div {
  padding: 1em 0 0 0;
  flex-wrap: wrap;
}
.bottombar .logo-side i {
  font-size: 2em;
  margin-right: 0.5em;
}
.bottombar .links-side {
  flex-grow: 4;
  flex-wrap: wrap;
}
.bottombar .links-side div {
  flex-grow: 1;
  width: 30%;
}
.bottombar .logo-button {
  width: 100%;
  max-width: 240px;
  padding: 0;
}
.bottombar .logo-button img {
  padding-left: 0;
}
.bottombar .copyright {
  flex-basis: 3em;
  justify-content: right;
  margin-right: 1em;
}
.bottombar .copyright p {
  text-align: right;
}
@media (max-width: 800px) {
  .bottombar .info {
    flex-direction: column;
  }
  .bottombar .logo-button {
    width: 100%;
    max-width: 80vw;
  }
  .bottombar p, .bottombar a {
    font-size: 0.75em;
  }
}

.image-text {
  margin: 5% 0% 5% 0%;
  max-width: 100%;
  font-size: 2vw;
  display: flex;
  flex-direction: row;
}
.image-text .image {
  display: inherit;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 50%;
  margin: 0% 1.5% 0% 1.5%;
}
.image-text .image img {
  width: 100%;
}
.image-text .text {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 50%;
  margin: 0% 1.5% 0% 1.5%;
  align-items: left;
  justify-content: center;
}
.image-text .text p {
  font-size: 0.75em;
}
.image-text .text .decorline {
  width: 12em;
  height: 2px;
  background-color: #F78F1E;
}

.left {
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .image-text {
    margin: 4% 1.5% 4% 1.5%;
    flex-direction: column-reverse;
  }
  .image-text .image {
    max-width: 100%;
  }
  .image-text .text h3 {
    font-size: 3em;
  }
  .image-text .text p {
    font-size: 1.5em;
  }
}
@media (min-width: 1200px) {
  .image-text {
    font-size: 30px;
  }
}
.tile-section {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.tile-section p {
  margin: 0 0 0.5em 0;
  padding: 0;
  color: white;
  text-align: right;
}
.tile-section .tile {
  border: #0D1A2E 5px solid;
}
.tile-section .tile .text {
  display: inherit;
  flex-direction: inherit;
  align-items: flex-end;
}
.tile-section .tile .tile-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}
.tile-section .grow-1_2 {
  flex-grow: 2;
  aspect-ratio: 3/2;
  width: 50%;
}
.tile-section .grow-1_3 {
  flex-grow: 2;
  aspect-ratio: 1/1;
  width: 33%;
}
.tile-section .grow-2_3 {
  flex-grow: 4;
  aspect-ratio: 2/1;
  width: 66%;
}
.tile-section .grow-4_6 {
  flex-grow: 4;
  aspect-ratio: 4/1;
  width: 66%;
}
.tile-section .grow-1_6 {
  flex-grow: 1;
  aspect-ratio: 1/1;
}

@media (max-width: 800px) {
  .tile-section {
    flex-direction: column;
  }
  .tile-section .tile {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.faq-title {
  align-items: center;
  line-height: 1em;
  margin: 3em 0em 4em 0em;
}

.active-panel {
  border-top: 2px solid rgba(54, 53, 55, 0.2117647059);
}

.accordion {
  margin: 3% 0% 5% 0%;
}

.accordion-button {
  width: 100%;
  padding: 0.5em;
  background-color: transparent;
  border-top: 2px solid rgba(54, 53, 55, 0.2117647059);
  border-left: 2px solid rgba(54, 53, 55, 0.2117647059);
  border-right: 2px solid rgba(54, 53, 55, 0.2117647059);
  border-bottom: none;
  font-family: Raleway, sans-serif;
  font-size: 1.1em;
  text-align: left;
  margin-top: -0.1em;
}

.accordion-button::before {
  content: "➕";
  color: #0D1A2E;
  float: left;
  margin: 0 0.5em 0 0.5em;
  height: 100%;
}

.active-button::before {
  content: "➖";
  height: 100%;
}

.accordion-panel {
  border-left: 2px solid rgba(54, 53, 55, 0.2117647059);
  border-right: 2px solid rgba(54, 53, 55, 0.2117647059);
  font-family: Manrope, sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-panel .active {
  border-top: 2px solid rgba(54, 53, 55, 0.2117647059);
}

.accordion-panel:last-of-type {
  border-bottom: 2px solid rgba(54, 53, 55, 0.2117647059);
}

.accordion-button:last-of-type {
  border-bottom: transparent;
}

.accordion-button:focus {
  border: 2px solid #F78F1E;
}

.accordion-answer {
  font-family: Manrope, sans-serif;
  color: #4d4d4d;
  word-wrap: break-word;
  padding: 0.75em 0.75em 0.75em 1em;
}

@media (max-width: 800px) {
  .accordion {
    font-size: 0.8em;
  }
}
.mobile {
  align-items: center;
  position: relative;
}
.mobile .image-text-v-ontop {
  position: relative;
  width: 100%;
}
.mobile .image-text-v-ontop img {
  margin-top: 2em;
  width: 100%;
  object-fit: cover;
  display: block;
}
.mobile .image-text-v-ontop .text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 2em 0 2em;
  align-items: center;
  line-height: normal;
  font-size: initial;
}
.mobile .image-text-v-ontop .text h2 {
  font-size: 5vw;
  color: white;
  margin-bottom: 0.25em;
}
.mobile .image-text-v-ontop .text p {
  position: relative;
  background-color: #0D1A2E;
  text-align: center;
  padding: 0.5em;
  margin: 0.25em;
  opacity: 0.9;
  border-radius: 1em;
  width: 60vw;
  max-width: 800px;
  font-size: 1.25em;
  color: white;
}
.mobile .image-text-v-ontop .text p .accent {
  color: #F78F1E;
}
@media (max-width: 800px) {
  .mobile .image-text-v-ontop .name {
    padding: 0.1em;
  }
  .mobile .image-text-v-ontop .text {
    width: 80vw;
  }
  .mobile .image-text-v-ontop .text p {
    font-size: 1vw;
  }
}
@media (min-width: 150px) {
  .mobile .image-text-v-ontop .text h2 {
    font-size: 5em;
  }
}
.mobile .mobile-plans {
  width: 100%;
  margin: 5em 0em 5em 0em;
  padding: 1em 0 6em 0;
  background-color: #0D1A2E;
}
.mobile .mobile-plans h2 {
  color: #F78F1E;
  font-size: 6vw;
  margin: 0.5em 0em 0.5em 0em;
}
.mobile .mobile-plans .plan-row {
  margin: 1% 5% 1% 5%;
  justify-content: space-around;
  align-items: baseline;
}
.mobile .mobile-plans .plan-row:first-of-type {
  padding: 2%;
  border: 0.1em solid #F78F1E;
  border-radius: 1em;
  align-items: stretch;
}
.mobile .mobile-vendors {
  width: 100%;
}
.mobile .mobile-vendors iframe {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  margin-top: 2em;
}
@media (max-width: 800px) {
  .mobile .mobile-vendors iframe {
    max-height: 80vh;
    border-right: #F78F1E 5vw solid;
  }
}

.internet {
  align-items: center;
  font-size: inherit;
}
.internet .title {
  align-items: center;
}
.internet h1 {
  margin-bottom: 0.25em;
}
.internet h2 {
  color: #F78F1E;
  font-size: 10vw;
  margin: 0.25em 0em 0em 0em;
}
.internet p {
  text-align: center;
}
.internet p .accent {
  color: #F78F1E;
}
.internet p .bold {
  font-weight: bold;
}
.internet p .italicise {
  font-style: italic;
}
.internet img {
  width: 100%;
  height: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
  object-fit: cover;
  display: block;
}
.internet .image-text-ontop {
  position: relative;
  width: 100%;
}
.internet .image-text-ontop img {
  margin-top: 1em;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(95%);
}
.internet .image-text-ontop .text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  align-items: center;
  line-height: normal;
  font-size: initial;
}
.internet .image-text-ontop .text .title {
  font-family: Manrope, sans-serif;
  font-size: 4em;
  font-weight: 900;
  color: #F78F1E;
  margin-bottom: 0.1em;
  object-fit: fill;
}
.internet .image-text-ontop .text .subtitle {
  font-family: Manrope, sans-serif;
  position: relative;
  background-color: #0D1A2E;
  text-align: center;
  padding: 0.5em;
  margin: 0.25em;
  opacity: 0.9;
  border-radius: 1em;
  color: white;
}
.internet .image-text-ontop .text .subtitle .accent {
  color: #F78F1E;
}
@media (max-width: 800px) {
  .internet .image-text-ontop .text {
    font-size: 2.5vw;
  }
}
.internet .gig {
  align-items: center;
}
.internet .gig p {
  font-size: 1.5em;
}
.internet .gig .decorline {
  width: 80%;
  line-height: -10%;
}
.internet .gig-images {
  display: flex;
  flex-direction: row;
}
@media (max-width: 800px) {
  .internet h2 {
    font-size: 20vw;
  }
  .internet .gig-images {
    flex-direction: column;
  }
}

.tv {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.tv img {
  width: 100%;
  object-fit: contain;
  box-shadow: 10px 5px 5px 5px rgba(128, 128, 128, 0.1019607843);
  border-radius: 1em;
  margin: 10px 0px 10px 0px;
}
.tv h2 {
  text-align: right;
  font-size: 5em;
  word-wrap: none;
  text-align: left;
}
.tv .product {
  border: 0.2em transparent;
  box-shadow: 10px 5px 5px 5px rgba(128, 128, 128, 0.1019607843);
  margin: 10px 0px 10px 0px;
}
.tv .image-text {
  text-align: left;
}
.tv .image-text img {
  border-radius: 0;
}
.tv .button-orange {
  width: 10em;
  max-width: 10em;
  margin: 0.5em 2em 1em 2em;
  padding: 0.5em 0.75em 0.5em 0.75em;
  font-size: 0.75em;
}
.tv .decorline {
  width: 60%;
}
.tv .section {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
}
.tv .section-row {
  display: inherit;
  flex-direction: row;
  width: 100%;
  margin: 2em 0 2em 0;
  padding: 1em;
}
.tv .section-row img {
  max-width: 50vw;
}
.tv .section-row .flexcol {
  justify-content: space-around;
  flex-basis: 50%;
  margin-right: 2em;
}
.tv .dtv-download {
  justify-content: center;
  align-items: center;
  margin: 0.5em 0 0.5em 0;
}
.tv .dtv-download img {
  border: 0;
  width: 40%;
  box-shadow: none;
}
.tv .dtv-download .button-orange {
  width: 30vw;
  max-width: 15em;
  margin: 0.5em 2em 0 2em;
  padding: 0.75em 1em 0.75em 1em;
  font-size: 1em;
  text-wrap: nowrap;
}
@media (max-width: 800px) {
  .tv .section-row {
    margin: 0.5em 0 0.5em 0;
  }
  .tv .button-orange {
    font-size: 1em;
  }
  .tv h2 {
    font-size: 3em;
  }
}

.advertising {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advertising h1 {
  font-size: 4em;
}
.advertising img {
  border-left: 8px #F78F1E solid;
}
.advertising .button-orange {
  font-size: 2em;
  max-width: 30vw;
}
@media (max-width: 800px) {
  .advertising h1 {
    font-size: 2em;
  }
  .advertising .button-orange {
    font-size: 1em;
  }
}

.product-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5% 5% 2.5% 5%;
  width: 100%;
}
.product-page img {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.discount {
  text-decoration: line-through;
  color: grey;
}

.product-image-desc {
  display: inherit;
  flex-direction: row;
  margin: 5% 0% 5% 0%;
  padding: 5% 0% 5% 0%;
  align-items: center;
  border: 0.2em transparent;
  border-radius: 5vw;
  box-shadow: 10px 5px 5px 5px rgba(128, 128, 128, 0.1019607843);
  width: 100%;
  height: 100%;
}

.product-image {
  width: 100%;
  height: 75vh;
}

.product-desc {
  display: inherit;
  flex-direction: column;
  width: 100%;
  padding-left: 5%;
}
.product-desc h2 {
  text-align: left;
}
.product-desc h3 {
  color: #F78F1E;
  font-size: 5em;
  margin: 0;
}
.product-desc p {
  font-size: 2em;
  margin: 0.5em 0 0.5em 0;
}
.product-desc .product-vars {
  display: inherit;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  width: 100%;
  margin-top: 15%;
}
.product-desc .product-vars button {
  width: 120px;
  height: 120px;
  border: 0.2em transparent;
  border-radius: 0.5vw;
  box-shadow: 5px 2px 2px 2px rgba(128, 128, 128, 0.1019607843);
  margin: 0 0.25em 0 0.25em;
  background-color: white;
}

.product-list {
  display: inherit;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 5% 0% 5% 0%;
  padding: 5% 0% 5% 0%;
  justify-content: center;
  align-items: baseline;
  border: 0.2em transparent;
  border-radius: 2vw;
  box-shadow: 10px 5px 5px 5px rgba(128, 128, 128, 0.1019607843);
  width: 100%;
  height: 100%;
}
.product-list h2 {
  margin-top: 1em;
  font-size: 1.8vw;
}
.product-list p {
  font-size: 2.5vw;
  margin: 0;
  color: #F78F1E;
  text-align: center;
  font-weight: bold;
  font-family: Raleway, sans-serif;
}
.product-list a {
  width: 15em;
  margin: 1em;
  padding: 1em;
  text-decoration: none;
}
.product-list button {
  width: 100%;
  height: 100%;
  background-color: white;
  border: 0.2em transparent;
  border-radius: 0.5vw;
  box-shadow: 10px 5px 5px 5px rgba(128, 128, 128, 0.1019607843);
}

.product {
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-radius: 1em;
  width: 100%;
  padding: 1%;
  margin: 0 1% 0 1%;
  height: auto;
  font-size: 2vw;
}
.product p {
  text-align: center;
  font-size: 0.75em;
  line-height: 1.5em;
  margin: 0.25em 0 0.25em 0;
  color: black;
}
.product .price {
  font-size: 1.5em;
  font-weight: bold;
  color: black;
}
.product .name {
  background-color: #F78F1E;
  color: #0D1A2E;
  border-radius: 1em;
  font-size: 0.7em;
  font-weight: bold;
  padding: 0.75em;
  margin: 1%;
  width: 80%;
  text-align: center;
  font-family: Manrope, sans-serif;
  line-height: 1em;
}
@media (min-width: 1600px) {
  .product {
    font-size: 30px;
  }
}
@media (min-width: 1600px) {
  .product {
    font-size: 30px;
  }
}

.post-title-image {
  max-width: 100%;
  margin-top: 4em;
}
.post-title-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-bottom: 1em solid #0D1A2E;
  margin-bottom: 0.5em;
}

.post {
  font-size: 12px;
  margin-top: 10%;
  padding: 0 10% 0 10%;
}
.post h1 {
  color: #0D1A2E;
  text-align: left;
  font-size: 3em;
  margin-top: 0.25em;
}
.post p {
  font-size: 1.5em;
  margin-top: 1em;
  line-height: 1.75em;
  text-align: justify;
  text-justify: inter-word;
}
.post img {
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 800px) {
  .post {
    padding: 0 5% 0 5%;
  }
  .post h1 {
    font-size: 2em;
  }
  .post p {
    font-size: 1em;
  }
}
.formcol {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: inherit;
  padding: 0 0em 4em 0em;
}
.formcol .row {
  width: 100%;
  padding: 0 5% 0 5%;
}
.formcol .row .decorline {
  width: 40%;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  margin: 2em auto 2em auto;
}
.formcol .button {
  background-color: #F78F1E;
  width: 30%;
  height: 3em;
  font-size: 1.25em;
  color: white;
  font-weight: bold;
  text-transform: capitalize;
  padding: 0;
  margin-top: 5%;
}
.formcol .button-orange {
  background-color: grey;
  border: none;
}
.formcol input, .formcol select {
  width: 100%;
  border: 2px #F78F1E solid;
  border-radius: 5px;
  padding: 0.5em 0 0.5em 0.5em;
}
.formcol select {
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: bold;
  font-size: 1.25em;
  color: #F78F1E;
  background-color: white;
}
.formcol label {
  font-family: Manrope, sans-serif;
  font-size: 1.5em;
  color: black;
  margin-top: 0.5em;
  text-align: left;
  width: 100%;
}
@media (max-width: 800px) {
  .formcol label, .formcol input, .formcol select {
    font-size: 0.8em;
  }
}

.formrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 0 5% 0 5%;
}
.formrow div {
  width: 45%;
  padding: 0%;
}

.g-recaptcha {
  margin: 2em 0 2em 0;
}

.news {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: inherit;
}
.news a {
  text-decoration: none;
}
.news div {
  padding: 2.5%;
  flex-basis: 30%;
}
.news p {
  margin: 1em 0 0 0;
  line-height: 1em;
  overflow-wrap: anywhere;
}
.news img {
  width: 500px;
  height: auto;
  object-fit: cover;
}
.news .article-title {
  font-family: inherit !important;
  font-size: 1.25em;
  line-height: 1.25em;
  color: #0D1A2E;
  font-weight: bold;
}
.news .date {
  font-family: inherit !important;
  font-size: 0.5em;
}
.news .preview {
  font-family: inherit !important;
  font-size: 0.6em;
  line-height: 1.25em !important;
  text-align: justify;
}
@media (max-width: 800px) {
  .news {
    font-size: 5vw;
  }
  .news div {
    margin: 1em 0 1em 0;
    flex-basis: 80%;
  }
  .news img {
    width: 100%;
  }
  .news .article-title {
    font-size: 1em;
  }
}

.contact-us {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
}
.contact-us h1 {
  margin: 0 0 0.5em 0;
}
.contact-us h2 {
  font-size: 4em;
}
.contact-us form {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0;
}

.contact-store {
  margin-top: 2em;
  display: inherit;
  width: 100%;
}
.contact-store iframe {
  width: 100%;
  height: 60vw;
  min-height: 800px;
}

.contact-form {
  margin-top: 4em;
  display: inherit;
  align-items: center;
  width: 60%;
  padding: 0 5% 10% 5%;
  border-radius: 2em;
  box-shadow: 5px 4px 2px 0.5px rgba(128, 128, 128, 0.1019607843);
}

.recordtype-toggle {
  width: 18em;
  height: 3em;
  margin-top: 5%;
  padding: 0;
  align-items: center;
  z-index: 1;
  border-radius: 30px;
  border: 2px #F78F1E solid;
  background-color: transparent;
  box-shadow: 2.5px 2px 2px 0.5px rgba(128, 128, 128, 0.1019607843);
}
.recordtype-toggle .circle, .recordtype-toggle .elipse {
  position: relative;
  width: 3em;
  height: 100%;
  border-radius: 100px;
  background-color: #F78F1E;
}
.recordtype-toggle .circle {
  display: grid;
  transition: transform 0.25s;
  z-index: 3;
  font-size: 1em;
  line-height: 0;
  place-items: center;
}
.recordtype-toggle .circle i {
  font-size: 1.25em;
  color: white;
}
.recordtype-toggle .elipse {
  translate: 0% -100%;
  transition: width 0.25s;
}

.rtDisplay {
  position: relative;
  z-index: 2;
  translate: 0% -100%;
  padding: 0.25em 0 0.25em 0;
  width: 7.5em;
  height: 100%;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  color: #F78F1E;
  font-family: Raleway, sans-serif;
  pointer-events: none;
}

.recordtype-toggle-display {
  color: white;
}

.recordtype-toggle-state .circle {
  background-color: white;
  transform: translateX(490%);
}
.recordtype-toggle-state .circle i {
  color: #F78F1E;
}
.recordtype-toggle-state .elipse {
  width: 100%;
}

@media (max-width: 800px) {
  .contact-us h1 {
    font-size: 2em;
  }
  .contact-us h2 {
    font-size: 2.4em;
  }
  .contact-us p {
    font-size: 0.8em;
  }
}
@media (max-width: 1200px) {
  .contact-form {
    width: 100%;
    padding: 0%;
  }
}
.legal {
  align-items: center;
  width: 100%;
}
.legal h1 {
  margin-bottom: 0;
}
.legal p, .legal li {
  margin: 0.25em 0 0.5em 0;
  text-align: justify;
  text-justify: inter-word;
}
.legal a {
  color: #F78F1E;
  text-decoration: none;
}
.legal section {
  width: 100%;
  padding: 5%;
}

.sms-rates {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Manrope, sans-serif;
}
.sms-rates table {
  width: 80%;
}
.sms-rates td, .sms-rates th {
  text-align: center;
}
.sms-rates td {
  font-family: monospace;
}
.sms-rates td:first-child, .sms-rates th:first-child {
  text-align: left;
  font-family: Manrope, sans-serif;
}

.app-download {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40vh;
  margin-top: 20vh;
  margin-bottom: 40vh;
}
.app-download h1 {
  font-size: 3em;
}
.app-download img {
  width: 100%;
  min-width: 128px;
  max-width: 60vw;
  max-height: 70vh;
  object-fit: contain;
}
.app-download p {
  text-align: center;
}
.app-download a {
  max-width: 40%;
}
.app-download .buttons {
  display: inherit;
  flex-direction: row;
  justify-content: space-around;
  font-size: 1.2em;
}
@media (max-width: 800px) {
  .app-download {
    flex-direction: column-reverse;
  }
  .app-download h1 {
    font-size: 5vw;
  }
  .app-download p {
    font-size: 4vw;
  }
  .app-download .button-orange {
    font-size: 3vw;
  }
}

.cloud-voice {
  margin-top: 5em;
}
.cloud-voice img {
  width: 100%;
}
.cloud-voice .mobile {
  display: none;
}
.cloud-voice .landscape {
  display: block;
  margin: 20vh 0 20vh 0;
}
@media (max-width: 800px) {
  .cloud-voice .mobile {
    display: block;
  }
  .cloud-voice .landscape {
    display: none;
  }
}

.samsung {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.samsung h2 {
  margin-top: 5em;
}
.samsung p {
  text-align: center;
}
.samsung form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1em 2em 1em;
  width: 100%;
  max-width: 560px;
}
.samsung label, .samsung input, .samsung select {
  display: block;
  width: 96%;
  margin: 0 2% 0 2%;
  font-family: Manrope, sans-serif;
  font-weight: bold;
  color: #0D1A2E;
  font-size: 1.2em;
}
.samsung label {
  margin-top: 1em;
}
.samsung .decorline {
  background-color: #0D1A2E;
}
.samsung .name-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.samsung .name-section label, .samsung .name-section input, .samsung .name-section select {
  width: 46%;
}
.samsung .button-blue {
  font-family: Raleway, sans-serif;
  font-weight: bold;
  font-size: 1em;
  background-color: #0D1A2E;
  color: white;
  border-radius: 0.3em;
  padding: 0.75em 1em 0.75em 1em;
  margin: 0;
  max-width: 8em;
  border: none;
  text-decoration: none;
  text-align: center;
}

/*# sourceMappingURL=styles.css.map */