
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montez&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Angkor&display=swap');
/* font-family: 'Orbitron', sans-serif; */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
color: #e49b64;
text-decoration: none;
background-color: transparent;
font-weight: 600;
}
a:hover {
    color: #e49b64;
    text-decoration: underline;
}
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Indie Flower', cursive;
    font-family: 'Montez', cursive;
    
    font-family: 'Angkor', cursive;
}

.bottom_bar{
background: #fff;
position: fixed;
bottom: 0;
z-index: 999;
opacity: 1;
box-shadow: 0px 4px 7px #00000000;
width: fit-content !important;
padding: 10px 20px 0px;
left: 50%;
transform: translateX(-50%);
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-size: 22px;
font-family: 'Handlee', cursive !important;
}
.bottom_bar a{
  color: #e49b64;
  text-decoration: none;
  background-color: transparent;
  font-weight: 600;
  font-family: 'Angkor', cursive;
  letter-spacing: 2px;
  font-size: 28px;
}

h2 {
    font-size: 2.5rem;

    text-transform: uppercase;
    color: #ae7042;
    color: #e49b64;
    color: #ffffff;
    text-shadow: 0 0 11px #00000073;
}
.orange{
  color: #e49b64;
  text-shadow: 0 0 0px #00000000;
}
.scroll {
    overflow-y: scroll;
    height: 100vh;
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.section .row{
    height: 100%;
}

.section-01 {

    background: url(/assets/img/hero.jpg), radial-gradient(#e5e0dd, transparent);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.section-02 {
    background-color: #fff9f2;
}
.desc h2{
    color: #e29b64;
 text-shadow: 0 0 0 transparent;
}

.section-03 {
    background-image: url(/assets/img/3.jpg);
    background-position: bottom !important;
    }
.section-04 {
    background-image: url(/assets/img/4.jpg);
}
.section-05 {
    background-image: url(/assets/img/5.jpg);
}
.section-06 {
    background-image:url(/assets/img/6.jpg);
}
.section-07 {
    background-image:url(/assets/img/7.jpg);
}

.section-01 .blocco,
.desc,
.section-02 .blocco,
.section-03 .blocco,
.section-04 .blocco,
.section-05 .blocco,
.section-06 .blocco,
.section-07 .blocco {
    opacity: 0;
}


.desc .row {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.blocco {
    background: linear-gradient(0deg, #83602f, transparent);
border-radius: 5px;
backdrop-filter: brightness(1.2) contrast(1.2) blur(0px);
height: 100%;
display: flex;
align-items: end;
}

.blocco div {
    padding: 2rem;
    /*position: absolute;*/
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #d393339e, transparent);
    padding-bottom: 80px;
}
/*
.blocco:after {
    content: "";
    display: block;
    padding-top: 100%;
}*/
.d-center{
align-items: center;
justify-content: center;
display: flex;
}

.blocco p {
    color: #3e3e3ee8;
    font-size: 1.3rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 11px #00000073;
}


p {
    color: #00000091;
    font-size: 1.1rem;
    font-family: 'Handlee', cursive !important;
    line-height: 1.75;
letter-spacing: 1px;
}

.real_height {
    min-height: -webkit-fill-available;
    height: calc(var(--vh, 1vh) * 100);
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
}

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

      padding: 0;
align-items: end;
    }
    h2{
        font-size: 2rem;
    }


}
@media (min-width: 769px) {
  .blocco{
    height: 100vh;
  }
  .blocco div{
    width: 100%;
  }
}




.hero {
    background: url(/assets/img//hero.jpg);
    height: 100%;
    background-size: cover;
    position: relative;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*PRELOAD*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  
    box-shadow: 0 0 13px #0000004d;
  }
  
  .logopreloader {
    width: 110px;
    object-fit: contain;
   
    animation: wiggle 1.5s linear  infinite;
  }


/* Keyframes */
@keyframes wiggle {
  0%, 7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%, 100% {
    transform: rotateZ(0);
  }
}
  
  @keyframes jump {
    0% {
      transform: scale(1.1);
    }
  
    100% {
      transform: scale(1.6);
    }
  }


.preloader {
    display: block;
  }
  
  body.loaded .preloader {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.8, 0.2, 0.2, 0.9);
  }
  
  @keyframes fadeOut {
    100% {
      transform: translateY(-100%);
      visibility: hidden;
    }
  }
  /*PRELOAD*/

/*HEADER*/
header{
    opacity: 1;
  position: fixed;
  top: 0; 
  z-index: 999;
  background: #e49b64;
  box-shadow: 0px 0px 7px #00000054;
  width: fit-content !important;
  padding: 10px 20px 5px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  }

  .logo_header {
    margin-top: 5px;
    width: 100%;
    height: 7vh;
    z-index: 9999;
    position: relative;
    margin-bottom: 2px;
    opacity: 1;
    min-height: 60px;
    max-height: 60px;
    object-fit: contain;
  }
  .logo_menu{
    height: 180px;
    padding-bottom: 30px;
  }


  .hidden {
    overflow: hidden;
  }
  .div_burger{
  text-align: center;
    align-items: end;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1rem;
  }
  
  #burger-menu {
    cursor: pointer;
    height: 27px;
    width: 27px;
    overflow: visible;
    position: relative;
    z-index: 2;
  }
  
  #burger-menu span,
  #burger-menu span:before,
  #burger-menu span:after {
    background: #2daae1;
    display: block;
    height: 3px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
    border-radius: 15px;
  }
  
  #burger-menu span:before,
  #burger-menu span:after {
    content: "";
  }
  
  #burger-menu span {
    right: 0px;
    top: 13px;
    width: 27px;
  }
  
  #burger-menu span:before {
    right: 0px;
    top: -10px;
    width: 16px;
  }
  
  #burger-menu span:after {
  right: 0px;
    top: 10px;
    width: 20px;
  }
  
  #burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
  }
  
  #burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
  }
  
  #burger-menu.close span:after {
    top: 0px;
    right: 0;
    transform: rotate(90deg);
    opacity: 0;
    width: 0;
  }
  
  #menu {
    z-index: 11;
    min-width: 100%;
    position: fixed;
    bottom: 0;
    top: auto;
    height: 0;
    text-align: center;
    transition: all 0.5s ease-in-out;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: url(/assets/img//hero.jpg);
    background-size: cover;
    background-position: center;
  visibility: hidden;
  }
  
  .menu_div{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #033e71e6;
    padding-top: 20px;
    padding-bottom: 30px;
  
  }
  
  #menu.overlay {
    min-height: 100vh;
    height: 100vh;
    opacity: 1;
  visibility: visible;
  }
  #menu ul{
    padding-inline-start: 0 !important;
  }
  #menu li {
    list-style: none;
  }


  
  #menu a {
    color: #fff;
    display: block;
    font-size: 32px;
    margin-bottom: 15px;
    text-decoration: none;
    text-transform: uppercase;
  }
  

 .li_menu{
  position: relative;
  color: #2a2929;
    white-space: nowrap;
    padding-left: 48px;
 }
  /*HEADER*/


































:focus {
    outline: -webkit-focus-ring-color auto 0 !important;
}

footer {
    display: none;
}

@font-face {
    font-family: kids;
    src: url("/assets/font/Kids_Magazine.woff");
  }



 .hidden{
overflow: hidden !important;
}


:root {
    --title: #2f1d42;
    --p:#4a5a5e;
    --back:#fff;
    --onde:#fff;
    --header:#ffffff00;
    color-scheme: light dark; 

}
::selection   {
    background: #9a2dfd;
    color: rgb(255, 255, 255);
    }
/*
@media (prefers-color-scheme: dark) {
    html {
        --title: #eddef4;
        --p:#e3e3e3e3;
        --back:#23132d;
        --onde:#23132d;
        --header:#13011ee8;
    }
  }
  
  @media (prefers-color-scheme: light) {
    html {
        --title: #2f1d42;
        --p:#140d1cb0;
        --back:#f8f7ff;
        --onde:#f8f7ff;
        --header:#ffffffed;
    }
  }*/
  /*
  
html[data-theme='light'] {
    --title: #2f1d42;
    --p:#140d1cb0;
    --back:#f8f7ff;
    --onde:#f8f7ff;
}

html[data-theme='dark'] {
    --title: #eddef4;
    --p:#e3e3e3e3;
    --back:#23132d;
    --onde:#23132d;
}*/



