@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Alfa+Slab+One&family=Anton&family=Lobster&family=Patua+One&family=Secular+One&family=Sen:wght@400;700&family=Ubuntu:wght@300&family=Zilla+Slab:wght@300;600&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1rem;
}

@media screen and (max-width: 450px) {
  * p {
    font-size: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 85%;
  margin: 0 auto;
  padding: 100px 0;
}

@media screen and (max-width: 599px) {
  .container {
    padding: 50px 0;
  }
}

#mainMenu {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F8C953;
  z-index: 10;
  width: 100%;
}

@media screen and (max-width: 450px) {
  #mainMenu {
    display: none;
  }
}

#mainMenu .logo {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: -40px;
  z-index: 5;
}

#mainMenu .logo img {
  width: 65px;
}

#mainMenu .logo:hover {
  opacity: 0.8;
}

#mainMenu .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#mainMenu .menu ul li {
  display: block;
  list-style-type: none;
  margin: 35px 20px;
}

#mainMenu .menu ul li a {
  text-decoration: none;
  color: #000000;
  padding: 1px 10px;
  margin: 0 10px;
  font-weight: 500;
  font-family: 'Zilla Slab', serif;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#mainMenu .menu ul li a:hover {
  background-color: #ED1B24;
  color: white;
}

#mainMenu .menu ul li .btn.current {
  background-color: #ED1B24;
  color: #FFFFFF;
  font-weight: bold;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: none;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 6px;
  background-color: #000000;
  z-index: 9999;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

@media screen and (max-width: 970px) {
  .hamburger span {
    display: block;
  }
  #mainMenu {
    display: none;
  }
  #mainMenu {
    height: 90px;
  }
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #ED1B24;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #ED1B24;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#small.upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

#small.downMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

.nav.upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 9995;
  top: 0;
  left: 0;
  text-align: center;
  background-color: #F8C953;
  width: 100%;
  opacity: 0;
  display: none;
  -webkit-transition: all .6s ease, visibility .6s ease;
  transition: all .6s ease, visibility .6s ease;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: .4s all;
  transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background-color: #ED1B24;
}

nav.globalMenuSp ul li:hover a:hover {
  font-weight: bold;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000000;
  font-weight: bold;
  padding: 1em 0;
  text-decoration: none;
  font-family: ubuntu;
  -webkit-transition: .4s all;
  transition: .4s all;
}

nav.globalMenuSp ul li a:hover {
  color: #FFFFFF;
}

nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}

#mainMenu.upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

#mainMenu.downMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

footer {
  background-color: #CC232A;
}

footer .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

footer .footer-link .footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-link .footer-block a {
  text-decoration: none;
  color: #FFFFFF;
  font-family: 'Zilla Slab', serif;
}

footer .footer-link .footer-block a:hover {
  color: #000000;
}

footer .footer-link .footer-block :nth-child(1) {
  margin-bottom: 20px;
}

footer .footer-link2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  width: 100%;
}

footer .footer-link2 a {
  display: block;
  color: #FFFFFF;
  margin: 3px 0;
  padding: 10px 5px;
  text-align: left;
  font-size: 1rem;
  font-weight: none;
  font-family: 'Zilla Slab', serif;
}

footer .footer-link2 a:hover {
  color: #000000;
  background-color: #F8C953;
  font-weight: bold;
}

footer #copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
  color: #ebebeb;
}

footer #copyright p {
  text-align: left;
  font-family: 'Zilla Slab', serif;
}

@media screen and (max-width: 599px) {
  footer .footer-link {
    display: none;
  }
  footer .footer-link2 {
    display: block;
    text-align: left;
  }
}

@media screen and (max-width: 970px) {
  footer .footer-link {
    display: none;
  }
  footer .footer-link2 {
    display: block;
  }
  .container-mobile {
    padding: 20px 0;
  }
}
/*# sourceMappingURL=style1.0.css.map */