@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.no-scroll {
  overflow: hidden;
}
:root {
  --primary1: #166baf;
  --primary2: #262262;
  --primary3: #215391;
  --primary4: #a6a9ab;
  --primary5: #bc2023ff;
  --black0: #000;
  --black1: #111;
  --black2: #222;
  --black3: #333;
  --black4: #444;
  --black5: #555;
  --grey1: #ccc;
  --grey2: #ddd;
  --grey3: #eee;
  --grey4: #f1f1f1;
  --grey5: #f7f7f7;
  --white: #fff;
}
:root.dark {
  background: rgba(20, 20, 20, 0.999);
}
html {
  background: rgba(255, 255, 255, 1);
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  color: #373c3e;
  font-family: "Archivo", sans-serif;
  font-size: 1em;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo", sans-serif;
  line-height: 1.2;
}
h4,
h5,
h6 {
  line-height: 1.5;
}
h1 {
  font-weight: 800;
}
h2 {
  font-weight: 700;
}
h3 {
  font-weight: 600;
}
h4 {
  font-weight: 500;
}
h5 {
  font-weight: 400;
  letter-spacing: -0.02em;
}
h6 {
  font-weight: 300;
}
.fw9 {
  font-weight: 900;
}
.fw8 {
  font-weight: 800;
}
.fw7 {
  font-weight: 700;
}
.fw6 {
  font-weight: 600;
}
.fw5 {
  font-weight: 500;
}
.fw4 {
  font-weight: 400;
}
.fw3 {
  font-weight: 300;
}
.lh10 {
  line-height: 1;
}
.lh15 {
  line-height: 1.5;
}
.lh16 {
  line-height: 1.6;
}
.lh18 {
  line-height: 1.8;
}
.lh2 {
  line-height: 2;
}
.hidden {
  display: none;
}
a,
.link {
  color: var(--primary1);
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
}
b,
strong,
.bold {
  font-weight: 700;
}
a:hover,
.link:hover {
  color: var(--primary3);
}
p {
  line-height: 1.4;
  margin-bottom: 10px;
}
ul li {
  list-style: disc;
  line-height: 1.8;
  margin-left: 15px;
}
ul.nolist li {
  list-style: none;
  margin-left: 0;
}
fieldset {
  border: none;
}
/* ======== COMPONENTS ========== */
input[type="email"],
input[type="url"],
input[type="date"],
input[type="text"],
input[type="password"] {
  border-radius: 3px;
  border: 1px solid #ddd;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
  left: 0;
  background: transparent;
  color: #272727;
  background-clip: text;
}
input[type="date"] {
  width: auto;
  border: 1px solid #ddd;
}
input[type="email"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border: 1px solid #ccc;
}
input[type="checkbox"] {
  accent-color: var(--primary4);
}
select {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
  color: #555;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  height: 40px;
  padding: 0 10px;
  width: 100%;
}
select:hover {
  background: #fff;
  cursor: pointer;
}
select:focus,
textarea:focus {
  border-color: var(--primary2);
}
select:disabled {
  cursor: default;
}
.option select {
  height: 32px;
}
textarea {
  border: 1px solid #ddd;
  height: 100px;
  max-height: 220px;
  min-height: 100px;
  padding: 7px;
  resize: vertical;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Prompt", sans-serif;
}
.searchForm input:focus,
.searchForm select:focus,
.searchForm textarea:focus {
  border: none;
}
/* =============== COLORS ================= */
.primary1BG {
  background-color: var(--primary1);
}
.primary2BG {
  background-color: var(--primary2);
}
.primary3BG {
  background-color: var(--primary3);
}
.primary4BG {
  background-color: var(--primary4);
}
.primary5BG {
  background-color: var(--primary5);
}
.black0BG {
  background-color: var(--black0);
}
.black1BG {
  background-color: var(--black1);
}
.black2BG {
  background-color: var(--black2);
}
.black3BG {
  background-color: var(--black3);
}
.grey1BG {
  background-color: var(--grey1);
}
.grey2BG {
  background-color: var(--grey2);
}
.grey3BG {
  background-color: var(--grey3);
}
.grey4BG {
  background: var(--grey4);
}
.whiteBG {
  background-color: var(--white);
}
.primary1C {
  color: var(--primary1);
}
.primary2C {
  color: var(--primary2);
}
.primary3C {
  color: var(--primary3);
}
.primary4C {
  color: var(--primary4);
}
.primary5C {
  color: var(--primary5);
}
.black0C {
  color: var(--black0);
}
.black1C {
  color: var(--black1);
}
.black2C {
  color: var(--black2);
}
.black3C {
  color: var(--black3);
}
.black4C {
  color: var(--black4);
}
.black5C {
  color: var(--black5);
}
.white {
  color: #fff;
}
.bs1 {
  box-shadow: 1px 1px 1px 0 #333;
}
.bs2 {
  box-shadow: 1px 1px 3px -1px #555;
}
.ts1 {
  text-shadow: 1px 1px 1px #000;
}
.ts2 {
  text-shadow: 1px 1px 2px #000;
}
.bb1 {
  border-bottom: 1px solid #eee;
}
.bl1 {
  border-left: 1px solid #eee;
}
.b0 {
  border: none;
}
.uc {
  text-transform: uppercase;
}
.cap {
  text-transform: capitalize;
}
.b1 {
  border: 1px solid #ccc;
}
.disabled {
  pointer-events: none;
}
button.disabled {
  background: #999;
}

/* ==================== FONT SIZES ==================== */
.f1 {
  font-size: 0.1rem;
}
.f2 {
  font-size: 0.2rem;
}
.f3 {
  font-size: 0.3rem;
}
.f4 {
  font-size: 0.4rem;
}
.f5 {
  font-size: 0.5rem;
}
.f6 {
  font-size: 0.6rem;
}
.f7 {
  font-size: 0.7rem;
}
.f8 {
  font-size: 0.8rem;
}
.f9 {
  font-size: 0.9rem;
}
.f10 {
  font-size: 1rem;
}
.f11 {
  font-size: 1.1rem;
}
.f12 {
  font-size: 1.2rem;
}
.f13 {
  font-size: 1.3rem;
}
.f14 {
  font-size: 1.4rem;
}
.f15 {
  font-size: 1.5rem;
}
.f16 {
  font-size: 1.6rem;
}
.f17 {
  font-size: 1.7rem;
}
.f18 {
  font-size: 1.8rem;
}
.f19 {
  font-size: 1.9rem;
}
.f20 {
  font-size: 2rem;
}
.f21 {
  font-size: 2.1rem;
}
.f22 {
  font-size: 2.2rem;
}
.f23 {
  font-size: 2.3rem;
}
.f24 {
  font-size: 2.4rem;
}
.f25 {
  font-size: 2.5rem;
}
.f26 {
  font-size: 2.6rem;
}
.f27 {
  font-size: 2.7rem;
}
.f28 {
  font-size: 2.8rem;
}
.f29 {
  font-size: 2.9rem;
}
.f30 {
  font-size: 3rem;
}
.f31 {
  font-size: 3.1rem;
}
.f32 {
  font-size: 3.2rem;
}
.f33 {
  font-size: 3.3rem;
}
.f34 {
  font-size: 3.4rem;
}
.f35 {
  font-size: 3.5rem;
}
.f36 {
  font-size: 3.6rem;
}
.f37 {
  font-size: 3.7rem;
}
.f38 {
  font-size: 3.8rem;
}
.f39 {
  font-size: 3.9rem;
}
.f40 {
  font-size: 4rem;
}
/* ==================== POSITION ==================== */
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.top0 {
  top: 0;
}
.left0 {
  left: 0;
}
.right0 {
  right: 0;
}
.bottom {
  bottom: 0;
}
.floatL {
  float: left;
}
.floatR {
  float: right;
}
/* ==================== DISPLAY ==================== */
.flex,
.horizontal {
  display: flex;
}
.between {
  justify-content: space-between;
}
.around {
  justify-content: space-around;
}
.evenly {
  justify-content: space-evenly;
}
.wrap {
  flex-wrap: wrap;
}
.alignB {
  align-items: baseline;
}
.alignC {
  align-items: center;
}
.alignS {
  align-items: flex-start;
}
.alignE {
  align-items: flex-end;
}
.justS {
  justify-content: flex-start;
}
.justC {
  justify-content: center;
}
.justE {
  justify-content: end;
}
.block {
  display: block;
}
/* ==================== PADDING ==================== */
.p1 {
  padding: 1px;
}
.p2 {
  padding: 2px;
}
.p3 {
  padding: 3px;
}
.p5 {
  padding: 5px;
}
.p5-0 {
  padding: 5px 0;
}
.p0-5 {
  padding: 0 5px;
}
.p7 {
  padding: 7px;
}
.p8 {
  padding: 8px;
}
.p8-0 {
  padding: 8px 0;
}
.p5-10 {
  padding: 5px 10px;
}
.p10 {
  padding: 10px;
}
.p10-5 {
  padding: 10px 5px;
}
.p15-0 {
  padding: 15px 0px;
}
.p0-10 {
  padding: 0 10px;
}
.p0-15 {
  padding: 0 15px;
}
.p10-0 {
  padding: 10px 0;
}
.p10-15 {
  padding: 10px 15px;
}
.p10-30 {
  padding: 10px 30px;
}
.p20-0 {
  padding: 20px 0;
}
.p30-0 {
  padding: 30px 0;
}
.p0-30 {
  padding: 0 30px;
}
.p50-0 {
  padding: 50px 0;
}
.p70-0 {
  padding: 70px 0;
}
.p100-0 {
  padding: 100px 0;
}
.p150-0 {
  padding: 150px 0;
}
.p15 {
  padding: 15px;
}
.p20 {
  padding: 20px;
}
.p30 {
  padding: 30px;
}
.p40 {
  padding: 40px;
}
.p50 {
  padding: 50px;
}
.p70 {
  padding: 70px;
}
.p0-20 {
  padding: 0 20px;
}
.p5-20 {
  padding: 5px 20px;
}
.p20-50 {
  padding: 20px 50px;
}
.p5-15 {
  padding: 5px 15px;
}
.p10-20 {
  padding: 10px 20px;
}
.p20-5 {
  padding: 20px 5px;
}
.p20-10 {
  padding: 20px 10px;
}
.pb5 {
  padding-bottom: 5px;
}
.pr50 {
  padding-right: 50px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb50 {
  padding-bottom: 50px;
}
.pt50 {
  padding-top: 50px;
}
.pt60 {
  padding-top: 60px;
}
.pt70 {
  padding-top: 70px;
}
.pt80 {
  padding-top: 80px;
}
.pt100 {
  padding-top: 100px;
}
.pb100 {
  padding-bottom: 100px;
}
.pb150 {
  padding-bottom: 150px;
}
.pl10 {
  padding-left: 10px;
}
.pl20 {
  padding-left: 20px;
}
.pl30 {
  padding-left: 30px;
}
.pl50 {
  padding-left: 50px;
}
.pr10 {
  padding-right: 10px;
}
.pr20 {
  padding-right: 20px;
}
.pr30 {
  padding-right: 30px;
}
/* ==================== MARGINS ==================== */
.auto {
  margin: auto;
}
.m0 {
  margin: 0;
}
.m0-5 {
  margin: 0 5px;
}
.m0-10 {
  margin: 0 10px;
}
.m10 {
  margin: 10px;
}
.m15-10 {
  margin: 15px 10px;
}
.ml20 {
  margin-left: 20px;
}
.ml30 {
  margin-left: 30px;
}
.mr5 {
  margin-right: 5px;
}
.mr15 {
  margin-right: 15px;
}
.ml5 {
  margin-left: 5px;
}
.mb1 {
  margin-bottom: 1px;
}
.mb2 {
  margin-bottom: 2px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb7 {
  margin-bottom: 7px;
}
.mr10 {
  margin-right: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb100,
.mmb100 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 150px;
}
.mb200 {
  margin-bottom: 200px;
}
.mr20 {
  margin-right: 20px;
}
.mr50 {
  margin-right: 50px;
}
.mp1 {
  margin: 1%;
}
.mb1p {
  margin-bottom: 1%;
}
.mb2p {
  margin-bottom: 2%;
}
.mb3p {
  margin-bottom: 3%;
}
.mb4p {
  margin-bottom: 4%;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt100 {
  margin-top: 100px;
}
.mt3p {
  margin-top: 3%;
}
.ml10 {
  margin-left: 10px;
}
/* ==================== COLUMNS ==================== */
.mc {
  width: max-content;
}
.col5 {
  width: 5%;
}
.col8 {
  width: 12.5%;
}
.col10 {
  width: 10%;
}
.col11 {
  width: 11.111111111%;
}
.col15 {
  width: 15%;
}
.col16 {
  width: 16.66666%;
}
.col20 {
  width: 20%;
}
.col22 {
  width: 22%;
}
.col25 {
  width: 25%;
}
.col30 {
  width: 30%;
}
.col33 {
  width: 33.333333%;
}
.col35 {
  width: 35%;
}
.col40 {
  width: 40%;
}
.col45 {
  width: 45%;
}
.col50 {
  width: 50%;
}
.col56 {
  width: 56%;
}
.col55 {
  width: 55%;
}
.col60 {
  width: 60%;
}
.col65 {
  width: 65%;
}
.col70 {
  width: 70%;
}
.col75 {
  width: 75%;
}
.col80 {
  width: 80%;
}
.col85 {
  width: 85%;
}
.col90 {
  width: 90%;
}
.col95 {
  width: 95%;
}
.col100 {
  width: 100%;
}
/* ================= SPAN WIDTHS ================= */
.w50 {
  width: 50px;
}
.w60 {
  width: 60px;
}
.w70 {
  width: 70px;
}
.w80 {
  width: 80px;
}
.w90 {
  width: 90px;
}
.w100 {
  width: 100px;
}
.w110 {
  width: 120px;
}
.w120 {
  width: 120px;
}
.w130 {
  width: 130px;
}
.w140 {
  width: 140px;
}
.w150 {
  width: 150px;
}
.w160 {
  width: 160px;
}
.w170 {
  width: 170px;
}
.w180 {
  width: 180px;
}
.w190 {
  width: 190px;
}
.w200 {
  width: 200px;
}
.w220 {
  width: 220px;
}
.w250 {
  width: 250px;
}
/* ==================== ALIGNMENT ==================== */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ==================== BORDER RADIUS ==================== */
.br3 {
  border-radius: 3px;
}
.br5 {
  border-radius: 5px;
}
.br7 {
  border-radius: 7px;
}
.br10 {
  border-radius: 10px;
}
.br15 {
  border-radius: 15px;
}
.br20 {
  border-radius: 20px;
}
.br50 {
  border-radius: 50px;
}
/* ==================== ELEMENTS ==================== */
button {
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  min-width: 80px;
  transition: all 0.2s;
}
.button:hover,
button:hover {
  background: var(--black3);
  border: 1px solid var(--black3);
  color: var(--primary3);
}
.pointer {
  cursor: pointer;
}

/* ==================== IMAGE SIZES ==================== */
.h100p {
  height: 100%;
}
.h50 {
  height: 50px;
}
.h60 {
  height: 60px;
}
.h70 {
  height: 70px;
}
.h80 {
  height: 80px;
}
.h100 {
  height: 100px;
}
.h110 {
  height: 110px;
}
.h120 {
  height: 120px;
}
.h150 {
  height: 150px;
}
.h180 {
  height: 180px;
}
.h200 {
  height: 200px;
}
.h250 {
  height: 250px;
}
.h300 {
  height: 300px;
}
.h400 {
  height: 400px;
}
.h500 {
  height: 500px;
}
.h550 {
  height: 550px;
}
.h600 {
  height: 600px;
}
.h700 {
  height: 700px;
}
.h100p {
  height: 100%;
}
.contain {
  object-fit: contain;
}
.cover {
  object-fit: cover;
}
.fitTop {
  object-position: top;
}
.fitCenter {
  object-position: center;
}
.fitBottom {
  object-position: bottom;
}
/* =======================================================================
  CUSTOM CSS STARTS HERE
  =======================================================================*/
.custom-logo {
  height: auto;
  max-width: 200px;
}
#topRow {
  background: #eee;
  padding: 5px 0;
  margin-bottom: 20px;
}
#mobileMenu {
  display: none;
}
.mobileMenu {
  display: none;
}
#menu-main li a {
  padding: 15px;
  min-width: 135px;
  text-align: center;
  margin-right: 1px;
  display: block;
  border-bottom: 1px solid transparent;
}
#menu-main > li > a:hover {
  border-bottom: 1px solid;
}
#menu-main .sub-menu li a:hover {
  background-color: #eee;
}
#menu-main .menu-item-has-children {
  background: url("../img/arrow.png") no-repeat right 3px center / 10px 10px;
}
ul.sub-menu {
  position: absolute;
  visibility: hidden;
  min-width: 145px;
  box-shadow: 0 3px 3px -1px #333;
  transition: all 0.2s ease;
  background: #fff;
  z-index: 9991;
}
#sliderCover {
  top: 12%;
  z-index: 999;
  width: 80%;
  left: 10%;
}
#sliderCover h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 58px;
  text-shadow: 0 1px 1px #000;
  margin-bottom: 30px;
}
#sliderCover h2 {
  color: var(--primary1);
  font-size: 50px;
  margin-bottom: 50px;
}
#sliderCover h3 {
  background: var(--primary4);
  width: max-content;
  padding: 10px 20px;
  border-radius: 50px;
  width: 150px;
  text-align: center;
  color: #fff;
}
#pricingTableRow {
  height: 895px;
}
#pricingTable {
  width: 100%;
  top: -68px;
  transition: all 0.7s ease-in-out;
}
#modalWindow {
  width: 90%;
  top: -100%;
  left: 5%;
  display: none;
  position: fixed;
  z-index: 9991;
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
}
#modalWindow li {
  padding: 5% 25%;
  list-style: none;
  width: 80%;
  margin: auto;
}
.closeModal {
  font-size: 50px;
  position: absolute;
  left: 5%;
  top: 5%;
  cursor: pointer;
  transition: all 0.2s;
}
.closeModal:hover {
  transform: scale(1.2);
}
#pricingTable.show {
  top: 14%;
}
#streamingText {
  top: 4px;
  background: none;
  width: 60%;
  left: 20%;
}
#streamingText h1 {
  color: var(--primary1);
  font-size: 50px;
  margin-bottom: 10px;
}
#streamingText h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 26.6px;
  text-shadow: 1px 1px 1px #222;
}
#streamingText a h3 {
  padding: 5px 20px;
  border-radius: 50px;
  background: var(--primary4);
  color: var(--primary2);
  width: max-content;
}
#startHereArrow img {
  max-width: 155px;
}
.sliderOverlay {
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  height: 50%;
  width: 50%;
  bottom: 20%;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sliderOverlay.show {
  opacity: 1;
}
#kitchen-overlay {
  left: 10%;
  bottom: 41%;
  background: none;
}
#kitchen-overlay h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
#kitchen-overlay h2 {
  color: #fff;
  margin-bottom: 30px;
}
#kitchen-overlay a h3 {
  padding: 7px 30px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background: var(--primary1);
  width: max-content;
}
#internetText {
  bottom: 30%;
  left: 24%;
  background: none;
  color: #fff;
}
#internetText h2 {
  margin-bottom: 15px;
  color: var(--primary4);
}
#internetText a h3 {
  padding: 5px 20px;
  border-radius: 50px;
  background: #fff;
  width: max-content;
}
#streamingText,
#internetText,
#kitchen-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mejs-container,
.mejs-mediaelement,
.mejs-layers,
.mejs-overlay,
.mejs-controls {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}

.mejs-controls {
    overflow: hidden !important;
}

.mejs-video {
    overflow: hidden !important;
}
#streamingText.show,
#internetText.show,
#kitchen-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.commercial-services ul,
#internetResidential ul {
  margin-bottom: 10px;
}
.servIcon img {
  transition: all 0.2s;
  transform: scale(0);
}
.servIcon img.show {
  transform: scale(1);
}
#startHereArrow {
  width: 100%;
  text-align: center;
  top: -80px;
}
#pricingTable .rpt_subtitle {
  color: #d9d9d9 !important;
}
.br5 img {
  border-radius: 5px;
}
#pg-w69f8df706a840-0 > .panel-grid-cell {
  opacity: 0;
  transform: translateY(-70px);
}
#startHereArrow {
  opacity: 0;
  transform: translateY(-30px);
}

/* ── Bounce-in keyframes ── */
@keyframes stepBounceIn {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  55% {
    opacity: 1;
    transform: translateY(12px);
  }
  75% {
    transform: translateY(-6px);
  }
  90% {
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes arrowBounceIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  60% {
    opacity: 1;
    transform: translateY(8px);
  }
  80% {
    transform: translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Active classes ── */
#pg-w69f8df706a840-0 > .panel-grid-cell.step-visible {
  animation: stepBounceIn 0.65s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
#startHereArrow.arrow-visible {
  animation: arrowBounceIn 0.65s cubic-bezier(0.215, 0.61, 0.355, 1) forwards !important;
}
.packageOverlay {
  top: 0;
  width: 92%;
  left: 4%;
  height: 100%;
  text-align: center;
}
.packageOverlay h4 {
  padding: 5px;
  border-radius: 0 0 7px 7px;
  width: 60%;
  margin: 0 auto 10%;
}
.orderBtn h5 {
  background: var(--primary1);
  padding: 2px;
  width: 48%;
  border-radius: 50px;
  margin: auto;
  font-size: 20px;
  border: 1px solid #fff;
  color: #fff;
}
#bronze h4 {
  color: #cd7f32;
}
#gold h4 {
  color: #ffd700;
}
#platinum h4 {
  color: #e5e4e2;
}
.flatBtn {
  width: 100%;
  position: absolute;
  bottom: 12%;
  background: rgba(0, 0, 0, 0.7);
}
.intOverlay .flatBtn h5 {
  font-size: 27px;
}
.intOverlay h2 {
  top: 36%;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.1);
}
.commOverlay {
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}
.intOverlay h5 {
  font-size: 18px;
  color: #d9d9d9;
}
.intOverlay h4,
.resOverlay h4 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.resOverlay h4 {
  font-size: 27px;
}
.intOverlay img,
.resOverlay img {
  max-width: 40px;
}
.intOverlay h3,
.resOverlay h3 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 10%;
}
.image-gallery img {
  cursor: pointer;
  max-width: 100%;
  height: auto;
}

/* Overlay */
#imageOverlay {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

/* KEY FIX */
#overlayImg {
  max-width: 90vw;
  max-height: 98vh;
  width: auto;
  height: auto;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
.image-gallery img {
  width: 50%;
  padding: 5px;
}
#aboutRow p {
  line-height: 2;
}
.subtitle h2 {
  font-size: 22px;
}
#menu-main li.menu-item-has-children:hover .sub-menu {
  visibility: visible;
}
#menu-main .sub-menu li {
  text-align: left;
  padding: 5px 0px;
}
.pricingTable {
  width: 60%;
  margin: auto;
}
table {
  width: 100%;
}
#tvTable h2 {
  color: var(--primary2);
  font-size: 27px;
  margin-bottom: 15px;
}
#tvTable h4 {
  margin-bottom: 20px;
  font-size: 19px;
  color: var(--primary1);
}
#pricingTable .widget-title,
#cutCord h2,
.videoTitle h3,
#startStreaming h2 {
  padding: 15px 0;
  text-align: center;
  margin-bottom: 50px;
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  color: #176baf;
}
#startStreaming h2 {
  padding: 0;
  margin-bottom: 70px;
}
#cutCord h2 {
  margin-bottom: 0;
}
.videoTitle h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.streamTitleBlue {
  margin-top: 20px;
  font-size: 29px;
  text-align: center;
  color: var(--primary2);
}
#frontSteps .panel-grid-cell {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
#frontSteps .panel-grid-cell.step-visible {
  opacity: 1;
  transform: translateY(0);
}
.myBundle a {
  text-transform: uppercase;
  padding: 5px;
  text-align: left;
  display: block;
  margin-right: 14%;
  font-size: 20px;
}
.frontStep {
  text-align: center;
}
.frontStep h3,
.serviceBlock h3 {
  margin-bottom: 15px;
  font-weight: 800;
  color: #176baf;
}
#internetCommercial .widget-title,
#internetResidential .widget-title {
  margin-bottom: 15px;
  color: var(--primary3);
  font-size: 22px;
  font-weight: 700;
}
#streaming h2 {
  margin: 20px 0 15px;
  color: var(--primary3);
}
.pageTitle h1 {
  font-size: 40px;
  text-transform: uppercase;
}
#legalLinks li {
  margin-bottom: 15px;
}
#contactDetails h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary3);
}
#contactDetailList li {
  margin-bottom: 10px;
}
#contactDetailList li span {
  display: inline-block;
  min-width: 105px;
  color: var(--primary1);
  font-weight: 600;
}
.wpcf7-form input {
  margin-bottom: 15px;
}
.wpcf7-submit {
  width: 100px;
  height: 36px;
  background: var(--primary2);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.wpcf7-submit:hover {
  background: var(--primary1);
}
.privacy-policy h2 {
  margin: 10px 0 15px;
  color: var(--primary1);
}
.privacy-policy table td {
  padding: 5px;
}
.privacy-policy table {
  margin-bottom: 20px;
}
.privacy-policy th {
  padding: 5px;
  background: #c8c8c8;
}
.serviceBlock h3 {
  color: #fff;
}
#socialLinks img {
  max-width: 35px;
  margin-right: 30px;
}
footer h2 {
  margin-bottom: 20px;
}
#footer-one li,
#footer-two li {
  margin-bottom: 15px;
}
footer {
  padding: 100px 0;
}
#legalNotice {
  background: #eee;
}
/*========================================================================
  RESPONSIVE CSS 
  =======================================================================*/

/*================================================================
  MOBILE PHONES
  ============================================================= */
@media screen and (min-width: 300px) and (max-width: 760px) {
  .mainMenu {
    display: none;
  }
  .col {
    width: 100%;
  }
  .col80,
  .pricingTable,
  .col60,
  .col70 {
    width: 96%;
  }
  .mobileMenu {
    display: block;
  }
  .sow-slider-background-image {
    min-height: 400px;
    object-fit: cover;
  }
  .sow-slider-image {
    min-height: 400px;
  }
  #streamingText,
  #internetText,
  #kitchen-overlay {
    left: 1%;
    width: 98%;
  }
  #streamingText h1,
  #internetText h1,
  #kitchen-overlay h1 {
    font-size: 35px;
  }
  #streamingText h2 {
    font-size: 22.6px;
  }
  #internetText {
    bottom: 40%;
  }
  .pageTitle h1 {
    font-size: 30px;
    text-align: center;
  }
  .right {
    text-align: center;
  }
  #pricingTableRow {
    height: 2020px;
  }
  #footerRow {
    flex-flow: column;
  }
  #mobileMenu {
    width: 100%;
    height: 400px;
    background: #fff;
    z-index: 9991;
    top: 122px;
    display: none;
  }
  #mobileMenu.show {
    display: block;
  }
  #mobile-menu li {
    padding: 0 25px 6px;
  }
  #botAddress {
    margin-bottom: 15px;
  }
  footer {
    padding: 50px 0;
  }
}
/*================================================================
  PHABLETS OR SMALL TABLETS
  ============================================================= */
@media screen and (min-width: 761px) and (max-width: 1024px) {
}

/*================================================================
  LAPTOPS
  ============================================================= */
@media screen and (min-width: 1025px) and (max-width: 1600px) {
}
/*=============================================================
  FULL HD RESPONSIVE CODE
  =============================================================*/
@media screen and (min-width: 1601px) and (max-width: 2400px) {
}
