/*
Theme Name: Proseia
Theme URI: http://www.agenciafante.com.br/
Author: Agência Fante
Author URI: http://www.agenciafante.com.br/
Description: Tema desenvolvido por Fante.
Version: 1.0
*/

:root {
  --primary-color: #f2537b;
  --bg-white-color: #ffffff;
  --bg-gray-color: #f5f5f5;
  --bg-pink-color: #fff3f6;
  --type-gray-color: #333333;
  --border: rgba(0,0,0,.1);
  --border-dark: rgba(255,255,255,.75);
}

[data-theme="dark"] {
  --primary-color: #f2537b;
  --bg-white-color: #333333;
  --bg-gray-color: #2f2f2f;
  --bg-pink-color: #2f2f2f;
  --type-gray-color: #ffffff;
  --border: rgba(255,255,255,.1);
  --border-dark: rgba(0,0,0,.7);
}

@font-face {
  font-family: 'Inter';
  src: url('font/Inter-Regular.woff2') format('woff2'),
       url('font/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('font/Inter-Bold.woff2') format('woff2'),
       url('font/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/Poppins-Regular.woff2') format('woff2'),
       url('font/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('font/Poppins-SemiBold.woff2') format('woff2'),
       url('font/Poppins-SemiBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

table tr {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

table tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

table td {
  padding: 20px;
  border-left: 1px solid rgba(0, 0, 0, .1);
}

table td:last-child {
  border-right: 1px solid rgba(0,0,0,.1);
}

*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  margin:0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter';
  line-height: 1;
  overflow-x: hidden;
  background-color: var(--bg-white-color);
}

input, textarea, select, button {
  font-family: 'Inter';
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

a[href^=tel] { 
  color: inherit; 
  text-decoration: none; 
}

img,
svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
}

div.image {
  overflow: hidden;
}

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

div.icon {
  width: 64px;
  height: 64px;
  display: block;
  position: relative;
  border-radius: 8px;
  margin: 0 0 30px;
  background-color: rgba(242, 83, 123, .1);
}

div.icon img {
  width: 28px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-theme="dark"] div.icon {
  background-color: rgba(242, 83, 123, 1);
}

[data-theme="dark"] div.icon img {
  filter: brightness(0) invert(1);
}

a {
  text-decoration:none; 
}

::-moz-selection { 
  color: #fff;
  background: #1e1e1e;
}

::selection {
  color: #fff;
  background: #1e1e1e;
}

.info b,
.info strong {
  color: var(--primary-color);
}

/* Clearfix */

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}

.clearfix::after {
 clear: both;
}

/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 101;
}

.anime-start #preloader {
  animation: fadeOuts 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOuts {
100% {
  opacity: 0;
  visibility: hidden;
}
}

#status {
  position: relative;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  margin:0;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/* Grid */

.col-af {
  width: 100%;
  height: auto;
  position: relative;
  padding: 100px 0;
}

.col-af-content {
  width: 90%;
  max-width: 1216px;
  margin: 0 auto;
}

@media screen and (max-width:991px) {
.col-af-slide {
  width: 95%;
  margin-left: 5%;
}
}

/* Button */

.btn {
  font-family: 'Poppins';
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  min-width: 200px;
  line-height: 1.2;
  color: #fff;
  border: 0;
  text-align: center;
  margin: 0;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
  padding: 20px 35px 22px;
  transition: all .3s;
  border-radius: 30px;
}

.btn.btn-outline {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: none;
}

.btn span {
  text-transform: uppercase;
  font-size: 10px;
  border-radius: 30px;
  padding: 2px 10px;
  background-color: rgba(255, 255, 255, .3);
  margin: -5px 0 0 10px;
}

.btn-white {
  color: var(--primary-color);
  background: #fff;
}

.btn:hover {
  box-shadow: 0px 0px 0px 7px rgba(242, 83, 123, .3);
}

span.title-common {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--type-gray-color);
  margin: 0 0 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  opacity: .7;
  padding: 7px 15px;
}

.title-common,
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins';
  font-size: 32px;
  font-weight: 700;
  color: var(--type-gray-color);
  line-height: 1.2;
  margin: 0 0 30px;
}

h1 {
  font-size: 48px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 14px;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: var(--type-gray-color);
  line-height: 1.5;
  margin: 30px 0 0;
  opacity: .8;
}

.hero h2 {
  font-size: 24px;
  font-weight: 400;
}

@media screen and (max-width:991px) {
.col-af {
  padding: 60px 0;
}

a.btn,
input.btn,
button.btn {
  display: block;
  width: 100%;
}

.title-common,
h1 {
  font-size: 28px;
}

h2 {
  font-size: 22px;
}

h3,
h4 {
  font-size: 16px;
}
}

/* WhatsApp */

.wpp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 99;
  background-color: #01d14f;
  transition: ease .4s;
  border: 2px solid rgba(255, 255, 255, .3);
  box-shadow: 0px 15px 60px 0px rgba(0,0,0,.3);
}

.wpp-btn:hover {
  transform: scale(1.05);
}

.wpp-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #fff;
  transform: translate(-50%, -50%);
  width: 30px;
}

/* Cookie */

.cookies-container {
  position: fixed;
  width: 100%;
  max-width: 270px;
  margin: 0;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.cookies-content {
  background: #fff;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  display: block;
  position: relative;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0px 0px 40px 0px rgba(0,0,0,.1);
  border-radius: 2px;
}

.cookies-content p {
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.cookies-content a {
  display: inline-block;
  text-decoration: underline;
  color: inherit;
}

.cookies-content .cookies-save {
  color: #282828;
  display: block;
  cursor: pointer;
  font-weight: 600;
  border: 0;
  outline: 0;
  padding: 0;
  margin: 10px 0 0;
  background-color: transparent;
}

.cookies-content .cookies-save:hover {
  text-decoration: underline;
}

.cookies-pref {
  display: none;
}

@media screen and (max-width:991px) {
.cookies-container {
  width: calc(100% - 3rem);
  max-width: 100%;
  bottom: 1.5rem;
  right: 1.5rem;
}

.cookies-content {
  text-align: center;
}

.cookies-content .cookies-save {
  margin: 10px auto 0;
}
}

/* Header */

.header {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: var(--bg-white-color);
  transition: ease 0.3s;
}

.header.header-is-visible {
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.1);
}

.admin-bar .header {
  top: 32px;
}

.header .col-af-content {
  height: 90px;
  position: relative;
}

.header .btn-header {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header .btn-header .btn {
  min-width: 10px;
  padding: 15px 16px;
  margin: 0 5px;
  font-size: 13px;
}

.header .btn-menu {
  display: none;
}

@media screen and (max-width:1268px) {
.header .btn-header {
  right: 60px;
  width: auto;
  display: inline-block;
}
}

/* Logo */

.logo {
  display: block;
  position: absolute;
  width: 150px;
  float: left;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

[data-theme="dark"] .logo {
  background-image: url(images/proseia-footer-logo.png);
}

.logo img {
  display: block;
  width: 100%;
  margin: 0;
}

[data-theme="dark"] .logo img {
  opacity: 0;
}

@media screen and (max-width:991px) {
.header .col-af-content {
  height: 65px;
}

.header .btn-header {
  position: absolute;
  min-width: auto;
  right: 50px;
}

.header .btn-header .btn {
  padding: 10px 10px;
  font-size: 9px;
}

.header .btn-header .btn-outline {
  display: none;
}

.logo {
  width: 105px;
}
}

/* Nav */

.nav {
  position: absolute;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.nav ul {
  margin: 0;
  padding: 0;
}

.nav li {
  display: inline-block;
  float: left;
  line-height: 90px;
  position: relative;
}

.nav li a {
  font-family: 'Poppins';
  display: block;
  font-size: 0.89em;
  text-align: center;
  font-weight: 500;
  color: var(--type-gray-color);
  padding: 0 15px;
  opacity: .8;
  margin: 0;
  transition: ease 0.3s;
}

.nav li a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Input */

input#toggle-menu,
label.toggle-menu {
  display:none;
}

@media screen and (max-width:1268px) {
label.toggle-menu {
  position: absolute;
  right: 0;
  top: 15px;
  display: block;
  z-index: 11;
  height: 60px;
  width: 50px;
  outline: 0;
  border: 0;
  cursor: pointer;
}

label.toggle-menu div {
  position: absolute;
  top: 20px;
  left: 27px;
}

label.toggle-menu span {
  display: block;
  height: 2pt;
  width: 25px;
  background-color: var(--type-gray-color);
  position: absolute;
  opacity: 1;
  left: 0;
  border-radius: 10px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all .3s;
}

label.toggle-menu span:nth-child(1) {
  top: 0px;
}

label.toggle-menu span:nth-child(2) {
  top: 8px;
}

label.toggle-menu span:nth-child(3) {
  top: 16px;
}

input#toggle-menu:checked ~ label.toggle-menu span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

input#toggle-menu:checked ~ label.toggle-menu span:nth-child(2) {
  opacity: 0;
}

input#toggle-menu:checked ~ label.toggle-menu span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nav {
  float: none;
  height: calc(100vh - 90px);
  width: 100%;
  position: fixed;
  top: 90px;
  right: 0;
  left: auto;
  margin: 0;
  z-index: 10;
  padding: 30px;
  background-color: var(--bg-white-color);
  transition: all .3s;
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
}

.header-is-visible .nav {
  height: calc(100vh - 90px);
  top: 90px;
}

input#toggle-menu:checked ~ .nav {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.nav ul {
  width: 100%;
  line-height:55px;
  padding: 0;
}

.nav li {
  width: 100%;
  line-height: 55px;
}

.nav li a {
  font-size: 14px;
  text-align: left;
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.nav .btn-menu {
  display: block;
  margin: 30px 0 0;
}
}

@media screen and (max-width:991px) {
label.toggle-menu {
  right: 0;
  top: 2px;
}

.nav,
.header-is-visible .nav {
  height: calc(100vh - 65px);
  top: 65px;
}
}

/* Hero */

.hero {
  height: calc(100vh - 90px);
  max-height: 650px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white-color);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center left 140%;
  background-image: url(images/hero.png);
  padding: 0;
}

.center.hero {
  background-position: center;
  background-image: url(images/hero.png);
}

.videos.hero {
  max-height: 1200px;
  height: auto;
}

.hero:not(.videos) .col-af-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero .info {
  width: 45%;
  float: left;
}

.hero.center .info {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  float: none;
}

.hero.videos .info {
  padding: 60px 0 0;
}

.hero .info {
  transition: ease .8s;
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.hero .info h1 {
  margin: 0 0 20px;
}

.hero .info p {
  margin: 0 0 30px;
}

.anime-start .hero .info {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.anime-start .hero .info p {
  opacity: .8;
}

.hero .col-af-content .btn {
  margin: 10px 0 0;
}

.hero .col-af-content .btn.btn-outline {
  margin-right: 20px;
}

.hero .image {
  width: 40%;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.hero video {
  width: 100%;
  display: block;
  margin: 50px auto 80px;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0px 0px 0px 5px rgba(242, 83, 123, 0.30);
}

.hero video.video-dark,
[data-theme="dark"] .hero video.video-light {
  display: none;
}

[data-theme="dark"] .hero video.video-dark {
  display: block;
}

@media screen and (max-width:991px) {
.hero {
  height: auto;
  max-height: 2000px;
}

.hero .col-af-content,
.hero:not(.videos) .col-af-content {
  top: auto;
  left: auto;
  position: relative;
  margin: 60px auto;
  -webkit-transform: none;
  transform: none;
}

.hero-page.hero .col-af-content {
  top: 55%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero .info {
  width: 100%;
}

.hero .image {
  width: 100%;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  display: block;
  padding: 40px 0 0;
}

.hero .info .btn {
  margin: 10px 0;
}

.hero .col-af-content .btn.btn-outline {
  margin-right: 0;
}
}

/* Sobre */

.sobre {
  padding: 20px 0 0;
  background-color: var(--bg-white-color);
}

.sobre .col-af-content {
  padding: 60px 100px 100px;
  background-image: -webkit-linear-gradient( 270deg, var(--bg-gray-color) 0%, var(--bg-white-color) 100%);
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--border);
}

.sobre .info {
  float: left;
  width: 50%;
}

.sobre .image {
  float: right;
  width: 40%;
}

@media screen and (max-width:991px) {
.sobre .col-af-content {
  padding: 40px 35px;  
}

.sobre .info,
.sobre .image {
  width: 100%;
}

.sobre .image {
  margin: 30px 0 0;
}
}

/* Recursos */

.recursos {
  background-color: var(--bg-white-color);
  text-align: center;
}

.tabs {
  float: left;
  margin: 0;
  width: 100%;
}

.tabs input[type="radio"] {
  display: none;
}

.tabs--label {
  width: 100%;
  display: flex;
  position: relative;
  padding: 0;
  margin: 0 auto;
}

.tabs--label label {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 20px 20px;
  margin: 0;
  opacity: .3;
  text-align: center;
  transition: ease .3s;
  box-shadow: inset 0px -2px 0px 0px rgba(242, 83, 123, 1);
}

.tabs--label label.current,
.tabs--label label:hover {
  opacity: 1;
  color:var(--primary-color);
  box-shadow: inset 0px -4px 0px 0px rgba(242, 83, 123, 1);
}

.tabs--section > div.clearfix {
  width: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 0;
  top: 0;
  height: 100px;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

.tabs--section {
  width: 100%;
   overflow: hidden;
}

.tabs--section .tab--section {
  width: 100%;
  margin: 60px 0 0;
  overflow: hidden;
  position: relative;
}

.tabs--section .info {
  width: 40%;
  float: right;
  text-align: left;
}

.tabs--section .image {
  position: absolute;
  left: 0;
  width: 50%;
  border-radius: 10px;
  background-color: #000;
  height: 100%;
  bottom: 0;
}

#tab-01:checked ~ .tab--section--01,
#tab-02:checked ~ .tab--section--02,
#tab-03:checked ~ .tab--section--03,
#tab-04:checked ~ .tab--section--04,
#tab-05:checked ~ .tab--section--05,
#tab-06:checked ~ .tab--section--06 {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  display: block;
  height: auto;
  z-index: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

@media screen and (max-width:991px) {
.tabs--label {
  display: flex;
  overflow-x: scroll;
  padding: 0;
}

.tabs--label label {
  font-size: 14px;
  flex-grow: 1;
  display: block;
  width: auto;
  white-space: nowrap;
  padding: 20px 10px 30px;
  margin: 0;
}

.tabs--section .tab--section {
  margin: 50px 0 0;
}

.tabs--section .info {
  width: 100%;
  margin: 0 0 30px;
}

.tabs--section .image {
  position: relative;
  left: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  bottom: auto;
  margin: 30px 0 0;
}
}

/* Como funciona */

.como-funciona {
  background-color: var(--bg-gray-color);
  text-align: center;
}

.como-funciona .info {
  width: 100%;
  position: relative;
  margin: 60px 0 0;
}

.como-funciona .image {
  position: absolute;
  right: 0;
  width: 50%;
  border-radius: 10px;
  background-color: #000;
  height: 100%;
  bottom: 0;
}

.como-funciona ul {
  width: 45%;
  float: left;
}

.como-funciona ul li {
  background-color: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
}

.como-funciona ul li button.accordion {
  display: block;
  width: 100%;
  min-height: 60px;
  margin: 0;
  outline: 0;
  border: 0;
  padding: 40px 30px 40px 70px;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  background-color: transparent;
  border-top: 1px solid var(--border);
}

.como-funciona ul li button.accordion .icon {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.como-funciona ul li button.accordion .icon img {
  width: 25px;
}

.como-funciona ul li button.accordion h3 {
  margin: 0;
  padding: 0;
  opacity: .3;
}

.como-funciona button.accordion::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  background-position: center;
  background-size: 18px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='512' height='512'%3E%3Cpath fill='%23f2537b' d='M19.061,7.854a1.5,1.5,0,0,0-2.122,0l-4.586,4.585a.5.5,0,0,1-.707,0L7.061,7.854A1.5,1.5,0,0,0,4.939,9.975l4.586,4.586a3.5,3.5,0,0,0,4.95,0l4.586-4.586A1.5,1.5,0,0,0,19.061,7.854Z'/%3E%3C/svg%3E%0A");background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}

.como-funciona button.accordion.active::before {
  transform: translateY(-50%) rotate(180deg);
}

.como-funciona button.accordion.active {
  border-top: 3px solidvar(--primary-color);
}

.como-funciona ul li button.accordion.active h3 {
  opacity: 1;
  color:var(--primary-color);
}

.como-funciona div.panel {
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  text-align: left;
  transition: ease .4s;
}

.como-funciona button.accordion.active + div.panel {
  max-height: 8000px;
  height: auto;
  padding: 0 0 30px;
}

.como-funciona div.panel p:first-child {
  margin: 0;
}

@media screen and (max-width:991px) {
.como-funciona ul {
  width: 100%;
  margin: 0 0 20px;
}

.como-funciona .image {
  position: relative;
  right: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  bottom: auto;
  margin: 30px 0 0;
}
}

/* Destaques */

.destaques {
  background-color: var(--bg-pink-color);
  text-align: center;
}

.destaques ul {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
  width: 100%;
}

.destaques ul li {
  width: calc(33.3333333% - 30px);
  display: block;
  margin: 15px;
  background-color: var(--bg-white-color);
  border-radius: 16px;
  border: 1px solid rgba(242, 83, 123, .1);
  text-align: left;
  padding: 35px 30px;
}

.destaques ul li h3 {
  margin: 0;
}

.destaques ul li p {
  margin: 20px 0 0;
}

@media screen and (max-width:991px) {
.destaques ul li {
  width: 100%;
  margin: 15px 0;
}
}

/* Conteúdo */

.conteudo {
  background-color: var(--bg-white-color);
}

.conteudo .col-af-content {
  position: relative;
}

.conteudo .info {
  float: right;
  width: 50%;
}

.conteudo .image {
  width: 40%;
  max-width: 500px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.conteudo .btn {
  margin: 40px 0 0;
}

@media screen and (max-width:991px) {
.conteudo .info {
  width: 100%;
  margin: 0 0 50px;
}

.conteudo .image {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}
}

/* Vídeo */

.video {
  padding: 0;
  background-color: var(--bg-white-color);
}

.video .col-af-content {
  min-height: 460px;
  background-color: var(--primary-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.video .col-af-content::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, .2);
}

.video .col-af-content img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  opacity: .5;
}

.video .info {
  position: absolute;
  width: 100%;
  max-width: 700px;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  text-align: center;
}

.video .info h2,
.video .info p {
  color: #fff;
}

.video .play-modal {
  width: 80px;
  height: 80px;
  position: relative;
  display: block;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
  box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, .2);
  transition: ease .3s;
}

.video .play-modal:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 0px 10px rgba(242, 83, 123, .4);
}

.video .play-modal svg {
  width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
}

/* Módulos */

.modulos {
  background-color: var(--bg-pink-color);
  overflow: visible;
  padding: 80px 0 0;
}

.modulos .menu {
  display: flex;
  position: sticky;
  top: 90px;
  left: 0;
  background-color: var(--bg-pink-color);
  z-index: 2;
}

.modulos .menu a {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 20px 20px;
  margin: 0;
  opacity: .3;
  text-align: center;
  transition: ease .3s;
  box-shadow: inset 0px -2px 0px 0px rgba(242, 83, 123, 1);
}

.modulos .menu a:hover,
.modulos .menu a.active {
  opacity: 1;
  color:var(--primary-color);
  box-shadow: inset 0px -4px 0px 0px rgba(242, 83, 123, 1);
}

.modulos .itens li {
  position: relative;
  padding: 100px 0;
}

.modulos .itens li::before {
  content: '';
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  background-image: url(images/line-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.modulos .itens li:nth-child(even)::before {
  background-image: url(images/line-2.png);
}

.modulos .itens li:last-child::before {
  background-image: none;
}

.modulos .itens li .info {
  float: right;
  width: 45%;
}

.modulos .itens li .image {
  width: 40%;
  max-width: 500px;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.modulos .itens li:nth-child(even) .info {
  float: left;
}

.modulos .itens li:nth-child(even) .image {
  right: 5%;
  left: auto;
}

.modulos .itens li .btn {
  margin: 30px 0 0;
}

@media screen and (max-width:991px) {
.modulos .menu {
  top: 62px;
  display: flex;
  overflow-x: scroll;
  padding: 0;
}

.modulos .menu a {
  font-size: 14px;
  flex-grow: 1;
  display: block;
  width: auto;
  white-space: nowrap;
  padding: 20px 10px 30px;
  margin: 0;
}

.modulos .itens li {
  position: relative;
  padding: 60px 0;
}

.modulos .itens li .info {
  width: 100%;
  margin: 0 0 50px;
}

.modulos .itens li .image,
.modulos .itens li:nth-child(even) .image {
  display: block;
  width: 90%;
  margin: 0 auto;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
}
}

/* Depoimentos */

.depoimentos {
  background-color: var(--bg-white-color);
  text-align: center;
}

.depoimentos ul {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
  width: 100%;
}

.depoimentos ul li {
  width: calc(100% - 30px);
  display: block;
  margin: 15px;
  background-color: var(--bg-whitek-color);
  border-radius: 16px;
  border: 2px solid rgba(242, 83, 123, .1);
  text-align: left;
  padding: 35px 30px;
}

.depoimentos ul li p {
  margin: 0;
}

.depoimentos ul li h3 {
  margin: 20px 0 0;
  font-weight: 400;
  color:var(--primary-color);
}

@media screen and (max-width:991px) {
.depoimentos ul li {
  margin: 10px 20px 10px 0;
}
}

/* Blog */

.blog {
  background-color: var(--bg-white-color);
}

.blog .info {
  width: 50%;
  float: left;
  position: relative;
}

.blog .info:nth-of-type(2) {
  width: 40%;
  float: right;
}

.blog .info .af-filter {
  display: flex;
}

.blog .info .af-filter p {
  padding: 5px 0 0;
  margin: 0;
}

.blog .info .af-filter select {
  background-color: var(--bg-white-color);
  padding: 0 30px;
  color: var(--primary-color);
  border-radius: 50px;
  border: 1pt solid var(--primary-color);
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23f2537b' d='M11.475 14.475L7.85 10.85q-.075-.075-.112-.162T7.7 10.5q0-.2.138-.35T8.2 10h7.6q.225 0 .363.15t.137.35q0 .05-.15.35l-3.625 3.625q-.125.125-.25.175T12 14.7t-.275-.05t-.25-.175'/%3E%3C/svg%3E");
}

.blog .info .af-filter select:required:invalid,
.blog .info .af-filter select option {
  color:var(--primary-color);
}

.blog ul {
  float: left;
  width: calc(100% + 20px);
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0 -10px;
}

.blog ul li {
  width: 33.3333333%;
  margin: 0;
  padding: 10px;
}

.blog ul li a {
  display: block;
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
  transition: ease .4s;
}

.blog ul li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: ease .9s;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0) 100%);
}

.blog ul li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease .9s;
}

.blog ul li a div {
  position: absolute;
  width: 80%;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.blog ul li a h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}

.blog ul li a p {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  color: #fff;
  padding: 20px 0 0;
  margin: 0;
  transition: ease .9s;
}

.blog ul li a .btn {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 400;
  min-width: 1px;
  margin: 0 0 30px;
}

.blog ul li a:hover img,
.blog ul li a:hover::before {
  opacity: 0;
}

.blog ul li a:hover p {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}

.pages-number {
  padding: 60px 0 0;
  text-align: center;
}

.pages-number a,
.pages-number span {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 15px;
  background-color: #5e0cec;
  border: 0;
  font-weight: 600;
  color: #fff;
  margin: 0 5px;
  border-radius: 4px;
  opacity: .5;
  transition: all .3s;
}

.pages-number a:hover,
.pages-number span:hover {
  opacity: 1;
}

.pages-number span {
  opacity: 1;
}

@media screen and (max-width:768px) {
.blog .info {
  width: 100%;
}

.blog .info:nth-of-type(2) {
  width: 100%;
}

.blog ul li {
  width: 100%;
}

.blog ul li a div {
  width: 80%;
  left: 10%;
}
}

/* Planos */

.planos {
  background-color: var(--bg-white-color);
}

.planos .info {
  text-align: center;
  margin: 0 0 60px;
}

.planos p.obs {
  float: left;
}

.plano-toggle {
  float: right;
  border-radius: 30px;
  background-color: var(--bg-gray-color);
  margin: 0 0 30px;
}

.planos input[type="radio"] {
  display: none;
}

.planos label {
  font-family: 'Poppins';
  display: inline-block;
  text-align: center;
  min-width: 130px;
  cursor: pointer;
  float: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--type-gray-color);
  line-height: 1.2;
  padding: 15px 15px;
  border-radius: 40px;
  opacity: 1;
  margin: 0;
  background-color: transparent;
}

.toggle1:checked + label,
.toggle2:checked + label {
  background-color: var(--primary-color);
  color: #fff;
}

.mensal {
  display: block;
}

.hide-price .mensal {
  display: none;
}

.anual {
  display: none;
}

.hide-price .anual {
  display: block;
}

.planos ul.clearfix {
  display: flex;
  width: 100%;
  padding: 50px 10px;
  margin: 15px 0 0;
  border-radius: 10px;
  background-color: var(--bg-gray-color);
}

.planos ul .item {
  display: block;
  flex: 1;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.planos ul .item .title-common {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 9px;
  color: var(--primary-color);
  opacity: 1;
}

.planos ul .item h3 {
  font-size: 24px;
  color: var(--primary-color);
}

.planos ul .item:nth-of-type(2) {
  background-color: var(--bg-white-color);
}


.planos ul .item ul li {
  display: block;
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  color: var(--type-gray-color);
  margin: 0;
  padding: 8px 0 8px 28px;
  background-color: transparent;
  border-radius: 0;
  transition: all .3s;
  text-align: left;
}

.planos ul .item ul li:before {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m10 13.6l5.9-5.9q.275-.275.7-.275t.7.275t.275.7t-.275.7l-6.6 6.6q-.3.3-.7.3t-.7-.3l-2.6-2.6q-.275-.275-.275-.7t.275-.7t.7-.275t.7.275z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 80% auto;
  background-repeat: no-repeat;
}

.planos ul .item .btn {
  margin: 30px 0 0;
}

@media screen and (max-width:768px) {
.planos p.obs {
  text-align: center;
}

.plano-toggle {
  width: 100%;
  margin: 30px 0;
  text-align: center;
}

.planos label {
  float: none;
}

.planos ul.clearfix {
  padding: 30px 30px;
  display: block;
  float: left;
}

.planos ul .item {
  width:  100%;
  flex: none;
  padding: 30px 30px;
}

.planos ul .item:nth-of-type(2) {
  margin: 30px 0;
}
}

/* Video Novo */

.video-new {
  text-align: center;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
}

.video-new h2,
.video-new p {
  color: #fff;
}

.video-new p {
  margin: 30px 0 0;
}

.video-new video {
  width: 100%;
  display: block;
  margin: 50px auto 0;
  max-width: 1080px;
  border-radius: 10px;
  box-shadow: 0px 0px 0px 5px rgba(242, 83, 123, 0.30);
}

.video-new video.video-dark, 
[data-theme="dark"] .video-new video.video-light {
  display: none;
}

[data-theme="dark"] .video-new video.video-dark {
  display: block;
}

/* Marcas */

.marcas {
  background-color: var(--bg-white-color);
  text-align: center;
}

.marcas ul {
  display: block;
  width: 100%;
}

.marcas ul li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  padding: 30px;
}

.marcas ul li img {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 160px;
}

/* CTA */

.cta {
  text-align: center;
  padding: 0;
  background: linear-gradient(to bottom, var(--bg-white-color) 50%, #2a2a2a 50%);
}

.home .cta {
  background: linear-gradient(to bottom, var(--bg-gray-color) 50%, #2a2a2a 50%);
}

.cta .col-af-content {
  padding: 60px 80px;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
  border-radius: 16px;
}

.cta .info {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2,
.cta p.span a {
  color: #fff;
}

.cta form {
  width: 100%;
  min-height: 60px;
  margin: 0 auto;
  text-align: left;
}

.cta .form-af input:not([type="submit"]) {
  height: 60px;
  line-height: 60px;
}

.cta p.span {
  color: #fff;
  text-align: left;
  font-size: 10px;
  margin: 20px 0 0;
}

.cta .form-af div {
  position: initial;
  width: auto;
}

.cta .form-af div.tab  {
  visibility: hidden;
  opacity: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  transition: all 0.3s;
}

.cta .form-af div.tab label {
  display: none!important;
}

#nextBtn,
#BtnSubmit {
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 9px;
  right: 10px;
  height: 42px;
  line-height: 42px;
  border: 0;
  margin: 0;
  outline: 0;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
  padding: 0 25px;
  min-width: 120px;
  transition: all .3s;
  border-radius: 30px;
}

#BtnSubmit {
  display: none;
}

#nextBtn:hover {
  transform: scale(1.05);
}

#prevBtn {
  position: absolute;
  cursor: pointer;
  right: 60px;
  top: 67px;
  height: 40px;
  width: 40px;
  outline: 0;
  border: 0;
  z-index: 2;
  overflow: hidden;
  opacity: .6;
  text-indent: -999px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m10.875 19.3l-6.6-6.6q-.15-.15-.213-.325T4 12q0-.2.063-.375t.212-.325l6.6-6.6q.275-.275.688-.287t.712.287q.3.275.313.688T12.3 6.1L7.4 11h11.175q.425 0 .713.288t.287.712q0 .425-.287.713t-.713.287H7.4l4.9 4.9q.275.275.288.7t-.288.7q-.275.3-.7.3t-.725-.3Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center;
  transition: all .3s;
}

#prevBtn:hover {
  opacity: 1;
}

.cta .form-af div.tab-dots {
  position: absolute;
  right: 5px;
  top: 75px;
  padding: 0;
}

.tab-dots .step {
  display: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.tab-dots .step.active {
  display: block;
}

@media screen and (max-width:991px) {
.cta .col-af-content {
  padding: 40px 35px;
}

#nextBtn,
#BtnSubmit {
  top: 5px;
  right: 5px;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  width: auto;
  padding: 0 15px;
  font-size: 10px;
  min-width: 10px;
}

.cta p.span {
  text-align: left;
  padding: 0 150px 0 0;
}

.tab-dots {
  right: auto;
  right: 25px;
  top: 15px;
  z-index: 9;
}

.tab-dots .step {
  font-size: 18px;
  padding: 0;
}

#prevBtn {
  display: none!important;
  opacity: 0;
  right: auto;
  left: 42px;
  top: 74px;
}
}

/* Footer  */

.footer {
  background-color: #2a2a2a;
  padding: 80px 0 0;
}

.footer .col-af-content div {
  float: left;
  width: 25%;
}

.footer .col-af-content div.item,
.footer .col-af-content div.item div {
  width: 50%;
}

.footer .col-af-content div.info {
  width: 50%;
}

.footer .col-af-content div.social {
  text-align: right;
  position: relative;
  float: right;
  width: auto;
}

.footer .col-af-content div.social .title-common {
  position: absolute;
  top: 50%;
  transform: translate(-140%, -50%);
  margin: 0;
}

.footer .col-af-content div img {
  display: block;
  width: 160px;
  margin: 0;
}

.footer .col-af-content hr {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  outline: 0;
  margin: 40px 0 60px;
  float: left;
  background-color: rgba(255, 255, 255, .05);
}

.footer .col-af-content div .title-common {
  color:var(--primary-color);
  font-weight: 400;
  opacity: 1;
  margin: 0 0 30px;
  font-size: 13px;
  padding: 0;
  border: 0;
  display: block;
  text-transform: none;
}

.footer .col-af-content div .title-common::before {
  display: none;
}

.footer .col-af-content div a,
.footer .col-af-content div p {
  display: block;
  position: relative;
  font-size: 0.89em;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin: 15px 0 0;
  transition: ease .3s;
}

.footer .col-af-content div .icon {
  display: inline-block;
  padding: 13px 20px 13px 50px;
  margin: 0 0 20px;
  background-color: rgba(255, 255, 255, .05);
  border-radius: 30px;
}

.footer .col-af-content div .icon:hover {
  color: #fff;
  background-color:var(--primary-color);
}

.footer .col-af-content div .icon svg {
  display: block;
  position: absolute;
  width: 20px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  fill: #fff;
  transition: ease .4s;
}

.footer .col-af-content div p {
  margin: 25px 0 0;
}

.footer .col-af-content div a:hover {
  color:var(--primary-color);
}

.footer .col-af-content div a.social {
  display: inline-block;
  position: relative;
  margin: 0 0 0 5px;
  padding: 0;
  width: 46px;
  height: 46px;
  opacity: 1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .1);
}

a.social svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  transform: translate(-50%, -50%);
  fill: #fff;
  transition: ease .4s;
}

.footer .col-af-content div a.social:hover {
  background-color:var(--primary-color);
}

.footer .col-af-content div a.social:hover svg {
  fill: #fff;
}

@media screen and (max-width:768px) {
.footer .col-af-content div,
.footer .col-af-content div.item,
.footer .col-af-content div.item div,
.footer .col-af-content div.info {
  width: 100%;
  text-align: center;
}

.footer .col-af-content div.social {
  text-align: center;
}

.footer .col-af-content hr {
  margin: 40px 0;
}

.footer .col-af-content div img {
  width: 120px;
  margin: 0 auto;
}

.footer .col-af-content div .title-common {
  margin: 60px 0 30px!important;
}

.footer .col-af-content div.social .title-common {
  position: relative;
  display: block;
  top: auto;
  transform: none;
}

.footer .col-af-content div a.social {
  margin: 0 5px;
}

.footer .col-af-content div .icon {
  padding: 13px 20px;  
  margin: 0 auto 30px;
  width: 90%;
  display: block;
}

}

/* Copyright */

.footer .col-af-content .end {
  width: 100%;
  margin: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer .col-af-content .end div {
  width: 50%;
  float: left;
  text-align: left;
}

.footer .col-af-content .end div:nth-child(2) {
  text-align: right;
}

.footer .col-af-content .end div p {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  line-height: 60px;
  color: #fff;
  margin: 0 10px 0 0;
}

.footer .col-af-content .end div a {
  display: inline-block;
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 60px;
  color: #fff;
}

.footer .col-af-content .end div img {
  display: block;
  width: 65px;
  max-width: 65px;
  margin: 0 0 -3px;
}

@media screen and (max-width:768px) {
.footer .col-af-content .end {
  padding: 20px 20px 40px;
}

.footer .col-af-content .end div,
.footer .col-af-content .end div:nth-child(2) {
  width: 100%;
  text-align: center;
}

.footer .col-af-content .end div p {
  line-height: 1.5;
  margin: 10px 10px 10px 0;
}
}

/* Animate */

.anime {
  opacity: 0;
  transition: ease .8s;
  transition-delay: .3s;
}

.come-in {
  opacity: 1;
}

.anime.already-visible {
  opacity: 1;
  -webkit-transform: none!important;
  transform: none!important;
}

.anime.fadeInUp {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

.anime.fadeInUp.come-in {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.anime.delay {
  transition-delay: .9s;
}

/* OWL */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  display: flex;
  padding-left: 0!important;
  -ms-touch-action: pan-Y;
}

.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;
  z-index: 2;
  -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;
  display: flex;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.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;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.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 {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -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: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

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

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

.owl-nav {
  display: block;
  width: 100%;
  z-index: 10;
}

.owl-nav button {
  z-index: 10;
  display: inline-block;
  cursor: pointer;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #101430;
  transition: all .3s;
  border-radius: 50%;
}

.owl-nav button.disabled {
  opacity: 0;
}

.owl-nav button.owl-prev {
  left: -60px;
}

.owl-nav button.owl-next {
  right: -60px;
}

.owl-nav button svg {
  z-index: 10;
  display: block;
  width: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
}

.owl-dots {
  display: inline-block;
  width: 95%;
  position: absolute;
  text-align: center;
  left: 0;
  z-index: 2;
  bottom: -35px;
}

.owl-dots .owl-dot {
  display: inline-block;
  border: 0;
  width: 19px;
  height: 4px;
  padding: 0;
  margin: 6px 8px;
  outline: 0;
  transition: all .3s;
  background-color:var(--primary-color);
  opacity: .4;
  border-radius: 10px;
}

.owl-dots .owl-dot.active {
  opacity: 1;
}

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

/* Video Modal */

.YouTubePopUp-Wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.9);
  top: 0;
  left: 0;
  z-index: 99;
}

.YouTubePopUp-animation {
  opacity: 0;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: YouTubePopUp;
}

@keyframes YouTubePopUp {
0% {
 opacity: 0;
}
100% {
 opacity: 1;
}
}

.YouTubePopUp-Content {
  max-width: 800px;
  width: 100%;
  background-color: transparent;
  display: block;
  margin: 0;
  max-height: 100%;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.YouTubePopUp-Hide {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: YouTubePopUpHide;
}

@keyframes YouTubePopUpHide {
0% {
 opacity: 1;
}
100% {
 opacity: 0;
}
}

.YouTubePopUp-Close {
  cursor:pointer;
  display: block;
  width: 60px;
  height: 60px;
  margin: 20px auto 0;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0.4 8C1 1.6 9.6-2.3 14.4 2.4 29.7 17.5 44.8 32.8 60.1 48 75.4 33 90.4 17.7 105.6 2.6 108.1 0.6 111.8-0.7 114.8 1.2 120 3.2 121.6 10.7 117.7 14.7 102.6 29.8 87.5 45 72.3 60.1 87.4 75.5 102.8 90.6 118 106 120.3 108.8 120.5 113.2 118.4 116.2 116.1 119.8 110.9 120.9 107.2 118.8 105.5 117.9 104.3 116.3 103 115 88.7 100.8 74.5 86.4 60.1 72.3 45.1 87.3 30.2 102.3 15.2 117.2 11.5 121.4 4 120.4 1.5 115.4 -0.8 112.2 0.5 107.8 3.1 105.1 18.1 90.1 33.1 75.1 48.1 60.1 33.2 45.3 18.3 30.4 3.5 15.5 1.4 13.7 0 10.8 0.4 8Z' fill='%23f2537b'/%3E%3C/svg%3E");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px auto;
}

.embed-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  margin:0;
  overflow: hidden; 
  max-width: 100%; 
  height: auto; 
} 

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}


/* Contato */

.contato {
  background-color: var(--bg-white-color);
  position: relative;
}

.contato .info {
  width: 40%;
  float: left;
}

.contato .info h1 {
  margin: 0 0 30px;
}

.contato .info hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border);
  border: 0;
  outline: 0;
  margin: 50px 0 30px;
}

.contato .info h3 {
  position: relative;
  padding: 10px 10px 10px 35px;
  margin: 25px 0 0;
}

.contato .info h3 svg {
  display: block;
  position: absolute;
  width: 20px;
  left: 0;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  fill: #fff;
  transition: ease .4s;
}

.contato .info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--type-gray-color);
  line-height: 1.5;
  margin: 10px 0 0;
  opacity: .8;
}

.contato .info a:hover {
  color: var(--primary-color);
}

.contato form h3 {
  color: #fff;
}

.contato .form-af {
  float: right;
  width: 45%;
  padding: 60px;
  border-radius: 16px;
  background: -webkit-linear-gradient( -39deg, rgb(254,157,54) 0%, rgb(242,83,123) 100%);
}

@media screen and (max-width:991px) {
.contato .form-af {
  width: 100%;
  margin: 60px 0 0;
  padding: 30px;
}

.contato .info {
  width: 100%;
}
}

/* Inputs */

.form-af {
  display: block;
  margin: 0;
  position: relative;
}

.form-af input[type=text].naoexibir,
.form-af input[type=url].naoexibir {
  height: 0;
  width: 0;
  border: 0!important;
  outline: 0;
  padding: 0!important;
  background: transparent;
}

.form-af div {
  width: 100%;
  padding: 10px 0;
  margin: 0;
  float: left;
  position: relative;
}

.form-af span {
  display: block;
  width: 100%;
  float: left;
  font-size: 12px;
  padding: 0 10px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  opacity: .95;
}

.form-af span a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}

.form-af label {
  font-family: 'Poppins';
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin: 0;
  position: absolute;
  top: 27px;
  left: 25px;
  transition: ease .3s;
}

.form-af input:focus + label,
.form-af input.not-empty + label,
.form-af textarea:focus + label,
.form-af textarea.not-empty + label,
.form-af input.invalidPattern + label {
  font-size: 9px;
  opacity: 1;
  left: 15px;
  top: 17px;
  padding: 0 10px;
}

.form-af select,
.form-af input:not([type="submit"]),
.form-af textarea {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  width: 100%;
  height: 55px; 
  line-height: 55px;
  margin: 0;
  outline: 0;
  border: 2px solid rgba(255,255,255,.4);
  background-color: rgba(255,255,255,1);
  background-size: 11px auto;
  background-position: right 12px center;
  background-repeat: no-repeat;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 10px 0 23px;
  border-radius: 40px;
  transition: all 0.3s;
}

.cta .form-af input:not([type="submit"]){
  padding: 0 10px 0 20px;
}

.form-af select {
  line-height: 52px;
  background-size: 22px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%232c2c2c'%3E%3Cpath d='M24 24H0V0h24v24z' fill='none' opacity='.87'/%3E%3Cpath d='M15.88 9.29L12 13.17 8.12 9.29c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41-.39-.38-1.03-.39-1.42 0z'/%3E%3C/svg%3E");
}

.form-af textarea {
  height: 110px;
  line-height: 1.5;
  resize: none;
  padding: 20px 20px;
}

.form-af select:required:invalid {
  color: var(--type-gray-color);
  font-size: 15px;
  font-weight: 400;
}

.form-af select option[value=""][disabled] {
  display: none;
}

.form-af select option {
  color: var(--type-gray-color);
}

.form-af select:focus,
.form-af input:not([type="submit"]):focus,
.form-af textarea:focus {
  box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, .3);
}

.form-af input[type=submit] {
  cursor: pointer;
  border: 0;
  outline: 0;
  background-image: none;
  min-width: 1px;
  width: 100%;
  padding: 0 30px;
  height: 55px;
  line-height: 55px;
}

/* Enviado */

.page-template-page-enviado .header,
.page-template-page-enviado .footer,
.page-template-page-enviado .cta,
.page-template-page-enviado .end,
.error404 .header,
.error404 .footer,
.error404 .cta,
.error404 .end {
  display: none;
}

.col-af.pedido-enviado {
  background-color: var(--bg-white-color);
  min-height: 100vh;
}

.pedido-enviado .col-af-content {
  max-width: 600px;
  text-align: center;
  padding: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pedido-enviado .col-af-content h1,
.pedido-enviado .col-af-content .entry-content p {
  color: var(--type-gray-color);
}

.pedido-enviado .col-af-content a.btn {
  margin: 30px 0 0;
}

.error404 .pedido-enviado .col-af-content svg {
  display: block;
  width: 60px;
  margin: 0 auto 30px;
  fill: #fff;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--primary-color);
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px var(--primary-color);
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
      stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%,
  100% {
      transform: none;
  }
  50% {
      transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
      box-shadow: inset 0px 0px 0px 30px var(--primary-color);
  }
}

/* One column */

.one-column #content {
  margin: 0 auto;
  max-width: 1300px;
  width: 90%;
  position: relative;
  padding: 80px 0;
}

.single-attachment #content {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}

/* Styles */

.screen-reader-text {
  position: absolute;
  left: -9000px;
}

/* Share Buttons */

.crunchify-social {
  width: 100%;
  height: auto;
  padding: 40px 0 10px;
  margin: 0;
}
 
.crunchify-social a {
  min-width: 20px;
  margin: 5px 10px 5px 0;
  padding: 10px 25px 10px 45px;
  text-decoration: none;
  background-color: var(--primary-color);
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: 20px center;
}

@media screen and (max-width: 768px) {
.crunchify-social a {
  float: left;
  margin: 5px;
  width: calc(50% - 10px);
}
}
 
.crunchify-social a:nth-of-type(1) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19.05 4.91A9.816 9.816 0 0 0 12.04 2c-5.46 0-9.91 4.45-9.91 9.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21c5.46 0 9.91-4.45 9.91-9.91c0-2.65-1.03-5.14-2.9-7.01m-7.01 15.24c-1.48 0-2.93-.4-4.2-1.15l-.3-.18l-3.12.82l.83-3.04l-.2-.31a8.264 8.264 0 0 1-1.26-4.38c0-4.54 3.7-8.24 8.24-8.24c2.2 0 4.27.86 5.82 2.42a8.183 8.183 0 0 1 2.41 5.83c.02 4.54-3.68 8.23-8.22 8.23m4.52-6.16c-.25-.12-1.47-.72-1.69-.81c-.23-.08-.39-.12-.56.12c-.17.25-.64.81-.78.97c-.14.17-.29.19-.54.06c-.25-.12-1.05-.39-1.99-1.23c-.74-.66-1.23-1.47-1.38-1.72c-.14-.25-.02-.38.11-.51c.11-.11.25-.29.37-.43s.17-.25.25-.41c.08-.17.04-.31-.02-.43s-.56-1.34-.76-1.84c-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31c-.22.25-.86.85-.86 2.07c0 1.22.89 2.4 1.01 2.56c.12.17 1.75 2.67 4.23 3.74c.59.26 1.05.41 1.41.52c.59.19 1.13.16 1.56.1c.48-.07 1.47-.6 1.67-1.18c.21-.58.21-1.07.14-1.18s-.22-.16-.47-.28'/%3E%3C/svg%3E");
}
 
.crunchify-social a:nth-of-type(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18.205 2.25h3.308l-7.227 8.26l8.502 11.24H16.13l-5.214-6.817L4.95 21.75H1.64l7.73-8.835L1.215 2.25H8.04l4.713 6.231zm-1.161 17.52h1.833L7.045 4.126H5.078z'/%3E%3C/svg%3E");
}

.crunchify-social a:nth-of-type(3) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95'/%3E%3C/svg%3E");
}
 
.crunchify-social a:nth-of-type(4) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93zM6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37z'/%3E%3C/svg%3E");
}

/* Format */

.hero-single {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-single::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--border-dark);
}

.hero-single .info {
  width: 60%;
  float: left;
}

.hero-single p span {
  display: inline-block;
  margin: 0 20px 0 0;
}

.hero-single h1,
.hero-single p {
  color: var(--type-gray-color);
}

.hero-single span.btn {
  display: inline-block!important;
  width: auto!important;
  height: 28px;
  line-height: 26px;
  min-width: auto;
  font-size: 10px;
  padding: 0 20px;
  margin: 0 0 50px!important;
}

.breadcrumb {
  display: block;
  width: 100%;
  margin: 0 0 30px;
}

.breadcrumb li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--type-gray-color);
  line-height: 1.5;
  opacity: .9;
  margin: 0 10px 0 0;
  padding: 0 0 0 10px;
  border-left: 1px solid var(--border);
}

.breadcrumb li a {
  color: var(--type-gray-color);
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li:nth-of-type(1) {
  border-left: 0;
  padding: 0;
}

.insight .col-af-content {
  max-width: 980px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5 {
  margin: 30px 0 20px;
}

.entry-content h1:nth-of-type(1),
.entry-content h2:nth-of-type(1),
.entry-content h3:nth-of-type(1),
.entry-content h4:nth-of-type(1),
.entry-content h5:nth-of-type(1) {
  margin: 0 0 30px 0;
}

.entry-content p {
  margin: 30px 0;
  opacity: 1;
}

.entry-content a:not(.btn) {
  font-size: 16px;
  font-weight: 400;
  color: var(--type-gray-color);
  text-decoration: underline;
}

.entry-content ul {
  display: block;
  list-style: circle;
  padding: 0 0 0 30px;
}

.entry-content li {
  display: list-item;
  list-style: circle;
  line-height: 1.6;
  padding: 0 0 0 15px;
  color: var(--type-gray-color);
  margin: 25px 0;
}

.entry-content iframe {
  aspect-ratio: 16 / 9;
  max-width: 760px !important;
  width: 100% !important;
  margin: 30px auto;
}

/* Imagens */

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
figure {
  max-width: 700px;
  width: 100%;
  height: auto;
}

.alignleft,
img.alignleft,
.alignright,
img.alignright,
.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin: 30px auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  max-width: 700px;
  width: 100%!important;
  background: #fff;
  line-height: 18px;
  margin-bottom: 20px;
  padding: 0;
  text-align: center;
}

.wp-caption img {
  margin: 0;
}

.wp-caption p.wp-caption-text {
  color: #888;
  font-size: 12px;
  margin: 5px;
  text-align: center;
}

.wp-smiley {
  margin: 0;
}

.gallery {
  margin: 0 auto;
}

.gallery::after {
  content: '';
  display: table;
  clear: both;
}

.gallery .gallery-item {
  float: left;
  margin-top: 0;
  text-align: center;
  padding: 15px;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0;
}

.gallery .gallery-caption {
  color: #888;
  font-size: 12px;
  margin: 0 0 12px;
}

.gallery dl {
  margin: 0;
}

.gallery br {
  display: none;
}

@media screen and (max-width: 768px) {
.gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item,
.gallery-columns-4 .gallery-item,
.gallery-columns-5 .gallery-item {
  width: 50%;
}
}

/* Dark mode */

.theme-switch-wrapper {
  position: absolute;
  left: 180px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  padding: 0!important;
  width: auto!important;
  align-items: center;
  float: right!important;
}

.theme-switch {
  display: inline-block;
  height: 23px;
  position: relative;
  width: 38px;
  margin: 0;
  float: left;
}

.theme-switch input {
  display:none;
}

.theme-slider {
  background-color: #ccc;
  width: 100%!important;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.theme-slider:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23333333' d='m3.55 19.09l1.41 1.41l1.8-1.79l-1.42-1.42M12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6s6-2.69 6-6c0-3.32-2.69-6-6-6m8 7h3v-2h-3m-2.76 7.71l1.8 1.79l1.41-1.41l-1.79-1.8M20.45 5l-1.41-1.4l-1.8 1.79l1.42 1.42M13 1h-2v3h2M6.76 5.39L4.96 3.6L3.55 5l1.79 1.81zM1 13h3v-2H1m12 9h-2v3h2'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 100% auto;
  bottom: 6px;
  content: "";
  height: 12px;
  left: 4px;
  position: absolute;
  transition: .4s;
  width: 16px;
  opacity: .6;
}

input:checked + .theme-slider {
  background-color: #1e1e1e;
}

input:checked + .theme-slider:before {
  transform: translateX(14px);
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12.058 20q-3.333 0-5.667-2.334T4.058 12q0-2.47 1.413-4.535q1.414-2.067 4.01-2.973q.306-.107.536-.056t.381.199t.192.38q.04.233-.063.489q-.194.477-.282.971T10.158 7.5q0 2.673 1.863 4.537q1.864 1.863 4.537 1.863q.698 0 1.277-.148q.58-.148.988-.24q.218-.04.399.01t.292.176q.115.125.156.308t-.047.417q-.715 2.45-2.803 4.013T12.058 20'/%3E%3C/svg%3E");

}

.theme-slider.round {
  border-radius: 320px;
}

.theme-slider.round:before {
  border-radius: 50%;
}

@media screen and (max-width:991px) {
.theme-switch-wrapper {
  left: 120px;
}
}

/*.theme-switch {
  display: inline-block;
  height: 25px;
  position: relative;
  width: 25px;
  margin: 0;
  float: left;
}

.theme-switch input {
  display:none;
}

.theme-slider {
  background-color: rgba(0, 0, 0, .1);
  width: 100%!important;
  height: 100%;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: .4s;
}

.theme-slider:before {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23333333' d='m3.55 19.09l1.41 1.41l1.8-1.79l-1.42-1.42M12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6s6-2.69 6-6c0-3.32-2.69-6-6-6m8 7h3v-2h-3m-2.76 7.71l1.8 1.79l1.41-1.41l-1.79-1.8M20.45 5l-1.41-1.4l-1.8 1.79l1.42 1.42M13 1h-2v3h2M6.76 5.39L4.96 3.6L3.55 5l1.79 1.81zM1 13h3v-2H1m12 9h-2v3h2'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 100% auto;
  content: "";
  height: 18px;
  width: 18px;
  left: 50%;
  top: 50%;
  position: absolute;
  opacity: .6;
  transition: .4s;
  transform: translate(-50%, -50%);
}

input:checked + .theme-slider {
  background-color: rgba(0, 0, 0, .2);
}

input:checked + .theme-slider:before {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12.058 20q-3.333 0-5.667-2.334T4.058 12q0-2.47 1.413-4.535q1.414-2.067 4.01-2.973q.306-.107.536-.056t.381.199t.192.38q.04.233-.063.489q-.194.477-.282.971T10.158 7.5q0 2.673 1.863 4.537q1.864 1.863 4.537 1.863q.698 0 1.277-.148q.58-.148.988-.24q.218-.04.399.01t.292.176q.115.125.156.308t-.047.417q-.715 2.45-2.803 4.013T12.058 20'/%3E%3C/svg%3E");
}

.theme-slider.round {
  border-radius: 320px;
}

.theme-slider.round:before {
  border-radius: 50%;
}

@media screen and (max-width:991px) {
.theme-switch-wrapper {
  left: 120px;
}
}*/
