/* ! Base */
/* html{scroll-behavior: smooth;} */
body {
  background: #F4EBD8;
  font-family: 'Noto Serif', serif;
}

/* .scroll-container{overflow: hidden;} */
.preloader {
  background: #000;
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 99999999
}

.logo-pre,
.gif {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.intro .headline {
  color: #F4EBD8;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .logo-pre img {
    width: 55%;
    height: auto;
  }

  .gif img {
    width: 65%;
    height: auto;
  }

  .intro .headline {
    font-size: 20px;
    padding: 25px;
    margin-top: 50px;
  }
}

@media (max-width: 320px) {

  .logo-pre img,
  .gif img {
    width: 65%;
    height: auto;
  }

  .intro .headline {
    font-size: 20px;
    padding: 25px;
  }
}


/* ! Typography */

.headline {
  font-size: 40px;
  font-weight: bold;
  color: #1D282C;
  text-transform: uppercase;
  line-height: 40px;
}

.bbq .title,
footer .title {
  font-size: 22px;
  font-weight: bold;
  color: #F4EBD8;
  line-height: 30px;
}

.bbq .text,
footer .text {
  font-size: 16px;
  font-weight: 400;
  color: #F4EBD8;
  line-height: 22px;
}

.title {
  font-size: 22px;
  font-weight: bold;
  color: #1D282C;
  line-height: 30px;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: #1D282C;
  line-height: 22px;
}

@media (min-width: 1024px) {
  .bbq .title {
    font-size: 42px;
    line-height: 57px;
  }

  .bbq .text {
    font-size: 22px;
    line-height: 30px;
    padding: 0 50px;
  }

}


/* ! Helpers */
.margin-top {
  margin-top: 50px;
}

.vh {
  visibility: hidden;
}

.mt-25 {
  margin-top: 25px;
}

.tac {
  text-align: center;
}

/* ! Header */


@media (max-width: 1023px) {
  ul.site-nav {
    display: flex;
    padding: 60px 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    list-style-type: none;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav li a {
    display: block;
    text-decoration: none;
    width: 100%;
    color: #1D282C;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 25px;
  }

  a.mt-25 {
    margin-top: 0;
  }

  a.logo-mobile img {
    display: none;
  }

  .l-mob {
    display: none;
  }

  .mob {
    display: none;
  }
}





@media (max-width: 900px) {
  header {
    position: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
    width: 100%;
    z-index: 9998
  }

  .header__icon {
    position: fixed;
    z-index: 99999;
    padding: 30px;
  }

  .icon--hamburger {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9999
  }

  .icon--hamburger span {
    height: 4px;
    width: 100%;
    border-radius: 20px;
    position: absolute;
    background: #1D282C;
    top: 0;
    transition: all 0.2s ease-in-out;
  }

  .icon--hamburger span:before,
  .icon--hamburger span:after {
    border-radius: 20px;
    height: 4px;
    width: 100%;
    background: #1D282C;
    position: absolute;
    content: '';
    margin-top: -10px;
    transition: all 0.3s cubic-bezier(.215, .61, .355, 1);
  }

  .icon--hamburger span:after {
    margin-top: 10px;
  }

  .icon--hamburger--open span {
    background: transparent !important;
  }

  .icon--hamburger--open span:before {
    transform: rotate(45deg);
    margin-top: 0;
    background: #F4EBD8;
  }

  .icon--hamburger--open span:after {
    transform: rotate(-45deg);
    margin-top: 0;
    background: #F4EBD8;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    background: #1D282C;
    transform: translateX(-100%);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
    z-index: 9998;
    cursor: pointer;
  }

  .header__menu--open {
    transform: translateX(0%);
  }

  ul.site-nav {
    display: block;
    width: 100%;
    height: 100vh;
    text-align: center;
    list-style-type: none;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav li a {
    display: block;
    text-decoration: none;
    width: 100%;
    color: #F4EBD8;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 22px;
    margin-bottom: 30px;
  }

  .logo-mobile {
    margin: 30px 0;
    display: block;
    margin-right: 0 !important;
  }

  a.logo-mobile img {
    display: block;
    width: 150px;
    height: auto;
    margin-right: 0 !important;
  }

  a.mt-25 {
    margin-top: 25px;
  }

  .l-mob {
    display: block;
  }

  .mob {
    display: block;
  }

}



@media (min-width: 1024px) {
  header {
    position: relative;
    z-index: 9998;
  }

  ul.site-nav {
    display: none;
    justify-content: center;
    align-items: center;
    width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
    border: 1px solid red;
  }

  .site-nav li {
    display: block;
    margin: 0 25px;
    cursor: pointer;
    text-decoration: none;
    color: #1D282C;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .site-nav li a {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: #1D282C;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
  }

  a.mt-25 {
    margin-top: 0;
  }

  a.logo-mobile img {
    display: none;
  }

  .l-mob {
    display: none;
  }

  .header__menu {
    width: 100%;
  }

  .scroll-down .menu_fake li {
    color: #F4EBD8
  }

  .scroll-down .menu_fake {
    background: #1D282C;
    transition-delay: 0s !important;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }

  .menu_fake {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
    z-index: 9999;
  }

  .list {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .menu_fake li {
    display: block;
    margin: 0 25px;
    cursor: pointer;
    text-decoration: none;
    color: #1D282C;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }
}





/* ! Hero */
.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.elements {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
}

.uomo-sx {
  position: relative;
  bottom: 0;
  left: -5%;
  width: 100%;
  height: 100%;
}

.uomo-dx {
  position: relative;
  bottom: 0;
  right: -5%;
  width: 100%;
  height: 100%;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo img {
  width: 400px;
  height: 100%;
}

.uomo-sx img,
.uomo-dx img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1470px) {
  .uomo-dx {
    right: -3%;
  }
}

@media (max-width: 1300px) {
  .uomo-sx {
    left: 0;
  }

  .uomo-dx {
    right: 5%;
  }
}

@media (max-width: 1280px) {

  .uomo-sx,
  .uomo-dx {
    height: 90%;
    bottom: -5%;
  }

  .uomo-dx {
    right: 0%;
  }
}

@media (max-width: 1200px) {
  .uomo-sx {
    left: 5%;
  }

  .uomo-dx {
    right: 8%;
  }
}

@media (max-width: 1110px) {
  .uomo-sx {
    left: 7%;
  }

  .uomo-dx {
    right: 11%;
  }
}




@media (max-width: 768px) {
  .logo img {
    position: absolute;
    top: 8%;
    width: 250px;
    height: auto;
  }

  .uomo-sx img {
    position: absolute;
    bottom: 0;
    height: 70%;
    left: -100%;
  }

  .uomo-dx img {
    position: absolute;
    bottom: 0;
    height: 70%;
    right: -100%;
  }

}

@media (max-width: 360px) {
  .logo img {
    width: 200px;
    height: 200px;
  }
}





/* ! BBQ */
@media (max-width: 768px) {
  .bbq {
    width: 100%;
    height: 100%;
    padding: 25px;
    padding-bottom: 50px;
    background: #242326;
    text-align: center;
  }

  .bbq span {
    text-transform: uppercase;
  }

  .bbq .title {
    margin: 0px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .piatti img {
    width: 100%;
    height: auto;
  }

  .piatti .sma-100 {
    padding: 15px;
  }
}



@media (min-width: 769px) {
  .bbq {
    width: 100%;
    height: 100%;
    padding: 25px;
    padding-bottom: 50px;
    background: #242326;
    text-align: center;
  }

  .bbq span {
    text-transform: uppercase;
  }

  .bbq .title {
    margin: 0px;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 32px;
  }

  .bbq .text {
    font-size: 20px;
    line-height: 26px;
  }

  .piatti .col-33 {
    margin-top: 50px;
    padding: 15px
  }

  .piatti img {
    filter: grayscale();
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .piatti img:hover {
    filter: none;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }
}


@media (max-width: 1280px) {
  .bbq .title {
    font-size: 28px;
    line-height: 30px;
  }

  .bbq .text {
    font-size: 18px;
    line-height: 24px;
  }

  .piatti img {
    height: 270px;
  }
}




/* ! Chi siamo */


@media (min-width: 769px) {
  .chi-siamo {
    width: 100%;
    height: 100%;
    margin-bottom: 150px;
  }

  .descr {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .chi-siamo h3 {
    font-size: 107px;
    line-height: 107px;
    margin: 150px 0;
    position: relative;
    padding: 0 50px;
  }

  .chi-siamo img {
    width: 100%;
    height: 550px;
    margin: 0 auto;
    margin-bottom: 50px;
    padding-left: 50px;
  }

  .chi-siamo p {
    font-size: 20px;
    line-height: 26px;
    padding: 30px 100px;
  }
}

@media (max-width: 1440px) {
  .chi-siamo h3 {
    font-size: 80px;
    line-height: 80px;
  }

  .img_us {
    height: 600px;
  }

  .img_us img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }

  .chi-siamo p {
    padding: 30px 65px;
  }
}


@media (max-width: 1280px) {
  .chi-siamo h3 {
    font-size: 80px;
    line-height: 80px;
  }

  .chi-siamo p {
    font-size: 18px;
    line-height: 24px;
  }

  .img_us {
    height: 600px;
  }

  .img_us img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }

  .chi-siamo p {
    font-size: 18px;
    line-height: 24px;
    padding: 30px 65px;
  }
}

@media (max-width: 768px) {
  .chi-siamo {
    width: 100%;
    height: 100%;
    padding: 25px;
  }

  .chi-siamo h3 {
    font-size: 40px;
    line-height: 40px;
    margin: 50px 0;
    position: relative;
  }

  .chi-siamo p {
    padding: 25px 0;
  }

  .chi-siamo img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .img_us {
    height: 400px;
  }

  .img_us img {
    height: 400px;
  }
}


/* ! Banner */

@media (max-width: 1440px) {
  .banner {
    height: 500px;
  }
}



@media (max-width: 1023px) {
  .banner {
    position: relative;
    margin: 50px 0;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }

  .img-bg {
    width: 100%;
    height: auto;
    position: relative;
  }

  .img-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* .banner-cta{display: flex; justify-content: center; align-items: center;} */
  .cta-content a {
    position: relative;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    text-decoration: none;
    color: #F4EBD8;
    font-weight: bold;
    font-size: 25px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    width: 306px;
    height: 100px;
    border-radius: 21.5px;
    background: #1d282c;
    border: 3px solid #f4ebd8;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  }
}



@media (min-width: 1024px) {
  .banner {
    position: relative;
    margin-top: 50px;
    width: 100%;
    height: 730px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }

  .img-bg {
    width: 100%;
    height: 650px;
    position: relative;
  }

  .img-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .banner-cta {
    position: relative;
  }

  .cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .cta-content a {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-right: 50px;
    text-transform: uppercase;
    text-decoration: none;
    color: #F4EBD8;
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 260px;
    height: 100px;
    border-radius: 21.5px;
    background: #1d282c;
    border: 3px solid #f4ebd8;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  }

  .cta-content a:last-child {
    margin-right: 0;
  }
}

/* @media (max-width: 1280px) {
  .cta-content a{bottom: 20%;}
} */

@media (max-width: 768px) {
  .banner {
    position: relative;
    margin: 50px 0;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }

  .img-bg {
    width: 100%;
    height: 200px;
    position: relative;
  }

  .img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-content a {
    position: relative;
    display: block;
    margin: 25px auto;
    text-transform: uppercase;
    text-decoration: none;
    color: #F4EBD8;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    width: 200px;
    height: 50px;
    border-radius: 21.5px;
    background: #1d282c;
    border: 3px solid #f4ebd8;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  }

  .cta-content a:first-child {
    margin: 0 auto;
  }
}

/* ! Info e prenotazione */
@media (max-width: 900px) {
  .info h3 {
    font-size: 40px;
  }
}



@media (max-width: 320px) {
  .info h3 {
    font-size: 33px;
  }
}



@media (min-width: 769px) {
  .info h3 {
    font-size: 107px;
    line-height: 107px;
    margin: 150px 0;
    position: relative;
    padding: 0 50px
  }

  .info a {
    color: #1D282C
  }

  .info .descr {
    justify-content: center;
    align-items: flex-start;
  }

  .fork {
    width: 100%;
    height: auto;
    padding: 0 20px;
  }

  .beer {
    width: 100%;
    height: 800px;
    margin: 0 150px;
  }

  .beer img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .info p {
    font-size: 22px;
    line-height: 34px;
    padding: 0 50px
  }

  .fork .text {
    padding: 25px;
  }
}

@media (max-width: 1440px) {
  .info h3 {
    font-size: 80px;
    line-height: 80px;
  }

  .beer {
    height: 600px;
  }

  .info p {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1280px) {
  .info h3 {
    font-size: 80px;
    line-height: 80px;
  }

  .info p {
    font-size: 18px;
    line-height: 24px;
  }

  .beer {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .info {
    width: 100%;
    height: 100%;
    padding: 25px;
    position: relative;
  }

  .info h3 {
    font-size: 40px;
    line-height: 40px;
    margin: 50px 0;
    position: relative;
  }

  .info a {
    color: #1D282C
  }

  .info img {
    width: 100%;
    margin: 30px auto;
  }

  .beer {
    height: 100%;
  }
}




/* ! Mappa */


@media (min-width: 769px) {
  .mappa {
    position: relative;
    width: 100%;
    height: 800px;
    margin: 0 auto;
    background: url(img/bronxe-mappa.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    transition: all 1s linear;
    cursor: pointer;
    transition-delay: 1s;
  }

  .mappa-cta {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 0.5);
    opacity: 0;
  }

  .mappa-cta a {
    position: absolute;
    z-index: 5;
    text-transform: uppercase;
    text-decoration: none;
    color: #F4EBD8;
    font-weight: bold;
    font-size: 20px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    bottom: 20%;
    width: 306px;
    height: 50px;
    border-radius: 21.5px;
    background: #1d282c;
    border: 3px solid #f4ebd8;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }

  .mappa-cta:hover {
    opacity: 1;
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }
}

@media (max-width: 1440px) {
  .mappa {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .mappa {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 350px;
    background: url(img/bronxe-mappa.png) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
  }

  .mappa-cta {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 0.3);
    opacity: 1;
  }

  .mappa-cta a {
    position: absolute;
    z-index: 5;
    text-transform: uppercase;
    text-decoration: none;
    color: #F4EBD8;
    font-weight: bold;
    font-size: 15px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    bottom: 20%;
    width: 200px;
    height: 50px;
    border-radius: 21.5px;
    background: #1d282c;
    border: 3px solid #f4ebd8;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
    transition: all 1s cubic-bezier(.215, .61, .355, 1);
  }
}





/* ! Footer */


@media (min-width: 769px) {
  footer {
    width: 100%;
    height: 100%;
    background: #242326;
    padding: 50px 25px;
  }

  .pre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 50px;
  }

  .border {
    border: 1px solid #F7EBD7;
  }

  .pay {
    width: 500px;
  }

  .pay img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .logo-footer {
    width: 150px;
  }

  .logo-footer img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  footer .text {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
  }

  footer span {
    font-size: 18px;
  }

  footer a {
    color: #F7EBD7;
    font-size: 18px;
    line-height: 25px;
  }

  footer .social a span {
    display: none;
  }

  .social {
    width: 500px;
  }

  .icons {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .social img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    margin-right: 40px;
  }

  .copy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid #F7EBD7;
  }

  .copy .text {
    margin: 0;
  }

}

@media (max-width: 1440px) {
  .pre {
    padding: 50px 80px;
  }

  .pay,
  .social {
    width: 350px;
  }

  footer .text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  footer {
    width: 100%;
    height: 100%;
    background: #242326;
    padding: 25px;
  }

  .pre {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 25px 0px;
    border: 1px solid #F7EBD7;
  }

  .pay,
  .social {
    width: 140px;
  }

  .pay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* .logo-footer {
    width: 80px;
  } */

  .desc {
    width: 100%;
    margin-top: 30px;
    padding: 15px;
    border: 1px solid #F7EBD7;
  }

  footer .text {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  footer span {
    font-size: 10px;
  }

  footer a {
    color: #F7EBD7;
    line-height: 40px;
  }

  footer .social a span {
    margin-left: 15px;
    font-size: 14px;
  }

  .copy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid #F7EBD7;
  }

  .copy .text {
    margin: 0;
  }
}






/* ! Animations */
/* fade normale */
.fade {
  opacity: 0;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
  transition-delay: 0.5s
}

.fade.is-inview {
  opacity: 1;
}

/* zoom out */
.zoom-out {
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s cubic-bezier(.215, .61, .355, 1);
}

.zoom-out.is-inview {
  opacity: 1;
  transform: scale(1.0);
}

/* entrata da sopra */
.fade-up {
  opacity: 0;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
  transform: translateY(30%);
  transition-delay: 0.5s
}

.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0px);
}

/* entrata da sotto */
.fade-down {
  opacity: 0;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
  transform: translateY(-30%);
  transition-delay: 0.5s
}

.fade-down.is-inview {
  opacity: 1;
  transform: translateY(0px);
}

/* animazione sui testi */
.text-reveal {
  overflow: hidden;
  display: block;
}

.text-reveal b {
  display: inline-block;
  will-change: transform;
  transform: translate3d(0, 100%, 0);
  transition: all 1.2s cubic-bezier(.4, .0, .0, 1);
}

.text-reveal.is-inview b {
  transform: none;
}


/* tendina: reveal-left */
.reveal-left {
  width: 100%;
  overflow: hidden;
  opacity: 1;
  transition: all 1.5s cubic-bezier(.215, .61, .355, 1);
  transition-delay: 0.5s
}

.reveal-left.is-inview {
  width: 100%;
  opacity: 1;
}



/* ! Delay */
.delay-2 {
  transition-delay: .2s !important
}

.delay-4 {
  transition-delay: .4s !important
}

.delay-6 {
  transition-delay: .6s !important
}

.delay-10 {
  transition-delay: 1s !important
}



/* ! Grid System */
.grid {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.grid--center {
  justify-content: center;
}

.col {
  flex: 1;
}

[class*='col-'] {
  position: relative;
}


@media (max-width: 1440px) {
  .grid {
    max-width: 900px;
  }
}


.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-30 {
  width: 30%;
}

.col-33 {
  width: 33.33%;
}

.col-50 {
  width: 50%;
}

.col-70 {
  width: 70%;
}

.col-80 {
  width: 80%;
}

.col-100 {
  width: 100%;
}

@media (max-width: 1023px) {
  .tab-20 {
    width: 20%;
  }

  .tab-25 {
    width: 25%;
  }

  .tab-33 {
    width: 33.33%;
  }

  .tab-50 {
    width: 50%;
  }

  .tab-100 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  [class*='col-'] {
    width: 100%;
  }

  .sma-20 {
    width: 20%;
  }

  .sma-25 {
    width: 25%;
  }

  .sma-33 {
    width: 33.33%;
  }

  .sma-50 {
    width: 50%;
  }

  .sma-100 {
    width: 100%;
  }

  .sma-hide {
    display: none
  }
}

@media (max-width: 1023px) {
  .menu_fake {
    display: none !important;
  }

}

* {
  margin: 0;
  padding: 0;
}


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


/* PRESS */


.boxcard {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
  flex-wrap: wrap;
  gap: 50px;
}

.card {
  color: #fff;
  padding: 20px 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.card img {
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: 370px;
  height: 562px;
  position: relative;

}

.redirect {
  width: 370px;
  padding: 160px 0px;
  bottom: 10px;
  position: absolute;
  backdrop-filter: blur(2px);
  border-radius: 0px 0px 16px 16px;
  text-align: center;
}

.redirect a {
  text-transform: uppercase;
  text-decoration: none;
  color: #F4EBD8;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  width: 260px;
  height: 100px;
  border-radius: 21.5px;
  background: #1d282c;
  border: 3px solid #f4ebd8;
  cursor: pointer;
}

footer .grid:first-child {
  position: relative;
}

#eccellenze {
  width: 175px;
}

.res-guru {
  transform: scale(0.6);
}

@media (max-width: 960px) {
  /* .logo-footer,
  .pay {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .logo-footer img,
  .pay img {
    width: 50%;
  }
  #eccellenze {
    width: 100px;
  }
  .res-guru {
    transform: scale(0.5) translate(-70%, 0);
    max-width: 86px;
  } */
  footer .grid:first-child {
    flex-direction: column;
  }
  .logo-footer{
    width: 150px;
  }
  .pay {
    width: 200px;
  }
}

.thanks-to {
  text-align: center;
  color: #fff;
  /* font-weight: bold; */
}

.thanks-to a {
  color: inherit;
  display: inline;
}

#thanks-to span {
  display: block;
  padding: 10px 0;
  background-color: #1d282cda;
  box-shadow: 0 0 8px #1D282C;
}

#thanks-to {
  position: absolute;
  backdrop-filter: blur(2px);
  width: 370px;
  top: 20px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  z-index: 999;
}

@media (max-width: 768px) {
  #thanks-to {
    top: 50px;
  }
}

@media (min-width: 1440px) {
    p.thanks-to {
      font-size: 20px;
      line-height: normal;
    }
}