:root {
  /*--main-font: 'AdobeGaramond', sans-serif;
  --secondary-font: 'Raleway', sans-serif;*/
  /* Fonts */
  --main-font: 'Bauer Bodoni Std', sans-serif;
  --secondary-font: 'Futura Lt BT', sans-serif;
  --third-font:'Copperplate Gothic', sans-serif;
  --fourth-font:'Minion Pro', sans-serif;
  --fifth-font:'AvenirNextLTProRegular', sans-serif;
  /* Colors */
  --main-black: #000;
  --main-white:#fff;
  --main-gold:#b9922a;
  --main-gold-lite:#AD9961;
  --main-gray:#999990;
  --main-gray-dark:#333330;

  --main-bg-color: #f7f6f4;

}
html {
  overflow-y: scroll;
  -ms-overflow-style: scrollbar;
}
html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
body {
  position: relative;
  background-color: var(--main-bg-color);
}
a {
  color: var(--main-black);
}
a:hover, a:focus {
  color: var(--main-gold-lite);
}
.active a {
  color: inherit;
}
.nomargin {
  margin-left: 0px;
  margin-right: 0px;
}
.small, small {
  font-size: 74%;
}
/* -----------------------------------------------------------------------------------
 COLOR
----------------------------------------------------------------------------------- */
.main {
  color: --main-gold;
}
.white {
  color: #ededeb!important
}
.gray {
  color: --main-gray!important
}
.darkgray {
  color: --main-gray-dark!important
}
.black {
  color: var(--main-black)!important
}
/* -----------------------------------------------------------------------------------
 TYPOGRAPHY
----------------------------------------------------------------------------------- */
body {
  font-family: var(--main-font);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  color: --main-gray-dark;
}
p {
  margin: 0 0 15px;
  font-size: 16px;
  color: #333;
}
p.white {
  font-weight: 300;
}
.uppercase {
  text-transform: uppercase;
}
figure img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
hr {
  border-top: 1px solid #e5e5e3;
}
hr.small {
  border-top: 1px solid #797979;
  width: 10%;
}
a {
  color: #919191;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* Heading */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  line-height: 1.3;
  margin-top: 0.7em;
  margin-bottom: 0.7em;
  color: var(--main-black);
}
.longline:before, .longline:after {
  border-top: 1px solid #858585;
  content: "";
  display: inline-block;
  height: .1em;
  position: relative;
  vertical-align: middle;
  width: 50%;
  margin-bottom: .15em;
}
/* -----------------------------------------------------------------------------------
  SECTION
----------------------------------------------------------------------------------- */
.section {
  position: relative;
  margin: 80px 0 0 0;
}
/* -----------------------------------------------------------------------------------
 PORTADA
----------------------------------------------------------------------------------- */
#bg-slider-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#bg-slider-v2 .centered-navigation {
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 10;
  padding: 20px;
  top: 20%;
  text-align: center;
  left: 0;
  margin: 0 auto;
  right: 0;
}
#bg-slider-v2 .centered-navigation p {
  font-size: 26px;
  color: #737373;
  font-weight: bold;
}
#bg-slider-v2 .bg-buttons {
  position: absolute;
  bottom: 0;
  z-index: 10;
  margin: 0 auto;
  left: 0;
  right: 0;
  display: flex;
  margin-bottom: calc(20vh - 50px);
  justify-content: center;
}
#bg-slider-v2 .bg-buttons > button {
  margin: 15px 15px;
}
/* -----------------------------------------------------------------------------------
11 ELEMENTS
----------------------------------------------------------------------------------- */
.btn{
  padding-top: 8px;
}
.btn-default, a.btn-default, .btn-main, a.btn-main {
  border: 0;
  border-radius: 0;
  font-family: 'AdobeGaramond', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.2em;
  padding: 7px 21px;
  color: var(--main-white);
  background: var(--main-black);
  border: 2px solid transparent;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.btn-main.btn-border, a.btn-main.btn-border {
  background: transparent;
  border-color: rgba(238, 197, 91, 1);
}
.btn-default.btn-border, a.btn-default.btn-border {
  background: transparent;
  border-color: rgba(208, 208, 206, 1);
}
.btn-reverse, a.btn-reverse.btn-border {
  background: transparent;
  border: 1px solid var(--main-black);
  border-radius: 0px;
  padding-top: 8px;
}
.btn-reverse:focus{
  box-shadow: none;
}
.btn-default:hover, .btn-default:focus, a.btn-default:hover, a.btn-default:focus, .btn-default:active:hover, .btn-default:active:focus {
  color: --main-gray-dark;
  background: none;
  border-color: none;
  outline: none;
}
.btn-main:hover, .btn-main:focus, a.btn-main:hover, a.btn-main:focus, .btn-main:active:hover, .btn-main:active:focus {
  color: --main-gray-dark;
  background: rgba(238, 197, 91, 1);
  border-color: rgba(238, 197, 91, 1);
  outline: none;
}
.btn-gold {
  border: 15px solid transparent;
  background: url(/assets/V2/images/border-btn-gold.svg) 20 round;
  -webkit-border-image: url(/assets/V2/images/border-btn-gold.svg) 20 round;
  -o-border-image: url(/assets/V2/images/border-btn-gold.svg) 20 round;
  padding: 0% 10px 0% 10px;
  min-width: 230px;
  background-size: auto auto;
}
.btn-gold a {
  z-index: 999;
  display: block;
  text-transform: uppercase;
}
.btn-white {
  border: 15px solid transparent;
  background: url(/assets/V2/images/border-btn-white.svg) 20 round;
  -webkit-border-image: url(/assets/V2/images/border-btn-white.svg) 20 round;
  -o-border-image: url(/assets/V2/images/border-btn-white.svg) 20 round;
  padding: 0% 10px 0% 10px;
  min-width: 240px;
  background-size: auto auto;
}
.btn-white a {
  z-index: 999;
  display: block;
  color: var(--main-white);
  text-transform: uppercase;
}
.btn-back {
  position: absolute;
  bottom: 0;
  margin-bottom: 25px!important;
}
.btn-mini {
  border-radius: 0px;
  padding: 0px 5px;
  background-color: transparent;
  font-size: 0.9rem;
  font-family: var(--secondary-font);
  letter-spacing: 0.2rem;
}
@media (max-width:990px) {
  .btn-back {
    position: relative;
    bottom: 0;
    margin-top: 5%;
    margin-bottom: 2%;
  }
}
address p {
  margin: 0 0 5px;
  font-size: 16px;
  color: #8C8C8C;
}
#boxAddress {
  color: #8C8C8C;
}
/* -----------------------------------------------------------------------------------
12 SWIPER SLIDER
----------------------------------------------------------------------------------- */
/*.swiper-box {
    display: flex;
    max-width: 550px;
    flex-flow: column;
}
#swiper-container-home.swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height:92.1vh;
    height: 155vw;
}
#swiper-container-inner.swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;		
    height:45vw;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size:cover;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #9F9F9F!important;
    opacity: 1!important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #F3F3F3!important;
}
@media (min-width:600px) {
    #swiper-container-home.swiper-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;		
        height:110vh;            
    }
}
@media (min-width:769px) {
    #swiper-container-home.swiper-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;		
        height:82vh;
        height:100vh;               
    }
}
@media (min-width:1024px) {
    #swiper-container-inner.swiper-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;		
        height:30vw;
                
    }
    #swiper-container-home .btn-gold{
        margin-right: 20px;
    }
}
@media (min-width:1800px) {
    #swiper-container-inner.swiper-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;		
        height:45vh;            
    }
}*/
/* -----------------------------------------------------------------------------------
UI colores
----------------------------------------------------------------------------------- */
.frame-gold {
  border: 15px solid transparent;
  background: url(/assets/V2/images/border-btn-gold.svg) 18 round;
  -webkit-border-image: url(/assets/V2/images/border-btn-gold.svg) 18 round;
  -o-border-image: url(/assets/V2/images/border-btn-gold.svg) 18 round;
  padding: 0% 6% 0% 6%;
  min-width: 100%;
}
.frame-gold.big {
  padding: 0% 10% 3% 10%;
}
.bg-grey {
  background: #d6d6d6;
}
.frame-golg .texto p {
  margin: 0 0 15px;
  font-size: 16px;
  text-align: justify;
  color: #858585;
}
.box-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box-buttons .btn-gold {
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (max-width:700px) {
  #bg-slider-v2 .bg-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.mt-25 {
  margin-top: 25rem;
}
/* -----------------------------------------------------------------------------------
FLEXBOX
----------------------------------------------------------------------------------- */
.d-flex {
  display: -webkit-box!important;
  display: -moz-box!important;
  display: -webkit-flex!important;
  display: -ms-flexbox!important;
  display: flex!important;
}
/*.col-lg-4 {
        -moz-box-flex: 0 0 33.333333%;
        -webkit-box-flex: 0 0 33.333333%;
        -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;

}
.col-lg-8 {
        -moz-box-flex: 0 0 66.666667%;
        -webkit-box-flex: 0 0 66.666667%;
        -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;

}*/
.row:before, .row:after {
  display: none!important;
}

/* MARGIN Y PADDINGS */
@media only screen and (min-device-width : 375px) and (max-device-width : 768px) {
  .ptm-5 {
    padding-top: 3.5rem!important;
  }
}
/* HOME */
#home-presentation {
  font-family: var(--secondary-font);
  margin-top: -5px;
}
#home-presentation>div {
  height: 100vh;
  width:100%;
}
@media (max-width:576px) {
  #home-presentation>div {
    height: 30vh;
  }
}
.videoHome .vidbg-container {
  position: absolute;
}
.vidbg-container {
  top: 5px!important;
}
#home-presentation a {
  color: var(--main-white);
  font-size: 1rem;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 2px #00000060;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 0.5rem 1.5rem;
}
#home-presentation img {
  width: clamp(250px, 100%, 40vw);
  margin-bottom: 10%;
}
#home-resume p {
  font-size: 1.4rem;
  line-height: 1.3;
}
#home-resume h2 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
}
:is(#home-resume,#menus, .location) ul{
  list-style: none;
}
/*#home-resume ul, #menus ul, .location ul {
    list-style: none;
}*/
#home-resume li{
  font:1.4rem var(--secondary-font);
  margin: 1rem 0;
}
.location li{
  font:0.88rem var(--secondary-font);
}
:is(#home-resume, #menus li, .location li) a{
  color: var(--main-black);
}
:is(#home-resume, #menus li, .location li) a:hover{
  border-bottom: 1px solid var(--main-black);
}
/*#home-resume a, #menus li a, .location li a {
    color: var(--main-black);
}
#home-resume a:hover , #menus li a:hover, .location li a:hover{
    border-bottom: 1px solid var(--main-black);
}*/
#home-resume .p-lead {
  font-size: 2.4rem;
  line-height: 3rem;
}
.mail-penelope {
  font: 1.1rem var(--secondary-font);
  color:var(--main-black);
  border-bottom: 1px solid var(--main-black);
  padding: 0.1rem;
}
@media (max-width:576px) {
  .mail-penelope {
    font-size: 1rem;
  }
}
.mail-penelope:hover {
  text-decoration: none;
}
/* Backgrounds #home-resume */
.bg-trabajo{
  background: url("/assets/V2/images/bg-home/cappuccino-home-01.webp?8") no-repeat center center /cover;
  min-height:50vh;
}
.bg-menus{
  background: url("/assets/V2/images/bg-home/cappuccino-home-02.webp?8") no-repeat center center /cover;
  min-height:50vh;
}
.bg-eventos{
  background: url("/assets/V2/images/bg-home/cappuccino-home-03.webp?7") no-repeat center center /cover;
  min-height:50vh;
}
/*.bg-lightblue {
    background-color: #BCD8E890;
}*/
:is(#home-classics, #home-hospitality) h3{
  font-size: 1.3rem;
  border-bottom: 4px solid var(--main-black);
}
/*#home-classics h3, #home-hospitality h3 {
    font-size: 1.3rem;
    border-bottom: 4px solid var(--main-black);
}*/
.title-border {
  border-top: 1px solid var(--main-black);
  border-bottom: 1px solid var(--main-black);
}
#home-hospitality {
  font-family: var(--secondary-font);
}
#home-hospitality h4 {
  font: 600 1.2rem var(--secondary-font);
  letter-spacing: 0.05rem;
  margin: 0 0 1.5rem;
}
#home-hospitality a {
  color: var(--main-black);
}
.link-instagram {
  font: 0.7rem var(--secondary-font);
  letter-spacing: 0.1rem;
  color: #000;
  border-bottom: 1px solid var(--main-black);
  padding: 0 2px 0 3px;
}
.img-instagram {
  max-width: 50px;
}
.decoration-line {
  position: relative;
}
.decoration-line::before {
  content: " ";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: var(--main-black);
}
/* SWIPER */
#swiper-home {
  position: relative;
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--main-white);
  /* Center slide text vertically */
  -webkit-display: box;
  -ms-display: flexbox;
  -webkit-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
:is(.swiper-button-next, .swiper-button-prev):after{
  color: var(--main-white);
  font-size: 1.2rem;
  line-height:0px;
}
/*.swiper-button-next:after, .swiper-button-prev:after {
        color: var(--main-white);
        font-size: 1.2rem;
}*/
.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 1rem;
}
.swiper-pagination-bullet {
  border: 1px solid var(--main-black);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--main-black);
  background-color: var(--main-black);
}
.bg-img-follow-us {
  background: url("/assets/V2/images/follow-us-01.webp") 60% 67% no-repeat;
  background-size: cover;
}
@media (min-width:768px) {
  #follow-us {
    height: 70%;
    margin-top:105px;
  }
}
.img-border {
  border: 5px solid var(--main-white);
}
.p-hospitality {
  line-height: 1.5rem;
}
/* LOCATIONS */
#locations, #menus, .location {
  font-family: var(--secondary-font);
}
#locations h1 {
  font: 700 1.8rem var(--third-font);
  letter-spacing: 0.10rem;
  border-bottom: 4px solid var(--main-black);
}
.p-min {
  font: 400 0.9rem var(--secondary-font);
}
#locations a[href^="mailto:"] {
  text-decoration: underline;
}
#locations h2 {
  font:bold 0.8rem var(--secondary-font);
  letter-spacing:0.2rem;
  text-transform: uppercase;
  margin-right:10px;
}
figcaption :is(p, a){
  font-size: 1rem;
}
/*figcaption p, figcaption a {
        font-size: 1rem;
}*/
figcaption a {
  display: block;
}
.ciudad {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  margin-right:8px;
  margin-bottom:0px;
}
.separator{
  font-size:1.8rem;
  margin-right:12px;
}
.link-descubrir {
  font-size: 0.9rem;
  text-decoration: none;
  position: absolute;
  top:0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.link-reservar {
  font-size: 1.1rem;
  font-weight:bold;
  letter-spacing: 0.4rem;
  color: var(--main-black);
  background-color: var(--main-white);
  outline: 5px solid var(--main-white);
  border:1px solid var(--main-black);
  max-width: 250px;
  position: absolute;
  bottom: -25px;
  right: 0;
  left: 0;
  margin: auto;
  padding: 0.7rem 2rem 0.4rem;
  z-index: 500;
}
#locations figure {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
#locations figure figcaption {
  position: absolute;
  /*top: 0;*/
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /*height: 100%;*/
  width: 100%;
}
#locations figure img {
  width: auto;
  height: 100%;
  transition: 0.35s linear;
}
#locations figcaption > a {
  color: transparent;
  text-shadow: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
/* BG-LOCATIONS */
#locations div[class|=bg-img]{
  height:600px;
  background-size: cover;
}
.bg-img-portals {
  background: url("/assets/V2/images/locations/puerto-portals-cappuccino.webp?1") no-repeat center;
}
.bg-img-andratx {
  background: url("/assets/V2/images/locations/puerto-andratx-cappuccino.webp?1") no-repeat center;
}
.bg-img-pollensa {
  background: url("/assets/V2/images/locations/puerto-pollensa-cappuccino.webp?1") no-repeat center;
}
.bg-img-valldemossa {
  background: url("/assets/V2/images/locations/valldemossa-cappuccino.webp?4") no-repeat center;
}
.bg-img-cort {
  background: url("/assets/V2/images/locations/plaza-cort-cappuccino.webp?1") 40% no-repeat;
}
.bg-img-borne {
  background: url("/assets/V2/images/locations/borne-cappuccino.webp?1") no-repeat center;
}
.bg-img-palau {
  background: url("/cache/galleries/palau-march/palau-march_762.jpg?1") no-repeat center;
}
.bg-img-sanmiguel {
  background: url("/assets/V2/images/locations/san-miguel-cappuccino.webp?22") no-repeat center;
}
.bg-img-ibiza {
  background: url("/assets/V2/images/locations/marina-ibiza-cappuccino.webp?1") no-repeat center;
}
.bg-img-madrid {
  background: url("/assets/V2/images/locations/independencia-madrid-cappuccino.webp?1") no-repeat center;
}
.bg-img-marbella {
  background: url("/assets/V2/images/locations/marbella-cappuccino.webp?1") no-repeat center;
}
.bg-img-valencia {
  background: url("/assets/V2/images/locations/valencia-cappuccino.webp?1") 55% no-repeat;
}
.bg-img-sevilla {
  background: url("/assets/V2/images/locations/sevilla-cappuccino.webp?2") no-repeat center;
}
.bg-img-gstaad {
  background: url("/assets/V2/images/locations/cappuccino-gstaad.webp?1") no-repeat center;
}
.bg-img-hotelcappuccino {
  height: 80vh;
  background: url("/assets/V2/images/hotel-cappuccino.jpg") no-repeat center;
  background-size: cover;
}
.bg-img-tahini {
  height: 80vh;
  background: url("/assets/V2/images/tahini-sushi-grupo-cappuccino.jpg") no-repeat center;
  background-size: cover;
}
.bg-img-wellies {
  height: 80vh;
  background: url("/assets/V2/images/wellies-restaurant-gruopo-cappuccino.jpg") no-repeat center;
  background-size: cover;
}
.bg-img-lobster {
  height: 80vh;
  background: url("/assets/V2/images/lobster-grupo-cappuccino.jpg") no-repeat center;
  background-size: cover;
}
/* MENUS */
#menus div[class|="bg-menu"]{
  height:50vh;
  background-size: cover;
}
.bg-menu-01{
  background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-01.webp") no-repeat center;
}
.bg-menu-02{
  background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-02.webp") no-repeat center;
}
.bg-menu-03{
  background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-03.webp") no-repeat center;
}
.bg-menu-04{
  background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-04.webp") no-repeat center;
}
.bg-menu-05{
  background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-051.webp") no-repeat center;
}
.bg-menu-06{
  background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-06.webp") no-repeat center;
}
#menus h1 {
  font-size: 3.5rem;
  letter-spacing: 0.8rem;
  padding:0 0 2rem 0.5rem;
}
#menus li {
  font:bold 1.6rem var(--secondary-font);
  letter-spacing:0.2rem;
  margin: 2rem 0;
}
/* EVENTS */
#events {
  font-family: var(--secondary-font);
}
.bg-events{
  height:100vh;
  background:url("/cache/galleries/events-v2/eventos2.jpg")center;
  background-size:cover;
}
#events h1{
  font: bold 2.3rem var(--secondary-font);
  letter-spacing:0.2rem;
  line-height:3.7rem;
}
.info-events {
  font:italic 1.3rem var(--main-font);
  line-height: 2rem;
}
.box-copper {
  font-family: var(--third-font);
}
/* INDIVIDUAL LOCATION */
/*.location{
    background-color:#ededeb;
}*/
.location h1 {
  font: 2rem var(--secondary-font);
  letter-spacing:0.2rem;
  margin-bottom: 0.5rem;
}
.location .swiper-slide img {
  height: 70vh;
}
/*.location figcaption{
    background-color:transparent;
}
.location figcaption *{
    color:#000;
}*/
.info-location, .info-location a {
  font-family: var(--secondary-font);
  color: var(--main-black);
}
.location .swiper {
  cursor: e-resize;
}
.location p {
  font-size: 16px;
  line-height: 1.8rem;
}
.links-info a {
  font-size: 1rem;
  color: var(--main-black);
  padding: 0.2rem;
}
.location figure {
  min-height: 240px;
}
.location figcaption * {
  color: var(--main-white);
}
/*.menu-gstaad li{
    padding:20px;
    border:1px solid #000;
}*/
/* JOBS */
form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.bg-img-jobs {
  height: 70vh;
  background: url("/cache/galleries/slider-home-new/image007.jpg") no-repeat center;
  background-size: cover;
}
/* FORM */
button.btn {
  font-family: var(--secondary-font);
}
label {
  font: 1.2rem var(--secondary-font)
}
.form-group {
  margin-bottom: 2rem;
}
input, select, textarea {
  font-family: var(--secondary-font);
}
.form-control:not(textarea) {
  border-bottom: 1px solid var(--main-black);
}
.form-control {
  border-radius: 0px;
}
.form-control:focus {
  box-shadow: none;
  border-color: #495057;
}
/* COOKIES */
@media (max-width:576px){
  #cookiescript_badge {
    bottom: 115px !important;
  }
}
/* MEDIAS */
@media (max-width:768px){
  #locations h1{
    font-size:1.5rem;
    letter-spacing:0.3rem;
  }
  #menus h1{
    font-size:3rem;
  }
  #menus li{
    font-size:1.4rem;
  }
  .bg-menu-02{
    background:url("/assets/V2/images/cappuccino-menus/menus-cappuccino-02.webp") 80%;
    background-size: cover;
  }
  .bg-menu-06{
    background: url("/assets/V2/images/cappuccino-menus/menus-cappuccino-06.webp") 20%;
    background-size: cover;
  }
  #events h1{
    font-size:2rem;
    line-height:2.8rem;
  }
}
@media (max-width:320px){

  #locations h2 {
    font: bold 0.8rem var(--secondary-font);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-right: 10px;
  }

  .ciudad {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 0px;
  }

}