/*==================
RESET
==================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

/*==================
GENERAL
==================*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Merriweather", serif;
  color: #000000;
  background: #f3f3f3;
  font-size: 14px;
}
@media (min-width: 576px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 2560px) {
  body {
    font-size: 22px;
  }
}

.contain-all {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #444444;
}
a:hover {
  text-decoration: underline;
  color: #444444;
}
a:visited {
  text-decoration: none;
  color: #444444;
}

img {
  width: 100%;
}

h1 {
  font-family: "Merriweather", serif;
  font-weight: 800;
}

/*******************
BUTTONS
*******************/
.button {
  color: #444444;
  margin: 2.5em auto 0;
  font-size: 1.125em;
  line-height: 1.5em;
  display: inline-block;
  border-bottom: 0.0625em solid;
  font-weight: 300;
}
.button:hover ~ .arrow {
  animation: arrow 0.5s infinite alternate;
}

.arrow {
  position: relative;
  top: 0.125em;
  left: 0.5em;
  display: inline;
}
.arrow img {
  width: clamp(8px, 0.6vw, 23px);
}

@-webkit-keyframes arrow {
  0% {
    left: 0.5em;
  }
  100% {
    left: 0.75em;
  }
}
/*==================
HERO
==================*/
.hero {
  width: 100%;
  background: url("../img/bg.jpg") no-repeat;
  background-size: cover;
  background-position: left;
}
@media (min-width: 768px) {
  .hero {
    background-position: center;
  }
}
.hero .hero-container {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6.25em 1em;
}
@media (min-width: 1200px) {
  .hero .hero-container {
    height: 100vh;
    width: 80%;
    padding: 0;
  }
}
@media (min-width: 2560px) {
  .hero .hero-container {
    height: 100%;
    max-height: 62.5em;
  }
}
.hero .hero-container .logo-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25em;
}
.hero .hero-container .logo-container .logo {
  width: 8.75em;
  text-align: center;
  margin: 0 auto 1.875em;
}
@media (min-width: 992px) {
  .hero .hero-container .logo-container .logo {
    width: 11.25em;
  }
}
.hero .hero-container .logo-container h1 {
  color: #FFFFFF;
  font-size: 1.875em;
  line-height: 1.1;
  margin: 0 auto 0.5em;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 992px) {
  .hero .hero-container .logo-container h1 {
    font-size: 2.75em;
  }
}
.hero .hero-container .logo-container p {
  color: #FFFFFF;
  font-size: 1.5em;
  line-height: 1.3;
  margin: 0 auto;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .hero .hero-container .logo-container p {
    font-size: 1.875em;
  }
}

/*========================
EVENTS
=========================*/
.sec-events {
  color: #FFFFFF;
  background: #FFFFFF;
  text-align: center;
  margin: 0 auto;
  padding: 3.75em 1em;
}
.sec-events .content {
  text-align: center;
  margin: 0 0 2.5em;
}
.sec-events .points {
  margin: 0 0 5em;
  text-align: center;
}
@media (min-width: 768px) {
  .sec-events .points {
    margin: 1.875em 0 5em;
    padding: 0 0.625em;
  }
}
.sec-events .points h2 {
  font-size: 1.75em;
  line-height: 1.5;
  font-weight: 800;
  color: #dd1e25;
  margin: 0 auto 0.3125em;
}
.sec-events .points p {
  color: #000000;
  margin: 0 auto;
  font-size: 1.25em;
  line-height: 1.5;
}
.sec-events .points a {
  color: #f3f3f3;
  margin: 0;
  width: 100%;
  display: block;
}
.sec-events .points .button {
  font-size: 1.25em;
  line-height: 1.5;
  margin: 1.25em 0 0;
}
.sec-events .lp-img {
  width: 100%;
  margin: 0 auto 1.875em;
}
.sec-events .lp-img img {
  width: 100%;
  border-radius: 1.25em;
}

/*==================
SOCIAL
==================*/
.sec-social {
  padding: 0 0 3.75em;
  text-align: center;
  background: #FFFFFF;
}
.sec-social h2 {
  font-size: 1.25em;
  line-height: 1;
  margin: 0 auto 0.625em;
  font-weight: 700;
  text-align: center;
  color: #333333;
}
.sec-social img {
  width: 3.125em;
  margin: 0 0.1875em;
}

/*========================
FOOTER - MADE BY
=========================*/
.footer {
  background: #333333;
  color: #FFFFFF;
  padding: 0.9375em 1em;
  text-align: center;
  font-size: 1em;
}
.footer a {
  color: #FFFFFF;
}

/*==================
MAILER LITE FORM
==================*/
.sec-mail {
  background: #00457C;
  color: #333333;
  padding: 3.75em 1em;
  text-align: center;
}
.sec-mail img {
  width: 100%;
  margin: 0 auto 1.875em;
}
@media (min-width: 992px) {
  .sec-mail img {
    margin: 0 auto;
  }
}
.sec-mail h1 {
  font-size: 1.625em;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 0.3125em;
  text-align: center;
}
.sec-mail p {
  color: #ffffff;
  margin: 0 auto 2.5em;
  font-size: 1.25em;
  line-height: 1.5;
  text-align: center;
}
.sec-mail .spcr {
  display: none;
}
@media (min-width: 992px) {
  .sec-mail .spcr {
    display: block;
  }
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper {
  margin: 0 auto;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  width: 100%;
}
@media (min-width: 768px) {
  #mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
  #mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
    width: 80%;
  }
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #ffffff;
  font-family: "Merriweather", serif;
  font-size: 1.125em;
  font-weight: 800;
  margin: 0 0 1.25em 0;
  text-align: center;
  text-transform: uppercase;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #ffffff;
  font-family: "Merriweather", serif;
  font-size: 1.125em;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 1.25em 0;
  text-align: center;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
  margin-bottom: 5px;
  color: #333333;
  font-size: 1.125em;
  font-family: "Merriweather", serif;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
  line-height: 1.3;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  margin: 0;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0;
  width: 100%;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 0.75em 0;
  width: 100%;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0 0 0.75em 0;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-color: #cccccc;
  border-radius: 0.25em !important;
  border-style: solid !important;
  border-width: 0.0625em !important;
  font-family: "Merriweather", serif;
  font-size: 1.125em !important;
  height: auto;
  line-height: 1.3 !important;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0.9375em 0.8125em !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 0 0 1.25em 0;
  float: left;
  width: 100%;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #009adf !important;
  border: none !important;
  border-radius: 0.25em !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Merriweather", serif !important;
  font-size: 1em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1;
  line-height: 1.3 !important;
  height: auto;
  padding: 1.25em !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#mlb2-26632640.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}

.ml-error input, .ml-error textarea, .ml-error select {
  border-color: red !important;
}