/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

body,
html {
  font-family: "Montserrat";
  font-size: 16px;
  background-position: center top;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

body.isBlog,
html.isBlog {
  background-color: #f30567;
  background-image: url("https://poxnet.com.br/assets/images/backgrounds/bg-blog.jpg");
}

body.isCliente,
html.isCliente {
  background-color: #432966;
  background-image: url("https://poxnet.com.br/assets/images/backgrounds/bg-cliente.jpg");
}

body.isHome,
html.isHome {
  background-color: #432966;
  background-image: url("https://poxnet.com.br/assets/images/backgrounds/bg-home.jpg");
}

body.isPlanos,
html.isPlanos {
  background-color: #feae3f;
  background-image: url("https://poxnet.com.br/assets/images/backgrounds/bg-planos.jpg");
}

body.isSobre,
html.isSobre {
  background-color: #41c6d6;
  background-image: url("https://poxnet.com.br/assets/images/backgrounds/bg-sobre.jpg");
}

body.isSocial,
html.isSocial {
  background-color: #41c6d6;
  background-image: url("https://poxnet.com.br/assets/images/backgrounds/bg-social.jpg");
}

.container {
  max-width: 1200px !important;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px !important;
  }
}

*:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

*:hover {
  text-decoration: none !important;
}

ul {
  font-size: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.clearfix {
  clear: both;
}

p {
  font-size: 16px;
  color: white;
  font-weight: 100;
}

p strong {
  font-weight: 700;
}

.text-dark {
  color: black !important;
}

.text-dark p {
  color: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  position: relative;
  z-index: 1;
}

h1 {
  font-size: calc(100% + 34px);
  font-weight: 900;
  color: #432966;
}

h1.hassidelines {
  font-size: calc(100% + 14px);
  color: white;
  text-transform: uppercase;
  background-color: #432966;
  position: relative;
  z-index: 2;
  display: inline;
  padding: 0 10px;
}

h1.hassidelines--blog {
  font-size: calc(100% + 14px);
  color: white;
  text-transform: uppercase;
  background-color: #f30567;
  position: relative;
  z-index: 2;
  display: inline;
  padding: 0 10px;
}

h1.hassidelines--tv {
  font-size: calc(100% + 14px);
  color: #432966;
  text-transform: uppercase;
  background-color: #feae3f;
  position: relative;
  z-index: 2;
  display: inline;
  padding: 0 10px;
}

h1.hassidelines--white {
  font-size: calc(100% + 14px);
  color: #432966;
  text-transform: uppercase;
  background-color: #f1f1f1;
  position: relative;
  z-index: 2;
  display: inline;
  padding: 0 10px;
}

@media only screen and (max-width: 640px) {
  h1 {
    font-size: calc(100% + 7px);
  }
}

.sidelines span {
  width: 100%;
  height: 1px;
  border: 1px solid white;
  position: absolute;
  left: 0;
  top: 51%;
  z-index: 1;
}

.sidelines span.\--primary {
  border: 1px solid #432966;
}

@media only screen and (max-width: 640px) {
  .sidelines span {
    display: none;
  }
}

h2 {
  font-size: 19.2px;
  line-height: 27.2px;
  font-weight: 700;
  color: white;
}

h2.hasbg {
  font-size: 32px;
  color: #feae3f;
  font-weight: 400;
  background-color: #432966;
  display: inline-block;
  padding: 7px 34px;
  margin-bottom: 30px;
  border-radius: 30px;
}

h3 {
  font-size: 24px;
  line-height: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.btn {
  transition: 0.2s all ease;
}

.btn.fullwidth {
  width: 100% !important;
}

.btn.btn-primary {
  font-size: calc(100% + 10px);
  font-weight: 900;
  background-color: #432966 !important;
  border: 1px solid #432966 !important;
  color: white;
  padding: 0px 20px;
  border-radius: 12px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #1f132f !important;
  border: 1px solid #1f132f !important;
}

.btn.btn-outline {
  font-size: calc(100% + 2px);
  font-weight: 900;
  background-color: transparent !important;
  border: 1px solid #432966 !important;
  color: #432966;
  padding: 4px 10px;
  border-radius: 12px;
}

.btn.btn-outline:hover,
.btn.btn-outline:focus {
  color: white;
  background-color: #432966 !important;
}

.btn.btn-outline--white {
  font-size: 16px;
  font-weight: 900;
  background-color: transparent !important;
  border: 1px solid white !important;
  color: white;
  padding: 4px 15px;
  border-radius: 20px;
}

.btn.btn-outline--white:hover,
.btn.btn-outline--white:focus {
  color: #432966;
  background-color: white !important;
}

.btn.btn-secondary {
  font-size: calc(100% + 14px);
  font-weight: 100;
  background-color: #feae3f !important;
  border: 1px solid #feae3f !important;
  color: #432966;
  padding: 0px 20px;
  border-radius: 30px;
}

.btn.btn-secondary strong {
  font-weight: 700;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background-color: #ef8c01 !important;
  border: 1px solid #ef8c01 !important;
}

@media only screen and (max-width: 640px) {
  .btn.btn-secondary {
    font-size: calc(100% + 10px);
  }
}

.btn.btn-submit {
  font-size: calc(100%);
  font-weight: 900;
  background-color: #f30567 !important;
  border: 1px solid #f30567 !important;
  color: white;
  padding: 5px 60px;
  border-radius: 12px;
}

.btn.btn-submit:hover,
.btn.btn-submit:focus {
  background-color: #a80347 !important;
  border: 1px solid #a80347 !important;
}

header {
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #432966;
}

header.mb {
  margin-bottom: 50px;
}

header #socials {
  font-size: 16px;
  text-align: right;
}

header #socials li {
  display: inline;
}

nav ul#mainmenu {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

nav ul#mainmenu li a {
  color: white;
}

@media only screen and (max-width: 640px) {
  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 198;
    width: 100%;
    height: 100%;
    background-color: #2b1a42;
    display: block !important;
    padding: 30px 45px !important;
  }

  nav ul li {
    display: block;
    margin-bottom: 10px;
  }

  nav ul li:first-child {
    margin-bottom: 30px;
  }
}

.openmob {
  width: 45px;
  height: 45px;
  display: block;
  background-image: url("https://poxnet.com.br/assets/images/icons/menu.png");
  background-size: cover;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 199;
  border: 7px solid white;
  background-color: white;
  display: none;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .openmob {
    display: block;
  }
}

footer {
  margin-top: 120px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: black;
}

footer .ft-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

footer .ft-row img {
  max-width: 170px;
  width: 170px;
}

footer .ft-row a,
footer .ft-row p {
  font-size: calc(100% - 4px);
  color: white;
  font-weight: 700;
  margin-bottom: 0;
}

footer .ft-row a {
  transition: 0.2s all ease;
}

footer .ft-row a:hover {
  color: #feae3f;
}

@media only screen and (max-width: 640px) {
  footer .ft-row {
    flex-direction: column;
  }

  footer .ft-row div {
    margin-bottom: 30px;
  }
}

input[type=text],
input[type=email],
textarea,
select {
  font-size: 16px !important;
  color: #a8a8a8;
  border: 1px solid #d1d1d1 !important;
  background-color: #d1d1d1 !important;
  border-radius: 10px !important;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus,
select:focus {
  color: #2a2a2a;
}

label.error {
  text-align: left;
  font-size: 12px;
  color: #ff0000;
  display: block;
  padding: 5px 15px;
}

textarea {
  color: #a8a8a8;
  resize: none;
}

textarea:focus {
  color: #2a2a2a;
}

#response {
  display: none;
}

.owl-carousel .it-banner {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center center;
}

.owl-carousel .it-banner:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
}

.owl_entry {
  width: 60%;
  position: relative;
  z-index: 1001;
}

@media only screen and (max-width: 640px) {
  .owl_entry {
    width: 100%;
  }
}

.owl-controls {
  text-align: center;
  width: 100%;
  position: absolute !important;
  left: 0;
  bottom: -30px;
  z-index: 1;
}

.owl-controls .owl-prev,
.owl-controls .owl-next {
  width: 40px;
  height: 40px;
  overflow: hidden !important;
  text-indent: -1000px !important;
  background-color: #432966 !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 50% !important;
}

.owl-controls .owl-prev {
  background-image: url("https://poxnet.com.br/assets/images/arrow_left.png") !important;
}

.owl-controls .owl-next {
  background-image: url("https://poxnet.com.br/assets/images/arrow_right.png") !important;
}

.contato--overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.contato--form {
  max-width: 500px;
  width: 100%;
  position: fixed;
  top: 5%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  padding: 60px 60px;
  display: none;
  -ms-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  -o-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.contato--form h2 {
  text-align: center;
  font-size: calc(100% + 16px);
  font-weight: 900;
  color: #432966;
  margin-bottom: 25px;
}

.contato--form p {
  color: black;
}

@media only screen and (max-width: 640px) {
  .contato--form {
    position: absolute;
    width: 90%;
    top: 20px;
    padding: 40px 30px;
  }
}

.contato--closeform {
  font-size: calc(100% - 4px);
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: 0;
  z-index: 1;
  color: red;
  cursor: pointer;
  background-color: white;
  padding: 4px;
}

.modal--overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.modal--content {
  height: 70%;
  padding-right: 15px;
  overflow: auto;
}

.modal--base {
  max-width: 500px;
  width: 100%;
  height: 90vh;
  position: fixed;
  top: 5%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  padding: 60px 60px;
  display: none;
  -ms-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  -o-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.modal--base h2 {
  font-size: calc(100% + 16px);
  font-weight: 900;
  color: #432966;
  margin-bottom: 25px;
}

.modal--base p {
  color: black;
}

@media only screen and (max-width: 640px) {
  .modal--base {
    width: 90%;
    top: 5%;
    padding: 40px 30px;
  }
}

.modal--closeform {
  font-size: calc(100% - 4px);
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: 0;
  z-index: 1;
  color: red;
  cursor: pointer;
  background-color: white;
  padding: 4px;
}

.features {
  padding-left: 40px;
}

.features ul {
  font-size: calc(100% + 14px);
  margin-top: 40px;
}

.features ul li {
  color: white;
  font-weight: 700;
  position: relative;
}

.features ul li:before {
  content: "";
  width: 14px;
  height: 20px;
  background-image: url("https://poxnet.com.br/assets/images/icons/arrow-right.png");
  position: absolute;
  left: -20px;
  top: 15px;
  z-index: 99;
}

@media only screen and (max-width: 640px) {
  .features ul {
    font-size: calc(100% + 4px);
  }

  .features ul li:before {
    top: 5px;
  }
}

img.kv {
  width: 100%;
  max-width: 400px;
  display: block;
  float: right;
}

@media only screen and (max-width: 640px) {
  img.kv {
    float: none;
    margin: 0 auto;
  }
}

section.isfeature {
  padding-top: 40px;
  padding-bottom: 40px;
}

section.tvdigital {
  background-color: #f1f1f1;
  padding: 50px 0;
}

section.tvdigital a.discoverchannels {
  font-size: 25.6px;
  font-weight: 700;
  color: #432966;
}

section.tvdigital .channels {
  margin-bottom: 30px;
}

section.tvdigital .channels li {
  position: relative;
  display: inline-block;
}

section.tvdigital .channels li a {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.tvdigital .channels li a p {
  font-size: 24px;
  font-weight: 700;
  line-height: 27.2px;
  color: #432966;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
  section.tvdigital .channels li {
    width: 45%;
    margin: 0 2.5%;
  }

  section.tvdigital .channels li a p {
    font-size: 19.2px;
    line-height: 22.4px;
  }

  section.tvdigital .channels li img {
    width: 100%;
  }
}

section.avaliacoes {
  background-color: white;
  padding: 50px 0;
}

section.avaliacoes .owl-nav {
  text-align: center;
  margin: 20px 0;
}

section.avaliacoes .owl-nav button {
  margin: 0 25px;
}

section.avaliacoes h1 {
  font-size: calc(100% + 12px);
}

section.avaliacoes p {
  font-size: calc(100% + 8px);
  color: #464646;
  margin-bottom: 0;
}

section.avaliacoes p.notageral {
  font-size: calc(100% + 16px);
  text-transform: uppercase;
  line-height: 80px;
}

section.avaliacoes p.notageral strong {
  font-size: calc(100% + 32px);
}

@media only screen and (max-width: 640px) {
  section.avaliacoes p {
    font-size: calc(100% + 4px);
  }
}

section.avaliacoes .\--photo {
  width: 75px;
  height: 75px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

section.avaliacoes .stars.\--big {
  width: 450px;
  height: 81px;
  background-image: url("https://poxnet.com.br/assets//images/big-stars.png");
  background-position: left 0;
}

section.avaliacoes .stars.\--big.\--s5 {
  background-position: left 0;
}

section.avaliacoes .stars.\--big.\--s4half {
  background-position: left -90px;
}

section.avaliacoes .stars.\--big.\--s4 {
  background-position: left -180px;
}

section.avaliacoes .stars.\--big.\--s3half {
  background-position: left -270px;
}

section.avaliacoes .stars.\--big.\--s3 {
  background-position: left -360px;
}

section.avaliacoes .stars.\--big.\--s2half {
  background-position: left -450px;
}

section.avaliacoes .stars.\--big.\--s2 {
  background-position: left -540px;
}

section.avaliacoes .stars.\--big.\--s1half {
  background-position: left -630px;
}

section.avaliacoes .stars.\--big.\--s1 {
  background-position: left -719px;
}

@media only screen and (max-width: 640px) {
  section.avaliacoes .stars.\--big {
    width: 100%;
    height: 52px;
    background-size: cover;
  }

  section.avaliacoes .stars.\--big.\--s4half {
    background-position: left -57px;
  }

  section.avaliacoes .stars.\--big.\--s4 {
    background-position: left -114px;
  }

  section.avaliacoes .stars.\--big.\--s3half {
    background-position: left -172px;
  }

  section.avaliacoes .stars.\--big.\--s3 {
    background-position: left -229px;
  }

  section.avaliacoes .stars.\--big.\--s2half {
    background-position: left -286px;
  }

  section.avaliacoes .stars.\--big.\--s2 {
    background-position: left -343px;
  }

  section.avaliacoes .stars.\--big.\--s1half {
    background-position: left -401px;
  }

  section.avaliacoes .stars.\--big.\--s1 {
    background-position: left -458px;
  }
}

section.avaliacoes .stars.\--small {
  width: 147px;
  height: 22px;
  margin: 20px auto;
  background-image: url("https://poxnet.com.br/assets//images/small-stars.png");
  background-position: left 0;
}

section.avaliacoes .stars.\--small.\--s5 {
  background-position: left 0;
}

section.avaliacoes .stars.\--small.\--s4 {
  background-position: left -22px;
}

section.avaliacoes .stars.\--small.\--s3 {
  background-position: left -44px;
}

section.avaliacoes .stars.\--small.\--s2 {
  background-position: left -66px;
}

section.avaliacoes .stars.\--small.\--s1 {
  background-position: left -88px;
}

section.avaliacoes .rating {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-top: 1px solid #bababa;
  border-bottom: 1px solid #bababa;
}

section .plan-box--residenciais {
  background-color: #41c6d6;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
}

section .plan-box--residenciais h2 {
  font-size: calc(100% + 20px);
  font-weight: 900;
  color: white;
}

section .plan-box--condominios {
  background-color: #feae3f;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
}

section .plan-box--condominios h2 {
  font-size: calc(100% + 20px);
  font-weight: 900;
  color: white;
}

section .plan-box--empresariais {
  background-color: #f30567;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
}

section .plan-box--empresariais h2 {
  font-size: calc(100% + 20px);
  font-weight: 900;
  color: white;
}

section .plan-box--icon {
  background-color: white;
  width: 125px;
  height: 125px;
  padding: 20px 10px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
}

section .plan-box--icon img {
  width: 100%;
}

section .plan-box--internet p {
  font-size: 16px;
  color: black;
  margin-top: 20px;
}

section .plan-box--velocidade p {
  font-size: calc(100% + 6px);
  font-weight: 900;
  color: white;
}

section .flex-block--row {
  display: flex;
  align-items: left;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  section .flex-block--row {
    flex-direction: column;
  }
}

section .flex-block--modal {
  cursor: pointer;
}

section .flex-block--modal p {
  color: #feae3f;
}

section .flex-block--col {
  flex: 1;
}

section .flex-block--col img {
  width: 100%;
  max-width: 85px;
  float: left;
  display: block;
  margin-right: 10px;
}

section .flex-block--col p {
  display: block;
}

@media only screen and (max-width: 640px) {
  section .flex-block--col {
    margin-bottom: 15px;
  }
}

section.flex-single {
  max-width: 1000px !important;
  width: 100%;
  margin: 0 auto;
}

section.flex-single .flex-single--image {
  max-width: 190px;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 640px) {
  section.flex-single .flex-single--image {
    max-width: 100px;
  }
}

section .testimonies {
  margin-top: 120px;
}

section .testimonies--entry {
  width: 90%;
  margin-left: 10%;
  border: 2px solid #432966;
  padding: 30px;
  position: relative;
  margin-bottom: 120px;
  border-radius: 10px;
}

section .testimonies--entry p {
  font-size: calc(100% + 4px);
  color: #432966;
  margin: 0;
}

section .testimonies--entry:before {
  content: "";
  width: 185px;
  height: 145px;
  background-image: url("https://poxnet.com.br/assets//images/others/quotes.png");
  background-size: cover;
  position: absolute;
  left: -100px;
  top: -80px;
  z-index: -1;
}

@media only screen and (max-width: 640px) {
  section .testimonies--entry {
    width: 100%;
    margin-bottom: 160px;
    margin-left: 0;
  }

  section .testimonies--entry:before {
    content: "";
    width: 125px;
    height: 95px;
    top: -40px;
    left: -10px;
    z-index: -1;
  }
}

section .testimonies--user {
  position: absolute;
  right: 20px;
  bottom: -40px;
  z-index: 1;
}

section .testimonies--user:before {
  content: "";
  width: 140px;
  height: 25px;
  position: absolute;
  left: -160px;
  top: 0;
  background-image: url("https://poxnet.com.br/assets/images/others/pox-colors.png");
}

section .testimonies--user p {
  font-weight: 900;
  margin: 0;
}

@media only screen and (max-width: 640px) {
  section .testimonies--user {
    position: absolute;
    right: 20px;
    bottom: -70px;
    z-index: 1;
  }

  section .testimonies--user:before {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  section .testimonies {
    margin-top: 80px;
  }
}

section .poxnet {
  margin-top: 60px;
}

section .poxnet p {
  font-size: calc(100% * 8);
  line-height: calc(100% * 1);
  margin: 0;
}

section .poxnet p.\--about {
  color: #7cdde9 !important;
}

@media only screen and (max-width: 640px) {
  section .poxnet {
    margin-top: 30px;
  }

  section .poxnet p {
    font-size: calc(100% * 3);
  }
}

section .access {
  margin-bottom: 60px;
}

section .access--app {
  max-width: 130px;
  width: 100%;
}

section .access--text p {
  font-size: calc(100% * 1.3);
  color: #959595;
}

section .access--text p strong {
  font-size: calc(100% * 1.4);
  font-weight: 900 !important;
}

section .access a {
  color: black;
  display: block;
}

section .access--icon {
  text-align: center;
  width: 170px;
  height: 170px;
  border: 4px solid #41c6d6;
  padding-top: 30px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  transition: 0.2s all ease;
}

section .access--icon img {
  max-width: 120px;
  width: 60%;
  display: block;
  margin: 0 auto;
  transition: 0.2s all ease;
}

section .access:hover .access--icon {
  background-color: #41c6d6;
  padding-top: 25px;
}

section .access:hover .access--icon img {
  width: 70%;
}

@media only screen and (max-width: 640px) {
  section .access {
    margin-bottom: 30px;
  }

  section .access--icon {
    width: 120px;
    height: 120px;
    padding-top: 20px;
  }

  section .access--icon img {
    width: 60%;
  }

  section .access:hover .access--icon {
    background-color: #41c6d6;
    padding-top: 15px;
  }

  section .access:hover .access--icon img {
    width: 70%;
  }
}

section .post--link {
  border: 1px solid transparent;
  padding: 30px;
  margin-bottom: 30px;
  display: block;
  border-radius: 15px;
  transition: 0.2s all ease;
}

section .post--link:hover {
  border: 1px solid white;
}

section .post--img {
  max-width: 260px;
  width: 100%;
  height: 260px;
  background-position: center center;
  background-size: cover;
  margin: 0 auto 30px auto;
  position: relative;
  border-radius: 50%;
}

section .post--img::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 10%;
  z-index: 1;
  width: 80%;
  height: 80%;
  background-color: rgba(67, 41, 102, 0.8);
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  section .post--img {
    max-width: 240px;
    width: 100%;
    height: 240px;
    background-position: center center;
    background-size: cover;
    margin: 0 auto 30px auto;
    position: relative;
  }
}

section .post--title {
  font-size: calc(100% - 2px);
  line-height: calc(100% + 4px);
  text-transform: uppercase;
  color: #feae3f;
}

section .post--title a {
  color: inherit;
}

section .post--single {
  padding: 60px;
  background-color: white;
  border-radius: 20px;
}

section .post--single p {
  color: black;
}

section .post--single img {
  display: block;
  margin-bottom: 30px;
}

section .post--single h1 {
  font-size: calc(100% + 16px);
  text-transform: uppercase;
  margin-bottom: 45px;
}

@media only screen and (max-width: 640px) {
  section .post--single {
    padding: 30px;
  }
}

section .post--published {
  width: 100%;
  display: block;
  margin-top: 45px;
}

section .pagination {
  font-size: calc(100%);
  align-items: flex-end;
  justify-content: flex-end;
}

section .pagination--nav {
  border-top: 1px solid white;
}

section .pagination .page-item .page-link {
  color: white !important;
  position: static !important;
  background-color: transparent !important;
  border: 1px solid transparent !important;
}

section .pagination .page-item .page-link.active,
section .pagination .page-item .page-link:hover {
  border: 1px solid white !important;
}

.wa--icon {
  position: fixed;
  right: 105px;
  bottom: 10px;
  z-index: 99;
  width: 80px;
  height: 80px;
  background-image: url("https://poxnet.com.br/assets/images/icons/whatsapp.png");
  background-size: cover;
  display: block;
}

.tvchannels {
  margin-bottom: 100px;
}

.tvchannels img {
  max-width: 800px;
  width: 100%;
}

