/* 
Theme Name: FyN
Theme URI: 
Author: Franklin Belen 
Author URI: https://franklinbelen.com/
Description: Theme desarrollado para mi uso personal
Version: 1.18.22
License: GNU General Public v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 
Text Domain: fyn
*/
:root {
  --main-font: ;
  --main-color: #222222;
  --second-color: #ff7200;
  --dark-color-alt: #141414;
  --dark-color: #000000;
  --white-color-alt: #bdbdbd;
  --white-color: #ffffff;
  --white-color-dark: #c0c0c0;
  --color-whatsapp: #00BB2D;
  --color-whatsapp-dark: #01a127;
}

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

*::selection {
  background-color: var(--main-color);
  color: var(--white-color);
}

body {
  margin: 0;
  font-family: var(--main-font);
}

body::-webkit-scrollbar-track {
  background-color: rgb(240, 240, 240);
  border-radius: 15px;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: rgb(197, 197, 197);
}

a {
  text-decoration: none;
  color: var(--second-color);
}

a:hover {
  opacity: 0.9;
}

p {
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

li {
  font-size: 17.5px;
  line-height: 29px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
  font-size: 2rem;
  position: relative;
  margin: 0 0 1rem 0;
}

figure {
  margin: 0;
}

@media screen and (max-width: 520px) {
  h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 320px) {
  p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.6rem;
  }
}
.main-header {
  background-color: var(--white-color);
  width: 100%;
}

/******* header fixed ******/
body.logged-in .header-fixed-scroll {
  margin-top: 32px;
}

.header-fixed-scroll {
  top: 0;
  left: 0;
  z-index: 100;
}

.header-landing {
  display: none;
}

.child-header {
  max-width: 85%;
  margin: 0 auto 0;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 980px) {
  /******* header fixed ******/
  body.logged-in .header-fixed-scroll {
    margin-top: 0;
  }
  .main-header {
    position: relative;
  }
  .child-header {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding: 0.5rem 2rem;
  }
  .header-landing {
    display: initial;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 620px) {
  .page-template-template-page-landing .logo,
.page-template-template-page-not-menu .logo {
    margin: auto;
  }
  .child-header {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding: 0.5rem 1rem;
  }
}
.logo {
  max-width: 180px;
}

.logo-link {
  color: var(--dark-color-);
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.box-menu-navegacion {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-navegacion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.menu-navegacion > .menu-item,
.menu-navegacion > .page_item {
  margin: 0 1rem;
}

.menu-item a,
.page_item a {
  color: var(--main-color);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  padding: 1rem 0;
}

.current-menu-item a {
  color: var(--second-color);
}

.btn-menu-hamburguesa {
  border: 1.5px solid var(--dark-color);
  background-color: var(--white-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 4px;
  font-size: 1.2rem;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  display: none;
  outline: none;
}

.menu-item .arrow-bottom {
  display: none;
}

.menu-item.menu-item-has-children > a + .arrow-bottom {
  color: var(--main-color);
  margin-left: 0.5rem;
  cursor: pointer;
  display: block;
}

.menu-item.menu-item-has-children {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.sub-menu {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s linear;
  background-color: var(--white-color);
  width: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.sub-menu .menu-item {
  border-bottom: 1px solid var(--dark-color);
  padding: 0 0.5rem;
}

.sub-menu .menu-item a {
  color: var(--dark-color);
}

.box-cart-menu {
  position: relative;
  width: 46px;
}

.box-cart-menu a {
  padding: 1rem 0.5rem;
}

.box-cart-menu a i {
  font-size: 1.3rem;
  color: var(--dark-color);
}

.count-items {
  color: var(--dark-color);
  font-size: 0.9rem;
  font-weight: 800;
  position: absolute;
  top: -5px;
  right: 11px;
  line-height: 1;
}

.box-cart-menu a:hover {
  background-color: var(--main-color);
}

.box-cart-menu a:hover i {
  color: var(--white-color);
}

.box-cart-menu a:hover + .count-items {
  color: var(--white-color);
  background-color: var(--main-color);
}

.view-sub-menu {
  transform: scaleY(1);
  display: block !important;
}

.view-menu {
  transform: scaleY(1) !important;
}

.menu-item a:hover {
  color: var(--second-color);
}

.menu-item.menu-item-has-children > a:hover + .arrow-bottom {
  color: var(--second-color);
}

/* Elementor
***********************************/
.elementor-nav-menu--main .elementor-nav-menu ul {
  width: auto !important;
}

@media screen and (max-width: 980px) {
  .btn-menu-hamburguesa {
    display: block;
  }
  .menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    transform: scaleY(0);
    transition: transform 0.4s linear;
    transform-origin: top;
    z-index: 1000;
  }
  .menu-navegacion {
    flex-direction: column;
    padding: 0 2rem;
  }
  .menu-navegacion .menu-item {
    width: 100%;
  }
  .menu-item a,
.page_item a {
    color: var(--main-color);
    padding: 1rem 0 0.8rem;
  }
  .menu-item.menu-item-has-children > a + .arrow-bottom {
    color: var(--main-color);
    width: 10%;
    text-align: center;
  }
  .sub-menu {
    transform: scaleY(1);
    position: initial;
    display: none;
    width: 100%;
    background-color: var(--white-color);
  }
  .sub-menu .menu-item a {
    color: var(--dark-color);
  }
  .menu-item a:hover {
    color: var(--white-color);
  }
  .menu-item a:hover + span {
    color: var(--white-color);
  }
}
@media screen and (max-width: 620px) {
  .logo {
    max-width: 180px;
  }
  .logo-link {
    font-size: 1rem;
  }
  .btn-menu-hamburguesa {
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .logo-link {
    font-size: 1rem;
  }
  .btn-menu-hamburguesa {
    font-size: 0.8rem;
  }
}
.main-services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service {
  width: 31%;
  border: 1px solid #e7e7e7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.box-image-service {
  height: 270px;
}

.box-image-service img {
  height: inherit;
  object-fit: cover;
  object-position: center;
}

.box-description-service {
  border-top: 4px solid var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--main-color-white);
}

.box-title-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-service {
  color: var(--text-color-dark);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
  width: 80%;
}

.box-title-service [class^=icon-] {
  color: var(--main-color-white);
  background-color: var(--main-color);
  height: 100%;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.5rem;
  width: 20%;
  transition: background-color 1s linear;
}

.box-excerpt {
  height: 150px;
  margin-bottom: -150px;
  transition: margin-bottom 0.3s linear;
  padding: 1rem;
}

.box-excerpt p {
  margin: 0;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service:hover .box-title-service [class^=icon-] {
  color: var(--main-color);
  background-color: initial;
}

.service:hover .box-excerpt {
  margin-bottom: 0;
  transform-origin: top;
}

@media screen and (max-width: 980px) {
  .service {
    width: 45%;
    position: initial;
    overflow: initial;
  }
  .box-image-service {
    height: 200px;
  }
  .box-description-service {
    position: initial;
  }
  .box-title-service [class^=icon-] {
    padding: 0.8rem 0;
    font-size: 1rem;
    width: 15%;
  }
  .title-service {
    font-size: 1rem;
  }
  .box-excerpt {
    height: auto;
    margin-bottom: 0;
    padding: 0.5rem;
  }
  .box-excerpt p {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .service {
    width: 49%;
  }
  .box-image-service {
    height: 150px;
  }
  .title-service {
    font-size: 0.8rem;
    width: 100%;
    padding: 0.5rem;
  }
  .box-title-service [class^=icon-] {
    display: none;
  }
  .box-description-service {
    border-top: 3px solid var(--main-color);
  }
}
@media screen and (max-width: 320px) {
  .box-image-service {
    height: 100px;
  }
  .title-service {
    font-size: 0.6rem;
  }
}
form p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.title-form {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-dark);
  padding-bottom: 1rem;
  margin: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=search],
textarea {
  width: 100%;
  font-size: 1rem;
  color: var(--color-dark);
  padding: 0.8rem 1.2rem;
  outline: none;
  border-radius: 5px;
  border: 1px solid var(--white-color-alt);
  background-color: var(--white-color);
}

input[type=file] {
  padding: 0.5rem 0;
  white-space: pre-line;
  overflow: hidden;
}

input[type=submit] {
  background-color: var(--main-color);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s linear;
  margin: auto;
  display: block;
  width: 100%;
  color: var(--white-color);
  border-radius: 5px;
}

input[type=submit]:hover {
  background-color: var(--dark-color);
}

.two-input {
  display: flex;
  justify-content: space-between;
}

.two-input * {
  width: 48%;
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output.wpcf7-display-none {
  color: var(--main-color-dark);
  padding: 0.5rem;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
  border: none;
  margin: 0;
  padding: 0;
}

span.wpcf7-not-valid-tip {
  color: var(--second-color) !important;
  font-size: 0.8rem !important;
}

@media screen and (max-width: 520px) {
  .title-form {
    font-size: 1.2rem;
  }
  input[type=file] {
    font-size: 0.85rem;
  }
}
.title-principal {
  text-align: center;
}

.child-content-page {
  max-width: 1400px;
  margin: 0 auto 0;
  padding: 2rem 5%;
}

.child-content-page-not-title {
  max-width: 1400px;
  padding: 0 5%;
  margin: 0 auto 0;
}

.box-image-page-banner {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title-page-banner {
  font-size: 2.6rem;
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
}

.child-content-page-banner {
  max-width: 85%;
  margin: 0 auto 0;
}

@media screen and (max-width: 980px) {
  .box-image-page-banner {
    height: 200px;
    padding: 0 2rem;
  }
  .title-page-banner {
    font-size: 2rem;
  }
}
@media screen and (max-width: 620px) {
  .box-image-page-banner {
    height: 150px;
    padding: 0 1rem;
  }
  .title-page-banner {
    font-size: 1.8rem;
  }
}
.main-btns-movil {
  display: none;
}

@media screen and (max-width: 680px) {
  .main-btns-movil {
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 0px 5px var(--dark-color);
    z-index: 1000;
  }
  [class^=btns-movil] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: var(--main-color);
    cursor: pointer;
  }
  [class^=btns-movil] i {
    font-size: 1.5rem;
  }
  [class^=btns-movil] span {
    font-size: 0.7rem;
  }
}
.btns-movil-whatsapp {
  background-color: var(--color-whatsapp);
  position: fixed;
  top: 50%;
  right: 10px;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white-color);
  z-index: 100;
}

.btns-movil-whatsapp i {
  font-size: 2.4rem;
  line-height: 0;
}

.btns-movil-whatsapp:hover {
  color: var(--white-color);
  background-color: var(--color-whatsapp-dark);
}

.box-btn-movil-call-bottom-fixed {
  display: none;
}

@media screen and (max-width: 680px) {
  .box-btn-movil-call-bottom-fixed {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }
  .btn-movil-call-bottom-fixed {
    background-color: var(--color-whatsapp);
    color: var(--white-color);
    width: 100%;
    font-size: 1rem;
    text-align: center;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-movil-call-bottom-fixed:hover {
    color: var(--white-color);
  }
  .icon-phone {
    font-size: 1.6rem;
    color: var(--white-color);
  }
}
.main-content-blog {
  width: 100%;
  padding: 4rem 1rem;
}

.child-content-blog {
  max-width: 950px;
  margin: 0 auto 0;
}

.page-numbers {
  border: 1px solid #ddd;
  padding: 0.4rem 0.8rem;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
}

@media screen and (max-width: 980px) {
  .main-content-blog {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 620px) {
  .main-content-blog {
    padding: 2rem 1.5rem;
  }
}
.main-content-single {
  width: 100%;
  padding: 4rem 1rem;
}

.child-content-single {
  max-width: 1024px;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.content-single {
  width: 68%;
  margin-bottom: 3rem;
}

.title-principal-single {
  margin-bottom: 2rem;
}

.box-image-single {
  margin-bottom: 1.5rem;
}

.content-single p {
  font-size: 17.5px;
  line-height: 29px;
}

.aside {
  width: 26%;
}

.box-widgets-sidebar h1,
.box-widgets-sidebar h2,
.box-widgets-sidebar h3,
.box-widgets-sidebar h4,
.box-widgets-sidebar h5,
.box-widgets-sidebar h6 {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.box-widgets-sidebar ul.wp-block-latest-posts li {
  margin-bottom: 1.8rem;
  line-height: 1.8rem;
}

/* etiqueta blockquote */
blockquote {
  margin: 3rem 0;
  border-left: 6px solid var(--second-color);
  padding: 2rem 3rem 2rem 3rem;
  background-color: #F5F5F5;
}

blockquote p {
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: bold;
}

.title-post-related {
  font-weight: 700;
}

.grid-post-related {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.card-post-related {
  width: 23%;
  margin-bottom: 1.5rem;
}

.box-image-card-post-related {
  margin-bottom: 0.5rem;
}

.title-card-post-related {
  font-size: 1.1rem;
}

@media screen and (max-width: 620px) {
  .content-single {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .aside {
    width: 100%;
  }
  .card-post-related {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.main-banner-principal-category {
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(241, 241, 241);
}

.child-banner-principal-category {
  max-width: 1024px;
}

.title-category {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.box-card-posts-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.card-post-category {
  width: 30%;
  margin-bottom: 1rem;
}

.title-card-post-category {
  font-size: 1.2rem;
  margin: 0;
  padding: 1rem 0;
}

@media screen and (max-width: 980px) {
  .child-banner-principal-category {
    padding: 0 16px;
  }
}
@media screen and (max-width: 620px) {
  .title-category {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .card-post-category {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .title-card-post-category {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}
.main-content-footer {
  background-color: var(--dark-color);
  padding: 2rem 2rem 1.5rem 2rem;
}

.child-content-footer {
  max-width: 1400px;
  margin: auto;
  padding-bottom: 2rem;
}

.copyright {
  display: block;
  text-align: center;
  color: var(--white-color-alt);
  font-size: 0.9rem;
}

.copyright a {
  color: var(--white-color);
}

@media screen and (max-width: 980px) {
  .main-content-footer {
    padding: 2rem;
  }
}
@media screen and (max-width: 620px) {
  .main-content-footer {
    padding: 3rem 2rem;
  }
  .child-content-footer {
    padding-bottom: 1rem;
  }
  .copyright {
    font-size: 0.8rem;
  }
}
.card-post {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.box-image-post {
  width: 38%;
}

.box-description {
  width: 60%;
}

.title-post {
  font-size: 1.4rem;
  color: var(--main-color-dark);
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.box-description p {
  line-height: 1.4;
  font-size: 1rem;
}

@media screen and (max-width: 980px) {
  .post {
    width: 100%;
  }
}
@media screen and (max-width: 620px) {
  .post {
    padding: 0;
  }
  .box-image-post {
    margin-bottom: 1rem;
  }
  .title-post {
    font-size: 1.2rem;
  }
  .box-image-post,
.box-description {
    width: 100%;
  }
  .box-description p {
    margin: 1rem 0 0;
  }
}
.image-hero {
  background-color: #fff;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

.main-header-single-service {
  background-color: var(--main-color-trans-8);
}

.title-single-service,
.title-single-service + p {
  color: var(--text-color-white);
}

.title-single-service {
  margin: 0;
  border: 2px solid;
  padding: 1rem 3rem;
  font-size: 3.5rem;
}

.title-single-service + p {
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
}

.main-content-page-404 {
  width: 100%;
  height: 450px;
  background-color: var(--white-color-alt);
}

.child-content-page-404 {
  max-width: 1200px;
  margin: auto;
  height: inherit;
  display: flex;
}

.main-box-error-404 {
  margin: auto;
  background-color: var(--white-color);
  padding: 3rem 6rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.box-404 {
  display: flex;
  justify-content: center;
  font-size: 8rem;
  font-weight: bold;
}

.box-title-404 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  color: var(--dark-color-alt);
  text-align: center;
}

.number-404 {
  color: var(--main-color);
}

@media screen and (max-width: 980px) {
  .main-box-error-404 {
    width: 60%;
    padding: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .main-box-error-404 {
    width: 90%;
  }
  .box-404 {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1600px) {
  .main-content-form-principal {
    background-size: cover;
    background-position: center;
  }
}
.main-content-form-principal {
  background-size: cover;
}

.child-content-form-principal {
  max-width: 1400px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  margin: auto;
}

.main-title-principal {
  width: 45%;
}

.title-form-principal {
  color: var(--text-color-white);
  font-weight: bolder;
  text-shadow: 0 4px 10px rgb(0, 0, 0);
  font-size: 3rem;
  margin-bottom: 0;
}

.box-the-excerpt p {
  color: var(--main-color-white);
  font-size: 1.2rem;
  font-weight: 300;
}

.main-form-principal {
  width: 30%;
  padding: 3rem 2rem 0.5rem;
  background-color: var(--main-color-white);
  border-radius: 10px;
}

.view-main-form-principal {
  display: initial;
}

.main-form-principal p {
  color: var(--main-color-white);
}

.button {
  background-color: var(--color-call-action);
  border: none;
  color: var(--main-color-white);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.button-mobile {
  display: none;
}

@media screen and (max-width: 980px) {
  .main-content-form-principal {
    height: 400px;
  }
  .child-content-form-principal {
    padding: 2rem 0.5rem;
    justify-content: space-around;
  }
  .main-title-principal {
    max-width: 100%;
  }
  .button-desktop {
    display: none;
  }
  .button-mobile {
    display: initial;
  }
  .main-title-principal,
.main-form-principal {
    width: 80%;
  }
  .title-form-principal {
    font-size: 2.5rem;
    text-align: center;
    background-color: initial;
  }
  .main-form-principal {
    background-color: rgba(27, 29, 32, 0.582);
  }
}
@media screen and (max-width: 620px) {
  .box-button {
    display: flex;
    justify-content: center;
  }
  .button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    margin: auto;
  }
}
@media screen and (max-width: 520px) {
  .main-title-principal,
.main-form-principal {
    width: 96%;
  }
  .main-form-principal {
    display: none;
  }
  .main-title-principal {
    padding: 1rem 0;
  }
  .title-form-principal {
    font-size: 2.2rem;
  }
  .box-the-excerpt p {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .main-content-form-principal {
    padding: 1rem 0;
  }
  .title-form-principal {
    font-size: 1.8rem;
  }
  .box-the-excerpt p {
    font-size: 1rem;
  }
}
.main-header-landing {
  width: 100%;
  padding: 0.5rem 0;
}

.child-header-landing {
  max-width: 85%;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.child-header-landing .icon-date {
  color: var(--main-color);
  line-height: 0;
  font-size: 1.5rem;
  margin-right: 0.2rem;
}

.child-header-landing .main-date-before-header .text-date,
.child-header-landing .main-date-before-header a {
  color: var(--dark-color);
  font-size: 1rem;
}

@media screen and (max-width: 980px) {
  .main-header-landing {
    padding: 0.5rem 2rem;
  }
  .child-header-landing {
    max-width: 100%;
  }
  .child-header-landing .main-date-before-header.email,
.child-header-landing .main-date-before-header.hour-atencion {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .main-header-landing {
    padding: 0.5rem 1rem;
  }
  .child-header-landing {
    justify-content: space-around;
  }
  .child-header-landing .main-date-before-header,
.child-header-landing .main-date-before-header {
    display: none;
  }
}
.child-content-page-elementor {
  max-width: 1400px;
  margin: 0 auto 0;
  padding: 2rem 5%;
}

body.elementor-page .child-content-page-elementor {
  max-width: initial;
  margin: initial;
  padding: initial;
}

.main-attributes-header {
  width: 100%;
  background-color: var(--main-color);
  padding: 0.4rem 0;
}

.child-attributes-header {
  max-width: 85%;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rrss-before-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rrss-before-header li {
  margin-right: 0.5rem;
}

.rrss-before-header li a {
  font-size: 1.2rem;
}

.rrss-before-header li a i {
  color: var(--white-color);
}

.date-contact-before-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.main-date-before-header {
  margin-left: 1rem;
}

.main-date-before-header p {
  margin: 0;
}

.main-date-before-header,
.main-date-before-header a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(0, 0, 0);
}

.icon-date {
  font-size: 1.1rem;
  text-align: center;
  color: var(--white-color);
  border-radius: 3px;
}

.text-date {
  font-size: 14px;
  line-height: 1;
  color: var(--white-color);
}

.btn-call-version-movil-header {
  display: none;
}

@media screen and (max-width: 980px) {
  .main-attributes-header {
    display: none;
  }
}
.main-franja-superior {
  padding: 0.3rem 0;
  width: 100%;
  background-color: var(--main-color-dark);
}

.child-franja-superior {
  margin: auto;
  max-width: 1200px;
}

.child-franja-superior span {
  color: var(--main-color-white);
  text-align: center;
  display: block;
  font-size: 0.8rem;
}

@media screen and (max-width: 980px) {
  .main-franja-superior {
    display: none;
  }
}
.main-form-pop-movil {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  border: none;
}

.form-pop-movil {
  width: 350px;
  background-color: var(--white-color);
  padding: 2.5rem 1rem 0 1rem;
  position: relative;
  border-radius: 10px;
}

.main-form-pop-desktop {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  justify-content: flex-end;
  align-items: flex-end;
  border: none;
  padding: 0 0.5rem 0.5rem 0;
}

.form-pop-desktop {
  width: 350px;
  background-color: var(--dark-color);
  padding: 2.5rem 1rem 0 1rem;
  position: relative;
  color: #fff;
}

.title-form-pop-up {
  text-align: center;
  color: var(--dark-color);
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-close {
  position: absolute;
  right: -10px;
  top: -10px;
  text-align: right;
  font-size: 1.5rem;
  cursor: pointer;
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.view-form-popup {
  display: flex;
}

@media screen and (max-width: 980px) {
  .form-pop {
    width: 90%;
  }
}
.main-foooter-widgets {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-widget {
  width: 22.5%;
}

.main-widget p {
  color: var(--white-color-alt);
  font-size: 1rem;
}

.title-widget-footer,
.main-widget h1,
.main-widget h2,
.main-widget h3,
.main-widget h4,
.main-widget h5,
.main-widget h6 {
  color: var(--white-color);
  margin: 1rem 0 0.5rem 0;
  position: relative;
  padding-bottom: 0.25rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.main-widget .textwidget ul,
.main-widget ul {
  padding-left: 1rem;
  list-style: circle;
}

.main-widget .textwidget ul li,
.main-widget ul li {
  padding-left: 1rem;
  color: var(--white-color-alt);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.main-widget .textwidget ul li a,
.main-widget ul li a,
.main-widget .textwidget p a,
.main-widget p a {
  color: var(--white-color-alt);
}

.main-widget .textwidget ul li a:hover,
.main-widget ul li a:hover,
.main-widget .textwidget p a:hover,
.main-widget p a:hover {
  color: var(--white-color);
}

/***** redes sociales fooyer ****/
.main-social-media-footer {
  width: 65%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-social-media-footer a i {
  color: var(--white-color-alt);
  font-size: 1.5rem;
}

.main-social-media-footer a i:hover {
  color: var(--white-color);
}

/***** redes sociales ******/
.main-widget .list-rrss {
  list-style: none;
  padding-left: 0;
}

.main-widget .list-rrss {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main-widget ul.list-rrss li {
  padding-left: 0;
  margin-bottom: 0;
}

.list-rrss li {
  margin-right: 0.5rem;
}

.list-rrss li a {
  font-size: 1.5rem;
  color: var(--white-color-alt);
}

.list-rrss li a:hover {
  color: var(--white-color);
}

@media screen and (max-width: 980px) {
  .main-widget {
    width: 45%;
  }
}
@media screen and (max-width: 520px) {
  .main-widget {
    width: 100%;
  }
  .title-widget-footer:after {
    width: 20%;
    height: 2px;
  }
}
.not-padding-mobile {
  padding: 0 !important;
}

.not-desktop {
  display: none;
}

.align-text-center-mobile {
  text-align: center;
}

.list-style-check {
  list-style: none;
}

.list-style-check li {
  display: flex;
  font-size: 1.1rem;
}

.list-style-check li:before {
  content: "\e806";
  font-family: "fontello";
  font-size: 1.6rem;
  color: var(--main-color);
  margin-right: 0.5rem;
}

@media screen and (max-width: 980px) {
  .not-mobile {
    display: none;
  }
  .not-desktop {
    display: block;
  }
  .list-style-check {
    padding: 0;
  }
  .list-style-check li {
    font-size: 1rem;
  }
  .list-style-check li:before {
    font-size: 1.4rem;
  }
}
.line-bottom {
  padding-bottom: 0.5rem;
}

.line-bottom::after {
  content: "";
  width: 12%;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  left: 44%;
  bottom: 0;
}

/** Estilos para el accordeon de Elementor, que cuando utilicemos h2 no se vea tan feo **/
.title-h2-acordeon,
.title-h3-acordeon {
  font-size: 15px;
}

@media screen and (max-width: 620px) {
  .title-h2-acordeon,
.title-h3-acordeon {
    font-size: 14px;
  }
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: #222222;
  color: #fff;
  text-align: center;
  font-size: 14px;
  text-transform: initial;
  padding: 0.8rem 2rem;
  display: inline-block;
  margin: 1rem auto 0;
  border-radius: 0;
  transition: transform 0.2s linear;
}

.woocommerce #respond input#submit::before,
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce input.button::before {
  content: "\e800";
  font-family: "fontello";
  margin-right: 0.5rem;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: #222222;
  color: #fff;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: #222222;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: #222222;
}

.woocommerce div.product form.cart .button {
  margin: initial;
}

button.button[name=apply_coupon],
button.button[name=update_cart] {
  margin: 0;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  background-color: #dfdcde;
  padding: 0.8rem 2rem;
}

.woocommerce a.button.alt {
  font-size: 14px;
}

@media screen and (max-width: 980px) {
  a.button.wc-forward {
    margin: 0;
  }
}
@media screen and (max-width: 620px) {
  a.button.wc-forward {
    width: 100%;
    margin: 0 0 1rem;
  }
}
.woocommerce-info,
.woocommerce-message {
  border-top-color: #141414;
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: #141414;
}

.child-content-shop {
  max-width: 1400px;
  padding: 3rem 5% 3rem;
  margin: 0 auto 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  color: #222222;
  font-size: 16px;
  text-align: center;
}

.woocommerce ul.products li.product .price {
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 980px) {
  .child-content-shop {
    padding: 2rem 5% 2rem;
  }
}
@media screen and (max-width: 620px) {
  .child-content-shop {
    padding: 1rem 5% 1rem;
  }
  .woocommerce ul.products[class*=columns-] li.product,
.woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
}
.woocommerce span.onsale {
  width: 70px;
  height: 70px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-color);
  font-weight: 400;
}

.woocommerce .woocommerce-breadcrumb {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.woocommerce .woocommerce-breadcrumb span:nth-child(3) {
  font-weight: 700;
  color: #333333;
  text-transform: lowercase;
  display: inline-block;
}

.woocommerce .woocommerce-breadcrumb span:nth-child(3)::first-letter {
  text-transform: uppercase;
}

.woocommerce div.product .product_title {
  font-size: 25px;
  font-weight: 700;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #404040;
  font-size: 35px;
  font-weight: 700;
}

.woocommerce-product-details__short-description p {
  color: #333333;
  font-size: 16px;
  line-height: 28.8px;
}

.woocommerce div.product form.cart .button {
  font-family: var(--main-font);
}

form.cart {
  display: flex;
  align-items: center;
}

.input-text.qty.text,
.woocommerce-cart table.cart td.actions .coupon .input-text {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
  transition: border 0.2s linear;
}

.input-text.qty.text:hover,
.woocommerce-cart table.cart td.actions .coupon .input-text:hover {
  border: 1px solid #333333;
}

.product_meta {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 14px 0;
  text-transform: uppercase;
  font-size: 12px;
}

.product_meta .posted_in a {
  font-weight: 800;
}

.woocommerce-tabs.wc-tabs-wrapper {
  padding-top: 3rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  border-radius: none;
  background-color: initial;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 3px solid #333333;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background-color: #f9f9f9;
  padding: 2rem;
  color: var(--dark-color);
  font-size: 15px;
  margin-bottom: 4rem;
}

.woocommerce div.product .woocommerce-tabs .panel ul {
  padding: 0 0 0 1rem;
}

.woocommerce div.product .woocommerce-tabs .panel li {
  line-height: 1.8;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 1.15rem;
}

.related.products h2 {
  font-size: 28px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 980px) {
  .woocommerce .woocommerce-breadcrumb {
    margin-bottom: 1.5rem;
  }
  .woocommerce-tabs.wc-tabs-wrapper {
    padding-top: 1.5rem;
  }
  .woocommerce div.product .woocommerce-tabs .panel {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 620px) {
  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 1rem;
  }
  .related.products h2 {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
.woocommerce-cart.woocommerce-page .woocommerce {
  padding: 8rem 0;
}

.main-content-car {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column-left-page-cart {
  width: 70%;
}

.column-right-page-cart {
  width: 25%;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 200px;
}

.column-right-page-cart h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  border-bottom: 3px solid #141414;
  padding: 0.5rem 0;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
  float: initial;
}

@media screen and (max-width: 980px) {
  .woocommerce-cart.woocommerce-page .woocommerce {
    padding: 4rem 0;
  }
  .column-left-page-cart {
    width: 100%;
  }
  .column-right-page-cart {
    width: 100%;
  }
  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 980px) {
  .woocommerce-cart.woocommerce-page .woocommerce {
    padding: 2rem 0;
  }
  body.woocommerce-cart.woocommerce-page .woocommerce table.cart td.actions .coupon .button,
body.woocommerce-cart.woocommerce-page .woocommerce-page table.cart td.actions .coupon .button {
    width: 100%;
    display: block;
  }
}
body.woocommerce-checkout.woocommerce-page .woocommerce {
  padding: 4rem 0;
}

.child-content-checkout form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box-details-checkout {
  width: 60%;
}

.box-details-checkout .col2-set .col-1 {
  width: 100%;
}

.box-details-checkout .col2-set .col-1 h3 {
  font-size: 24px;
}

.box-checkout {
  width: 35%;
}

h3#order_review_heading {
  font-size: 24px;
}

@media screen and (max-width: 980px) {
  .box-details-checkout {
    width: 100%;
    margin-bottom: 2rem;
  }
  .box-checkout {
    width: 100%;
  }
}
@media screen and (max-width: 620px) {
  body.woocommerce-checkout.woocommerce-page .woocommerce {
    padding: 2rem 0;
  }
  .box-details-checkout .col2-set .col-1 h3 {
    font-size: 18px;
  }
  h3#order_review_heading {
    font-size: 18px;
  }
}
.main-content-my-account {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 6rem 0;
}

.main-content-my-account > p {
  display: none;
}

.column-left-my-account {
  width: 20%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: initial;
  width: initial;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  color: var(--main-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  color: #404040;
}

.column-right-my-account {
  width: 70%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: initial;
  width: initial;
}

.woocommerce-account .addresses .title h3 {
  font-size: 1.2rem;
}

.woocommerce form .form-row input.input-text {
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  border: 1px solid var(--white-color-alt);
  background-color: var(--white-color);
  font-size: 1rem;
}

.column-right-my-account fieldset {
  margin: 3rem 0 1rem;
}

@media screen and (max-width: 620px) {
  .main-content-my-account {
    padding: 2rem 0;
  }
  .column-left-my-account,
.column-right-my-account {
    width: 100%;
  }
  .column-left-my-account {
    margin-bottom: 1.5rem;
  }
}