/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: "Poppins", sans-serif; font-weight: 400;
font-family: "Dela Gothic One", sans-serif; font-weight: 400;
*/

/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block }
body { line-height: 1 }
ol, ul { list-style: none }
blockquote, q { quotes: none }
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none
}
table {
  border-collapse: collapse;
  border-spacing: 0
}


:root{ --bg-color: #F2F2ED; }
html, body { overflow-x: hidden; }
body { font-family: "Poppins", sans-serif; letter-spacing: .07rem; line-height: 2rem; font-size: 15px; font-weight: 400; color: #4D4D4D; background-color: var(--bg-color);  }

h1, h2, h3, h4, h5, h6 { font-family: "Poppins", sans-serif; font-weight: 600; } 

a { text-decoration: none; color: #4D4D4D; transition: all .2s ease-out; }
a:hover { color: #4D4D4D; opacity: 1.0; }
button { text-decoration: none; font-family: "Poppins", sans-serif; color: #4D4D4D; transition: all .2s ease-out; }


/* HEADER */
header { position: absolute; left: 0; top: 0; width: 100%; z-index: 3; }
header .row { position: relative; }
.logo img { display: block; }
.header-content { z-index: 2; padding: 50px; transition: all .2s ease-out; }
.header-bg { position: absolute; z-index: 1; width: 580px; pointer-events: none; transition: all .2s ease-out; }

.links {
    display: grid;
    grid-template-columns: repeat(var(--items), 1fr);
    position: relative;
    background-color: #FAFAF5;
    border-radius: 2.5em;
    width: 100%;
}

.links a {
    padding: 1rem;
    text-align: center;
    transition: all .2s ease-out;
    position: static;
    z-index: 2;
}

.links a:hover {
    color: #fff;
}

.links .line {
    background-color: #FCD000;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: all .2s ease-out;
    position: absolute;
    bottom: 0;
    left: var(--left, calc(100%/var(--items) * (var(--index) - 1)));
    width: var(--width, calc(100% / var(--items)));
    --index: 0;
    z-index: 1;
    border-radius: 2.5em;
}

.links a:hover~.line {
    opacity: 1;
}

.links a:nth-of-type(1):hover~.line {
    --index: 1;
}

.links a:nth-of-type(2):hover~.line {
    --index: 2;
}

.links a:nth-of-type(3):hover~.line {
    --index: 3;
}

.links a.current1~.line {
    --index: 1;
    opacity: 1;
}
.links a.current2~.line {
    --index: 2;
    opacity: 1;
}
.links a.current3~.line {
    --index: 3;
    opacity: 1;
}

.mNav { display: none; }
.mNav input { display: none; }
.mNav input + label {
  position: absolute;
  top: 20px;
  right: 25px;
  height: 41px;
  width: 41px;
  z-index: 5;
  background: #FAFAF5;
  border-radius: .25rem;
}
.mNav input + label span {
  position: absolute;
  width: 24px;
  height: 2px;
  top: 49%;
  margin-top: -1px;
  left: 8px;
  display: block;
  background: #FCD000;
  transition: all .2s ease-out;
}
.mNav input + label span:first-child { top: 12px; }
.mNav input + label span:last-child { top: 28px; }
.mNav label:hover { cursor: pointer; }
.mNav input:checked + label span {
  opacity: 0;
  top: 50%;
}
.mNav input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
.mNav input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}
.mNav input ~ nav {
  background-color: rgba(250, 250, 245, 0.0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 3;
  transition: all .2s ease-out;
  transition-delay: .2s;
  overflow: hidden;
}
.mNav input ~ nav > div {
  text-align: center;
}
.mNav input ~ nav > div > div {
  opacity: 0;
  transition: all .2s ease-out;
  transition-delay: 0s;/*
  width: 100%;*/
  padding: 2em 0;
}
.mNav input ~ nav > div > div > a {
  font-size: 175%;
}
.mNav input ~ nav > div > div > a:hover { color: #FCD000; }
.mNav input:checked ~ nav {
  height: 100%;
  transition-delay: 0s;
  background-color: rgba(250, 250, 245, 0.97);
}
.mNav input:checked ~ nav > div > div {
  opacity: 1;
  transition-delay: .5s;
}

.dropdown-nav { font-size: 80%; display: none; }
.dropdown-nav > a { font-size: inherit; font-weight: inherit; color: #fff; padding: 0.5rem; min-width: 7rem; border-radius: 5rem; background: #FCD000; border: none; }
.dropdown-menu { font-size: inherit; color: inherit; padding: 0; border-radius: 0; background: none; border: none; min-width: 7rem; }
.dropdown-menu li { margin: 1px 0; text-align: center; border-radius: 5rem; background: #fff; }
.dropdown-menu li a { padding: .25rem 0!important; }
.dropdown-menu li a:hover { color: #fff; background: #FCD000; border-radius: 5rem; }
.dropdown-item { color: inherit; font-weight: inherit; }

/* CONTENT */
.noise { position: fixed; top: 0; left: 0; z-index: 1000000; width: 100%; height: 100%; pointer-events: none; opacity: 0.0125; background-size: 200px 200px; background-image: url("../img/img_bgnoise.png"); }
section { font-size: 125%; }
.container-inner { padding: 2.5rem; }
.big-image { padding-top: 5rem; min-height: 100vh; background-position: center bottom; background-size: cover; background-repeat: no-repeat; background-image: url("../img/img_big_1.png"); background-color: #C1E5E5; }
.big-image-inner { padding-top: 5rem; background-position: center top; background-repeat: no-repeat; background-image: url("../img/img_big_4.png"); }
.con { height: 500px; background: blue; }

.section-title { color: #41AA8C; font-size: 200%; margin-bottom: 2rem; }
.section-subtitle { font-size: 60%; color: #E4351E; text-transform: uppercase; font-weight: 800; margin-bottom: 1.5rem; }

.content-mobile { display: none; }

.parallaxe-inner { position: relative; width: 100%; height: 600px; }
.parallaxe-box { position: absolute; }
.item-1 { top: 0; left: 50px; }
.item-2 { top: 70px; left: 50px; }
.item-3 { top: 305px; left: 375px; }
.item-4 { top: 75px; left: 0px; }
.item-5 { top: 0; left: 0px; }
.item-6 { top: 250px; left: 270px; }

.col-date { border: 3px solid #41AA8C; border-radius: 5rem; overflow: hidden; --bs-gutter-x: 0!important; }
.col-date-title { font-size: 150%; text-align: center; color: #fff; font-weight: 600; background: #41AA8C;  padding: 2.5rem; }
.col-date-content { transition: all .2s ease-out; color: #41AA8C; font-size: 200%; font-weight: 800; text-align: center; }

.card-record { border: 3px solid #41AA8C; border-radius: 3rem; overflow: hidden; }
.card-record-img { background-position: center center; background-size: cover; background-repeat: no-repeat; background-image: url("../img/img_3_2.jpg"); border-left: 3px solid #41AA8C; }
.card-record .card-body { padding: 5rem; }
.card-record span { display: block; font-size: 60%; color: #E4351E; text-transform: uppercase; font-weight: 800; margin-bottom: 1.5rem; }



.card-register { border: 3px solid #41AA8C; border-radius: 3rem; padding: 4.5rem; }
.card-register img { max-height: 100px; }
.card-link { position: relative; font-size: 120%; font-weight: 600; border: 3px solid #FCD000; border-radius: 2rem; padding: 0 1.5rem; height: 60px; line-height: 55px; }
.card-link i { color: #fff; text-align: center; content: '>'; position: absolute; right: -3px ; top: -3px; width: 60px; height: 60px; line-height: 55px; display: block; border-radius: 2.5em; background: #FCD000; border: 3px solid #FCD000; transition: all .2s ease-out; }
.card-link:hover  { color: #fff; background: #FCD000; }
.card-link:hover i { color: #FCD000; background: #fff; }

/* FOOTER */
footer { width: 100%; height: 560px; background-position: center bottom; background-size: 2400px 560px; background-repeat: no-repeat; background-image: url("../img/bg_footer.png"); }
footer img { max-height: 60px; }
.footer-link { height: 450px; padding-top: 50px; }
.copyright { height: 60px; line-height: 100px; text-align: center; font-size: 80%; color: #fff; }

/* RESPONSIVE */
@media (max-width: 1400px) {
  .logo img { height: 50px; }
  .header-bg { width: 480px; }
  .header-content { padding: 40px; }

  .card-register { font-size: 90%; padding: 3.5rem; }
}

@media (max-width: 1200px) {
  .header-content ul li a { padding: .5rem; font-size: 90%; }
  .col-date-title { font-size: 150%; padding: 2rem; }
  .col-date-content { font-size: 200%; }
  .card-record .card-body { padding: 3rem; }
}

@media (max-width: 992px) {
  .logo img { height: 40px; }
  .header-bg { width: 400px; }

  .section-title { font-size: 150%; margin-bottom: 1.5rem; }
  .section-subtitle { margin-bottom: 1.2rem; }
  .col-date-title { font-size: 120%; padding: 2rem; }
  .col-date-content { font-size: 150%; }
  .card-register { font-size: 70%; padding: 2rem; }
  .card-record .card-body { padding: 2.5rem; }
}

@media (max-width: 768px) {
  header { position: fixed; }
  header .row { background: #FAFAF5; }
  .header-content { padding: 15px 30px; }
  .header-bg { display: none; }
  .links { display: none; }
  .mNav, .dropdown-nav { display: block; }
  .container-inner { padding: 1rem; }
  .row-event .order-2 { order: 0!important; }
  .col-date { border-radius: 1rem; }
  .col-date-title { font-size: 120%; padding: 1rem; }
  .col-date-content { font-size: 120%; }
  .card-record { border-radius: 1rem; }
  .card-record .card-body { padding: 1.5rem 1rem; }
  .card-record-img { border-left: none; border-top: 3px solid #41AA8C; height: 40vh; }
  .card-register { border-radius: 1rem; font-size: 90%; padding: 1.5rem 1rem; }
  .content-mobile { display: block; }
  .parallaxe-items { display: none; }
}

@media (max-width: 576px) {
  .col-date-title { border-radius: 0; padding: 1rem; }
  .col-date-content { font-size: 120%; padding: 1rem; }
  .card-register { font-size: 75%; }
  footer { background-size: 750px 560px; background-image: url("../img/bg_footer_2.png"); }
  .copyright { height: 20px; line-height: 1.2rem; padding: 20px; font-size: 50%; }
}

