/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/*
 * General
 *************************************************/
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap'); 

 :root{
    --default-font: 'Montserrat', Helvetica, Arial, sans-serif;
    --container-width: 1400px;
    --container-small-width: 1240px;
    --color-orange: #00c9a4; /*#fe5000*/
    --color-orange-opacity:#23e2bd;
    --color-orange-2:#00c9a4;
    --color-brown:#927144;
    --color-white: #ffffff;
    --color-bg-grey: #f9fef9;
    --color-bg-orange: #83fce5;
    --color-pale-orange: #abffef;
    --color-light-orange: #c5fcf1;
    --color-meta-orange: #3ffcd7;
    --color-white-orange: #dcfff8;
    --color-black:#000000;
    --color-dark-grey: #2C353A;
    --color-p-grey: #5E727F;
    --color-pale-grey: #ACB9C6;
    --radius-srqu-image: 110px;
    --accent:#2C353A;
    --slide-animation: cubic-bezier(0.590, 0.205, 0.540, 0.935);
   }
     
   *{
     box-sizing: border-box;
   }
   
   .site-main>*{
     margin-bottom: 0px;
   }
   
   html{
    width: 100vw;
    overflow-x: hidden;
   }
   body{
     font-family: var(--default-font);
     width: 100%;

   }
  
   .w100{
     width: 100%;
   }
   
   .w-content{
      max-width: var(--container-width);
      width: 100%;
      margin: 0 auto;
      
   }
   
  .white {
    color: var(--color-white);
  }
  
  .container{
    max-width: var(--container-width);
    margin: 0 auto;
  }
  
  .acenter{
    text-align: center;
  }
  
  .aright{
    text-align: right;
  }
  
  .slideout-overlay{
    pointer-events: none;
  }
  
  h1,
  .h1{
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 0.7rem;
    font-weight: 600;
  }
  
  h2,
  .h2{
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 0.7rem;
    font-weight: 600;
  }
  
  h3,
  .h3{
    font-size: 23px;
    line-height: 27px;
    margin-bottom: 0.7rem;
    font-weight: 600;
  }
  
  h4,
  .h4{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0.7rem;
    font-weight: bold;
  }
  
  li,
  td, 
  th{
    font-size: 15px;
    line-height: 20px;

  }
  
  label,
  p,

  .p{
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 1rem;
  }
  
    
  p,
  li,
  td, th,
  .tgrey
  {
    color: var(--color-p-grey);
  }
  .h1,
  .h2,
  .h3{
    color: var(--color-dark-grey);
  }

  .orange{
    color:var(--color-orange-2);
  }
  
  .black{

    color:var(--color-black);
  }
  
  .tcenter{
    text-align: center;
  }
  
  .tdashed-orange{
    position: relative;
  }
  
  .tdashed-orange::after{
    content: '';
    width: 100%;
    height: 0.1em;
    position: absolute;
    bottom: -0.1rem;
    left: 0px;
    background-color: var(--color-orange);
  }

  .legals .small{
    font-size: 12px;
    line-height: 14px;
  }
  @media screen and (min-width: 1024px){
    h1,
    .h1,
    .home .h1{
      font-size: 50px;
      line-height: 60px;
    }
  
    h2,
    .h2,
    .home .h2{
      font-size: 40px;
      line-height: 55px;
    }
  
    h3,
    .h3,
    .home .h3{
      font-size: 28px;
      line-height: 40px;
    }
  
    h4,
    .h4,
    .home .h4{
      font-size: 22px;
      line-height: 26px;
    }
  
    .h4.two-lines{
      max-width: 768px;
      margin: 0 auto;
    }
    
    h5,
    .h5,
    .home .h5{
      font-size: 18px;
      line-height: 22px;
    }
    p,
    .p,
    li,
    td, th,
    .home p,
    .home .p{
      font-size: 16px;
      line-height: 27px;
    }
    
    .tdashed-orange::after{
      bottom: -0.3rem;
    }
    
    .legals .small{
      font-size: 13px;
      line-height: 15px;
    }
  }
  
  input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea{
    padding: 5px 8px;
    font-family: var(--default-font);
  }
  
  input[type=email]::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder, input[type=tel]::placeholder, input[type=text]::placeholder, input[type=url]::placeholder, select, textarea::placeholder,.select2-selection__placeholder{
    color: var(--color-p-grey);
  }
  
  label{
    font-size: 14px;
  }
  
  .a-button-regular{
    display: inline-block;
    position: relative;
    text-decoration: none;
  }

  .a-button-regular .btn{
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
    background-color: var(--color-white);
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    transition: all 0.25s ease-in-out;
    display: inline-block;
    align-items: center;
    padding: 10px 25px;
    text-align: center;
    font-weight: bold;
  }
  
  .wpcf7-form input[type="submit"]{
    position: relative;
    z-index: 3;
    background-color: transparent;
    color: var(--color-orange);
    border: 1px solid var(--color-orange);
    transition: all 0.25s ease-in-out;
    display: block;
    align-items: center;
    padding: 10px 25px;
    text-align: center;
    font-weight: bold;
    max-width: 300px;
    margin: 0 auto;
  }
  
  
  
  .a-button-regular::after{
    content: '';
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    right: 10px;
    top: 10px;
    background-color: var(--color-light-orange);
    transition: all 0.25s ease-in-out;
  }
  
  .a-button-regular:hover .btn{
    margin-left: 0px;
    margin-bottom: 0px;
    margin-right: 10px;
    margin-top: 10px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: 1px solid transparent;
    cursor: pointer;
 
  }
  
  .a-button-regular:hover::after{
    left: 10px;
    bottom: 10px;
    right: 0px;
    top: 0px;
    background-color: transparent;
  }
  
  .a-button-regular .btn i{
    font-size: 1.4rem;
    vertical-align: -0.2rem;
    margin-right: 0.15em;
  }
  
    
  @media screen and (min-width: 768px){
    .a-button-regular .btn{
      padding: 16px 50px;
    }
    .a-button-regular .btn i{
      font-size: 1.6rem;
      vertical-align: -0.4rem;
      margin-right: 0.15em;
    }
  }
  
  
  .shadowed-item{
    position: relative;
  }
  
  .shadowed-item > .wrapper{
    border: 1px solid var(--color-orange);
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.25s ease-in-out;
  }
  
  .shadowed-item::after{
    content: '';
    display: block;
    height: calc(100%);
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    right: 10px;
    top: 10px;
    background-color: var(--color-pale-orange);
    transition: all 0.25s ease-in-out;
  }
  
  .shadowed-item:hover > .wrapper{
    margin-left: 0px;
    margin-bottom: 0px;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
  }
  
  .shadowed-item:hover::after{
    left: 10px;
    bottom: 10px;
    right: 0px;
    top: 0px;
    background-color: transparent;
  }
  
  .move-down-content{
    transform: translateY(26px);
  }

  .move-down-content .vehicle-down p.orange{
    font-weight: 600;
  }
  
  .move-down-content ,.intro-text p{
    color: var(--color-dark-grey);
  }
  
  @media screen  and (min-width: 768px){
    .move-down-content{
      transform: translateY(40px);
    }
  }
  
  /*
   * GENERAL
   ***************************************/
  
  select,
  input{
    width: 100%;
  }
  
  footer .rounded-social{
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-white);
    border-radius: 100%;
    font-size: 0.7em;
    transition: all 0.25s ease-in-out;
  }
  
  footer .rounded-social:hover{
    background-color: var(--color-dark-grey);
    border-color: var(--color-dark-grey);
  }
  
  @media screen and (min-width: 1024px){
    footer .rounded-social{
      width: 40px;
      height: 40px;
      font-size: 1em;
    }
  }
  /*
   * Breadcrumbs
   ***************************************/
  .m-breadcrumbs-item{
    padding: 0.5em 1em;
    font-size: 13px;
    margin-top: 0.9em;
  }
  
  .m-breadcrumbs-item a{
    color: var(--color-black);
    text-decoration: none;
  }

  .m-breadcrumbs-item .icon-arrow-left,
  .m-breadcrumbs-item .icon-arrow-right{
    font-size: 0.75em;
    margin: 0px 0.25em;
  }
  
  .breadcrumb_last{
    position: relative
  }
  
  .breadcrumb_last::after{
      content: '';
      width: 100%;
      height: 0.125rem;
      position: absolute;
      bottom: -0.3rem;
      left: 0px;
      background-color: var(--color-orange);
  }
  

  
  @media screen and (min-width: 768px){
    .m-breadcrumbs-item{
      font-size: 15px;
      margin-top: 1.8em;
    }
    
    .m-breadcrumbs-item + .search-blog-top{
      margin-top: 40px;
      margin-bottom: 40px;
    }
  }
  /*
   * Images
   *************************************/
   .srqu-border,
   .srqu-image{
    display: inline-block;
    position: relative;
  }
  
  .srqu-border::after,
  .srqu-image .image::after{
    content: '';
    display: block;
    background-color: var(--color-pale-orange);
    width: 100%;
    height: 100%;
    border-top-right-radius: var(--radius-srqu-image);
    overflow: hidden;
    position: absolute;
    left: -11px;
    bottom: -11px;
    z-index: 1;
  }
  
  .srqu-border .wrapper,
  .srqu-image img{
    border-top-right-radius: var(--radius-srqu-image);
    overflow: hidden;
    position: relative;
    z-index: 3;
    display: block;
  }
  
  @media screen and (min-width: 768px){
    .srqu-border::after,
    .srqu-image .image::after{
      left: -16px;
      bottom: -16px;
    }
  }
  
  
  /*
   * HIDE CONTENTBESIDE ARROWS
   *************************************/
   .swiper-hidden{
     position: relative;
     overflow: hidden;
   }
   .swiper-hidden::after,
   .swiper-hidden::before{
     content: '';
     background-color: var(--color-white);
     top: 0;
     bottom: 0;
     z-index: 3;
     position: absolute;
   }
   
   
   
   .swiper-hidden::after{
     left: -2px;
   }
   
   .swiper-hidden::before{
     right: -2px;
   }
   
   @media screen and (max-width: 767px){
    .swiper-hidden{
      padding-left: 30px;
      padding-right: 30px;
    }
    .swiper-hidden::after,
    .swiper-hidden::before{
      width: 30px; 
    }
   }
   
   @media screen and (min-width: 768px) {
    .swiper-hidden{
      padding-left: 60px;
      padding-right: 60px;
    }
    .swiper-hidden::after,
    .swiper-hidden::before{
      width: 60px;
    }
   }
  /*
   * HERO HOME SWIPER
   *************************************/
  .hero-home-swiper{
    position: relative;
    max-width: 360px;
    margin: 0 auto;  
    padding-top: 50px;
  }
  
  .swiper-home-item{
    display: flex;
    flex-direction: column-reverse;
    padding:0px 20px
  }
  
  .swiper-home-image{
    display: inline-block;
    position: relative;
    margin-bottom: 30%;
    
  }
  
  .swiper-home-image::after{
    content: '';
    display: block;
    width: 340px;
    height: 340px;
    background-color: var(--color-light-orange);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    transform: translate(-50%,-50%);
  }
  
  .swiper-home-image .image::after{
    content: '';
    display: block;
    background-color: var(--color-orange-2);;
    width: 100%;
    height: 100%;
    border-top-right-radius: var(--radius-srqu-image);
    overflow: hidden;
    position: absolute;
    left: -16px;
    bottom: -16px;
    z-index: 1;
  }
  
  .swiper-home-image .image img{
    border-top-right-radius: var(--radius-srqu-image);
    overflow: hidden;
    position: relative;
    z-index: 3;
    display: block;
  }
  
  .swiper-badge{
    width: 140px;
    height: 140px;
    background-color: var(--color-dark-grey);
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    z-index: 5;
    top: 10%;
    right: 10%;
  }
  .swiper-badge img{
    width: 30px;
  }
  
  .swiper-badge p{
    color: var(--color-white);
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 16px;
    font-weight:bold;
  }
  
  .hero-home-swiper .swiper-slide{
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
  }
  
  .hero-home-swiper .swiper-slide.swiper-slide-active{
    visibility: visible;
    opacity: 1;
  }
  
  .hero-home-swiper .swiper-button-prev::after,
  .hero-home-swiper .swiper-button-next::after{
    content: none !important;
  }
    
  .hero-home-swiper .swiper-button-prev:hover,
  .hero-home-swiper .swiper-button-next:hover{
    opacity: 1;
  }

  .swiper-button-prev,
  .swiper-button-next{
    transition: all 0.25s var(--slide-animation);
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover{
    transform: scale(1.2);
  }
  @media screen and (max-width: 359px){
    .hero-home-swiper .swiper-button-prev,
    .hero-home-swiper .swiper-button-next{
      font-size: 30px;
      color: var(--color-orange);
      margin-top: -10%;
    }

    .hero-home-swiper .swiper-button-prev{
      left: 37.5%;
    }
    .hero-home-swiper .swiper-button-next{
      right: 37.5%;
      
    }
    
    .swiper-home-item__content{
      padding: 14px 0px;
    }


  } 


  @media screen and (min-width: 360px) and (max-width: 767px){
    .hero-home-swiper .swiper-button-prev,
    .hero-home-swiper .swiper-button-next{
      font-size: 30px;
      color: var(--color-orange);
      margin-top: -9px;
    }
    .hero-home-swiper .swiper-button-prev{
      left: 37.5%;
    }
    .hero-home-swiper .swiper-button-next{
      right: 37.5%;
      
    }
    
    .swiper-home-item__content{
      padding: 14px 0px;
    }
  }
  
  @media screen and (min-width: 768px){
    .hero-home-swiper{
      max-width: var(--container-width);
      margin-bottom: 60px;  
    }
    
    .hero-home-swiper .swiper-slide{
      padding: 1% 80px 1% 80px;
    }
    
    .hero-home-swiper .swiper-button-prev,
    .hero-home-swiper .swiper-button-next{
      font-size: 50px;
      color: var(--color-orange);
      opacity: 0.5;
      transition: all 0.25s ease-in-out;
    }
    
    .hero-home-swiper .swiper-button-next{
      right: 20px;
    }
    
    .hero-home-swiper .swiper-button-prev{
      left: 20px;
      
    }
  
    .swiper-home-item{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        padding:0px;
    }
    .swiper-home-item__content{
      width: calc(95% - 395px);
      
    }
    
    .swiper-home-item__content > *{
      margin: 20px 0px;
    }
    
    .swiper-home-item__images{
      width: 375px;
    }
    .swiper-home-image{
      margin-bottom: 0%;
    }
    
  }
  
  @media screen and (min-width: 1240px){
    .hero-home-swiper{
      margin-bottom: 140px;
    }
    .swiper-home-item__content{
      width: calc(95% - 675px);
    }
    
    .swiper-home-item__images{
      width: 650px;
    }
    
    .swiper-home-image::after{
      width: 700px;
      height: 700px;
      transform: translate(-45%,-50%);
    }
    
    .hero-home-swiper .swiper-button-next{
      right: 5px;
    }
    
    .hero-home-swiper .swiper-button-prev{
      left: 5px;
      
    }
  }
  
  /*
   * TOPBAR
   ***************************************/
   .top-bar{
    position: relative;
    z-index: 900;
    background-color: var(--color-white);
  }
  .site-header{
    z-index: 800;
    background-color: var(--color-white);
  }
  
  .inside-top-bar,
  .inside-top-bar .widget,
  .top-bar .inside-top-bar,
  .top-bar .inside-top-bar .widget{
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 2px !important;
    margin: 0px !important;
  }
  #sticky-navigation{
    background-color: var(--color-orange-2);
  }

  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) #sticky-navigation,
  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .site-header{
    background-color: var(--color-orange);
  }
  
  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .top-bar{
    background-color: var(--accent);
    display: none
  }
  
  .o-preheader-section{
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: var(--container-width);
  }
  
  
  .o-preheader-section :is(p, a, a:focus, a:hover){
      color: var(--color-black);
      margin-bottom: 0px;    
      display: inline-block;
      text-decoration: none;
      font-weight: bold;
  }
    
  .o-preheader-section .tag-phrase{
    width: 145px;
      text-align: right;
      line-height: 1.1em;  
  }
  

  .a-contact-item{
    text-decoration: none;
    margin: 0px 5px;
    display: flex;
    align-items: center;
    font-weight: bold;
  }
  
  .a-contact-item i{
    color: var(--color-orange);
    font-size: 1.1rem;
    margin-right: 0.3rem;
    vertical-align: -0.1em;
  }
  
  .o-preheader-section .menu{
    display: none;
  }
  
  .o-preheader-section .wpml-ls-legacy-dropdown :is(.wpml-ls-current-language:hover>a, a:focus, a:hover, a){
    border-color:transparent !important;
    color: var(--color-black);
    background-color: transparent !important;
    padding: 5px 1px 5px 0px;
  }
  
  .o-preheader-blog-section{
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: var(--container-width);
  }
  
  .o-preheader-blog-section :is(a, a:hover, a:active){
    text-decoration: none;
    padding: 0px 5px;
    color: var(--color-white);
  }
  
  .o-preheader-blog-section > *{
    margin-left: 10px;
  }
  
  .o-preheader-blog-section ul.menu li{
    margin-bottom: 0px;
  }
  
  .o-preheader-blog-section ul.menu li a{
    color: var(--color-orange);
  }
  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .top-bar :is(.widget, .wp-block-toolset-ct){
    width: 100%;
    margin-left: auto;
  }
  
  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .top-bar :is(.widget, .wp-block-toolset-ct, .menu),
  .o-preheader-blog-section{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .o-preheader-section .wpml-ls{
    margin-left: auto;
  }
  
  .o-preheader-section .wpml-ls-sub-menu{
    background-color: var(--color-orange);
    padding: 0px 5px;
  }
  .o-preheader-blog-section .wpml-ls-sub-menu{
    background-color: var(--accent);
    padding: 0px 5px;
  }
  

  .top-bar .o-preheader-section .wpml-ls-sub-menu :is(.wpml-ls-current-language:hover>a, a:focus, a:hover, a){
    color: var(--color-white);
  }
  

  .wpml-ls-legacy-dropdown,
  .wpml-ls-item-toggle{
    width: 70px!important;
 }
 
 .wpml-ls-legacy-dropdown a span {
  vertical-align: baseline;
}
 
 .o-preheader-blog-section .wpml-ls-legacy-dropdown :is(.wpml-ls-current-language:hover>a, a:focus, a:hover, a){
  border-color:transparent !important;
  color: var(--color-white);
  background-color: transparent !important;
  padding: 5px calc(15px) 5px 0px;
}
  
  .wpml-ls-item-toggle::before{
	  content: "\e91b";
	  font-family: 'icomoon' !important;
	  speak: never;
	  font-style: normal;
	  font-weight: normal;
	  font-variant: normal;
	  text-transform: none;
	  line-height: 1;

	  /* Better Font Rendering =========== */
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
    color: var(--color-orange);
    font-size: 1.1rem;
    vertical-align: -0.25rem;
  }
  
  .o-preheader-blog-section .wpml-ls-item-toggle::before{
    color: var(--color-orange);
  }
  .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after,
  .wpml-ls-item-toggle::after{
    vertical-align: 0.25rem;
    top:calc(50% - 0.350em);
    font-size: 0.75em;
  }
  
  @media screen and (min-width: 768px){
    .o-preheader-section .tag-phrase{
      margin-right: 15px;
      margin-left: auto;
      width: auto;
    }
    .o-preheader-section .menu{
      display: flex;
      align-items: center;
      margin-left: 15px;
    }
    
    .o-preheader-section .menu-item{
      padding: 0px 9px;
      margin-bottom: 0em;
    }
    
    .o-preheader-section .wpml-ls-legacy-dropdown{
      width: 64px!important;
   }
   .wpml-ls-legacy-dropdown a span {
    vertical-align: middle;
  }
    .o-preheader-section .wpml-ls{
      margin-left: 15px;
    }
    
    .wpml-ls-legacy-dropdown,
    .wpml-ls-item-toggle{
      width: 75px!important;
   }
    
    :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .top-bar{
      display: block;
    }
    

    .site-header{
      padding: 5px 0px;
      border-bottom: 1px solid var(--color-pale-grey);
    }
  }
  @media screen and (min-width: 1201px){

    .site-header{
      padding: 15px 0px;
    }
    
    .main-navigation ul ul{
      box-shadow: none;
    }
    .main-navigation ul a,
    .main-navigation ul ul .menu-item.bold a{
      font-weight: bold;
    }
    .top-bar,
    .o-preheader-section .wpml-ls-sub-menu{
        background-color: var(--color-orange-2);
    }
    
    .o-preheader-section{
      padding: 3px 0px;
      padding-right: 10px;
    }
    
    .o-preheader-section :is(p, a, a:focus, a:hover),
    .a-contact-item{
      font-size: 16px;
    }
        
    :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .top-bar{
      background-color: var(--accent);
    }
    
    .o-preheader-section .contact{
      display: flex;
      align-items: center;
    }
    
    .top-bar .o-preheader-section .tag-phrase,
    .top-bar .o-preheader-section .wpml-ls-legacy-dropdown :is(.wpml-ls-current-language:hover>a, a:focus, a:hover, a),
    .top-bar .o-preheader-section  :is(p, a, a:focus, a:hover){
      color: var(--color-white);
    }
    
    .top-bar .a-contact-item i,
    .top-bar .wpml-ls-item-toggle::before{
      color: var(--color-dark-grey);
    }
}

/*
 * MAIN NAVIGATION
 ***************************************************/
  .inside-header{
   padding: 10px 10px !important;
  }
  .main-navigation .main-nav > ul>li{
    padding: 10px;
  }
  
  .main-navigation .main-nav > ul>li.social{
    padding: 10px 5px;
  }
  
  :is(header, #mobile-header, .navigation-stick) .grid-container {
    padding: 0px 10px;
    max-width: 1420px;
}
  .main-navigation .main-nav > ul>li > a,
  .main-navigation .main-nav > ul>li[class*="current-menu-"] > a{
    color: var(--color-dark-grey);
    font-weight: bold;
    padding: 0px;
    line-height: 1.35em;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
  }
  
  #sticky-navigation.main-navigation .main-nav > ul>li > a,
  #sticky-navigation  .main-nav > ul>li[class*="current-menu-"] > a{
    color: var(--color-white);
    transition: all 0.25 var(--slide-animation);
  }
  
  #sticky-navigation  .main-nav > ul>li[class*="current-menu-"] > a{
    color: var(--color-dark-grey);
  }
  
  #sticky-navigation.main-navigation .main-nav > ul>li:hover > a{
    color: var(--color-dark-grey);
  }
  
  
  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post)  .main-navigation:not(#sticky-navigation) .main-nav > ul>li > a,
  :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post)  .main-navigation:not(#sticky-navigation) .main-nav > ul>li[class*="current-menu-"] > a
  {
    color: var(--color-white);
  }
  
  .main-navigation .main-nav > ul>li:not([class*="current-menu-"]):not(.social):hover > a, 
  .main-navigation .main-nav > ul>li:not([class*="current-menu-"]):not(.social):focus > a, 
  .main-navigation .main-nav > ul>li.sfHover:not([class*="current-menu-"]):not(.social) > a, 
  .main-navigation .main-nav > ul>li[class*="current-menu-"] > a{
    border-bottom-color: var(--color-orange);
  }
  
  .blog-page .main-navigation .main-nav > ul>li:not([class*="current-menu-"]):not(.social):hover > a, 
  .blog-page .main-navigation .main-nav > ul>li:not([class*="current-menu-"]):not(.social):focus > a, 
  .blog-page .main-navigation .main-nav > ul>li.sfHover:not([class*="current-menu-"]):not(.social) > a, 
  .blog-page .main-navigation .main-nav > ul>li[class*="current-menu-"] > a{
    border-bottom-color: var(--color-dark-grey);
  }
  
  
  .mobile-header-navigation{
    position: relative;
    background-color: var(--color-orange);
    z-index: 800;
  }
  
  .mobile-header-navigation .gp-icon svg{
    color: var(--color-white);
  }
  .mobile-header-navigation .button-reservas{
    margin-left: auto;
    margin-right: 5px;
    color: var(--color-orange);
    font-weight: bold;
    cursor: pointer;
    padding: 10px 15px;
    background-color: var(--color-dark-grey);
    transition: all 0.3s var(--slide-animation);
  }

  .mobile-header-navigation .button-reservas:hover{
    background-color: var(--color-white);
  }
  
  
  
  @media screen and (min-width: 1200px){
    .main-navigation a{
      font-size: 20px;
    }
    
      .a-contact-item i,
      .wpml-ls-item-toggle::before{
        color: var(--color-dark-grey);
      }
      .main-navigation .dropdown-menu-toggle,
      .main-navigation .dropdown-menu-toggle{
        display: none !important;
        width: 0px !important;
        margin: 0px !important;
        padding: 0px !important;
      }
      
      .site-header .main-navigation:not(.toggled) ul>li.sfHover>ul, 
      .site-header .main-navigation:not(.toggled) ul>li:hover>ul{
        padding-top: 30px;
        transform: translateX(-35%);
      }
      
      .main-navigation .main-nav ul>li.sfHover>ul li:first-of-type{
        position: relative
      }
      .site-header .main-navigation .main-nav ul>li.sfHover>ul liC::after,
      .site-header .main-navigation .main-nav ul>li:hover>ul li:first-of-type::after{
        content: '';
        display: block;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0; 
        height: 0; 
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 20px solid var(--color-orange);
      }
      
      .site-header .main-navigation:not(.toggled) ul>li>ul>li>a{
        background-color: var(--color-orange);
        transition: all 0.25s ease-in-out;
      }
      .main-navigation .main-nav ul li ul li > a, 
      .main-navigation .main-nav ul li ul li > a,
      .main-navigation .main-nav ul li ul li > a, 
      .main-navigation .menu-bar-item:hover > a, 
      .main-navigation .menu-bar-item.sfHover > a,
      .main-navigation:not(.toggled) ul>li>ul, 
      .main-navigation:not(.toggled) ul>li>ul{
        color: var(--color-white-orange) !important;
        font-size: 18px;
        font-weight: normal;
      }
      
      .site-header .main-navigation .main-nav ul>li>ul>li.current-menu-item>a,
      .site-header .main-navigation .main-nav ul>li>ul>li:hover>a{
        background-color: var(--color-white-orange) ;
        color: var(--color-orange) !important;
      }
      
      .main-navigation .main-nav > ul>li.social > a{
        transition: all 0.25s ease-in-out;
      }
      
      .main-navigation .main-nav > ul>li.social > :is(a:hover, a:active) {
        color: var(--color-orange);
      }
      
      .main-navigation:not(.toggled) ul>li>ul>li{
        text-align: center;
        padding: 0px;
      }
      
      .main-navigation ul ul{
        width: 260px;
      }
  }
  @media screen and (min-width: 1400px){
    .main-navigation .main-nav > ul>li{
      padding: 10px 14px;
    }
    .main-navigation .main-nav > ul > li.social{
      padding: 10px 10px 10px 20px;
    }
    
    .main-navigation .main-nav > ul > li.social ~ li.social{
      padding-left: 10px;
    }
  }
  
  /*
   * SLIDEOUT MENU
   *****************************************/
   
   
   
    #generate-slideout-menu{
      background-color: var(--color-orange) ;
      max-width: 100vw;
    }
   
    #generate-slideout-menu.main-navigation ul ul{
      left: 0px !important;
      overflow: visible;
    }
    
    #generate-slideout-menu.main-navigation .menu-primary ul ul li:not(.bold) a{
      font-weight: normal;
    }
    
    #generate-slideout-menu .margin-top > a{
      padding-top: 1em;
    }

    
    .slideout-navigation.do-overlay .inside-navigation {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      padding: 10%;
      width: 100%;
      max-width: 700px;
      height: 98vh;
    overflow-y: auto;
      position: relative;
      max-width: none;
  }
  
  #generate-slideout-menu .slideout-exit{
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
  }
  
    #generate-slideout-menu .inside-navigation .logo{
      order: 1;
      margin-bottom: 10px;
      width: 100%;
      text-align: left;
    }
    
    #generate-slideout-menu .inside-navigation .logo img{
      max-width: 280px;
      margin: 0px;
    }

    #generate-slideout-menu .inside-navigation .menu-primary{
      width: 54%;
      margin-top: 10px;
      order: 2;
    }
    #generate-slideout-menu .inside-navigation .menu-secondary{
      width: 44%;
      margin-top: 10px;
      order: 3;
    }
    
    #generate-slideout-menu .inside-navigation .menu-primary,
    #generate-slideout-menu .inside-navigation .menu-secondary{
      margin: 0px;
      min-width: 0px;
    }
    
    .slideout-navigation .menu-item-has-children{
      pointer-events: none;
    }
    
    .slideout-navigation .menu-item-has-children > a{
      pointer-events: auto;
    }
    #generate-slideout-menu.main-navigation ul ul,
    #generate-slideout-menu .menu-item-has-children .sub-menu {
      display: block !important;
      height: auto;
      pointer-events: auto;
      opacity: 1;
      position: relative;
      width: 100%;
      margin-bottom: 1em;
  }
  
  #generate-slideout-menu.main-navigation ul li:hover > a,
  #generate-slideout-menu.main-navigation ul li.current-menu-item > a
  {
    color: var(--color-dark-grey);
  }
  
  
    
  .slideout-overlay{
    background-color: var(--color-orange-opacity) ;
  }
  
  #generate-slideout-menu .menu li{
    text-align: left;
    
  }
  
  

  #generate-slideout-menu .menu-primary .social{
    display: none;
    pointer-events: none;
    
  }

  #generate-slideout-menu .menu-primary .menu>li > a,
  #generate-slideout-menu .menu-secondary .menu>li.big > a{
    font-size: 18px;
    position: relative;
    line-height: 2.2em;
    font-weight: bold;
  }
  
  #generate-slideout-menu .menu-primary .menu>li{
    margin-bottom: 1em;
  }
 
  
  #generate-slideout-menu .menu-primary .menu>li > a::before,
  #generate-slideout-menu .menu-secondary .menu>li.big > a::before{
    content: '';
    width: 44px;
    height: 3px;
    position: absolute;
    bottom: 0px;
    background-color: var(--color-dark-grey);  
  }
  
  #generate-slideout-menu .menu-primary .sub-menu > li:first-of-type{
    margin-left: -15px;
  }
  
  #generate-slideout-menu .menu-primary .sub-menu > li:first-of-type a{
    font-weight: bold;
  }
  
  #generate-slideout-menu .menu-primary .sub-menu > li:not(:first-of-type){
    list-style: disc;
  }
  
  #generate-slideout-menu .menu-primary .sub-menu> li{
    color: var(--color-white);
  }
  
  #generate-slideout-menu .menu-primary .sub-menu> li > a{
    font-size: 14px;
    line-height: 1.8em;
  }
  
  #generate-slideout-menu .menu-primary .sub-menu>li{
    margin-bottom: 0em;
  }
  
  #generate-slideout-menu .menu-secondary{
    padding-top: 0.5em;
  }
   
  #generate-slideout-menu .menu-secondary ul{
    text-align: left;
  }
  
  #generate-slideout-menu .menu-secondary .social{
   width: 20px;
   margin-right: 5px;
   display: inline-block; 
  }
  
  #generate-slideout-menu .menu-secondary .sub-menu > li:not(.big) > a{
    font-size: 14px;
    line-height: 1.8em;
    font-weight: normal;
  }
  
  #generate-slideout-menu .menu-secondary .menu>li.social > a{
    font-size: 1.25em;
  }
  
  #generate-slideout-menu .off-canvas-footer{
    position: fixed;
    background-color: var(--color-white);
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px;
    padding: 0px;
  }
  
  #generate-slideout-menu .off-canvas-footer > p,  
  #generate-slideout-menu .off-canvas-footer .menu{
    display: none;
  }
  @media screen and (min-width: 768px){
    #generate-slideout-menu .menu-secondary .menu> li.big > a,
    #generate-slideout-menu .menu-primary .menu> li > a{
      font-size: 1.2em;
    }
    #generate-slideout-menu .menu-primary .sub-menu> li > a,
    #generate-slideout-menu .menu-secondary .menu> li:not(.big) > a{
      font-size: 1em;
    }
    
    #generate-slideout-menu .margin-top > a{
      padding-top: 2em;
    }
  }
  @media screen and (min-width: 768px) {
    .slideout-navigation.do-overlay .inside-navigation {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      padding: 10% calc(50vw - 350px);
      height: 98vh;
    overflow-y: auto;
      position: relative;
  }
  #generate-slideout-menu .inside-navigation .logo img{
    max-width: 380px;
  }
  }
  
  
  @media screen and (min-width: 1101px){
    /* #generate-slideout-menu .off-canvas-footer{
      background-color: var(--color-orange);
    } */
  
  }
  
  /*
   * HERO GENERAL
   ***************************************/
  .hero-general{
    height: 100px;
    overflow: hidden;
  }
  
  .hero-general img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
   
  .intro-text{
    width: 95%;
    margin: 0 auto;
    max-width: 960px;
  } 
  
  .intro-text p{
    text-align: center;
    font-weight: 500px;
    margin: 1em 0em;
  }
  
  @media screen and (min-width: 768px){
    .hero-general{
      height: 300px;
    }
  }
  
  
  /*
   * FORM RESERVA
   *************************************/
   
   .m-form-reserva{
     background-color: var(--color-dark-grey);
     padding: 10px;
   }
   .m-form-reserva button{
    background-color: var(--color-orange-2);
    width: 100%;
    padding: 10px 0px;
    text-align: center;
  }
  
  .m-form-reserva .row-form{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }
  
  .m-form-reserva label{
    color: var(--color-white);
  }
  
  .m-form-reserva .col{
    width: 100%;
  }
  
  .m-form-reserva .col-edad{
    width: calc(40% - 5px);
  }
  
  .m-form-reserva .col-promo{
    width: calc(60% - 5px);
  }
  
  .m-form-reserva .col-submit{
    margin-top: 10px;
  }
  
  .m-form-reserva .input-promo{
    line-height: 32px;
  }
  
  .m-form-reserva button{
    font-weight: bold;
  }
  
  .select2-container .select2-selection,
  .select2-container .select2-selection--single .select2-selection__arrow{
    height: 38px;
  }
  
  .select2-container--default .select2-selection--single{
    border-radius: 0px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered,
  .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{
    color: var(--color-p-grey)
  }
  
  .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: var(--color-orange) transparent transparent transparent;
  }
  
  .select2-container .select2-selection .select2-selection__rendered{
    line-height: 38px;
  }
  
  @media screen and (min-width: 1024px){
    .m-form-reserva{
      padding: 20px;
    }
    
    .m-form-reserva .h4{
      font-size: 20px;
    }
    .m-form-reserva .col-oficina,
    .m-form-reserva .col-fecha{
      width: 15.8%;
    }
    
    .m-form-reserva .col-promo{
      width: 11.8%;
    }
    .m-form-reserva .col-submit{
      width: 13%;
      margin-top: 0px;
    }
    
    .m-form-reserva .col-edad{
      width: 5%;
    }
    
    .m-form-reserva button{
      height: 100%;
      font-size: 20px;
    }
  }
  
  /*
   * Hide text
   ***************************************/
  
  .hide-text{
    overflow: hidden;
    transition: all 0.25s ease-in-out;
  }
  
  
  .m-hide-text-module.default .hide-text{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .m-hide-text-module.valores  .hide-text-button{
    color: var(--color-orange);
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .m-hide-text-module .hide-text-button{
    background-color: transparent;
    color: var(--color-orange);
    font-weight: bold;
    font-size:15px;
    padding-top: 1.25em;
  }
  
  .m-hide-text-module.default .hide-text-button{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  
  .m-hide-text-module.valores .hide-text-button{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
  }
  
  .m-hide-text-module .hide-text-button .icon-action{
    background-color: var(--color-orange);
    width: 20px;
    height: 20px;
    color: var(--color-white);
    font-size: 12px;
    padding: 4px;
    margin: 10px 5px;
    border-radius: 100%;
  }
  
  .m-hide-text-module .hide-text-button .icon-action:before {
    content: "\e91f";
  }
  .m-hide-text-module.active .hide-text-button .icon-action:before {
    content: "\e920";
  }
  
  .m-hide-text-module.active .hide-text-button .text.not-active{
    display: block;
  }
  
  .m-hide-text-module .hide-text-button .text.active{
    display: none;
  }
  
  .m-hide-text-module.active .hide-text-button .text.not-active{
    display: none;
  }
  
  .m-hide-text-module.active .hide-text-button .text.active{
    display: block;
  }
  
  .m-hide-text-module.active :is(.h2,.h4){
    margin-top: 1.25em;
  }
  
  @media screen and (min-width:768px){
    .m-hide-text-module .hide-text-button{
      font-size:18px;
    }
  }
  
  /*
   * Home intro Section
   ***************************************/
  
  .o-home-intro-section{
    padding: 0px 0px;
  }
  
  .o-home-intro-section{
    display: flex;
    flex-direction: column;
  }
  
  .o-home-intro-section > .logo{
    order: 1;
  }
  
  .o-home-intro-section > .h2{
    order: 2;
  }
  
  .o-home-intro-section > .h4{
    order: 3;
  }
  .o-home-intro-section > .intro-text,
  .o-home-intro-section > .m-hide-text-module{
    order: 4;
    margin: 0px auto;
  }
  
  .o-home-intro-section > picture{
    order: 3;
  }
  
  .o-home-intro-section .logo{
    width: 120px;
    margin: 30px auto;
  }
  
  @media screen and (min-width: 1024px) {
    .o-home-intro-section{
      padding: 0px 0px 0px;
    }
    #sticky-navigation .is-logo-image{
      width: 370px;
    }
    .o-home-intro-section .logo{
      width: 150px;
    }
    
    .o-home-intro-section > .intro-text,
    .o-home-intro-section > .m-hide-text-module{
      order: 3;
      margin: 20px auto;
    }
    
    .o-home-intro-section > picture{
      order: 4;
    }
    
    .o-home-intro-section .contained{
      max-width: var(--container-small-width);
      margin: 0 auto;
    }
  }
  
  /*
   * Hide text
   ***************************************/
   .valores-content{
     padding-bottom: 40px;
   }
  
  .valores-content .h2,
  .valores-content p{
    margin: 1.6rem 10px;
  } 
  
  .valores-content .h2{
      line-height: 30px;
  }
  .valores-content .tgrey{
    color: var(--color-dark-grey);
  }
  
  @media screen and (min-width:768px){
    .o-tabs-section.accordion{
      padding-left: 5%;    
    }
    .valores-content .h2{
      line-height: 50px;
    }
  }
  /*
   * TABS
   ****************************************/
  .a-button-tab{
    background-color: transparent !important;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 20px 0px 20px;
  }
  
  .a-button-tab p{
    margin-bottom: 0px;
  }
  
  .a-button-tab .btn-num{
    background-color: var(--color-orange);
    width: 40px;
    flex-basis: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    font-family: var(--default-font);
  }
  
  
  
  .a-button-tab .btn-title{
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: auto;
    text-align: left;
    color:var(--color-dark-grey);
    margin-top: 8px;
    margin-bottom: 0px;
    margin-left: 5px;
    width: calc(99% - 80px);
    font-family: var(--default-font);
    font-weight: 600;
  }
  
  .a-button-tab .icon-action{
    margin-left: auto;
    background-color: var(--color-white);
    color: var(--color-orange);
    padding: 5px;
    border-radius: 100%;
    font-size: 0.9rem;
    width: calc(0.9rem + 10px);
    height: calc(0.9rem + 10px);
    margin-top: 6px;
  }
  
  .a-button-tab .icon-action:before {
    content: "\e91f";
  }
  .a-button-tab.active .icon-action:before {
    content: "\e920";
  }
  
  .tab-content{
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0s ease-in-out;
  }
  
  .tab-content .container > p{
    color: var(--color-black);
  }
  
  .tab-content .container > .subtitle{
    font-size: 18px;
    color: var(--color-orange);
    font-weight: 700;
  }
  
  .tab-content.active{
    max-height: 2000px;
    padding: 0px 0px 20px;
    transition: max-height 0.9s var(--slide-animation);
  }
  
  .o-tabs-section.faqs .tab-content.active{
    transition: max-height 2.2s var(--slide-animation);
  }
  
  .tab-item:first-of-type{
    border-top: 1px solid var(--color-bg-orange);;
  }
  
  .tab-item{
    border-bottom: 1px solid var(--color-bg-orange);;
  }
  
  
  .o-tabs-section.faqs .btn-title.orange{
    color: var(--color-orange-2);
    font-weight: 600;
  }
  
  @media screen and (min-width: 1024px){
    .a-button-tab{
      padding: 20px 20px 20px;
    } 
    
    .a-button-tab .btn-title{
      font-size: 25px;
      width: calc(99% - 120px);
      margin-top: 12px;
      padding-left: 5px;
    }
    
    .tab-content .container > p{
      font-size: 16px;
      line-height: 25px;
    }
    
    .tab-content .container > .subtitle{
      font-size: 22px;

    }
    .tab-content.active{
      padding: 0px 20px 20px;
    }
    .a-button-tab .btn-num{
      width: 55px;
      height: 55px;
      flex-basis: 55px;
      font-size: 22px;
    }
    

  }
  
  /*
   * MAPA INFO ITEM
   ****************************************/
  
   .mapa-info-item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .mapa-info .mapa-info-item .icon{
    width: 30px;
    color: var(--color-dark-grey);
  }
  
  .mapa-info .mapa-info-item .info p,
  .mapa-info .mapa-info-item .info a{
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 600;
  }
  
  .mapa-page-info .mapa-info-item .icon{
    width: 30px;
    color: var(--color-orange);
    
  }
  
  .mapa-page-info .mapa-info-item .info{
    width: calc(99% - 40px);
    padding-left: 3px;
  }
  
  footer .mapa-info-item .icon{
    width: 30px;
  }
  
  .mapa-page-info .title{
    color: var(--color-orange);
    font-weight: 600;
    font-size: 30px; 
    margin-bottom: 0.6em;
  }
  .mapa-page-info .title{
    font-size: 26px; 
  }
  
  
  .mapa-page-info .mapa-info-item .info p,
  .mapa-page-info .mapa-info-item .info a{
    color: var(--color-dark-grey);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.3em;
  }
  
  .mapa-info-item .info{
    width: calc(100% - 55px);
  }
  
  
  .mapa-info-item .icon-pick{
    font-size: 1.5rem;
  }
  
  .mapa-info-item .icon-phone{
    font-size: 1.25rem;
  }
  
  .mapa-info-item .icon-email{
    font-size: 0.95rem;
  }
  
  .mapa-page-info .mapa-info-item .icon-phone{
    font-size: 1.45rem;
  }
  
  .mapa-info-item .icon-calendar{
    font-size: 1.25rem;
  }

  
  @media screen and (min-width: 1060px){
    .mapa-page-info .mapa-info-item .info p,
    .mapa-page-info .mapa-info-item .info a{
      font-size: 19px;
    }
    
    .mapa-page-info .title{
      color: var(--color-orange);
      font-weight: 600;
      font-weight: bold;
    }
    
      
  .mapa-page-info .mapa-info-item .icon-phone,
  .mapa-page-info .mapa-info-item .icon-calendar{
    font-size: 1.45rem;
  }
  
  .mapa-page-info .mapa-info-item .icon-email{
    font-size: 1.15rem;
  }
  
  .mapa-page-info .mapa-info-item .icon-pick{
    font-size: 1.7rem;
  }
  
  .mapa-page-info .mapa-page-info .mapa-info-item .icon-phone{
    font-size: 1.75rem;
  }
  
    
  }
  
  
  /*
   * MAPA
   ***************************************/
  
  .mapa-oficinas-section{
    padding: 0px 10px 20px !important;
    
  }
  
  .mapa-oficinas-section .h2{
    max-width: 340px;
    margin: 20px auto;
  } 
  
  
  .o-mapa-oficinas{
    position: relative;
    max-width: 340px;
    margin: 0 auto;
  }
  

  .mapa-info{
    background-color: var(--color-orange);
    padding: 20px;
  }
  
  .mapa-item .title{
    color: var(--color-white);
    font-weight: bold;
    font-size: 18px;
  }
  
  .mapa-info .arrow-link{
      color: var(--color-white);
      display: flex;
      margin: 8px 0px 0px auto;
      justify-content: flex-end;
      align-items: center;
      text-decoration: none;    
  }
  .mapa-info .arrow-link i{
      background-color: var(--color-dark-grey);
      width: 20px;
      height: 20px;
      /* padding-top: 2px;*/
      padding-left: 1px; 
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 100%;
      margin-left: 5px;
  }
  .mapa-info .arrow-link i:before{
      color: var(--color-white);      
      font-size: 10px;      
  }

  @media screen and (min-width: 768px){
  .mapa-oficinas-section{
    padding: 50px 10px !important;
    
  }
}
  @media screen and (max-width: 1060px){
    .mapa-info{
      margin: 20px;
    }
    
    .mapa-item .pick{
      width: 22px;
      position: absolute;
    }
    
      
  .o-mapa-oficinas .mapa{
    margin: 0px -50px;
  }
  
    
  }
  
  @media screen and (min-width: 1060px){
    .o-mapa-oficinas{
      max-width: 944px;
      margin: 0 auto;
    }
    
    .mapa-oficinas-section .h2{
      max-width: 760px;
      margin: 40px auto;
    } 
    
    .mapa-oficinas-section .h2.big{
      max-width: 1060px;
      margin: 40px auto;
    } 
    
    .mapa-item{
      position: absolute;
    }
    
    .mapa-item .wrapper{
      position: relative;
    }
    
    .mapa-item .title{
      font-size: 21px;
    }
    
    .mapa-page-info .mapa-info-item .info p,
    .mapa-page-info .mapa-info-item .info a{
      font-size: 19px;
    }
    
    .mapa-item .pick{
      width: 60px;
      cursor: pointer;
    }
    
    .mapa-item:not(.active) .pick{
      animation: blink 1.2s var(--slide-animation) 0s infinite;
    }
    .mapa-item .mapa-info{
      width: 370px;
      padding: 50px 25px 40px 40px;
      opacity: 1;
      transition: opacity 0.5s var(--slide-animation);
    }
    
    .mapa-item.row .mapa-info{
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translate(100%, -50%);
    }
    
    .mapa-item.row-reverse .mapa-info{
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translate(-100%, -50%);
    }
    
    .mapa-info{
      margin: 10px;
    }
  
    .mapa-item:not(.active) .mapa-info{
      opacity: 0;
    }
    
    .mapa-item:not(.active) .mapa-info a{
      pointer-events: none;
      cursor: none;
    }
    
  }
  
  .o-swiper-ventajas{
    position: relative;
    padding-top: 60px;
    padding-bottom: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  
  /* .o-swiper-ventajas .swiper-slide{
    display: flex;
    justify-content: center;
    /*width: 160px  !important;
  } */
  
  .m-ventajas-item .icon{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    margin: 0 auto;
    background-color: var(--color-dark-grey);
    color: var(--color-orange);
    font-size: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out;
  }
  
  .m-ventajas-item:hover .icon{
    background-color: var(--color-orange);
    color: var(--color-white);
  }
  
  .m-ventajas-item p.tcenter{
    font-size: 18px;
    font-weight: bold;
    margin: 1.6rem auto;
    max-width: 230px;
    color: var(--color-black);
    line-height: 20px;
    margin-bottom: 1em;
  }
  
  .o-swiper-ventajas .swiper-button-prev,
  .o-swiper-ventajas .swiper-button-next{
    top:46%;
  }
  
  @media screen and (min-width: 768px){
    /* .o-swiper-ventajas .swiper-slide{
      /*width: 250px !important;
    } */
    
    .o-swiper-ventajas{
      padding-top: 60px;
      padding-bottom: 60px;
    }
    
    .m-ventajas-item .icon{
      width: 210px;
      height: 210px;
      font-size: 5em;
    }
    
    .m-ventajas-item p.tcenter{
      font-size: 18px;
      max-width: 210px;
    }
    
    .o-swiper-ventajas .swiper-button-prev,
    .o-swiper-ventajas .swiper-button-next{
      top: 41%;
    }
  }
  
  /*
   * Ventajas Page
   ***********************************/
   .o-ventajas-big-grid{
       display: flex;
       justify-content:center;
       flex-wrap: wrap;
       width: 100%;
       max-width: 365px;
   }
   
   .o-ventajas-big-grid .col{
       width: 100%;
   }
   
   .m-ventajas-big-item{
      margin-bottom: 10%;
      transition: all 0.25s ease-in-out;
   }
   
   .m-ventajas-big-item:hover{
    margin-bottom:10px;
   }
   .m-ventajas-big-item .wrapper{
      background-color: var(--color-white-orange);
      border-top-right-radius: var(--radius-srqu-image);
      border: 1px solid var(--color-orange);
      transition: all 0.25s ease-in-out;
      padding: 10%;
   }
  
   .m-ventajas-big-item::after{
      border-top-right-radius: var(--radius-srqu-image);
   }

   .m-ventajas-big-item:hover .wrapper{
      background-color:var(--color-white);
   }
   
   .m-ventajas-big-item .icon{
     font-size: 50px;
     color: var(--color-orange);
     margin-bottom: 0.3em;
     display: inline-block;
     
   }
   
   @media screen and (min-width: 800px){
    .o-ventajas-big-grid{
        justify-content:space-between;
        max-width: 100%;
    }
    


    .o-ventajas-big-grid .wrapper{
      min-height: 500px;
      padding: 10%;
    }
    .o-ventajas-big-grid .col{
      width: 45%;
    }
    
    .m-ventajas-big-item .icon{
      font-size: 80px;
    }
   }
   
  /*
   * Article Loop item
   **********************************/

  .m-article-item__content{
    margin-top: 2.2rem;
    margin-bottom: 1.4rem;
  }
  
  .m-article-item__content > .h3{
    display: block;
    font-size: 18px;
    margin-bottom: 0.8em;
  }
  
  .m-article-item__content > a{
    text-decoration: none;
  }
  
  .m-article-item__content div > a{
    font-size: 15px;
  }
  
  .m-article-item__content p{
    color: var(--color-dark-grey);
  }
  
  :is(.m-article-single__metas, .m-article-item__metas),
  :is(.m-article-single__metas, .m-article-item__metas) .meta{
    display: flex;
    align-items: center;
  }
  
  .m-article-single__metas{
    justify-content:center;
  }
  
  .m-article-single__metas + img{
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .m-article-item__metas{
    margin-bottom: 0.7rem;
  }
  
  :is(.m-article-single__metas, .m-article-item__metas) .meta > i{
    color: var(--color-meta-orange);
    margin: 0px 5px 0px 0px;
    font-size:1.15em;
  }
  
  :is(.m-article-single__metas, .m-article-item__metas) .meta{
    margin-bottom: 0px;
    padding: 0px 8px 0px 0px;
    color: var(--color-p-grey);
    font-size: 12.5px;
    line-height: 12px;
    
  }
  
  :is(.m-article-single__metas, .m-article-item__metas) .meta:last-of-type{
    padding: 0px 0px 0px 0px;
  }
  
  .wp-block-image figcaption{
    text-align: left;
  }
  
  .m-article-single-body{
    margin-top: 4%;
    margin-bottom: 4%;
  }
  
  .m-article-single-body :is(h1, h2, h3, h4, h5, h6){
    font-size: 28px;
    color: var(--color-orange)
  }
  
  .m-article-single-header{
    margin: 40px auto 0px;
    max-width: var(--container-small-width);
  }
  
  .m-article-single-header .image{
    width: 100%;
  }
  
  .m-article-single-body .container{
    max-width: var(--container-small-width);
    padding: 20px 20px;
  }
  
  .m-article-single-tax{
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
  }
  .m-article-single-body a,
  .m-article-single-tax a{
    color: var(--color-orange);
  }
  
  .o-blog-home-section {
    margin-top: 30px;
    padding: 0px 10px;
  }
  
  @media screen and (min-width: 768px){
    
    .o-blog-home-section .row{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  
    .o-blog-home-section .row > .col{
      padding: 4.5%;
      width: 49.5%;
    }
    
    .m-article-item__metas{
      margin: 12px 0px;
    }
    :is(.m-article-single__metas, .m-article-item__metas) .meta{
      font-size: 15px;
      line-height: 15px;
    }
    
    .m-article-single-body :is(h1, h2, h3, h4, h5, h6){
      font-size: 28px;
      color: var(--color-orange);
      margin-bottom: 1rem;
    }
    
    .m-article-single-body p{
      margin-bottom: 1.5rem;
    }
  }
  
  
  
  .comments-area{
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
  }
  
  .a-button-post a{
      max-width: 250px;
      display: flex;
      align-items: center;
      text-decoration: none;
      font-size: 12px;
      color: var(--color-dark-grey);
      line-height: 1.1em;
      
  }
  
  
  
  .a-button-post .icon-arrow-left-special,
  .a-button-post .icon-arrow-right-special{
      font-size:30px;
      width: 40px;
      color: var(--color-orange);
      
  }
  
  .a-button-post.right{
    text-align: right;
  }
  .a-button-post .icon-arrow-right-special{
    margin-left: 10px;
  }
  .a-button-post .icon-arrow-left-special{
    margin-right: 10px;
  }
  .m-related-post-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    margin: 30px auto;
  }
  
  #commentform :is(textarea, input[type=text], input[type=email], input[type=url]) {
    background-color: var(--color-white-orange);
  }
  
  #commentform input[type=submit]{
    border-color: var(--color-orange);
    background-color: transparent;
    color: var(--color-orange);
    max-width: 280px;
  }
  
  #commentform #wp-comment-cookies-consent{
    width: auto;
  }
  label[for=wp-comment-cookies-consent]{
    margin-bottom: 0px;
  }
  .comment-reply-title{
    color: var(--color-orange);
  }

  #blogsubmitform input[type=submit]{
    border-color: var(--color-orange);
    background-color: transparent;
    color: var(--color-orange);
    max-width: 80px;
  }
  
  @media screen and (min-width:768px){
    .a-button-post a{
      max-width: 350px;
      font-size: 18px;  
          
    }
  }
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls-dots .dot{
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: var(--color-orange);
  }
  
  .ti-widget + .tcenter{
    margin-top: 1.75em;
  }
  
  .ti-review-item{
    background-color: var(--color-white);
    border-top-right-radius: var(--radius-srqu-image);
    border: 1px solid var(--color-orange);
    position: relative;
    overflow: visible !important;
    margin: 30px 0px;
    padding: 30px 0px !important;
  }
  
  .ti-review-item .ti-inner{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(10px, auto);
    height: 100%;
  }
  
  .ti-review-item .ti-review-header{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
  }
  
  .ti-review-item .ti-review-header:after{
    position: relative !important;
    margin-right: 5px;
    margin-top: 5px;
  }
  
  .ti-review-item .ti-inner .ti-review-content{
    grid-column: 1 / 4;
    grid-row: 1;
  }
  
  .ti-review-item .ti-inner .ti-review-header{
    grid-column: 1 / 3;
    grid-row: 2;
  }
  
  .ti-review-item .ti-inner .ti-stars{
    grid-column: 3 / 4;
    grid-row: 2;
  }
  
  .ti-review-item::before{
    content: "\e91e";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2rem;
    color: var(--color-orange);
    position: absolute !important;
    display: block;
    z-index: 3;
    top: -10px;
    left: 20px;
  }
  
  
  .logos-trustindex{
    width: 90%;
    max-width: 800px;
    margin: 30px auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logos-trustindex .logo{
    width: 32.5%;
    height: 26px;
    display: flex;
    justify-content: center;
  }
  
  .logos-trustindex .logo img{
    height: 100%;
  }
  
  @media screen and (min-width: 768px){
    .logos-trustindex .logo{
      height: 60px;
    }
    
    .logos-trustindex{
      margin: 50px auto 30px;
    }
    
    .ti-review-item{
      max-width: 250px;
      padding: 30px 15px !important;
      margin: 30px;
    }
  }
  
  @media screen and (min-width: 768px){
    .ti-widget[data-layout-id="16"] .ti-reviews-container-wrapper{
      justify-content: center;
    }
    
    .ti-widget[data-layout-id='16'][data-set-id='light-minimal'] .ti-col-3 .ti-review-item,
    .ti-widget[data-layout-id='16'][data-set-id='light-minimal'] .ti-col-4 .ti-review-item{
        flex: 0 0 40% !important;
        max-width:40% !important;
    }
  }

  
  /*
   * NEWSLETTER SECTION
   *********************************************/
  .o-newsletter-section{
    position: relative;
  }
  
  .wpcf7-list-item input[type=checkbox]{
    display: none;
    width: 0px;
    height: 0px;
  }
  
  .wpcf7-list-item input[type=checkbox] + .check,
  .legals input[type=checkbox] + .check{
    display: block;
    background-color: var(--color-bg-orange);
    width: 15px;
    height: 15px;
    font-size: 0.9em;
    border-radius: 100%;
    position: relative;
  }
  
  .wpcf7-list-item input[type=checkbox] + .check::before,
  .legals input[type=checkbox] + .check::before{
    opacity: 0;
    position: absolute;
    top: -1px;
    right: -3px;
    color: var(--color-orange);
    transition: all 0.25s ease-in-out;
  }
  
  .wpcf7-list-item input[type=checkbox]:checked + .check::before,
  .legals input[type=checkbox]:checked + .check::before{
    opacity: 1;
  }
  
  .o-newsletter-section::before{
    content: "";
    display: block;
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white-orange);
  }
  
  .o-newsletter-section .newsletter-section{
    position: relative;
    z-index: 2;
  }
   
  .o-newsletter-section .container{
    padding: 14% 12%;
  }
  
  .o-newsletter-section .container article{
    position: relative;
  }
  
  .o-newsletter-section .container article > *{
    position: relative;
    z-index: 2;
  }
  
  .o-newsletter-section .container article::after{
    content: '';
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0%;
    transform: translate(-50%, -50%);
    background-color: var(--color-bg-orange);
  }
  
  .newsletter-section .container .h4.orange{
    width: 85%;
  }
  
  .o-newsletter-section .container .wpcf7-form{
    position: relative;
    z-index: 2;
  }
  
  .newsletter-form .input{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-white);
    border: 1px solid var(--color-orange);
    padding: 2px 6px;
    margin-bottom: 0.5em;

  }
  .newsletter-form .input input[type=email],
  .newsletter-form .input input[type=submit]{
    background-color: transparent;
    border-color: transparent !important;
  }
  
  .newsletter-form .input i{
    display: inline-block;
    margin-left: 5px;
    font-size: 1.3em;
    order: 1;
    color: var(--color-orange);
  }
  
  .legals,
  .legals a,
  .newsletter-form .input input[type=email]{
    color: var(--color-dark-grey);
  }

  
  .newsletter-form .input .your-email{
    order: 2;
    width: 55%;
  }
  
  .newsletter-form .input input[type=submit]{
    width: 130px;
    color: var(--color-orange-2);
    margin-left: auto;
    background-image: url('https://alquilercocheibiza.com/wp-content/uploads/2024/04/enviar.svg');  
    background-repeat: no-repeat;
    background-size: 15px 30px;
    background-position: calc(45% + 30px) 0%;
    order: 4;
    padding: 2px 2px 2px 1px;
    text-align: left;
  }
  
  .newsletter-form .input .wpcf7-spinner{
    order: 3;
    margin: 0px 2px;
    width: 10px;
  }
  

  
  @media screen and (min-width: 768px){  
    .o-newsletter-section::before{
      top: 20px;
      left: 0;
      right: 0;
      bottom: 20px;
    }
    
    .o-newsletter-section .container{
      padding: 70px 60px;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }
    
    .o-newsletter-section .container article,
    .o-newsletter-section .container .wpcf7{
      width: 45%;
      max-width: 430px;
    }
    
    .o-newsletter-section .container article::after{
      width: 350px;
      height: 350px;
      top: 50%;
      left: 17.5%;
      transform: translate(-50%, -50%);
    }

    .o-newsletter-section .container article p{
      width: 250px;
    }
    
    .newsletter-form .input{
      padding: 7px 20px;
    }
    
    .newsletter-form .input input[type=submit]{
      width: 100px;
      background-size: 20px 20px;
      background-position: calc(50% + 30px) 50%;
      padding: 10px 45px 10px 5px
    }
  }
  
    /*NEWSÑLETTER FOOTER*/
  
    .site-footer .newsletter-form input{
      padding: 4px 0px;
      font-size: 15px;
      color: var(--color-dark-grey);
    }
    
    .site-footer .newsletter-form .input{
      padding: 0px 5px;
    }
    
    .site-footer .newsletter-form .input input[type=submit]{
      color: transparent;
      background-position: 0% 50%;
      padding: 4px 2px;
      width: 21px;
      text-align: left;
    }
    
    .site-footer .newsletter-form .input i {
      display: none;
    }
  
    .site-footer .legals, 
    .site-footer .legals a{
        color: var(--color-white);
    }
    
    .site-footer .newsletter-form .input input[type=email] {
      color: var(--color-dark-grey);
  }
    
    .site-footer .wpcf7-list-item input[type=checkbox] + .check::before{
       color: var(--color-dark-grey);
    }
    
    .legals .wpcf7-acceptance{
      vertical-align: -2px;
    }
    
    .legals.acceptance{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  
    .legals.acceptance .wpcf7-form-control-wrap{
      width: 32px;
      
    }
    
    .legals.acceptance .wpcf7-form-control-wrap + .small{
      width: calc(99% - 35px);
      margin-left: 3px;
      margin-top: 2px;
    }
    
  /*
   * BLOQUE CORPOERATIVO
   *********************************************/
  
  .bloque-coorporativo{
    position: relative;
    padding: 50px 0px;
    margin: 50px 0px;
    background-color: var(--color-white-orange);
  }
  
  /* .bloque-coorporativo:after{
    content: "";
    display: block;
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-light-orange);
  } */
  .bloque-coorporativo picture img{
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .bloque-coorporativo .container{
   position: relative;
   z-index: 2; 
  }
  
  /* .bloque-coorporativo.map:after{
    background-color: var(--color-white-orange);
  } */
  @media screen and (max-width: 899px){
    
    /* .bloque-coorporativo.mapa .content{
      margin-top: 1.6em;
    } */
     

    
    .bloque-coorporativo .container{
      max-width: 406px;
      padding-bottom: 30px;
      padding: 0px 14px;
    }
    
    
    .bloque-coorporativo .container > p,
    .bloque-coorporativo .container .content{
      max-width: 320px;
      margin: 0 auto;
    }
    
    .bloque-coorporativo.map .container .content{
      padding-top: 16px;
    }
  }
  
  @media screen and (min-width: 900px){ 
    
    .bloque-coorporativo .container{
      display: flex;
      justify-content: space-around;
      align-items: center;
    }
    
    /* .bloque-coorporativo:after{
      top: 70px;
      bottom: 70px;
    } */
    
    .bloque-coorporativo picture{
      width: 55%;
    }
   
    
    .bloque-coorporativo .h1{
      width: 35%;
      margin: 5%;
    }
    
    .bloque-coorporativo .content{
      width: 35%;
      margin: 5%;
    }
   }
  
   
   @media screen and (min-width: 1240px){ 
    /* .bloque-coorporativo:after{
      top: 115px;
      bottom: 115px;
    } */
    
    /* .bloque-coorporativo.map {
      margin-top: 70px;
      margin-bottom: 70px;
    }
    
    .bloque-coorporativo.map:after{
      top: 100px;
      bottom: 100px;
    }
     */
   }
   
   .o-swiper-ofertas-home{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .o-swiper-vehicles-filter{
   padding-top: 0px;
   padding-bottom: 60px;
 }
  .o-swiper-vehicles-filter .swiper-slide,
   .o-swiper-ofertas-home .swiper-slide{
     display: flex;
     justify-content: center;
     
   }
   
   @media screen and (max-width:400px){
    .o-swiper-vehicles-filter,
    .o-swiper-ofertas-home{
      padding-left: 10px;
      padding-right: 10px;
    }
    .o-swiper-vehicles-filter:after,
    .o-swiper-vehicles-filter:before,
    .o-swiper-ofertas-home:after,
    .o-swiper-ofertas-home:before {
      width: 10px;
    }
    
   }
   
   @media screen and (min-width:768px){
    .o-swiper-ofertas-home{
      padding-top: 60px;
      padding-bottom: 60px;
    }
   }
   
   /*
    * Otros Items (Extend Shadowed Item)
    **************************************/
    .o-swiper-otros{
      padding-top: 60px;
      padding-bottom: 60px;
    }
   
    .o-swiper-otros .swiper-slide{
      display: flex;
      justify-content: center;
    }
    
    .m-otros-item .wrapper{
      background-color: var(--color-white);
      text-align: center;
    }
    
    .m-otros-item__wrapper{
      max-width: 280px;
      height: 416px;
      border: 1px solid var(--color-orange);
    }
  
    .m-otros-item:hover .wrapper{
      background-color: var(--color-white-orange);
    }
    
    .m-otros-item__content{
      padding: 5%;
    }
    
    .m-otros-item::after {
      max-width: 280px;
      height: 416px;
    }
    
    .m-otros-item__desc p{
      margin-bottom: 1em;
    }
    
    .m-otros-item__buton{
      background-color: var(--color-white);
      border:  1px solid var(--color-orange);
      color: var(--color-orange);
      text-decoration: none;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 17px;
    }
    
    .m-otros-item__desc{
      padding: 10px 7%;
      
    }
    
    .m-otros-item__buton:hover{
      color: var(--color-white);
      background-color: var(--color-orange);
    }
    
    .m-otros-item .m-otros-item__title{
      font-size: 22px;
      line-height: 26px;
      font-weight: 600;
    }
    
  
  @media screen and (min-width: 1024px){
    .m-otros-item__wrapper,
    .m-otros-item::after{
      max-width: 370px;
      height: 530px;
    }
    
    .m-otros-item .m-otros-item__title{
      font-size: 28px;
      line-height: 32px;
    }
    
    .m-otros-item__buton{
      font-size: 20px;
      padding: 17px 28px;
    }
  }
  
  
  .nosotros-valores .o-valores-grid{
    margin-top: 30px;
  }
  
  .o-valores-grid{
    max-width: var(--container-small-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .o-valores-grid .col{
    width: 100%;
    margin-bottom: 5%;
  }
  
  .o-valores-item{
    margin-bottom: 20px;
    
  }
  .o-valores-item .wrapper{
    background-color: var(--color-white);
    border: 1px solid var(--color-orange);
    border-top-right-radius: 60px;  
  }
  
  .o-valores-item__header{  
    display: flex;
  }
  
  .o-valores-item__header figure{
    width: 65px;
  }
  
  .o-valores-item .wrapper{
    padding: 8% 8% 8% 12% ;
  }
  
  .o-valores-item__header-content {
    display: flex;
    margin-left: 5px;
    margin-top: 18px;
    width: calc(100% - 75px);
  }
  
  
  .o-valores-item__header .num{
    background-color: var(--color-orange);
    color:  var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
  }
  
    
  .o-valores-item__title{
    margin-left: 3px;
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.1em;
    width: calc(100% - 43px);
    color: var(--color-dark-grey);
    font-weight: 600;
  }
  
  .o-valores-item__subtitle{
    font-size: 18px;
    font-weight: bold;
  }
  
  @media screen and (min-width: 900px){
    
    .o-valores-item__header figure{
      width: 100px;
    }
    
    .o-valores-item__header-content {
      margin-top: 40px;
      width: calc(100% - 110px);
    }
    
    
    .nosotros-valores .o-valores-grid{
      margin-top: 70px;
    }
    
    .o-valores-grid .col{
      width: 45%;
    }
    
    .o-valores-item{
      height: 100%;
    }
    
    .o-valores-item .wrapper{
      padding: 8% 10% 8% 12% ;
      height: 100%;
    }
    
    .o-valores-item__header .num{
      width: 55px;
      height: 55px;
      font-size: 22px;
    }
    
    .o-valores-grid .hide-text{
      height: auto !important;
    }
    
    .o-valores-item__header figure{
      width: 156px;
    }
    
    .o-valores-item__header-content {
      margin-left: 10px;
      margin-top: 56px;
      width: calc(100% - 150px);
    }
    
    .o-valores-item__title{
      margin-left: 5px;
      margin-top: 14px;
      font-size: 28px;
      width: calc(100% - 60px);
    }
    
    .m-hide-text-module.valores .hide-text-button{
      display: none;
      width: 0px;
      height: 0px;
      pointer-events: none;
    }
    
    .o-valores-item__subtitle{
      font-size: 22px;
    }
    
  }
  
  
  .o-image-circle-section{
    max-width: 375px;
    margin: 0 auto;
  }
  
  
  .nosotros-section-2{
    margin: 30px 0px;
  }
  
  .o-image-circle-section__image{
    margin-bottom: 40px;
    position: relative;
  }
  
  
  .o-image-circle-section__image::after{
    content: '';
    display: block;
    width: 340px;
    height: 340px;
    background-color: transparent;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    transform: translate(-50%,-50%);
  }
  
  
  .o-image-circle-section__image .srqu-image .image::after{
    background-color: var(--color-bg-orange);
  }
  
  .o-image-circle-section__content{
    position: relative;
    z-index: 10;
  }
  
  @media screen and (min-width: 1100px){
    .o-image-circle-section{
      max-width: var(--container-small-width);
      padding: 100px 0px;
    }
    
    .o-image-circle-section__image::after{
      background-color: var(--color-light-orange);
    }
    
    .nosotros-section-2{
      margin: 20px 0px 100px;
    }
    
    .o-image-circle-section .container{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .o-image-circle-section.right .container{
      flex-direction: row-reverse;
    }
    .o-image-circle-section.left .container{
      flex-direction: row;
    }
    
    .o-image-circle-section__content{
      width: 45%
    }
    
    .o-image-circle-section__image{
      width: 47.5%
    }
    
    .o-image-circle-section__image::after{
      width: 680px;
      height: 680px;
    }
    
    .o-image-circle-section.right .o-image-circle-section__image::after{
      transform: translate(-42.5%,-50%);
    }
    
    .o-image-circle-section.right .o-image-circle-section__image{
      text-align: left;
    }
    
    .o-image-circle-section.left .o-image-circle-section__image::after{
      transform: translate(-57.5%,-50%);
    }
    
    .o-image-circle-section.left .o-image-circle-section__image{
      text-align: right;
    }
  }
  
  .o-swiper-equipo{
    margin: 50px 0px;
  }
  
  .m-equipo-item{
    width: 320px;
  }
  
  .o-swiper-equipo .swiper-slide{
    display: flex;
    justify-content: center;
  }
  
  .m-equipo-item__image{
    position: relative;
    margin: 0 auto 20px;
    width: 270px;
    height: 270px;
    position: relative;
    z-index: 2;
    transition: all 0.25s ease-in-out;
  }
  
  .m-equipo-item__image:hover{
    margin-bottom: 10px;
  }
  
  .m-equipo-item__image > .wrapper{
    border-width: 2px;
  }
  
  .m-equipo-item__image > .wrapper{
    width: 256px;
    height: 256px;
    border-radius: 100%;
    overflow: hidden;
  }
  
  
  .m-equipo-item__image::after{
    content: '';
    display: block;
    width: 256px;
    height: 256px;
    background-color: var(--color-pale-orange);
    border-radius: 100%;
    position: absolute;
    z-index: 1;
    bottom: -2px;
    left: -5px;
    
    
  }
  
  .m-equipo-item__title{
    font-size: 22px;
    font-weight: 600;
  }
  
  .m-equipo-item__subtitle{
    font-size: 14px;
    color: var(--color-dark-grey);
  }
  
  @media screen and (min-width: 1024px){
    .m-equipo-item__image,
    .m-equipo-item__image .wrapper{
      width: 320px;
      height: 320px;
      border-width: 2px;
    }
    
    .m-equipo-item__image::after{
      width: 320px;
      height: 320px;
    }
    .m-equipo-item__title{
      font-size: 28px;
    }
    
    .m-equipo-item__subtitle{
      font-size: 18px;
    }
  }
  
  
  /*
   * FLOTA ITEM
   ******************************************************/
  .m-flota-item{
    width: 280px;
    border-radius: 15px;
    transition: all 0.25s ease-in-out;
    position: relative;
    margin-bottom: 30px ;
  }
  
  .m-flota-item .mfi-img{
    position: relative;
    background-color: #ffffff;
  }
  
  .m-flota-item .mfi-img.with-badge .mfi-price{
    
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  
  
  .m-flota-item .wrapper{
    background-color: #ffffff;
    margin-bottom: 0px;
    
  }
  
  .m-flota-item .mfi-body p{
    color: var(--color-black);
  }
  
  .m-flota-item .mfi-family{
    height: 40px;
    border-style: solid;
    background-color: var(--color-orange-2);
    color: var(--color-white);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out;
  }
  .m-flota-item .mfi-family.top{
    border-bottom-width: 1px;
    border-color: var(--color-orange);
    margin-bottom: 0px;
  }
  .m-flota-item:hover{
    margin-bottom: 20px ;
  }
  .m-flota-item:hover .mfi-family{
    background-color: var(--color-orange);
  }
  .m-flota-item:hover .wrapper{
    background-color: var(--color-white-orange);
  }
  
  .m-flota-item .mfi-content {
    padding: 22px;
  } 
  .m-flota-item .mfi-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    min-height: 230px;
  }
  
  
  .m-flota-item .mfi-vehicle .maker{
    font-size: 20px;
    font-weight: bold;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .m-flota-item .mfi-vehicle .model {
    font-size: 15px;
  }
  
  .m-flota-item .mfi-vehicle .group {
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    color: #143649;
  }
  .m-flota-item .mfi-vehicle .type {
    font-size: 15px;
    color: #143649;
  }
  
  .m-flota-item .mfi-badge {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: var(--color-orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-weight: 600;
  }
  .mfi-badge p{
    font-size: 10px;
    text-align: center;
    margin-bottom: 0;
    color: var(--color-white);
  
  }
  .mfi-badge .text-from{
    display: block;
    line-height: 1.3rem;
  }
  .mfi-badge .text-price{
    display: block;
    font-size: 1.8em;
    line-height: 1.2rem;
  }
  
  .mfi-badge .text-price .big{
    font-size: 1.5em;
  }
  .mfi-badge .text-period{
    display: block;
    font-size: 1.2em;
    line-height: 1.1em;
  }
  .m-flota-item .mfi-detail-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0px 0px;
  }
  
  .mfi-detail-item {
    display: flex;
    margin-bottom: 0.5em;
    width: 100%;
    font-weight: 600;
    color: #738284;
  
    font-size: 15px;
  }
  
  .mfi-detail-item:nth-child(odd){
    width: 32%;
  }
  
  .mfi-detail-item:nth-child(even){
    width: 62%;
  }
  
  .mfi-detail-item .mfi-detail-icon {
    color: var(--color-orange);
    vertical-align: -3px;
    margin-right: 5px;
    font-size: 1.25em;
  }
  
  .mfi-detail-item .mfi-detail-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 25px);
  }
  
  .mfi-detail-item .mfi-detail-body p{
    color: var(--color-dark-grey);
  }
  
  .m-flota-item .mfi-btn {
    text-align: center;
    margin-bottom: 15px;
  }
  .m-flota-item .mfi-btn .button{
    border: 1px solid var(--color-orange);
    display: inline-block;
    padding: 10px 25px;
    color: var(--color-orange);
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
  }
  
  .m-flota-item .mfi-btn .button:hover{
    color: var(--color-white);
    background-color: var(--color-orange);
  }
  
  
  @media only screen and (min-width: 375px) {
    .m-flota-item{
      width: 340px;
    }
  }
  @media only screen and (min-width: 768px) { 
    .m-flota-item .mfi-header{
      min-height: 270px;
    }
  }
  
  /*
   * FLOTA SMALL
   ***********************************************/
  
   
   
  
  /*
   * FLOTA MIXED
   ***********************************************/
   .m-flota-item--mixed .mfi-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .m-flota-item--mixed .mfi-header{
    margin: 20px 0px;
  }
  
  .m-flota-item--mixed .mfi-content .mfi-family{
    display: none;
  }
  .m-flota-item--mixed .mfi-oferta-content .mfi-oferta-body{
    margin: 7.5% 0px;
    text-align: left;
  }
  
  .m-flota-item--mixed .mfi-oferta-content .mfi-oferta-body p{
    text-align: left !important;
  }
  .m-flota-item--mixed .mfi-oferta-content .mfi-oferta-title{
    font-size: 20px;
    margin-bottom: 1em;
    font-weight: bold;
    color: var(--color-dark-grey);
  }
  
  @media only screen and (min-width: 1240px) {
  
    
    .m-flota-item--mixed {
      width: 1100px;
    }
    .m-flota-item--mixed .wrapper {
      display: flex;
      flex-direction: row;
    }
    
    .m-flota-item--mixed .mfi-img {
      width: 800px;
    }

    .m-flota-item--mixed .mfi-img.cover img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .m-flota-item--mixed .mfi-img img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .m-flota-item .mfi-img.with-badge .mfi-price{
      bottom: 20px;
      right: 25px;
    }
  
    
    .m-flota-item--mixed .mfi-content {
      width: 520px;
      padding: 47px 50px 70px;
    }
    
    .m-flota-item--mixed .mfi-badge p{
      font-size: 15px;
    }
  
    .m-flota-item .mfi-vehicle .maker{
      font-size: 25px;
      font-weight: bold;
      font-weight: 64px;
    }
    
    .m-flota-item .mfi-vehicle .model {
      font-size: 20px;
      font-weight: 600;
    }
    
    .m-flota-item--mixed .mfi-family.top{
      display: none;
    }
    
    .m-flota-item--mixed .mfi-content .mfi-family{
      display: flex;
    }
    
    .mfi-detail-item {
      font-size: 17px;
    }
    
    .m-flota-item--mixed .mfi-vehicle .group {
      font-size: 22px;
    }
    
    .m-flota-item--mixed .mfi-badge {
      width: 150px;
      height: 150px;
    } 
    
    .m-flota-item--mixed .mfi-badge .text-price{
      margin: 0.3em;
    }
  
    .m-flota-item--mixed .mfi-btn {
      text-align: left;
    }
  
    .m-flota-item--mixed .mfi-oferta-content .mfi-oferta-title{
      font-size: 28px;
      margin: 1.25em 0px;
    }
  }
  
  
  .vehicle-down p{
    margin-bottom: 5px;
  }
  .vehicle-down i{
    font-size: 30px;
  }
  
  .o-oferta-filter-section,
  .o-vehiculos-filter-section{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1110px;
    margin: 0 auto;
  }
  
  .o-oferta-filter-section .col-first,
  .o-vehiculos-filter-section .col-first,
  .o-vehiculos-filter-section .col{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .o-oferta-filter-section .col-first{
    margin-bottom: 5%;
  }
  @media screen and (min-width: 768px){
    .o-oferta-filter-section,
    .o-vehiculos-filter-section{
      justify-content: space-between;
      max-width: 666px;
    }  
    
    .o-oferta-filter-section .col-first,
    .o-vehiculos-filter-section .col-first,
    .o-vehiculos-filter-section .col{
      width: 45%;
    }
    
    .o-vehiculos-filter-section .col:last-of-type{
      margin-right: auto;
    }
  }
  
  @media screen and (min-width: 1240px){
    .vehicle-down p{
      font-size: 18px;
    }
    
    .vehicle-down i{
      font-size: 50px;
    }
    
    .o-vehiculos-filter-section{
      justify-content: space-between;
      max-width: 1100px;
    }  
    
    .o-oferta-filter-section .col-first,
    .o-vehiculos-filter-section .col-first{
      width: 100%;
      margin-bottom: 30px;
    }
    
    .o-vehiculos-filter-section .col{
      width: 33.3335%;
      margin-bottom: 30px;
    }
    
    .o-vehiculos-filter-section .col{
      justify-content: center;
    }
    
    .o-vehiculos-filter-section.general .col:nth-of-type(3n){
      justify-content: center;
    }
    
    .o-vehiculos-filter-section.general .col:nth-of-type(3n + 1){
      justify-content: flex-end;
    }
    
    .o-vehiculos-filter-section.general .col:nth-of-type(3n + 2){
      justify-content: flex-start;
    }
    
    .tipo-vehiculo-archive .o-vehiculos-filter-section .col:nth-of-type(3n){
      justify-content: flex-end;
    }
    
    .tipo-vehiculo-archive .o-vehiculos-filter-section .col:nth-of-type(3n + 1){
      justify-content: flex-start;
    }
    
    .tipo-vehiculo-archive .o-vehiculos-filter-section .col:nth-of-type(3n + 2){
      justify-content: center;
    }
  }
  
  .m-filter-cats-vehicles{
    background-color: var(--color-white);
    margin: 0 auto 30px;
    max-width: 100%;
  }
  
  .m-filter-cats-vehicles .button-categories{
    background-color: var(--color-dark-grey) ;
    color: var(--color-white);
    padding: 10px 20px;
    position: relative;
    box-sizing: border-box;
  }
  

  .m-filter-cats-vehicles .button-categories .icon-action::after{
    content: "\e924";
    color: var(--color-orange);
    font-size: 1.1rem;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .m-filter-cats-vehicles.active .button-categories .icon-action::after{
    content: "\e923";
  }
  
  .m-filter-cats-vehicles .categories{
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 14px 10px;
  }
  
  .m-filter-cats-vehicles .categories  label input[type=checkbox]{
    visibility:none;
    opacity: 0;
    width: 0px;
    height: 0px;
  }
  
  .m-filter-cats-vehicles .categories label{
    display: inline-block;
    margin: 0px 10px;
  }
  
  .m-filter-cats-vehicles .categories label input[type=checkbox] + span{
    display: inline-block;
    padding: 3px 0px;
    opacity: 0.5;
    font-weight: 600;
    border-top: 0.2em solid transparent;
    border-bottom: 0.2em solid transparent;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
  }
  
  .m-filter-cats-vehicles .categories  label:hover input[type=checkbox] + span{
    opacity: 1;
  }
  
  .m-filter-cats-vehicles .categories  label input[type=checkbox]:checked + span{
    border-bottom-color: var(--color-orange);
    opacity: 1;
  }
  
  .m-filter-cats-vehicles.orange .categories  label input[type=checkbox]:checked + span{
    border-bottom-color: var(--color-dark-grey);
    opacity: 1;
  }
  
  .m-filter-cats-vehicles.orange label input[type=checkbox] + span{
    color: var(--color-white);
  }
  
  /* .m-filter-cats-vehicles .categories input[type=checkbox]{
    position: fixed;
    opacity: 0;
  } */
  
  @media screen and (max-width: 999px){
    .m-filter-cats-vehicles{
      margin: 15px auto;
      width: 100%;
      max-width: 340px;
    }
    
    
    
    .m-filter-cats-vehicles .categories{
      max-height: 0px;
      overflow: hidden;
      transition: max-height 1s var(--slide-animation);
      background-color: var(--color-orange)
    }
    
    
    .m-filter-cats-vehicle.active .categories{
      max-height: 2000px;
      
      
      
    }
    
    .m-filter-cats-vehicles .categories{
      max-height: 0px;
      transition: all 0.25s ease-in-out;
      opacity: 0;
      padding: 0px 10px;

    }
    
    .m-filter-cats-vehicles.active .categories{
      max-height: 1200px;
      opacity: 1;
      padding: 10px;
    }
    .m-filter-cats-vehicles .categories label{
      display: block;
      text-align: center;
      color: var(--color-white) ;
    }
    .m-filter-cats-vehicles .categories  label input[type=checkbox]:checked + span{
      border-bottom-color: var(--color-dark-grey);
      opacity: 1;
    }
    
    
  }
  
  @media screen and (min-width: 1000px){
    .m-filter-cats-vehicles .container{
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .m-filter-cats-vehicles .categories{
      max-height: 100px;
    }
    
    .m-filter-cats-vehicles .categories  label{
        color: var(--color-dark-grey) ;
        font-size: 17px;
    }
    
    .m-filter-cats-vehicles.orange .categories  label{
      color: var(--color-white) ;
      font-size: 18px;
  }
    
    .m-filter-cats-vehicles .button-categories{
      display: none;
    }
    
    .m-filter-cats-vehicles{
      margin: 0 auto 30px;
      max-width: 100%;
    }
    .m-filter-cats-vehicles.orange{
      background-color: var(--color-orange-2);
    }
  }
  
  
  
  .tres-vehiculos-section-pink{
    position:relative;
  }
  
  .tres-vehiculos-section-pink > *{
    position: relative;
    z-index: 2;
  }
  
  .tres-vehiculos-section-pink:after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    left: 0;
    bottom: 270px;
    background-color: var(--color-white-orange);
    z-index: 1;
  }
  
  .o-tres-vehiculos{
    width: 100%;
    max-width: 320px;
    margin:40px auto 0px;
    display: flex;  object-fit: cover;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .o-tres-vehiculos-mixed{
    margin:40px auto 0px;
  }

  .o-tres-vehiculos-mixed .row{
    display: flex;
    justify-content: center;
  }

  .tres-vehiculos-mixed .wpv-view-output + .tcenter{
    margin: 14px auto;
  }
  
  @media screen and (min-width: 900px){
    .o-tres-vehiculos{
      max-width: 1100px;
      justify-content: space-between;
    }
    
  }
  
  .o-oferta-section .container{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .a-cta-item{
    width: 100%;
    height: 250px;
    position: relative;
    
  }
  
  .a-cta-item .cta-image{
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .cta-content{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44,58,53,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out;
  }
  
  .a-cta-item:hover .cta-content{
    background-color: rgba(0, 201, 164, 0.8);
  }
  
  .call-to-action-section{
    margin: 0px 2px !important;
  }
  
  .call-to-action-section .wp-block-columns{
    gap: 0px;
    margin-bottom: 0px;
  }
  
  .call-to-action-section .wp-block-column{
    margin: 4px 2px !important;
  }
  
  .a-cta-item .cta-title{
    color: var(--color-orange);
    font-size: 25px;
    line-height: 1.25em;
    text-align: center;
    font-weight: bold;
    transition: all 0.25s var(--slide-animation);
  }
  
  .a-cta-item:hover .cta-title{
    color: var(--color-white);
  }
  
  .cta-butons{
    width: 100%;
    margin: 10px 0%;
    max-width: 176px;
  }
  
  .cta-butons br{
    display: none;
  }
  
  .cta-butons p{
    line-height: 1em;
    margin: 0px;
  }
  
  .cta-btn{
    border: 1px solid var(--color-orange);
    background-color: transparent;
    color: var(--color-white);
    font-size: 18px;
    font-weight: bold;
    display: block;
    width: 100%;
    margin: 10px 0px;
    padding: 0.4em 0px;
    text-decoration: none;
    text-align: center;
    line-height: 1.3em;
    transition: all 0.25s ease-in-out;
  }
  
  .a-cta-item:hover .cta-btn:hover{
    background-color: var(--color-orange);
    color: var(--color-white);
  }
  
  
  @media screen and (min-width:768px){
    .a-cta-item{
      width: 100%;
      height: 570px;
    }
    .a-cta-item .cta-title{
      font-size: 30px;
    }
    .call-to-action-section .wp-block-column{
      width: 50%;
    }
    .cta-butons{
      max-width: 260px;
    }
    .cta-btn{
  
      font-size: 20px;
    }
  }
  
  @media screen and (max-width: 1100px){
    .sticky-form{
      position: fixed;
      z-index: -10;
      opacity: 0;
      top: 0;
      bottom:0;
      left: 0;
      right: 0;

      background-color: var(--color-dark-grey);
      transition: all 0.25s ease-in-out;
      width: 100vw;
      height: 100vh;
    }

    
    .sticky-form .wrapper{
      position: relative;
      padding: 20px 40px 20px 20px;
      max-width: 100%;
    }
    
        
    .sticky-form .icon-close{
      color: var(--color-orange);
      position: absolute;
      top: 20px;
      right: 20px;
      cursor: pointer;
    }

    
    .sticky-form.active{
      opacity: 1;
      z-index: 20000;
      overflow-y: auto;

    }
    
    .select2-container{
      z-index: 20020;
    }
    
    .sticky-form .o-form-reserva-section{
      overflow-y: auto;
    }
  }
  
  @media screen and (min-width: 1101px){
    .sticky-form{
      position: fixed;
      bottom: -10px;
      left: 0px;
      right: 0px;
      
      z-index: 800;
      padding: 0px;
      background-color: var(--color-dark-grey);
    }
    
        
    :is(.blog-page, .blog, .archive.category, .archive.tag, .single-post) .sticky-form{
      position: relative;
      margin-top: 40px;
    }
    
    .sticky-form .icon-close{
      display: none;
    }
    
    .sticky-form .wrapper{
      position: relative;
      padding: 0px;
    }
  }
  
  /*
   * Opiniones Item
   *********************************************/
   .m-opiniones-item *{
     text-decoration: none;
   }
   
   
   .m-opiniones-item .m-opiniones-item__icon{
     width: 266px;
     margin: 0 auto;
    position: relative;
    padding-bottom: 10px;
   }
   .m-opiniones-item .m-opiniones-item__icon .circle{
    width: 256px;
    height: 256px;
    border-radius: 100%;
    background-color: var(--color-white);
    border: 1px solid var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out;
  }
  
  .m-opiniones-item .m-opiniones-item__icon:hover .circle{
    background-color: var(--color-pale-orange);
    border: 1px solid var(--color-pale-orange);
  }
  
    
  .m-opiniones-item .m-opiniones-item__icon::after{
    content: '';
    display: block;
    width: 256px;
    height: 256px;
    border-radius: 100%;
  }
  
  .m-opiniones-item__img-logo{
      position: relative;
      width: 80%;
  }
  
  .m-opiniones-item__img-logo .img-off{
      position: relative;
      z-index: 1;
  }
  
  .m-opiniones-item__img-logo .img-on{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity:0;
    z-index: 2;
    transition: all 0.25s ease-in-out;
  }
  
  .m-opiniones-item__img-logo .img-off{
    opacity:1;
    transition: all 0.25s ease-in-out;
  }
  
    .m-opiniones-item .m-opiniones-item__icon:hover  .img-on{
        opacity: 1;
    }
    
    .m-opiniones-item .m-opiniones-item__icon:hover  .img-off{
      opacity: 0;
  }


  .o-swiper-redes-opiniones .swiper-button-prev,
  .o-swiper-redes-opiniones .swiper-button-next{
    top: 36%;
  }
  
  .m-opiniones-item__media{
    font-size: 40px;
    line-height: 1.2em;
    font-weight: bold;
  }
    
  .m-opiniones-item__stars{
    width: 100px;
    margin: 0 auto;
  }
  
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-reviews-container-wrapper{
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls .ti-next:before, 
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls .ti-prev:before{
      font-family: swiper-icons;
      font-size: var(--swiper-navigation-size);
      text-transform: none !important;
      letter-spacing: 0;
      text-transform: none;
      font-variant: initial;
      line-height: 1;
      background-color: transparent;
      transform: rotate(0deg);
      width: unset;
      height: unset;
      color: var(--color-orange);
  }
  
  .page .ti-widget{
    max-width: var(--container-width);
    margin: 0 auto;
  }
  
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls .ti-next:after, 
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls .ti-prev:after{
    content: none;
  }
  
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls .ti-prev:before{
    content: 'prev';
  }
  
  .page .ti-widget[data-layout-id='4'][data-set-id='light-minimal'] .ti-controls .ti-next:before{
    content: 'next';
  }
  
  
  @media screen and (min-width: 768px){
    .o-swiper-redes-opiniones .swiper-button-prev,
    .o-swiper-redes-opiniones .swiper-button-next{
      top: 41%;
    }
    
    .m-opiniones-item__media{
      font-size: 60px;
    }
  }
  
  .form-contacto{
    background-color: var(--color-white-orange);
    padding: 10%;
  }
  .form-contacto .row .col-12,
  .form-contacto .row .col-6{
    padding: 5px 0px;
    width: 100%;
  }
  .form-contacto .row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .form-contacto .row .col-12 input,
  .form-contacto .row .col-12 textarea,
  .form-contacto .row .col-6 input{
    background-color: var(--color-white);
    border: 0px;
    padding: 5px;
    font-size: 14px;
    color: var(--color-p-grey);
  }
  
  @media screen and (min-width: 768px){
    .form-contacto .row .col-6{
      width: calc(50% - 5px);
    }
    .form-contacto .row .col-12 input,
    .form-contacto .row .col-12 textarea,
    .form-contacto .row .col-6 input{
      font-size: 16px;
    }
  }
  
  /*
   * TRES VEHICULOS MIXED
   ****************************/
  
  .tres-vehiculos-mixed{
    position: relative;
  }


  .tres-vehiculos-mixed *{
    position: relative;
    z-index: 1;
  }


  .tres-vehiculos-mixed::after{
    content: '';
    background-color: var(--color-white-orange);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: calc(100% - 580px);
    display: block;
  }

  
  
  @media screen and (min-width: 1240px){
    .tres-vehiculos-mixed::after{
      bottom: calc(100% - 600px);
    }
    
    .tres-vehiculos-mixed .row{
      margin-bottom: 30px;
    }
  }
  
  
  
  .archive-bottom-1{
    margin: 25px 20px;
  }
  
  .archive-bottom-2{
    padding: 25px 20px;
    margin-bottom: 30px;
    background-color: var(--color-white-orange);
    text-align: center;
  }
  
  @media screen and (min-width: 900px){
    .archive-bottom-1{
      margin: 125px 0px;
    }
    .archive-bottom-2{
      padding: 75px 0px;
      margin-bottom: 50px;
      
    }
    
    .archive-bottom-2 p + .h2{
      margin-top: 40px;
    }
    
    .archive-bottom-2 p:not(.h4):not(.h2){
      max-width: 980px;
      margin: 0 auto;
    }
    
  }
  
  /*
   * Lugares Ibiza
   ********************************************/
  
  /* .m-lugares-ibiza-vertical-item{
    margin-bottom: 20px;
    transition: all 0.25s ease-in-out;
  } */
  
  .m-lugares-ibiza-item__title{
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;

  }
  
  .m-lugares-ibiza-item__title p,
    .m-lugares-ibiza-item__content p{
    text-align: left;
  }
  
  .o-tipo-lugar--dosxdos{
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
  }
  .o-tipo-lugar--unoxtres .col,
  .o-tipo-lugar--dosxdos .col{
    width: 100%;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    margin-bottom: 10%;
  }

  .m-lugares-ibiza-horizontal-item,
  .m-lugares-ibiza-vertical-item .wrapper{
    text-align: center;
    max-width: 280px;


  }
  .m-lugares-ibiza-vertical-item .wrapper{
    height: 100%;
    border: 1px solid var(--color-orange);
    background-color: var(--color-white);
    border-top-right-radius: var(--radius-srqu-image);
    overflow: hidden;

  }
  
  /* .m-lugares-ibiza-vertical-item:hover{
    margin-bottom:10px;
  } */

  .m-lugares-ibiza-vertical-item:hover .wrapper{
    background-color: var(--color-white-orange);
  }
  
  .m-lugares-ibiza-vertical-item .m-lugares-ibiza-item__content{
    padding: 9% 9% 0%;
    text-align: left;
  }
  
  .m-lugares-ibiza-vertical-item::after {
    border-top-right-radius: var(--radius-srqu-image);
    max-width: 280px;
  }
  
  .m-lugares-ibiza-horizontal-item .srqu-image{
    margin-bottom: 20px;
  }
  
  .m-lugares-ibiza-horizontal-item  .m-lugares-ibiza-item__desc p{
    color: var(--color-dark-grey);
  }
  
  @media screen and (min-width: 1024px){
    .o-tipo-lugar--dosxdos{
      justify-content: center;
      padding: 50px 0px 0px;
    }
    
    .o-tipo-lugar--dosxdos .col{
      width: 50%;
      margin-bottom: 5%;
    }
    
    .o-tipo-lugar--unoxtres .col{
      margin-bottom: 5%;
    }
    
    .m-lugares-ibiza-vertical-item .wrapper,
    .m-lugares-ibiza-vertical-item::after{
      max-width: 500px;
      height: 650px;
    }
    
    .m-lugares-ibiza-item__title{
      font-size: 1.4rem;
      line-height: 1.6rem;
    }
    
    .m-lugares-ibiza-vertical-item img{
      width: 100%;
      height: 360px;
      object-fit: cover;
    }
    
    .m-lugares-ibiza-horizontal-item .m-lugares-ibiza-item__wrapper{
      display: flex;
      justify-content:space-between;
      align-items: center;
      flex-wrap: wrap;
      width: 1100px;
    }
    
    .m-lugares-ibiza-horizontal-item{
      max-width: 1100px;
    }
    
    .m-lugares-ibiza-horizontal-item .srqu-image,
    .m-lugares-ibiza-horizontal-item .m-lugares-ibiza-item__content{
      width: 45%;
      text-align: left;
    }
      
    .m-lugares-ibiza-horizontal-item .srqu-image img{
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
  }
  
  /*
   * PAGINATION
   ************************************/
  .paging-navigation .nav-links,
  .wpv-pagination-nav-links-container{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .paging-navigation .page-numbers,
  .wpv-pagination-nav-links-container .wpv-filter-pagination-link{
    width: 40px;
    height: 40px;
    background-color: var(--color-dark-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-orange);
    font-weight: bold;
    font-size: 16px;
    margin: 0px 5px;
    border-radius: 100%;
    text-decoration: none;
    transition: all 0.25s var(--slide-animation);
  }
  

  
  .wpv-pagination-nav-links-container .wpv_page_ellipsis{
    color: var(--color-orange);
    font-size: 18px;
  }
  
  .paging-navigation .page-numbers.current,
  .wpv-pagination-nav-links-container .wpv-filter-pagination-link.page-link{
    background-color: var(--color-dark-grey);
    color: var(--color-white);
  }
  
  .wpv-pagination-nav-links-container .wpv-pagination-nav-links-item-current  .wpv-filter-pagination-link.page-link{
    background-color: var(--color-orange);
  }
  .nav-links :is(.prev, .next){
    display: none;
  }

  .wpv-pagination-nav-links-container .wpv-filter-pagination-link:hover,
  .wpv-pagination-nav-links-container .wpv-filter-pagination-link.page-link:hover,
  .wpv-pagination-nav-links-container .wpv-filter-pagination-link:active,
  .wpv-pagination-nav-links-container .wpv-filter-pagination-link.page-link:active{
    background-color: var(--color-dark-grey);
    color: var(--color-white);
  }
  
  .wpv-pagination-nav-links-container .wpv-pagination-nav-links-item-current  .wpv-filter-pagination-link.page-link{
    background-color: var(--color-orange);
  }
  
  .wpv-archive-pagination-nav-links-container a.page-link:focus, 
  .wpv-archive-pagination-nav-links-container a.page-link:hover, 
  .wpv-archive-pagination-nav-links a.page-link:focus, 
  .wpv-archive-pagination-nav-links a.page-link:hover, 
  .wpv-pagination-nav-links-container a.page-link:focus, 
  .wpv-pagination-nav-links-container a.page-link:hover, 
  .wpv-pagination-nav-links a.page-link:focus, 
  .wpv-pagination-nav-links a.page-link:hover, 
  .wpv-pagination-preview-element a.page-link:focus, 
  .wpv-pagination-preview-element a.page-link:hover{
    opacity: 0.7;
  }
  
  @media (min-width: 768px) {
    .paging-navigation .page-numbers,
    .wpv-pagination-nav-links-container .wpv-filter-pagination-link{
      width: 50px;
      height: 50px;
      font-size: 20px;
    
  }
}
  
  .category-list.three-rows{
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin-left: 10px;
  }
  
  .category-list li{
    font-size:14px;
    padding-right: 10px;
    margin-bottom: 0.5em;
  }
  
  .category-list li::marker{
    content: ">";
    color: var(--color-orange);
  }
  
  .category-list a{
    text-decoration: none;
  }
  
  .prefooter-blog__title{
    
  }
  
  .m-mini-blog-item{
    display: flex;
    align-items: center;
    max-width: 400px;
    margin-bottom: 10px;
  }
  
  
  .m-mini-blog-item__image{
    border-top-right-radius: 40px;
    overflow: hidden;
    margin-right: 10px;
    width: 135px;
  }
  
  .m-mini-blog-item__content{ 
    width: calc(100% - 145px);
  }
  
  .m-mini-blog-item__title{
    font-size:15px;
    font-weight: bold;
  }
  
  .blog-search-input{
    max-width: 300px;
    width: 80%;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 20px auto;
  }
  
  .blog-search-input input[type="text"]{
    padding-left: 16%;
    border-radius: 25px;
    color: var(--color-black);
  }
  
  .blog-search-input .icon-search{
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: transparent;
    color: transparent;
    overflow: hidden;
    padding: 0px;
    width: 40px;
    height: 40px;
    padding: 10px 20px;
  }
  
  .blog-search-input .icon-search-blog::before{
    color: var(--color-orange);
  }

  .blog-search-input .icon-search-blog{
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: transparent;
    color: transparent;
    overflow: hidden;
    padding: 0px;
    width: 40px;
    height: 40px;
    padding: 10px 20px;
  }
  
  .blog-search-input .icon-search::before{
    color: var(--color-orange);
  }
  
  .search-blog-top .blog-search-input input[type="text"]{
    background-color: var(--color-light-orange);
  }
  
  @media screen and (min-width: 768px){
    .category-list.three-rows{
      columns:3;
      -webkit-columns: 3;
      -moz-columns: 3;
    }
      
    .m-article-item__content > .h3{
      font-size: 28px;
      line-height: 40px;
    }
  }
  
  @media screen and (min-width: 1024px){
    .prefooter-blog .row1{
      display: flex;
      justify-content: space-between;
    }
    
    .category-list li{
      font-size:18px;
    }
  }

  /*
   * 404 Page
   *********************************************/
  .o-404-section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
  }

  .o-404-section .icon-404{
    width: 12%;
    margin: 0 auto 5%;
    display: block;
  }

   .o-text-circle-section{
      position: relative;
      display: inline-block;
   }

   .o-text-circle-section::after{
      content: '';
      display: block;
      background-color: var(--color-light-orange);
      width: 320px;
      height: 320px;
      border-radius: 100%;
   }

   .o-text-circle__content{
      position: absolute;
      width: 80%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
   }

   .o-text-circle__content p.small{
    font-size: 0.8em;
   }

   @media (min-width:768px){
    .o-text-circle-section::after{
      width: 600px;
      height: 600px;
    }
   }

  /*
   * FOOTER
   *********************************************/
   .site-footer .o-footer-section{
    background-color: var(--color-orange-2);    
    padding: 20px;
  }
  
  .prefooter-blog{
    background-color: var(--color-white-orange);
    padding: 30px 10px;
    margin-top: 30px;
  }
  
  .site-footer a,
  .site-footer p,
  .site-footer li,
  .o-footer-section .mapa-info-item .info{
    color: var(--color-white);
    text-decoration: none;
  }
  .o-footer-section .mapa-info-item .info a,
  .o-footer-section .mapa-info-item .info,
  .o-footer-section.general  .menus .menu-item-has-children ul a{
    font-weight: normal;
  }
  
  .site-footer .footer a,
  .site-footer .footer p,
  .site-footer .footer li,
  .o-footer-section .mapa-footer-info .title{
    font-weight: bold;
  }
  
  
  .site-footer .socket a,
  .site-footer .socket p,
  .site-footer .socket li,
  .o-footer-section .mapa-info-item .info,
  .o-footer-section .mapa-info-item .info a,
  .o-footer-section.general  .menus .menu-item-has-children ul a{
    font-size: 13px;
  }
  .site-footer .footer a,
  .site-footer .footer p,
  .site-footer .footer li,
  .o-footer-section .mapa-footer-info .title{
    font-size: 15px;
  }
  
  
  .o-footer-section .mapa-info-item .info{
    line-height: 1.15em;
    margin-bottom: 0.6em;
  }
  
  .o-footer-section.general  .menus a{
    margin-bottom: 0.9em;
  }
  
  .o-footer-section.general  .menus .menu-item-has-children ul a{
    font-size: 12px;
  }
  
  .site-footer [class*="current-menu-"] > a{
    color: var(--color-dark-grey);
  }
  
  .o-footer-section .socket{
    width: 100%;
    max-width: 375px;
    padding: 15px 0px;
  }
  
  .o-footer-section .footer{
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0px;
  }
  
  .o-footer-section .logo.coorp{
    width: 100%;
    order: 1;
  }
  
  .o-footer-section  .menus{
    width: 100%;
    order: 2;
    display: flex;
    flex-wrap: wrap;
  }
  
  .o-footer-section.redux .menus .menu1{
    width: 49%;
  }
  
  .o-footer-section.redux .menus .menu2{
    width: 49%;
    display: flex;
    justify-content: flex-end;
  }
  
  .o-footer-section .mapa-footer-info{
    width: 100%;
    order: 3;
  }
  
  .o-footer-section .logo img{
    width: 100%;
    max-width: 280px;
    margin: 0 auto 34px;
  }
  
  .o-footer-section.general .logos .row1,
  .o-footer-section.general .logos .row2{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .o-footer-section.general .menus .menus12,
  .o-footer-section.general .menus .menus345{
    width: 49%;
  }
  
  .o-footer-section.general .menus .col3{
    width: 100%;
  }
  .o-footer-section.general .menus .menus345 li,
  .o-footer-section.redux .menus li{
    list-style: none;
  }
  
  .o-footer-section .menus .menu-socials li{
    display: inline-block;
  }
  
  .o-footer-section ul{
    margin-left: 0px;
  }
  

  .o-footer-section.general  .menus .menu-item-has-children,
  .o-footer-section.general  .menus .menu-item-has-children >ul>li:first-of-type{
    list-style: none;
  }
  
  .o-footer-section.general  .menus .menu-item-has-children >ul>li:not(:first-of-type){
    margin-left: 20px;
  }
  
  .o-footer-section.general .menus .col3{
    width: 100%;
  }
  
  .site-footer .socket{
    display: flex;
    flex-direction: column-reverse;
  }
  
  .site-footer .socket li{
    list-style: none;
  }
  
  .site-footer .socket .copyright{
    margin-bottom: 0px;
  }

  .o-footer-section.blog .menus{
    display: flex;
    flex-direction: column;
  }

  .o-footer-section.blog .menu2 > p{
    font-size: 15px;
    font-weight: bold;
  }
  
  .o-footer-section.blog .menu2 > .newsletter-footer-title{
    font-size: 15px;
    text-decoration: underline;
  }
  
  .subsocket{
    background-color: var(--color-dark-grey);
  }
  
  .subsocket p.tcenter.white{
    font-size: 500;    
    padding: 10px 0px;
  }
  
  @media screen and (max-width: 767px){
    .o-footer-section.general .logos .logo.big{
        width: 64px;
    }
    
    .o-footer-section.general .logos .logo.small{
      width: 48px;
    }

    .site-footer .socket li{
      list-style: none !important;
    }

    .site-footer .socket .copyright{
      padding-bottom: 16px
    }
  }
  
  @media screen and (min-width: 768px){
    .o-footer-section .footer,
    .o-footer-section .socket{
      max-width: 666px;
    }
    .site-footer a,
    .site-footer p,
    .site-footer li,
    .o-footer-section .mapa-info-item .info{
      color: var(--color-white);
      text-decoration: none;
    }

    .site-footer .socket a,
    .site-footer .socket p,
    .site-footer .socket li,
    .o-footer-section .mapa-info-item .info,
    .o-footer-section .mapa-info-item .info a,
    .o-footer-section.general  .menus .menu-item-has-children ul a{
      font-size: 15px;
    }
    .site-footer .footer a,
    .site-footer .footer p,
    .site-footer .footer li,
    .o-footer-section .mapa-footer-info .title{
      font-size: 18px;
    }
    
    .site-footer .legals a{
      font-size: 14px;
    }
    
    .o-footer-section.redux .menus{
      width: 100%;
    }
    

    
    .o-footer-section.general .logos .logo.big{
      margin-right: 12px;
    }
  }
  
  @media screen and (min-width: 1024px){
    .o-footer-section.general,
    .o-footer-section.redux{
      margin-bottom: 130px;
    }
  
  }
  
  @media screen and (min-width: 1100px){
    .o-footer-section .socket{
      padding: 25px 20px 10px;
      max-width: var(--container-width);
      flex-direction: row-reverse;
      justify-content: space-between;
    }
    
    .o-footer-section.general .footer{
      padding: 25px 20px 10px;
      display: grid;
      grid-auto-rows: auto;
      grid-template-columns: repeat(5, 1fr);
      max-width: var(--container-width);
    }
    
    .o-footer-section.general .logo.coorp{
      grid-column: 1 / 3;
      grid-row: 1;
    }
    
    .o-footer-section.general .mapa-footer-info{
      grid-column: 1 / 3;
      grid-row: 2;
    }
    
    .o-footer-section.general  .menus{
      grid-column: 3 / 6;
      grid-row: 1/3;
      display: grid;
      grid-auto-rows: auto;
      grid-template-columns: repeat(4, 1fr);
      margin: 0 auto;
    }
    
    .o-footer-section.general .menus .menus12,
    .o-footer-section.general .menus .menus345{
      width: auto;
    }
    
    .o-footer-section.general .menus .menus12{
      grid-column: 1 / 3;
      grid-row: 1/3;
    }
    .o-footer-section.general .menus .menus345{
      grid-column: 3 / 5;
      grid-row: 1/2;
    }
    
    .o-footer-section.general .menus .col3{
      grid-column: 2 / 5;
      grid-row: 3/4;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;

    }
    
    .o-footer-section.redux .footer{
      padding: 25px 20px 35px;
      width: 100%;
      max-width: var(--container-width);
      display: grid;
      grid-auto-rows: auto;
      grid-template-columns: repeat(10, 1fr);
      max-width: var(--container-width);
    }
    
    .o-footer-section.redux .logo{
      grid-column: 1 / 4;
      grid-row: 1;
    }
    
    .o-footer-section.redux .mapa-footer-info{
      grid-column: 6 / 9;
      grid-row: 1;
    }
    
    .o-footer-section.redux .menus{
      grid-column: 9 / 11;
      grid-row: 1;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
    }
    
    .o-footer-section.redux .menus .menu1{
      width: 49%;
    }
    .o-footer-section.redux .menus .menu2{
      width: 49%;
      display: flex;
      justify-content: flex-end;
    }
    
    .o-footer-section.blog .footer{
      padding: 25px 20px 10px;
      display: grid;
      grid-auto-rows: auto;
      grid-template-columns: repeat(5, 1fr);
      max-width: var(--container-width);
    }
    
    .o-footer-section.blog .logo{
      grid-column: 1 / 3;
      grid-row: 1;
    }

    .o-footer-section.blog .menus{
      grid-column: 4 / 6;
      grid-row: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      flex-direction: row;
    }
      
    .o-footer-section.blog .menu2{
      width: 50%;
    }
    
    .o-footer-section.blog .menu2 > p{
      font-size: 15px;
    }
    
    .o-footer-section.blog .menu2 > .newsletter-footer-title{
      font-size: 18px;
      text-decoration: underline;
    }
    
    .site-footer .logos{
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    
    .site-footer .socket{
      flex-direction: row;
      border-top: 1px solid var(--color-dark-grey);
      padding: 
      20px 0px;
    }
    
    .site-footer .socket .menu-socket li{
      display: inline-block;
      list-style: none;
    }

    .o-footer-section .logo.coorp img{
      width: 100%;
      max-width: 370px;
    }
    
    .site-footer .socket .copyright{
      padding-bottom: 0px
    }
    .o-footer-section .menu-socket ul,
    .o-footer-section .menu-socials ul{
      margin-bottom: 0px;
    }
    
    .o-footer-section .menu-socket li{
      padding: 0px 5px;
      position: relative;  
    }
    
    .o-footer-section .menu-socket li:not(:last-of-type)::after{
      content: '·';
      position: absolute;
      right: -5px;
      top: 0%;
      color: var(--color-dark-grey);
      
      
    }
    
  }
  
  @media screen and (min-width: 1340px){
    .site-footer .socket{
      max-width: var(--container-width);
    }
      
    .site-footer .footer{
      padding: 50px 0px;
      max-width: var(--container-width);
      grid-template-columns: repeat(6, 1fr);
    }
    
    .o-footer-section.general .footer{
      grid-template-columns: repeat(15, 1fr);
      max-width: var(--container-width);
    }
    
    .o-footer-section.general .logo.coorp{
      grid-column: 1 / 5;
      grid-row: 1;
    }
    
    .o-footer-section.general .mapa-footer-info{
      grid-column: 1 / 5;
      grid-row: 2;
    }
    
    .o-footer-section.general  .menus{
      grid-column: 7 / 16;
    }
    
    .o-footer-section.general .menus .menus12{
      grid-column: 1 / 3;
      grid-row: 1/3;
    }
    .o-footer-section.general .menus .menus345{
      grid-column: 3 / 7;
      grid-row: 1/2;
    }
    
    .o-footer-section.general .menus .menus12,
    .o-footer-section.general .menus .menus345{
      display: grid;
      grid-auto-rows: auto;
      grid-template-columns: repeat(2, 1fr);
    }
    
    .o-footer-section.general .menus .menus12{
      grid-template-columns: repeat(2, 1fr);
    }

    .o-footer-section.general .menus .menus345{
      grid-template-columns: repeat(12, 1fr);
    }
    
    .o-footer-section.general .menus .menus12 .menu1{
      grid-column: 1 / 2;
      grid-row: 1;
    }
    
    .o-footer-section.general .menus .menus12 .menu2{
      grid-column: 2 / 3;
      grid-row: 1;
    }
    
    .o-footer-section.general .menus .menus345 .menu3{
      grid-column: 1 / 5;
      grid-row: 1;
    }
    
    .o-footer-section.general .menus .menus345 .menu4{
      grid-column: 5 / 10;
      grid-row: 1;
      padding-left: 5%;
    }
    .o-footer-section.general .menus .menus345 .menu5{
      grid-column: 10/13;
      grid-row: 1;
    }
    
    .o-footer-section.general .menus .menu-socials{
      display: flex;
      justify-content: flex-end;
    }
    
    .o-footer-section.general .menus .col3{
      grid-row: 2;
    }
  }

  
  @keyframes blink {
    0% { opacity: 0.2 }
    10% { opacity: 0.4 }
    40% {opacity: 1}
    60% {opacity: 1}
    90% {opacity: 0.4}
    100% { opacity: 0.2 }
  }