:root {
  --everett: 'Fakt', Helvetica, sans-serif;
  --domaine: 'Domaine Display Web', Georgia, serif;
  --darkGreen: #14685e;
  --green: #3c8369;
  --lightGreen: rgba(50, 135, 140, 0.12);
  --lightBlue: rgba(65, 121, 204, 0.12);
  --blue: #30709e;
  --darkBlue: #144668;
  --violet: #4737aa;
  --lightViolet: #f5f3ff;
  --orange: #fcc88c;
  --grey: #d3d3d3;
  --lightGrey: #f9f9f9;
}

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

@font-face {
  font-family: 'Everett';
  src: url('fonts/Everett-Light.woff2') format('woff2'),
    url('fonts/Everett-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kern';
  src: url('fonts/Kern-Regular.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kern';
  src: url('fonts/Kern-Medium.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Kern';
  src: url('fonts/Kern-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fakt';
  src: url('fonts/FaktPro-Normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fakt';
  src: url('fonts/FaktPro-Blond.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Domaine Display Web';
  src: url('fonts/DomaineDisplayWeb-Regular.woff2') format('woff2'),
    url('fonts/DomaineDisplayWeb-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

body {
  margin: auto;
  color: #000;
  font-family: var(--everett);
}

h1,
h2 {
  line-height: 1;
  font-family: var(--denver);
}

p {
  font-family: var(--everett);
  font-weight: 400;
  font-style: normal;
  line-height: 1.68;
}

p.lh-0 {
  line-height: 1;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2 {
  font-weight: 500;
}

* {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

img {
  width: 100% !important;
  height: auto !important;
}

/* Cursor styles */

.cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  background-color: var(--orange);
  z-index: 999999999;
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease;
  pointer-events: none;
  /* transition-delay: all 0.5s !important; */
}

.cursor.red {
  background-color: #911716;
}

.cursor.black {
  background-color: #000;
}

.cursor.is-hover {
  width: 30px;
  height: 30px;
  opacity: 0.7;
}

.cursor.is-down {
}

a {
  cursor: none !important;
}

/* Generals */

.w-fit {
  width: fit-content;
}

.lh1 {
  line-height: 1;
}

.font-inherit {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.margin-auto {
  margin: auto;
}

.mv-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.m-auto {
  margin: auto;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-0 {
  margin-right: 0;
}

.ml-0 {
  margin-left: 0;
}

.w-35 {
  width: 35%;
}

.w-max {
  width: max-content;
}

.w-min {
  width: min-content;
}

.h-50-vh {
  height: 50vh;
}

.h-80-vh {
  height: 80vh;
}

.h-90-vh {
  height: 90vh;
}

.h-100-vh {
  height: 100vh;
}

.min-h-100 {
  min-height: calc(100vh - 59px);
  min-height: calc(calc(var(--vh, 1vh) * 100) - 59px);
}

.min-h-100-vh-m {
  min-height: calc(var(--vh, 1vh) * 100);
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.z--1 {
  z-index: -1;
}

.no-decoration {
  text-decoration: none;
}

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

.sticky {
  position: sticky;
  position: -webkit-sticky;
}

.general-container {
  padding: 50px 100px;
}

.h-container {
  padding-left: 100px;
  padding-right: 100px;
}

.pointer {
  cursor: pointer;
}

.list-none,
.list-none ul {
  list-style-type: none;
}

.absolute-cover {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.absolute-center {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.black-overlay {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
}

.anchor {
  cursor: none;
}

.container-xs {
  padding-left: 60px;
  padding-right: 60px;
}

.container-left-xs {
  padding-left: 60px;
}

.container {
  padding-left: 120px;
  padding-right: 120px;
}

.container-left {
  padding-left: 120px;
}

.container-right {
  padding-right: 120px;
}

.container-xl {
  padding-left: 250px;
  padding-right: 250px;
}

.container-xl-left {
  padding-left: 250px;
  padding-right: 0px;
}

.container-xl-right {
  padding-right: 250px;
  padding-left: 0px;
}

.w-max {
  width: max-content;
}

.w-max-container {
  width: calc(100vw - 120px);
}

.h-max {
  height: max-content;
  height: -moz-max-content;
  /* height: intrinsic; */
}

.pointer {
  cursor: pointer;
}

.pointers-none {
  pointer-events: none;
}

.pointers-all {
  pointer-events: all;
}

.h-40 {
  height: 40%;
}

.h-60 {
  height: 60%;
}

.h-80 {
  height: 80%;
}

.min-h-100-vh {
  min-height: calc(100vh - 59px);
  min-height: calc(calc(var(--vh, 1vh) * 100) - 59px);
}

.h-min {
  height: min-content;
}

.w-45 {
  width: 45%;
}

.w-70-lsf {
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
}

.w-100-vw {
  width: 100vw;
}

.w-min {
  width: min-content;
}

.w-max {
  width: max-content;
}

.lh1 {
  line-height: 1;
}

.tty50 {
  transform: translateY(50%);
}

.ttn {
  text-transform: none;
}

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

.no-deco,
.no-deco * {
  text-decoration: none;
}

.has-after,
.header-nav a,
.footer-nav-inner a {
  text-decoration: none;
  display: block;
  position: relative;
  display: inline-flex;
  height: inherit;
  padding-bottom: 4px;
  color: #fff;
  line-height: 1;
}

.has-after::after,
.header-nav a::after,
.footer-nav-inner a::after,
#mobile-menu a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--darkGreen);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}

.has-after.f2::after,
.has-after.f1::after,
.has-after.f3::after,
#mobile-menu a::after {
  height: 2px;
}

.has-after.eki-violet {
  color: var(--grey);
}

.has-after.grey:hover {
  color: BLACK;
}

.has-after.black::after {
  background-color: #000;
}

.has-after.black {
  color: #000;
}

.has-after.white::after {
  background-color: #fff;
}

.has-after.white {
  color: #fff;
}

.has-after.eki-violet:after {
  background-color: var(--violet);
}

.footer-nav-inner a::after {
  background-color: #000;
}

#mobile-menu a::after {
  background-color: white;
}

.has-after:hover::after,
.header-nav a:hover::after,
.footer-nav-inner a:hover::after,
.has-after.active::after,
#mobile-menu a:hover::after {
  transform: scaleX(1);
}

.header-nav a::after {
  background-color: var(--grey);
}

.jic {
  justify-content: space-between;
  align-items: center;
}

.small-icon {
  height: 8px;
}

/* FAQ */
.faq-image {
  width: 25%;
  height: 80%;
  bottom: -10%;
}

.faq-span-title {
  border: 1px solid black;
  height: 1px;
  align-self: center;
  flex-grow: 1;
  margin: 0 20px;
}

.faq-filter > h2:not(:first-child) {
  color: var(--grey);
}

.faq-filter h2 {
  transition: all 0.3s ease;
}

.faq-filter > h2:hover {
  color: #000 !important;
}

.faq-content {
  /* min-height: 500px; */
}

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--grey);
  padding: 35px 0px;
}

.faq-item::after {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 40px;
  margin-right: 20px;
  content: '+';
  color: #000;
  font-size: 24px;
  transition: all 0.3s ease;
  /* transform-origin: center; */
}

.faq-item[area-expanded='true']::after {
  transform: rotate(-45deg);
}

.faq-item p:last-child,
.faq-item p:nth-child(2) {
  color: var(--darkgrey);
  margin-top: 10px;
}

.faq-item {
  max-height: min-content;
  max-height: -moz-min-content;
  /* max-height: intrinsic; */
  transition: all 0.3s ease;
  background-color: var(--lightpink);
  cursor: pointer;
}

.faq-item[area-expanded='true'] {
  max-height: 500px;
}

.faq-item[area-expanded='false'] div:not(:first-child) {
  display: none;
}

.faq-item[area-expanded='true'] div:not(:first-child) {
  transition: all 0.3s ease;
}

.faq-question {
  position: relative;
}

.faq-question::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: '';
  background-image: url('/wp-content/uploads/2020/01/arrow-pink.svg');
  height: 100%;
  transition: all 0.3s ease;
  width: 8.5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-item[area-expanded='true'] .faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.pre-load {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: var(--orange);
  transform: translateY(100%);
  top: 0;
  pointer-events: none;
  left: 0;
  z-index: 99999;
}

.f0 {
  font-size: 4.2rem;
}

/* End MarcoPolo general's & start Medizin styles */

/* General Styles */

.domaine.f1 {
  font-size: 3.3rem;
}

.evrett {
  font-family: var(--everett);
}

.domaine {
  font-family: var(--domaine);
}

#main {
  margin-top: 59px;
}

#main.mt0 {
  margin-top: 0;
}

.grey {
  color: var(--grey);
}

.med-light-green-bg {
  background-color: var(--lightGreen);
}

.med-d-green {
  color: var(--darkGreen);
}

.med-d-green-bg {
  background-color: var(--darkGreen);
}

.med-green {
  color: var(--green);
}

.med-green-bg {
  background-color: var(--green);
}

.med-green-border-bottom {
  border-bottom: 1px solid var(--green);
}

.med-violet {
  color: var(--violet);
}

.med-violet-bg {
  background-color: var(--violet);
}

.med-light-violet-bg {
  background-color: var(--lightViolet);
}

.med-light-blue-bg {
  background-color: var(--lightBlue);
}

.med-blue {
  color: var(--blue);
}

.med-blue-bottom {
  border: 1px solid var(--blue);
}

.med-blue-border-bottom {
  border-bottom: 1px solid var(--blue);
}

.med-blue-bg {
  background-color: var(--blue);
}

.med-dark-blue {
  color: var(--darkBlue);
}

.med-dark-blue-bg {
  background-color: var(--darkBlue);
}

.med-blue-border {
  border: 1px solid var(--blue);
}

.med-orange {
  color: var(--orange);
}

.med-orange-bg {
  background-color: var(--orange);
}

.med-light-grey {
  color: var(--lightGrey);
}

.med-light-grey-bg {
  background-color: var(--lightGrey);
}

.white-border {
  border: 1px solid white;
}

.starter-top {
  padding-top: 180px;
}

.no-overlay .black-overlay {
  display: none;
}

.ozono-nav li:not(:last-child) {
  margin-bottom: 15px;
}

/* CTA's */

.main-cta,
.secondary-cta,
.header-cta {
  border-radius: 50px;
  display: flex;
  padding: 15.5px 55px;
  width: max-content;
}

.header-cta {
  padding: 10px 20px;
}

.main-cta.home-cta {
  padding: 20.5px 55px;
}

.main-cta {
  transition: all 0.3s ease;
}

.main-cta a,
.secondary-cta a {
  text-decoration: none;
  line-height: 1;
}

.main-cta.home-cta:hover {
  padding: 20.5px 70px;
  background-color: var(--green);
}

/* Header Desktop */

.header-inner {
  position: relative;
  z-index: 99;
}

#mobile-menu a {
  font-family: var(--domaine);
  font-size: 3.5rem;
  color: white;
  text-decoration: none;
  text-transform: capitalize;
  display: block;
  width: max-content;
  position: relative;
  transition: opacity 0.3s ease;
}

#mobile-menu {
  width: max-content;
}

#mobile-menu:hover a {
  opacity: 0.3;
}

#mobile-menu a:hover {
  opacity: 1;
}

#mobile-menu li {
  margin-bottom: 10px;
}

/* Header transitions */

header {
  transition: transform 0.3s ease;
  z-index: 99 !important;
}

header.scrolled,
header.menu-is-open {
  transform: translateY(-42px);
}

.header-inner {
  transition: all 0.3s ease;
  padding-top: 15px;
  padding-bottom: 15px;
}

header:not(.menu-is-open) .header-inner.scrolled {
  background-color: #fff;
  margin-top: 0px !important;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
}

.header-inner .logo {
  width: 140px !important;
}

#menu-trigger svg,
#menu-trigger {
  width: 19px !important;
  height: 14.92px !important;
}

.header-inner.scrolled .logo svg {
  width: unset !important;
}

header:not(.menu-is-open) .header-inner.scrolled .logo path {
  fill: var(--darkGreen);
}

header:not(.menu-is-open) .header-inner.scrolled #menu-trigger path {
  stroke: var(--darkGreen);
}

header:not(.menu-is-open) .header-inner.scrolled .header-aob li a {
  color: var(--darkGreen);
}

header:not(.menu-is-open) .header-inner.scrolled .header-aob li::after {
  background-color: var(--darkGreen);
}

.menu-container {
  transform: translateX(130%);
  pointer-events: none;
}

.mobile-nav li {
  margin-bottom: 10px;
  overflow: hidden;
}

.mobile-nav a {
  transform: translateY(110%);
  display: block;
}

.mobile-menu-aob > * {
  opacity: 0;
  transform: translateY(30px);
}

/* Footer Desktop */

.footer-nav-inner li {
  padding-bottom: 10px;
}

.footer-nav-inner a::after {
  background-color: #fff;
}

.footer-social svg {
  height: 20px;
  margin-right: 10px;
}

.footer-social svg path {
  fill: #fff;
}

.form-container input::placeholder {
  color: white;
}

.form-container input {
  background: unset;
  border: 0 !important;
  border-bottom: 1px solid white !important;
  outline: 0 !important;
  /* margin-bottom: 20px; */
  padding-bottom: 5px;
  color: white;
}

.subscribe-form-button {
  background-image: url(/wp-content/uploads/2020/07/arrow-cream.svg) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background: unset;
  width: 30px;
}

/* Medizin Home  */

.news {
  margin-top: -7vw;
}

.news-med {
  border-top: 15px solid var(--orange);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.news-med:hover {
  background-color: var(--green);
  border-top: 15px solid var(--darkGreen);
  box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.news-med * {
  transition: all 0.3s ease;
}

.news-med:hover > * {
  transform: scale(0.95);
}

.news-med:hover h1,
.news-med:hover p {
  color: white;
}

.med-br {
  border-radius: 8px;
}

.med-br-f {
  border-radius: 50px;
}

.white-border {
  border: 1px solid #fff;
}

.servicios-home ul:hover a {
  opacity: 0.3;
}

.servicios-home ul a {
  transition: opacity 0.3s ease;
}

.servicios-home ul a:hover {
  opacity: 1;
}

/* Service Desktop */

.service-landing {
  height: 70vh;
}

.services-list > div:first-child {
  position: relative;
  opacity: 1;
  transform: unset;
}

.services-list > div:not(:first-child) {
  opacity: 0;
  transform: translateY(40px);
}

.page-landing {
  height: 70vh;
}

.services-index {
  top: 150px;
}

/* Empresas Landing */

.empresas-rep img {
  width: 250px !important;
  height: auto !important;
}

/* Ozono Generals */

.ozono-landing-img {
  bottom: 0;
  left: 0;
  transform: translateX(-9vw);
  width: 28vw;
  height: 40%;
  margin-bottom: 30px;
}

.beneficio > img {
  width: auto !important;
  height: 150px !important;
  /* border-radius: 100px; */
  /* background-color: var(--lightViolet); */
  margin: auto;
  margin-bottom: 20px;
}

.empresas .beneficio > img {
  display: none;
}

.pasos-oz {
  transform: translateY(-45%) !important;
}

.pasos-description {
  transform: translateY(-65%) !important;
}

.paso {
  flex-grow: 1;
}

.paso-overlay,
.paso,
.paso-n,
.paso-content * {
  transition: all 0.3s ease;
}

.paso:hover .paso-overlay {
  /* background-color: var(--lightGreen); */
}

.paso:hover {
  transform: scale(1.05);
}

.paso-content {
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.paso-img {
  display: flex;
}
.paso {
  width: 25%;
}
.paso img {
  margin: auto;
  /* height: 120px !important; */
  width: auto !important
  ;
}

.paso-n {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transform: translateY(40%);
}

div.descrip p {
  transition: all 0.3s ease;
}

div.descrip p.changing {
  opacity: 0;
  transform: translateY(20px);
}

.product-header > div:last-child {
  flex-grow: 1;
}

.product-index:not(.active) {
  color: #ccc;
}

.product-index:hover {
  color: #000;
}

.oz-product-description p {
  font-size: 1.25rem;
}

.product:first-child {
  position: relative;
}

.product:not(:first-child) {
  pointer-events: none;
  opacity: 0;
  transform: translateY(60px);
}

/* Start Contact */

.contact-form-container {
  z-index: 99999;
  height: 100vh;
  overflow-y: scroll;
}

.contact-content > div {
  border-bottom: 0px;
}

.contact-bg {
  background-color: rgba(255, 255, 255, 0.76);
}

.contacto-eki-form input,
div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
  background-color: unset !important;
  border: 0px !important;
  border-radius: 0px !important;
  max-width: 100% !important;
  padding-left: 20px !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
  border: 1px solid white !important;
  border-top: 0px !important;
  border-right: 0px !important;
  margin-top: 10px !important;
  color: white !important;
}

ul#wpforms-100-field_3 {
  margin-top: 10px !important;
}

.contacto-eki-form .wpforms-field {
  margin-bottom: 20px !important;
}

.contacto-eki-form label {
  padding-left: 0px !important;
  padding-top: 5px !important;
  font-weight: 300 !important;
  margin-bottom: 0px !important;
  color: white !important;
}

.contacto-eki-form input {
  padding-top: 0px !important;
  padding-left: 0px !important;
  border-bottom: 1px solid white !important;
  color: white !important;
}

div.wpforms-container-full .wpforms-form .wpforms-field:last-child {
  padding-bottom: 0 !important;
}

div.wpforms-container-full {
  margin-bottom: 0px !important;
  position: relative !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  position: absolute !important;
  right: 0 !important;
  border: 0px !important;
  width: 100% !important;
}

div.wpforms-container-full .wpforms-form button[type='submit'] {
  background-color: var(--darkBlue) !important;
  font-family: var(--everett) !important;
  color: #fff !important;
  border: 0px !important;
  width: 100% !important;
}

.wpforms-field-container {
  display: flex !important;
  flex-wrap: wrap !important;
}

.wpforms-field-container > div {
  width: 100% !important;
}

.wpforms-field-container > div:not(:last-child) {
  /* width: 50% !important; */
  padding-bottom: 0 !important;
}

.wpforms-field-container > div:nth-child(even) {
  /* border-left: 1px solid var(--darkBlue) !important; */
}

.wpforms-field-container > div:last-child {
  border-left: 0px solid var(--darkBlue) !important;
}

.contact-content {
  overflow: scroll;
  height: 100vh;
}

.contact-pop-info h1 {
  margin-top: 20px;
}

/* Start Responsiveness */

@media (min-width: 480px) {
  .w-45-ns {
    width: 45%;
  }
}

@media (max-width: 1280px) {
  .f1,
  .domaine.f1 {
    font-size: 3rem;
  }

  .f3 {
    font-size: 1.15rem;
  }

  .ozono-landing-img {
    width: 20vw;
  }
}

@media (max-width: 1080px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .ozono-landing-img {
    display: none;
  }
}

@media (max-width: 960px) {
  .f1,
  .domaine.f1 {
    font-size: 2.5rem;
  }

  .f3 {
    font-size: 1rem;
  }

  .f4 {
    font-size: 0.9rem;
  }

  .pasos-description {
    transform: translateY(-100%) !important;
  }
}

@media (max-width: 768px) {
  .cursor {
    display: none;
  }

  p.lh-copy {
    line-height: 1.8;
  }

  .mt5 {
    margin-top: 2.5rem;
  }

  .pv5 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .container-left {
    padding-left: 60px;
  }

  .container-right {
    padding-right: 60px;
  }

  .service-list-inner {
    padding: 0 !important;
  }

  /* Header Mobile */

  .header-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  header.scrolled,
  header.menu-is-open {
    transform: translateY(-74px);
  }

  .menu-container {
    padding-top: 30px;
  }
  #mobile-menu a {
    font-size: 2.7rem;
  }

  /* Home Mobile */

  .notices-container {
    display: flex;
    justify-content: center;
    padding: 20px;
  }

  .notices-container > p:last-child {
    display: none;
  }

  .notices-container p {
    text-align: center;
    line-height: 1;
  }

  .home-slide {
    height: 70vh;
    min-height: unset;
  }

  .news {
    flex-wrap: wrap;
  }

  .news > a {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  /* Ozono */

  .ozono-landing {
    flex-direction: column;
    padding-left: 0px;
  }

  .soluciones,
  .product {
    flex-direction: column;
  }

  .ozono-landing > div,
  .soluciones > div,
  .product > div {
    width: 100%;
  }

  .ozono-landing > div:first-child {
    padding: 60px;
  }

  .ozono-landing > div:last-child {
    min-height: 50vh;
  }

  .ozono-landing-img {
    display: block;
    bottom: unset;
    left: unset;
    right: 0;
    width: 30vw;
    top: -18%;
    height: 60%;
  }

  .ozono-landing > div:last-child > div:first-child > div {
    width: 90%;
    left: -10%;
  }

  .soluciones > div.measure-ns {
    padding-top: 30px;
  }

  .product-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .product-header h1 {
    width: 100%;
    margin-bottom: 20px;
  }

  .product-index:first-child {
    margin-left: 0;
  }

  .product > div:first-child {
    margin-bottom: 30px;
  }

  .soluciones.reverse {
    flex-direction: column-reverse !important;
  }

  .paso {
    width: 100%;
  }

  /* Services Tablet Mobile */

  .service-landing {
    height: unset;
  }

  .service-landing > div {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .filters-container {
    width: 100%;
    overflow-x: scroll;
  }

  .filters-scroll {
    flex-direction: row;
  }

  .services-index {
    background-color: #fff;
    padding: 10px 20px;
    padding-top: 20px;
    padding-right: 0px;
    top: 69px;
    border-bottom: 1px solid var(--darkGreen);
    margin-bottom: 30px;
  }

  .services-index h2 {
    font-size: 1.8rem;
  }

  .filters-scroll p {
    margin-right: 15px;
    margin-bottom: 5px;
  }
  .service-list-container .service-list-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .services-full {
    padding-right: 20px;
    padding-left: 20px;
  }

  /* EMpresas tablet & mobile */
  .empresas-landing {
    height: 60vh;
  }

  .empresas-rep img {
    display: block;
    margin-bottom: 20px;
  }

  .mobile-w {
    width: 100%;
  }

  /* Covid tablet & mobile */

  .covid-starter h1 {
    margin-bottom: 30px;
  }

  .faq-covid .faq-category {
    margin-bottom: 30px;
  }

  .beneficio {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  /* Fonts Mobile */

  .f0 {
    font-size: 3rem;
  }

  .f1 {
    font-size: 2rem;
  }

  .f2 {
    font-size: 1.8rem;
  }

  .f3 {
    font-size: 1.5rem;
  }

  .f4 {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  p.f4,
  p,
  a,
  a.f4,
  div.lh-copy {
    font-size: 17px;
  }

  /* Padding & Margin Mobile */

  .mr3-ns {
    margin-right: 0.7rem;
  }

  .pv5-ns {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .pv6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .mv6-ns {
    margin: 40px 0px;
  }

  .desktop {
    display: none;
  }

  .top-eki {
    top: 66.19px;
  }

  #content {
    margin-top: 74px;
  }

  .mobile {
    display: block;
  }
  .container,
  .container-xs,
  .container-xl,
  .phrase,
  .nf-ekinews a,
  .ozono-landing > div:first-child,
  .container-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-left {
    padding-left: 20px;
  }

  .container-right {
    padding-right: 20px;
  }

  .column-mobile {
    flex-direction: column;
  }

  .wrap-mobile {
    flex-wrap: wrap;
  }

  /* Home Mobile */

  .header-aob ul {
    display: none;
  }

  .home-slide .absolute-center {
    width: 100%;
  }

  .bloque-h-text {
    margin-bottom: 20px;
  }

  .reverse .bloque-h-text {
    margin-bottom: 0;
    margin-top: 20px;
  }

  .grid-bloque {
    margin-bottom: 40px;
  }

  .servicios-home ul {
    width: 100%;
  }
  /* Ozono Mobile */

  .ozono-landing > div:first-child > div:last-child {
    flex-direction: column;
  }

  .ozono-landing h2 {
    font-size: 1.5rem;
    line-height: initial;
  }

  .ozono-landing .main-cta {
    margin-bottom: 10px;
  }

  .beneficios-oz {
    flex-direction: column;
  }

  .paso {
    margin-bottom: 30px;
    pointer-events: none;
  }

  .pasos-oz {
    flex-direction: column;
    transform: unset !important;
  }

  .paso-img {
    height: unset;
  }

  .pasos-description {
    display: none;
  }

  .product-header > div:last-child {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  .product-index {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .product-cta-container {
    flex-direction: column;
  }

  .product-cta-container > div {
    width: 100%;
  }

  .product-cta-container .main-cta {
    margin-bottom: 10px;
  }

  .product-cta-container .main-cta p {
    margin: auto;
  }

  /* Footer Mobile */

  footer > div > div.w-max {
    flex-direction: column;
  }

  footer div.flex,
  footer nav.flex {
    justify-content: center;
    align-items: center;
  }

  footer > div > div.w-max > div {
    width: 100%;
  }

  footer > div > div.w-max .main-cta {
    margin-bottom: 10px;
  }

  .oz-footer-last {
    flex-direction: column;
    margin-top: 40px;
  }

  .oz-footer-last > div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .oz-footer-last h3 {
    text-align: center;
  }

  #footer-ozono-menu {
    align-items: center;
    margin-top: 20px;
  }

  .oz-footer-last > a {
    margin: auto;
    margin-top: 20px;
  }

  .footer-col {
    width: 45%;
    margin: 30px 0px;
  }

  .newsletter-container {
    width: 100%;
    margin-bottom: 40px;
  }

  .newsletter-container h1,
  .footer-col li {
    text-align: center;
  }

  .form-container input {
    margin-right: 0;
  }

  .form-container form {
    justify-content: space-around;
  }

  .footer-social {
    justify-content: space-between;
    width: 80%;
  }

  footer a:first-of-type {
    margin-bottom: 15px;
  }

  /* FAQ MOBILE */

  .faq-container {
    flex-direction: column;
  }

  .faq-filter {
    position: relative;
    top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 0;
    width: 100%;
    overflow: hidden;
  }

  .faq-filter > h2:first-child {
    width: 100%;
    margin-bottom: 10px;
  }

  .faq-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .filters-scroll {
    flex-direction: row;
  }

  .filters-scroll h2 {
    margin-right: 15px;
    color: #707070;
  }

  .faq-question {
    padding-right: 35px;
  }
}
