/*!************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@7.1.2_webpack@5.103.0/node_modules/css-loader/dist/cjs.js!./node_modules/.pnpm/sass-loader@16.0.6_sass@1.94.2_webpack@5.103.0/node_modules/sass-loader/dist/cjs.js!./src/styles/pages/_sponsors.scss ***!
  \************************************************************************************************************************************************************************************************************************************************/
.tag {
  padding: 0.2rem 1rem;
  color: black;
  background-color: transparent;
  border: 0.1rem solid var(--gray);
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.tag.active, .tag:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}
@media (max-width: 429px) {
  .tag {
    font-size: 1rem;
    padding: 0.1rem 0.5rem;
  }
}

.datepicker {
  position: relative;
  display: inline-block;
  font-family: var(--fontHeding);
}
.datepicker select {
  padding: 0.5rem;
  font-family: var(--font);
}

.datepicker__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.datepicker__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  min-width: 25rem;
  padding: 1rem 0.75rem;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--grey);
  background: white;
  cursor: pointer;
  width: 100%;
}

.datepicker__value {
  flex: 1;
  text-align: left;
  font-size: 1.6rem;
}

.datepicker__icon {
  font-size: 2rem;
}

.datepicker__popup {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  padding: 0.5rem;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--grey);
  background: white;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  z-index: 100;
  width: calc(100% - 1rem);
}

.datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.datepicker__month {
  font-size: 1.6rem;
  font-weight: 600;
}

.datepicker__nav {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 2rem;
}

.datepicker__weekdays,
.datepicker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.datepicker__weekdays span {
  font-size: 1.6rem;
  text-align: center;
  opacity: 0.7;
}

.datepicker__day {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
}

.datepicker__day--empty {
  cursor: default;
}

.datepicker__day--selected {
  background: var(--primary);
  color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 14rem;
  z-index: 10;
  top: 1.2rem;
}
@media (max-width: 768px) {
  .dropdown {
    min-width: calc(50% - 2rem);
  }
}
@media (max-width: 419px) {
  .dropdown {
    min-width: calc(100% - 2rem);
  }
}
.dropdown > svg {
  position: absolute;
  right: 0;
  top: 1.2rem;
}
.dropdown p {
  font-size: 1.6rem;
  font-weight: 500;
}
.dropdown-toggle {
  width: 100%;
  padding: 1.4rem;
  background-color: white;
  border: 0.1rem solid var(--grey);
  cursor: pointer;
  text-align: left;
  position: relative;
  font-size: 1.6rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 0.1px solid var(--grey);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 30rem;
  overflow-y: auto;
}
.dropdown-item {
  padding: 0.8rem;
  cursor: pointer;
}
.dropdown-item.selected {
  background-color: var(--primary);
  color: white;
}
.dropdown-item:hover {
  background-color: var(--grey);
}

input[type=text], input[type=email], input[type=password], input[type=number], input[type=date], input[type=search] {
  padding: 1.5rem 2rem;
  font-family: var(--font);
  border: 0.2rem solid var(--grey);
  width: calc(100% - 4rem);
}
input[type=text]:focus-visible, input[type=email]:focus-visible, input[type=password]:focus-visible, input[type=number]:focus-visible, input[type=date]:focus-visible, input[type=search]:focus-visible {
  border-radius: 0;
  border-color: var(--primary);
  outline: none;
}
input[type=file] {
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  background-color: var(--grey);
  font-family: var(--font);
  width: calc(100% - 3rem);
  cursor: pointer;
}
input[type=file]::file-selector-button {
  border-radius: 4rem;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--accent);
  color: black;
  padding: 1rem 1.5rem;
  font-family: var(--font);
  margin-right: 1rem;
  cursor: pointer;
}

textarea {
  min-height: 15rem;
  padding: 1.5rem 2rem;
  font-family: var(--font);
  border: 0.2rem solid var(--primary);
  width: calc(100% - 4rem);
  border-radius: 1rem;
}

.card {
  background-color: white;
  position: relative;
  padding-bottom: 6rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0 0.3rem 0.5rem;
}
.card img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}
.card .h4 {
  font-weight: 500;
}
@media (max-width: 767px) {
  .card .h5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 420px) {
  .card .h5 {
    font-size: 1.4rem;
  }
}
.card .year {
  font-size: 1.2rem;
}
.card .tag {
  font-size: 1.2rem !important;
}
.card .tag.active {
  background-color: var(--accent);
}
.card .link {
  margin-top: 2rem;
  position: absolute;
  bottom: 0;
  left: 2rem;
}
.card .link svg {
  width: 2rem;
  height: 2rem;
}
.card__image {
  position: relative;
  overflow: hidden;
}
.card__image:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.card__image:hover a:after {
  height: 100%;
}
.card__date {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.card__date > span {
  display: block;
  color: white;
}
.card__date > span.day {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.card__date > span.month {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
}
.card__footer {
  padding: 0 2rem;
}

.sponsor__card {
  max-width: 30rem;
  padding: 2rem;
  border: 0.1rem solid var(--grey);
  position: relative;
}
.sponsor__card > a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.letter {
  border: 0.1rem solid var(--grey);
  background-color: transparent;
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.letter.active {
  border-color: var(--primary);
  background-color: var(--primary);
  color: white;
}

/*# sourceMappingURL=sponsors.min.css.map*/
/*!****************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@7.1.2_webpack@5.103.0/node_modules/css-loader/dist/cjs.js!./node_modules/.pnpm/sass-loader@16.0.6_sass@1.94.2_webpack@5.103.0/node_modules/sass-loader/dist/cjs.js!./src/styles/_global.scss ***!
  \****************************************************************************************************************************************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   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,
main, 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, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, 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;
}

/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPx-mPCLQ7A.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPx-oPCI.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2_FQft1dw.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2_Gwft.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxsAUi-qJCY.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxsAXC-q.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wq_FQft1dw.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wq_Gwft.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI3wi_FQft1dw.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI3wi_Gwft.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHh30AUi-qJCY.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHh30AXC-q.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwaPGR_p.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwiPGQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjxAwXjeu.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjx4wXg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwaPGR_p.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwiPGQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh50XSwaPGR_p.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh50XSwiPGQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptsg8zYS_SKggPNyCg4QIFqPfE.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptsg8zYS_SKggPNyCg4SYFqPfE.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptsg8zYS_SKggPNyCg4QoFqPfE.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptsg8zYS_SKggPNyCg4Q4FqPfE.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptsg8zYS_SKggPNyCg4TYFq.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyCAIT5lu.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyCkIT5lu.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyCIIT5lu.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyCMIT5lu.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/raleway/v37/1Ptug8zYS_SKggPNyC0ITw.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --baseWidth: 140rem;
  --font: "Lato", sans-serif;
  --fontHeding: "Raleway", sans-serif;
  --primary: #a70000;
  --accent: #d9534f;
  --grey: #F2F2F2;
  --gray: #282828;
  --black: #010101;
  --blue: #000531;
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 62.5%;
  margin: 0;
}

.grid-0 {
  grid-template-columns: repeat(0, 1fr);
}

.gap-0 {
  gap: 0rem;
}

.span-0 {
  grid-column: span 0;
}

.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.gap-1 {
  gap: 1rem;
}

.span-1 {
  grid-column: span 1;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-2 {
  gap: 2rem;
}

.span-2 {
  grid-column: span 2;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gap-3 {
  gap: 3rem;
}

.span-3 {
  grid-column: span 3;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
  gap: 4rem;
}

.span-4 {
  grid-column: span 4;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gap-5 {
  gap: 5rem;
}

.span-5 {
  grid-column: span 5;
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-6 {
  gap: 6rem;
}

.span-6 {
  grid-column: span 6;
}

.grid-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gap-7 {
  gap: 7rem;
}

.span-7 {
  grid-column: span 7;
}

.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gap-8 {
  gap: 8rem;
}

.span-8 {
  grid-column: span 8;
}

.grid-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gap-9 {
  gap: 9rem;
}

.span-9 {
  grid-column: span 9;
}

.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}

.gap-10 {
  gap: 10rem;
}

.span-10 {
  grid-column: span 10;
}

.grid-11 {
  grid-template-columns: repeat(11, 1fr);
}

.gap-11 {
  gap: 11rem;
}

.span-11 {
  grid-column: span 11;
}

.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}

.gap-12 {
  gap: 12rem;
}

.span-12 {
  grid-column: span 12;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) white;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-grid {
  display: grid;
}

.d-flex-reverse {
  flex-direction: row-reverse;
}

.d-none {
  display: none !important;
}

.hidden {
  width: 0 !important;
  height: 0 !important;
  color: transparent;
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  display: block;
  overflow: hidden;
}

::selection {
  color: white;
  background: var(--primary);
}

.wrapper {
  margin: auto;
  max-width: var(--baseWidth);
  padding-left: 2rem;
  padding-right: 2rem;
  width: calc(100% - 4rem);
}

.no-style {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-scroll {
  overflow: hidden;
}

.f-column {
  flex-direction: column;
}

.f-wrap {
  flex-wrap: wrap;
}

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

.j-between {
  justify-content: space-between;
}

.j-end {
  justify-content: flex-end;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.b-bottom {
  border-bottom: 0.1rem solid var(--primary);
}

.ratio4-5 {
  aspect-ratio: 4/5;
}

.ratio5-4 {
  aspect-ratio: 5/4;
}

.ratio16-9 {
  aspect-ratio: 16/9;
}

.ratio9-16 {
  aspect-ratio: 9/16;
}

.ratio1-1 {
  aspect-ratio: 1/1;
}

body {
  padding-top: 10rem;
}
@media (max-width: 1026px) {
  body {
    padding-top: 6.4rem;
  }
}

.w-shadow {
  box-shadow: rgba(0, 0, 0, 0.04) 0 0.3rem 0.5rem;
}

iframe {
  max-width: 100%;
}

.m-0 {
  margin: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.p-0 {
  padding: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.w-0 {
  max-width: calc(0 * 10rem);
}

.m-0-i {
  margin: 0rem !important;
}

.mt-0-i {
  margin-top: 0rem !important;
}

.mb-0-i {
  margin-bottom: 0rem !important;
}

.ml-0-i {
  margin-left: 0rem !important;
}

.mr-0-i {
  margin-right: 0rem !important;
}

.p-0-i {
  padding: 0rem !important;
}

.pt-0-i {
  padding-top: 0rem !important;
}

.pb-0-i {
  padding-bottom: 0rem !important;
}

.pl-0-i {
  padding-left: 0rem !important;
}

.pr-0-i {
  padding-right: 0rem !important;
}

.m-1 {
  margin: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.p-1 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.w-1 {
  max-width: calc(1 * 10rem);
}

.m-1-i {
  margin: 1rem !important;
}

.mt-1-i {
  margin-top: 1rem !important;
}

.mb-1-i {
  margin-bottom: 1rem !important;
}

.ml-1-i {
  margin-left: 1rem !important;
}

.mr-1-i {
  margin-right: 1rem !important;
}

.p-1-i {
  padding: 1rem !important;
}

.pt-1-i {
  padding-top: 1rem !important;
}

.pb-1-i {
  padding-bottom: 1rem !important;
}

.pl-1-i {
  padding-left: 1rem !important;
}

.pr-1-i {
  padding-right: 1rem !important;
}

.m-2 {
  margin: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.p-2 {
  padding: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.w-2 {
  max-width: calc(2 * 10rem);
}

.m-2-i {
  margin: 2rem !important;
}

.mt-2-i {
  margin-top: 2rem !important;
}

.mb-2-i {
  margin-bottom: 2rem !important;
}

.ml-2-i {
  margin-left: 2rem !important;
}

.mr-2-i {
  margin-right: 2rem !important;
}

.p-2-i {
  padding: 2rem !important;
}

.pt-2-i {
  padding-top: 2rem !important;
}

.pb-2-i {
  padding-bottom: 2rem !important;
}

.pl-2-i {
  padding-left: 2rem !important;
}

.pr-2-i {
  padding-right: 2rem !important;
}

.m-3 {
  margin: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.p-3 {
  padding: 3rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.w-3 {
  max-width: calc(3 * 10rem);
}

.m-3-i {
  margin: 3rem !important;
}

.mt-3-i {
  margin-top: 3rem !important;
}

.mb-3-i {
  margin-bottom: 3rem !important;
}

.ml-3-i {
  margin-left: 3rem !important;
}

.mr-3-i {
  margin-right: 3rem !important;
}

.p-3-i {
  padding: 3rem !important;
}

.pt-3-i {
  padding-top: 3rem !important;
}

.pb-3-i {
  padding-bottom: 3rem !important;
}

.pl-3-i {
  padding-left: 3rem !important;
}

.pr-3-i {
  padding-right: 3rem !important;
}

.m-4 {
  margin: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.p-4 {
  padding: 4rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.w-4 {
  max-width: calc(4 * 10rem);
}

.m-4-i {
  margin: 4rem !important;
}

.mt-4-i {
  margin-top: 4rem !important;
}

.mb-4-i {
  margin-bottom: 4rem !important;
}

.ml-4-i {
  margin-left: 4rem !important;
}

.mr-4-i {
  margin-right: 4rem !important;
}

.p-4-i {
  padding: 4rem !important;
}

.pt-4-i {
  padding-top: 4rem !important;
}

.pb-4-i {
  padding-bottom: 4rem !important;
}

.pl-4-i {
  padding-left: 4rem !important;
}

.pr-4-i {
  padding-right: 4rem !important;
}

.m-5 {
  margin: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.p-5 {
  padding: 5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.w-5 {
  max-width: calc(5 * 10rem);
}

.m-5-i {
  margin: 5rem !important;
}

.mt-5-i {
  margin-top: 5rem !important;
}

.mb-5-i {
  margin-bottom: 5rem !important;
}

.ml-5-i {
  margin-left: 5rem !important;
}

.mr-5-i {
  margin-right: 5rem !important;
}

.p-5-i {
  padding: 5rem !important;
}

.pt-5-i {
  padding-top: 5rem !important;
}

.pb-5-i {
  padding-bottom: 5rem !important;
}

.pl-5-i {
  padding-left: 5rem !important;
}

.pr-5-i {
  padding-right: 5rem !important;
}

.m-6 {
  margin: 6rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.ml-6 {
  margin-left: 6rem;
}

.mr-6 {
  margin-right: 6rem;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.w-6 {
  max-width: calc(6 * 10rem);
}

.m-6-i {
  margin: 6rem !important;
}

.mt-6-i {
  margin-top: 6rem !important;
}

.mb-6-i {
  margin-bottom: 6rem !important;
}

.ml-6-i {
  margin-left: 6rem !important;
}

.mr-6-i {
  margin-right: 6rem !important;
}

.p-6-i {
  padding: 6rem !important;
}

.pt-6-i {
  padding-top: 6rem !important;
}

.pb-6-i {
  padding-bottom: 6rem !important;
}

.pl-6-i {
  padding-left: 6rem !important;
}

.pr-6-i {
  padding-right: 6rem !important;
}

.m-7 {
  margin: 7rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.ml-7 {
  margin-left: 7rem;
}

.mr-7 {
  margin-right: 7rem;
}

.p-7 {
  padding: 7rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pr-7 {
  padding-right: 7rem;
}

.w-7 {
  max-width: calc(7 * 10rem);
}

.m-7-i {
  margin: 7rem !important;
}

.mt-7-i {
  margin-top: 7rem !important;
}

.mb-7-i {
  margin-bottom: 7rem !important;
}

.ml-7-i {
  margin-left: 7rem !important;
}

.mr-7-i {
  margin-right: 7rem !important;
}

.p-7-i {
  padding: 7rem !important;
}

.pt-7-i {
  padding-top: 7rem !important;
}

.pb-7-i {
  padding-bottom: 7rem !important;
}

.pl-7-i {
  padding-left: 7rem !important;
}

.pr-7-i {
  padding-right: 7rem !important;
}

.m-8 {
  margin: 8rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.ml-8 {
  margin-left: 8rem;
}

.mr-8 {
  margin-right: 8rem;
}

.p-8 {
  padding: 8rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pl-8 {
  padding-left: 8rem;
}

.pr-8 {
  padding-right: 8rem;
}

.w-8 {
  max-width: calc(8 * 10rem);
}

.m-8-i {
  margin: 8rem !important;
}

.mt-8-i {
  margin-top: 8rem !important;
}

.mb-8-i {
  margin-bottom: 8rem !important;
}

.ml-8-i {
  margin-left: 8rem !important;
}

.mr-8-i {
  margin-right: 8rem !important;
}

.p-8-i {
  padding: 8rem !important;
}

.pt-8-i {
  padding-top: 8rem !important;
}

.pb-8-i {
  padding-bottom: 8rem !important;
}

.pl-8-i {
  padding-left: 8rem !important;
}

.pr-8-i {
  padding-right: 8rem !important;
}

.m-9 {
  margin: 9rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.ml-9 {
  margin-left: 9rem;
}

.mr-9 {
  margin-right: 9rem;
}

.p-9 {
  padding: 9rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pl-9 {
  padding-left: 9rem;
}

.pr-9 {
  padding-right: 9rem;
}

.w-9 {
  max-width: calc(9 * 10rem);
}

.m-9-i {
  margin: 9rem !important;
}

.mt-9-i {
  margin-top: 9rem !important;
}

.mb-9-i {
  margin-bottom: 9rem !important;
}

.ml-9-i {
  margin-left: 9rem !important;
}

.mr-9-i {
  margin-right: 9rem !important;
}

.p-9-i {
  padding: 9rem !important;
}

.pt-9-i {
  padding-top: 9rem !important;
}

.pb-9-i {
  padding-bottom: 9rem !important;
}

.pl-9-i {
  padding-left: 9rem !important;
}

.pr-9-i {
  padding-right: 9rem !important;
}

.m-10 {
  margin: 10rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.ml-10 {
  margin-left: 10rem;
}

.mr-10 {
  margin-right: 10rem;
}

.p-10 {
  padding: 10rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pl-10 {
  padding-left: 10rem;
}

.pr-10 {
  padding-right: 10rem;
}

.w-10 {
  max-width: calc(10 * 10rem);
}

.m-10-i {
  margin: 10rem !important;
}

.mt-10-i {
  margin-top: 10rem !important;
}

.mb-10-i {
  margin-bottom: 10rem !important;
}

.ml-10-i {
  margin-left: 10rem !important;
}

.mr-10-i {
  margin-right: 10rem !important;
}

.p-10-i {
  padding: 10rem !important;
}

.pt-10-i {
  padding-top: 10rem !important;
}

.pb-10-i {
  padding-bottom: 10rem !important;
}

.pl-10-i {
  padding-left: 10rem !important;
}

.pr-10-i {
  padding-right: 10rem !important;
}

.m-11 {
  margin: 11rem;
}

.mt-11 {
  margin-top: 11rem;
}

.mb-11 {
  margin-bottom: 11rem;
}

.ml-11 {
  margin-left: 11rem;
}

.mr-11 {
  margin-right: 11rem;
}

.p-11 {
  padding: 11rem;
}

.pt-11 {
  padding-top: 11rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pl-11 {
  padding-left: 11rem;
}

.pr-11 {
  padding-right: 11rem;
}

.w-11 {
  max-width: calc(11 * 10rem);
}

.m-11-i {
  margin: 11rem !important;
}

.mt-11-i {
  margin-top: 11rem !important;
}

.mb-11-i {
  margin-bottom: 11rem !important;
}

.ml-11-i {
  margin-left: 11rem !important;
}

.mr-11-i {
  margin-right: 11rem !important;
}

.p-11-i {
  padding: 11rem !important;
}

.pt-11-i {
  padding-top: 11rem !important;
}

.pb-11-i {
  padding-bottom: 11rem !important;
}

.pl-11-i {
  padding-left: 11rem !important;
}

.pr-11-i {
  padding-right: 11rem !important;
}

.m-12 {
  margin: 12rem;
}

.mt-12 {
  margin-top: 12rem;
}

.mb-12 {
  margin-bottom: 12rem;
}

.ml-12 {
  margin-left: 12rem;
}

.mr-12 {
  margin-right: 12rem;
}

.p-12 {
  padding: 12rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

.pl-12 {
  padding-left: 12rem;
}

.pr-12 {
  padding-right: 12rem;
}

.w-12 {
  max-width: calc(12 * 10rem);
}

.m-12-i {
  margin: 12rem !important;
}

.mt-12-i {
  margin-top: 12rem !important;
}

.mb-12-i {
  margin-bottom: 12rem !important;
}

.ml-12-i {
  margin-left: 12rem !important;
}

.mr-12-i {
  margin-right: 12rem !important;
}

.p-12-i {
  padding: 12rem !important;
}

.pt-12-i {
  padding-top: 12rem !important;
}

.pb-12-i {
  padding-bottom: 12rem !important;
}

.pl-12-i {
  padding-left: 12rem !important;
}

.pr-12-i {
  padding-right: 12rem !important;
}

.m-13 {
  margin: 13rem;
}

.mt-13 {
  margin-top: 13rem;
}

.mb-13 {
  margin-bottom: 13rem;
}

.ml-13 {
  margin-left: 13rem;
}

.mr-13 {
  margin-right: 13rem;
}

.p-13 {
  padding: 13rem;
}

.pt-13 {
  padding-top: 13rem;
}

.pb-13 {
  padding-bottom: 13rem;
}

.pl-13 {
  padding-left: 13rem;
}

.pr-13 {
  padding-right: 13rem;
}

.w-13 {
  max-width: calc(13 * 10rem);
}

.m-13-i {
  margin: 13rem !important;
}

.mt-13-i {
  margin-top: 13rem !important;
}

.mb-13-i {
  margin-bottom: 13rem !important;
}

.ml-13-i {
  margin-left: 13rem !important;
}

.mr-13-i {
  margin-right: 13rem !important;
}

.p-13-i {
  padding: 13rem !important;
}

.pt-13-i {
  padding-top: 13rem !important;
}

.pb-13-i {
  padding-bottom: 13rem !important;
}

.pl-13-i {
  padding-left: 13rem !important;
}

.pr-13-i {
  padding-right: 13rem !important;
}

.m-14 {
  margin: 14rem;
}

.mt-14 {
  margin-top: 14rem;
}

.mb-14 {
  margin-bottom: 14rem;
}

.ml-14 {
  margin-left: 14rem;
}

.mr-14 {
  margin-right: 14rem;
}

.p-14 {
  padding: 14rem;
}

.pt-14 {
  padding-top: 14rem;
}

.pb-14 {
  padding-bottom: 14rem;
}

.pl-14 {
  padding-left: 14rem;
}

.pr-14 {
  padding-right: 14rem;
}

.w-14 {
  max-width: calc(14 * 10rem);
}

.m-14-i {
  margin: 14rem !important;
}

.mt-14-i {
  margin-top: 14rem !important;
}

.mb-14-i {
  margin-bottom: 14rem !important;
}

.ml-14-i {
  margin-left: 14rem !important;
}

.mr-14-i {
  margin-right: 14rem !important;
}

.p-14-i {
  padding: 14rem !important;
}

.pt-14-i {
  padding-top: 14rem !important;
}

.pb-14-i {
  padding-bottom: 14rem !important;
}

.pl-14-i {
  padding-left: 14rem !important;
}

.pr-14-i {
  padding-right: 14rem !important;
}

.m-15 {
  margin: 15rem;
}

.mt-15 {
  margin-top: 15rem;
}

.mb-15 {
  margin-bottom: 15rem;
}

.ml-15 {
  margin-left: 15rem;
}

.mr-15 {
  margin-right: 15rem;
}

.p-15 {
  padding: 15rem;
}

.pt-15 {
  padding-top: 15rem;
}

.pb-15 {
  padding-bottom: 15rem;
}

.pl-15 {
  padding-left: 15rem;
}

.pr-15 {
  padding-right: 15rem;
}

.w-15 {
  max-width: calc(15 * 10rem);
}

.m-15-i {
  margin: 15rem !important;
}

.mt-15-i {
  margin-top: 15rem !important;
}

.mb-15-i {
  margin-bottom: 15rem !important;
}

.ml-15-i {
  margin-left: 15rem !important;
}

.mr-15-i {
  margin-right: 15rem !important;
}

.p-15-i {
  padding: 15rem !important;
}

.pt-15-i {
  padding-top: 15rem !important;
}

.pb-15-i {
  padding-bottom: 15rem !important;
}

.pl-15-i {
  padding-left: 15rem !important;
}

.pr-15-i {
  padding-right: 15rem !important;
}

.m-16 {
  margin: 16rem;
}

.mt-16 {
  margin-top: 16rem;
}

.mb-16 {
  margin-bottom: 16rem;
}

.ml-16 {
  margin-left: 16rem;
}

.mr-16 {
  margin-right: 16rem;
}

.p-16 {
  padding: 16rem;
}

.pt-16 {
  padding-top: 16rem;
}

.pb-16 {
  padding-bottom: 16rem;
}

.pl-16 {
  padding-left: 16rem;
}

.pr-16 {
  padding-right: 16rem;
}

.w-16 {
  max-width: calc(16 * 10rem);
}

.m-16-i {
  margin: 16rem !important;
}

.mt-16-i {
  margin-top: 16rem !important;
}

.mb-16-i {
  margin-bottom: 16rem !important;
}

.ml-16-i {
  margin-left: 16rem !important;
}

.mr-16-i {
  margin-right: 16rem !important;
}

.p-16-i {
  padding: 16rem !important;
}

.pt-16-i {
  padding-top: 16rem !important;
}

.pb-16-i {
  padding-bottom: 16rem !important;
}

.pl-16-i {
  padding-left: 16rem !important;
}

.pr-16-i {
  padding-right: 16rem !important;
}

.m-17 {
  margin: 17rem;
}

.mt-17 {
  margin-top: 17rem;
}

.mb-17 {
  margin-bottom: 17rem;
}

.ml-17 {
  margin-left: 17rem;
}

.mr-17 {
  margin-right: 17rem;
}

.p-17 {
  padding: 17rem;
}

.pt-17 {
  padding-top: 17rem;
}

.pb-17 {
  padding-bottom: 17rem;
}

.pl-17 {
  padding-left: 17rem;
}

.pr-17 {
  padding-right: 17rem;
}

.w-17 {
  max-width: calc(17 * 10rem);
}

.m-17-i {
  margin: 17rem !important;
}

.mt-17-i {
  margin-top: 17rem !important;
}

.mb-17-i {
  margin-bottom: 17rem !important;
}

.ml-17-i {
  margin-left: 17rem !important;
}

.mr-17-i {
  margin-right: 17rem !important;
}

.p-17-i {
  padding: 17rem !important;
}

.pt-17-i {
  padding-top: 17rem !important;
}

.pb-17-i {
  padding-bottom: 17rem !important;
}

.pl-17-i {
  padding-left: 17rem !important;
}

.pr-17-i {
  padding-right: 17rem !important;
}

.m-18 {
  margin: 18rem;
}

.mt-18 {
  margin-top: 18rem;
}

.mb-18 {
  margin-bottom: 18rem;
}

.ml-18 {
  margin-left: 18rem;
}

.mr-18 {
  margin-right: 18rem;
}

.p-18 {
  padding: 18rem;
}

.pt-18 {
  padding-top: 18rem;
}

.pb-18 {
  padding-bottom: 18rem;
}

.pl-18 {
  padding-left: 18rem;
}

.pr-18 {
  padding-right: 18rem;
}

.w-18 {
  max-width: calc(18 * 10rem);
}

.m-18-i {
  margin: 18rem !important;
}

.mt-18-i {
  margin-top: 18rem !important;
}

.mb-18-i {
  margin-bottom: 18rem !important;
}

.ml-18-i {
  margin-left: 18rem !important;
}

.mr-18-i {
  margin-right: 18rem !important;
}

.p-18-i {
  padding: 18rem !important;
}

.pt-18-i {
  padding-top: 18rem !important;
}

.pb-18-i {
  padding-bottom: 18rem !important;
}

.pl-18-i {
  padding-left: 18rem !important;
}

.pr-18-i {
  padding-right: 18rem !important;
}

.m-19 {
  margin: 19rem;
}

.mt-19 {
  margin-top: 19rem;
}

.mb-19 {
  margin-bottom: 19rem;
}

.ml-19 {
  margin-left: 19rem;
}

.mr-19 {
  margin-right: 19rem;
}

.p-19 {
  padding: 19rem;
}

.pt-19 {
  padding-top: 19rem;
}

.pb-19 {
  padding-bottom: 19rem;
}

.pl-19 {
  padding-left: 19rem;
}

.pr-19 {
  padding-right: 19rem;
}

.w-19 {
  max-width: calc(19 * 10rem);
}

.m-19-i {
  margin: 19rem !important;
}

.mt-19-i {
  margin-top: 19rem !important;
}

.mb-19-i {
  margin-bottom: 19rem !important;
}

.ml-19-i {
  margin-left: 19rem !important;
}

.mr-19-i {
  margin-right: 19rem !important;
}

.p-19-i {
  padding: 19rem !important;
}

.pt-19-i {
  padding-top: 19rem !important;
}

.pb-19-i {
  padding-bottom: 19rem !important;
}

.pl-19-i {
  padding-left: 19rem !important;
}

.pr-19-i {
  padding-right: 19rem !important;
}

.m-20 {
  margin: 20rem;
}

.mt-20 {
  margin-top: 20rem;
}

.mb-20 {
  margin-bottom: 20rem;
}

.ml-20 {
  margin-left: 20rem;
}

.mr-20 {
  margin-right: 20rem;
}

.p-20 {
  padding: 20rem;
}

.pt-20 {
  padding-top: 20rem;
}

.pb-20 {
  padding-bottom: 20rem;
}

.pl-20 {
  padding-left: 20rem;
}

.pr-20 {
  padding-right: 20rem;
}

.w-20 {
  max-width: calc(20 * 10rem);
}

.m-20-i {
  margin: 20rem !important;
}

.mt-20-i {
  margin-top: 20rem !important;
}

.mb-20-i {
  margin-bottom: 20rem !important;
}

.ml-20-i {
  margin-left: 20rem !important;
}

.mr-20-i {
  margin-right: 20rem !important;
}

.p-20-i {
  padding: 20rem !important;
}

.pt-20-i {
  padding-top: 20rem !important;
}

.pb-20-i {
  padding-bottom: 20rem !important;
}

.pl-20-i {
  padding-left: 20rem !important;
}

.pr-20-i {
  padding-right: 20rem !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--fontHeding);
  font-weight: 600;
  line-height: 1.2em;
  margin: 1rem 0;
  text-transform: uppercase;
}
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span, h6 > span, .h1 > span, .h2 > span, .h3 > span, .h4 > span, .h5 > span, .h6 > span {
  font-size: 1.6rem;
  display: block;
}

body {
  font-family: var(--font);
  font-size: 1.8rem;
  line-height: 1.2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}
.text-center .subheading {
  margin-left: auto;
  margin-right: auto;
}

.uppercase {
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 5.5rem;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 480px) {
  h1, .h1 {
    font-size: 3rem;
  }
}

h2, .h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 2.6rem;
  }
}

h3, .h3 {
  font-size: 3rem;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  h3, .h3 {
    font-size: 2rem;
  }
}

h4, .h4 {
  font-size: 2.5rem;
}
@media (max-width: 480px) {
  h4, .h4 {
    font-size: 2rem;
  }
}

h5, .h5 {
  font-size: 2rem;
}

h6, .h6 {
  font-size: 1.5rem;
}

.sub-heading {
  padding: 0.5rem 1.5rem;
  background-color: var(--grey);
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1em;
  text-transform: uppercase;
  width: fit-content;
  color: var(--primary);
}
.sub-heading > svg {
  height: 2rem;
  width: auto;
  fill: var(--primary);
}

p {
  line-height: 1.4em;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 1.4rem;
  }
}

small {
  font-size: 1.2rem;
}

.text-white {
  color: white !important;
}
.text-primary {
  color: var(--primary) !important;
}
.text-grey {
  color: var(--grey) !important;
}
.text-gray {
  color: var(--gray) !important;
}
.text-black {
  color: black !important;
}
.text-accent {
  color: var(--accent) !important;
}

a {
  transition: all 0.3s ease-in-out;
}

ul {
  list-style-type: disc;
  padding-left: 1rem;
  margin: 1rem 0 1rem 4rem;
}
ul > li {
  margin: 1rem 0;
}

ol {
  list-style-type: disc;
  padding-left: 1rem;
  margin: 1rem 0 1rem 4rem;
}
ol > li {
  margin: 1rem 0;
}

li::marker {
  color: var(--primary);
}

.bg-primary li::marker, .bg-accent li::marker, .bg-accent2 li::marker, .bg-gray li::marker {
  color: var(--orange);
}

ol {
  padding-left: 1rem;
  list-style-type: decimal;
  margin: 1rem 0 1rem 4rem;
}
ol > li {
  margin-bottom: 1rem;
}
ol > li > p {
  margin: 0;
}

strong, b {
  font-weight: 600;
}

a {
  color: var(--accent2);
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--orange);
}

.bold {
  font-weight: 800;
}

.bg-primary {
  background-color: var(--primary);
  color: white;
}
.bg-primary .btn-primary {
  background-color: var(--accent) !important;
  color: black !important;
}
.bg-primary .btn-primary:hover {
  background-color: var(--black) !important;
  color: white !important;
}
.bg-primary .btn-primary:hover:after {
  background-color: var(--black) !important;
  height: 450%;
  transition: all 1s ease 0s;
}
.bg-primary.no-bg {
  color: black;
}
.bg-grey {
  background-color: var(--grey);
}
.bg-grey .sub-heading {
  background-color: var(--primary);
  color: white;
}
.bg-grey .sub-heading svg {
  fill: white;
}
.bg-gray {
  background-color: var(--gray);
}
.bg-black {
  background-color: black;
  color: white;
}
.bg-black.no-bg {
  color: black;
}
.bg-white {
  background-color: white;
  color: black;
}
.bg-accent {
  background-color: var(--accent);
}
.bg-blue {
  background-color: var(--blue);
  color: white;
}

.no-bg {
  background-color: transparent !important;
}

button {
  font-family: var(--fontHeding);
}

.btn {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.4s ease;
  flex-grow: 0;
  font-size: 1.8rem;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 9;
  color: white;
}
.btn span {
  font-family: inherit;
}
.btn:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  transition: all 0.35s ease 0s;
  background: white;
  transform: translateX(-50%) translateY(-50%) rotate(-25deg);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .btn {
    font-size: 1.6rem;
  }
}
@media (max-width: 379px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn-primary {
  background-color: var(--primary);
  border-radius: 1rem;
  justify-content: space-between;
  gap: 2rem;
}
.btn-primary:hover {
  background-color: var(--accent) !important;
}
.btn-primary:hover > svg {
  fill: var(--primary);
  background-color: var(--accent);
  transform: rotate(45deg);
}
.btn-primary:hover:after {
  background-color: var(--accent) !important;
  height: 450%;
  transition: all 1s ease 0s;
}
.btn__back-to-top {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  padding: 2rem;
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 98;
  cursor: pointer;
  background-color: black;
  border: 0.1rem solid white;
}
.btn__back-to-top:after {
  display: none;
}
.btn__back-to-top > svg {
  transition: all 0.4s ease;
  position: relative;
}
.btn__back-to-top > svg path {
  fill: white;
}
.btn__back-to-top:hover > svg {
  top: -0.5rem;
}

.card {
  background-color: white;
  position: relative;
  padding-bottom: 6rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0 0.3rem 0.5rem;
}
.card img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
}
.card .h4 {
  font-weight: 500;
}
@media (max-width: 767px) {
  .card .h5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 420px) {
  .card .h5 {
    font-size: 1.4rem;
  }
}
.card .year {
  font-size: 1.2rem;
}
.card .tag {
  font-size: 1.2rem !important;
}
.card .tag.active {
  background-color: var(--accent);
}
.card .link {
  margin-top: 2rem;
  position: absolute;
  bottom: 0;
  left: 2rem;
}
.card .link svg {
  width: 2rem;
  height: 2rem;
}
.card__image {
  position: relative;
  overflow: hidden;
}
.card__image:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.card__image:hover a:after {
  height: 100%;
}
.card__date {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.card__date > span {
  display: block;
  color: white;
}
.card__date > span.day {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.card__date > span.month {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.6rem;
}
.card__footer {
  padding: 0 2rem;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  border-bottom: 0.6rem solid var(--primary);
  background-color: var(--blue);
}
@media (max-width: 1026px) {
  .header.active {
    bottom: 0;
    background-color: white;
  }
}
@media (max-width: 1199px) {
  .header__nav ul {
    gap: 1rem;
  }
}
@media (max-width: 1099px) {
  .header__nav ul {
    gap: 0;
  }
}
@media (max-width: 1026px) {
  .header__nav ul {
    display: none;
  }
}
@media (max-width: 1026px) {
  .header__nav.active > ul {
    padding: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 10rem;
    display: block;
    max-height: 80vh;
    height: 100%;
    overflow-y: auto;
  }
  .header__nav.active > ul ul {
    display: block;
    position: static;
    box-shadow: none;
    padding: 0;
  }
  .header__nav.active > ul a {
    color: var(--white);
  }
}
.header__nav li {
  position: relative;
}
.header__nav a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: white;
}
.header__nav a.active {
  border-bottom: 0.2rem solid white;
}
.header__nav a:hover {
  background-color: var(--primary);
  color: white !important;
}
.header__nav a:hover + .sub-menu {
  display: block;
}
.header__nav .sub-menu {
  padding: 2rem 1rem;
  display: none;
  position: absolute;
  top: 100%;
  z-index: 1;
  min-width: 20rem;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.04) 0 0.3rem 0.5rem;
}
.header__nav .sub-menu a {
  color: black;
}
.header__nav .sub-menu:hover {
  display: block;
}
.header__nav button {
  background-color: transparent;
  border: none;
  width: 3rem;
  height: 2rem;
  position: relative;
  margin-right: 1rem;
  cursor: pointer;
}
.header__nav button > span {
  background-color: white;
  height: 0.3rem;
  width: 100%;
  position: absolute;
  left: 0;
  transform-origin: 50% 50%;
  transition: all 0.4s ease-in-out;
}
.header__nav button > span:first-child {
  top: 0;
}
.header__nav button > span:last-child {
  bottom: 0;
}
.header__nav button > span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__nav button.active > span {
  background-color: var(--primary);
}
.header__nav button.active > span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.header__nav button.active > span:first-child {
  right: 0;
  transform: rotate(45deg);
  bottom: 0;
  margin: auto;
}
.header__nav button.active > span:last-child {
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  margin: auto;
}
.header__controls {
  color: white;
}
@media (min-width: 1027px) {
  .header__controls {
    display: none;
  }
}
@media (max-width: 469px) {
  .header__logo img {
    height: 4rem;
  }
}

.link {
  display: block;
  padding: 1rem 5rem 1rem 0;
  text-decoration: none;
  gap: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease 0s;
}
.link > svg {
  transition: all 0.4s ease 0s;
  position: absolute;
  top: 0;
  right: 0;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  fill: white;
  padding: 0.5rem;
  margin: auto 0;
}
.link:after {
  content: "";
  transition: all 1s ease 0s;
  height: 0.2rem;
  background-color: var(--primary);
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.link:hover > svg {
  transform: rotate(45deg);
}
.link:hover:after {
  width: 100%;
}

.bg-accent2 .link:hover {
  color: black !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.bg-accent2 .link:hover:after {
  background-color: var(--primary) !important;
  height: 450%;
  transition: all 1s ease 0s;
}

.footer__links {
  max-width: 35rem;
  width: 100%;
}
.footer__links .link {
  border-color: white !important;
  color: white !important;
}
.footer__logo {
  max-width: 60rem;
  width: 100%;
}
@media (max-width: 767px) {
  .footer__logo {
    max-width: 100%;
  }
  .footer__logo img {
    width: 100%;
  }
}
.footer__link {
  color: white !important;
}
.footer__link > a {
  text-decoration: none;
}
.footer__social-links li {
  padding: 0 1rem;
}
.footer__social-links li > a {
  display: block;
  padding: 0.5rem;
  border: none !important;
  transition: all 0.4s ease;
}
.footer__social-links li > a svg {
  fill: white;
  width: 4rem;
  height: 4rem;
}
.footer__social-links li > a:hover {
  border: none;
}
.footer__social-links li > a:hover svg {
  opacity: 0.6;
}
.footer .copyrights {
  color: white;
}
.footer__bottom-text {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .footer > .d-flex {
    flex-direction: column;
  }
}

/*# sourceMappingURL=styles.min.css.map*/
