*,
*::after,
*::before {
  box-sizing: inherit;
}

* {
  font: inherit;
}

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,
hr {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg, white);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
form legend {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

button,
input,
textarea,
select {
  margin: 0;
}

.btn,
.form-control,
.link,
.reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

input::-ms-clear {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  max-width: 100%;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
:root {
  --font-primary: "Lato", sans-serif;
  --font-secondary: serif;
  --font-family-cormorant: "Cormorant Garamond", serif;
  --font-family-lato: "Lato", sans-serif;
  --font-family-roboto-condensed: "Roboto Condensed", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --white: #fff;
  --black: #000;
  --black-400: #17171a;
  --black-500: #1e1f21;
  --blue-200: #1d9bf0;
  --blue-300: #587993;
  --blue-400: #174f8a;
  --blue-600: #0a66c2;
  --blue-800: #263c51;
  --pale-600: #ccc6c3;
  --pale-300: #d8d8d8;
  --yellow-500: #c0b80d;
  --yellow-300: #fd0;
  --red-400: #f00;
  --red-300: #ef4123;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
::-moz-placeholder {
  color: var(--blue-800);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--blue-800);
  opacity: 1;
}
::placeholder {
  color: var(--blue-800);
  opacity: 1;
}

.asscrollbar {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

html {
  overflow-x: hidden;
}
html.has-scroll-smooth {
  height: -webkit-fill-available;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--wp--preset--font-size--normal);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1023px) {
  body {
    overflow: hidden;
  }
}
body.active, body.activating {
  overflow: hidden;
  height: 100vh;
}
body a {
  text-decoration: none;
  color: var(--black-400);
}
body a:hover {
  color: var(--blue-800);
}
body .container {
  width: 100%;
  max-width: 80rem;
  padding: 0 2.5rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  body .container {
    padding: 0 1.5625rem;
  }
}
body h1 {
  font-size: clamp(42px, 3.75vw + 1px, 60px);
  font-family: var(--font-family-cormorant);
  font-weight: 300;
}
@media (min-width: 1024px) {
  body main {
    margin-top: 0;
  }
}
body .button {
  background: var(--blue-800);
  color: var(--pale-600);
  font-family: var(--font-family-roboto-condensed);
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 0.85;
  text-transform: uppercase;
  padding: 1.5625rem;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border: unset;
  transition: box-shadow 300ms ease-in-out;
  position: relative;
}
@media (min-width: 1024px) {
  body .button {
    font-size: calc(13px + 8 * ((100vw - 320px) / 1280));
  }
}
@media (max-width: 767px) {
  body .button {
    padding: 0.625rem 0.9375rem;
  }
}
body .button svg {
  height: 1.5625rem;
  width: 2.1875rem;
  display: block;
}
@media (max-width: 767px) {
  body .button svg {
    height: 1.25rem;
    width: auto;
  }
}
body .button svg path {
  fill: var(--pale-600);
}
body .button span {
  display: flex;
  align-items: center;
  line-height: 0.7;
}
body .button span::before {
  content: "";
  width: 1px;
  height: 1.5625rem;
  background: var(--pale-600);
  display: block;
  margin: 0 25px;
}
@media (max-width: 767px) {
  body .button span::before {
    margin: 0 10px;
    height: 1.25rem;
  }
}
@media (max-width: 511px) {
  body .button span {
    line-height: 1.1;
  }
}
body .button.yellow {
  background: var(--yellow-500);
  color: var(--black-400);
}
body .button.yellow svg path {
  fill: var(--black-400);
}
body .button.yellow span::before {
  background: var(--black-400);
}
body .button.gray {
  background: var(--pale-600);
  color: var(--blue-800);
}
body .button.gray svg path {
  fill: var(--blue-800);
}
body .button.gray span::before {
  background: var(--blue-800);
}
body .button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  color: var(--pale-600);
}
body .button:hover::before, body .button:hover::after {
  width: 100%;
  height: 100%;
}
body .button:hover::before {
  border-top-color: rgba(var(--blue-800), 0.5);
  border-right-color: rgba(var(--blue-800), 0.5);
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
body .button:hover::after {
  border-bottom-color: rgba(var(--blue-800), 0.5);
  border-left-color: rgba(var(--blue-800), 0.5);
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}
body .button:hover.yellow {
  color: var(--black-400);
}
body .button:hover.yellow::before {
  border-top-color: var(--white);
  border-right-color: var(--white);
}
body .button:hover.yellow::after {
  border-bottom-color: var(--white);
  border-left-color: var(--white);
}
body .button:hover.gray {
  color: var(--blue-800);
}
body .button:hover svg .fill4 {
  -webkit-animation: hideshow 0.8s ease infinite;
          animation: hideshow 0.8s ease infinite;
}
body .button:hover svg .Fill-6 {
  -webkit-animation: hideshow 1.2s ease infinite;
          animation: hideshow 1.2s ease infinite;
}
body .button:hover svg .Fill-8 {
  -webkit-animation: hideshow 1.4s ease infinite;
          animation: hideshow 1.4s ease infinite;
}
body .button::before, body .button::after {
  content: "";
  border: 1px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
}
body .button::before {
  top: 0;
  left: 0;
}
body .button::after {
  bottom: 0;
  right: 0;
}

.title-wrapper .title {
  position: relative;
}
.title-wrapper .title .line {
  position: absolute;
  background: var(--blue-300);
  height: 1px;
  width: 0;
  left: -100vw;
  top: 0;
  transition-duration: 3s;
}
.title-wrapper .title.show .line {
  width: 200vw;
}

@-webkit-keyframes moveright {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(10px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes moveright {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(10px);
  }
  100% {
    transform: translate(0);
  }
}
@-webkit-keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.gf-submit__wrapper {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.gf-submit__wrapper span {
  display: flex;
  align-items: center;
}
.gf-submit__wrapper span::before {
  content: "";
  width: 1px;
  height: 1.5625rem;
  background: var(--pale-600);
  display: block;
  margin: 0 25px;
}
.gf-submit__wrapper .gform_button {
  margin-bottom: 0 !important;
  width: 14.875rem;
  justify-content: right;
  cursor: pointer;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  top: 40px;
  background: transparent;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar .fancybox__toolbar__items--left {
  position: absolute;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar .fancybox__toolbar__items--right {
  margin: 0 auto;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar .fancybox__toolbar__items--right .carousel__button {
  display: none;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar .fancybox__toolbar__items--right .fancybox__button--close {
  display: flex;
  background: var(--blue-300);
  border-radius: 0;
  width: 50px;
  height: 50px;
  transition: background 400ms ease-in-out;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar .fancybox__toolbar__items--right .fancybox__button--close svg {
  width: 60%;
  height: 60%;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar .fancybox__toolbar__items--right .fancybox__button--close:hover {
  background: var(--yellow-500);
}

.fancybox__carousel .fancybox__slide {
  position: relative;
  font-family: var(--font-family-roboto-condensed);
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  position: static;
  outline: none;
  border: none;
  background: transparent;
  color: transparent;
  padding: 0;
  min-height: 300px !important;
}
@media (min-width: 1024px) {
  .fancybox__carousel .fancybox__slide .fancybox__content {
    min-height: 450px !important;
  }
}
.fancybox__carousel .fancybox__slide .fancybox__content .fancybox__html5video,
.fancybox__carousel .fancybox__slide .fancybox__content .fancybox__iframe,
.fancybox__carousel .fancybox__slide .fancybox__content source {
  outline: none;
  border: none;
  background: transparent;
  color: transparent;
  padding: 0;
}
.fancybox__carousel .fancybox__slide .fancybox__content .carousel__button.is-close {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  background: var(--blue-300);
  border-radius: 0;
  top: 50px;
  left: 50%;
  transition: background 400ms ease;
  transform: translateX(-50%);
}
.fancybox__carousel .fancybox__slide .fancybox__content .carousel__button.is-close svg {
  width: 60%;
  height: 60%;
}
.fancybox__carousel .fancybox__slide .fancybox__content .carousel__button.is-close:hover {
  background: var(--yellow-500);
}
.fancybox__carousel .fancybox__slide .fancybox__content iframe.fancybox__iframe {
  border-top: 5px solid var(--yellow-500);
  box-sizing: content-box;
  position: relative;
}
.fancybox__carousel .fancybox__slide .fancybox__content video.fancybox__html5video {
  border-top: 5px solid var(--yellow-500);
  box-sizing: content-box;
}
.fancybox__carousel .fancybox__slide .fancybox__content img {
  border-top: 5px solid var(--yellow-500);
  width: 100% !important;
  height: 100% !important;
}
.fancybox__carousel .fancybox__slide .fancybox__title {
  margin: 60px 0 clamp(25px, 2.5vw + 1px, 40px);
  padding: 0;
  font-family: var(--font-family-cormorant);
  font-weight: 500;
  font-size: clamp(21px, 2vw + 1px, 32px);
  line-height: 1.22;
  color: var(--white);
  align-self: center;
  max-width: 960px;
}
.fancybox__carousel .fancybox__slide .fancybox__caption {
  margin: 0;
  padding: 0;
  margin-top: clamp(25px, 2.5vw + 1px, 40px);
  padding-right: 1.875rem;
  font-family: var(--font-family-lato);
  font-weight: 300;
  font-size: clamp(16px, 1.31vw + 1px, 21px);
  line-height: 1.52;
  color: var(--white);
  align-self: center;
  max-width: 960px;
}

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

.fancybox-zoomIn {
  -webkit-animation: 0.5s ease-in-out both fancybox-zoomIn;
          animation: 0.5s ease-in-out both fancybox-zoomIn;
}

.fancybox-zoomOut {
  -webkit-animation: 0.5s ease-in-out both fancybox-zoomOut;
          animation: 0.5s ease-in-out both fancybox-zoomOut;
}

@-webkit-keyframes fancybox-zoomIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-zoomIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.autofill {
  position: absolute;
  top: 4.6875rem;
  left: 3.125rem;
  min-width: 12.5rem;
  padding: 5px 0;
  max-width: calc(100% - 100px);
  background: var(--white);
  border-radius: 0.3125rem;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
  font-family: var(--font-family-cormorant);
  color: var(--black);
  font-size: clamp(16px, 2.5vw + 1px, 21px);
  font-weight: 700;
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  width: 100%;
  max-height: 18.75rem;
  overflow: auto;
}
form.sercher-wrapper .autofill {
  left: 0;
  max-width: 100%;
  top: 4rem;
}
@media (min-width: 1024px) {
  form.sercher-wrapper .autofill {
    left: 5rem;
    max-width: calc(100% - 80px);
    top: 4.6875rem;
  }
}
.autofill a {
  padding: 5px 10px;
  display: block;
  transition-duration: 1s;
  cursor: pointer;
  overflow: hidden;
}
.autofill a.hidden {
  display: none;
}
.autofill a:hover {
  background: var(--pale-300);
}
.autofill:hover {
  pointer-events: all;
}
@media (max-width: 767px) {
  .autofill {
    top: 3.125rem;
    left: 0;
    max-width: 100%;
    padding: 0 0.9375rem;
  }
}

ol {
  list-style: auto;
}
ol li::before {
  content: unset;
}

.article__copyright {
  position: absolute;
  left: 1%;
  font-family: var(--font-family-roboto-condensed);
  color: var(--pale-600);
  font-weight: 700;
  font-size: 12px;
  bottom: -3%;
  transform: rotate(-90deg);
  transform-origin: left top;
  z-index: 2;
  text-transform: uppercase;
  padding: 5px 5px 4px;
  box-sizing: border-box;
}
.article__copyright:hover {
  color: var(--pale-600);
}
.article__copyright:hover::before {
  width: 100%;
  height: 100%;
  border-top-color: rgba(var(--blue-800), 0.5);
  border-right-color: rgba(var(--blue-800), 0.5);
}
.article__copyright:hover::after {
  width: 100%;
  height: 100%;
  border-bottom-color: rgba(var(--blue-800), 0.5);
  border-left-color: rgba(var(--blue-800), 0.5);
}
.article__copyright::before, .article__copyright::after {
  content: "";
  border: 1px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}
.article__copyright::before {
  top: 0;
  left: 0;
}
.article__copyright::after {
  bottom: 0;
  right: 0;
}
.article__copyright.dark-mode {
  color: var(--blue-800);
}

span.article__copyright::before, span.article__copyright::after {
  content: unset;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  box-sizing: border-box;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.article__copyright-link {
  z-index: 2;
}
@media (min-width: 1024px) {
  .article__copyright-link {
    z-index: 50;
  }
}

.text p {
  margin-bottom: 20px;
}
.text ul,
.text ol {
  margin-bottom: 20px;
}

p b,
p strong {
  font-weight: bold;
}
p i,
p em {
  font-style: italic;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
.header-alert__btn {
  display: grid;
  grid-template-columns: 1.5625rem 1fr;
  align-items: center;
  justify-items: flex-end;
  background-color: var(--yellow-500);
  font-family: var(--font-family-roboto-condensed);
  color: var(--black-400);
  font-weight: 700;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.125rem;
  text-transform: uppercase;
  padding: 0 0.9375rem;
  font-size: 0.875rem;
  min-width: 14.0625rem;
  margin-right: 1.5625rem;
  min-height: 2.6875rem;
  transition: box-shadow 300ms ease-in-out;
}
@media (min-width: 1024px) {
  .header-alert__btn {
    font-size: calc(13px + 8 * ((100vw - 320px) / 1280));
    height: calc(20px + 55 * ((100vw - 320px) / 1280));
    padding: calc(16px + 9 * ((100vw - 320px) / 1280));
    right: calc(20px + 55 * ((100vw - 320px) / 1280));
    padding-top: 0;
    min-height: initial;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    padding-bottom: 0;
    position: absolute;
    top: 0;
    margin-right: 0;
  }
}
@media (min-width: 1600px) {
  .header-alert__btn {
    font-size: 1.3125rem;
    width: 21.875rem;
    height: 4.6875rem;
    padding: 1.5625rem;
    left: calc(100% - 425px);
  }
}
.header-alert__btn svg {
  width: 1.5625rem;
  height: 1.25rem;
  display: block;
}
@media (min-width: 1024px) {
  .header-alert__btn svg {
    width: calc(21px + 11 * ((100vw - 320px) / 1280));
    height: calc(16px + 9 * ((100vw - 320px) / 1280));
  }
}
@media (min-width: 1600px) {
  .header-alert__btn svg {
    width: 2rem;
    height: 1.5625rem;
  }
}
.header-alert__btn span {
  display: flex;
  align-items: center;
  position: relative;
}
.header-alert__btn span::before {
  content: "";
  width: 0.0625rem;
  height: 1.25rem;
  background-color: var(--black-400);
  display: block;
  margin: 0 10px;
}
@media (min-width: 1024px) {
  .header-alert__btn span::before {
    margin: calc(15px + 9.5 * ((100vw - 320px) / 1280));
    margin-top: 0;
    margin-bottom: 0;
    height: 1.5625rem;
  }
}
@media (min-width: 1600px) {
  .header-alert__btn span::before {
    margin: 0 1.53125rem;
  }
}
.header-alert__btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.header-alert__btn:hover svg #Fill-4 {
  -webkit-animation: hideshow 0.8s ease infinite;
          animation: hideshow 0.8s ease infinite;
}
.header-alert__btn:hover svg #Fill-6 {
  -webkit-animation: hideshow 1.2s ease infinite;
          animation: hideshow 1.2s ease infinite;
}
.header-alert__btn:hover svg #Fill-8 {
  -webkit-animation: hideshow 1.4s ease infinite;
          animation: hideshow 1.4s ease infinite;
}

.header {
  background-color: var(--white);
  width: 100%;
  position: relative;
  z-index: 9999;
}
.header .wrapper {
  padding: 0.78125rem 1.5625rem;
  max-width: 100rem;
  margin: 0 auto;
  position: relative;
  display: grid;
  justify-content: space-between;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  align-items: center;
  font-family: var(--font-family-cormorant);
}
@media (min-width: 1024px) {
  .header .wrapper {
    padding: calc(20px + 55 * ((100vw - 320px) / 1280));
    min-height: calc(150px + 75 * ((100vw - 320px) / 1280));
  }
}
@media (min-width: 1600px) {
  .header .wrapper {
    padding: 4.6875rem;
    min-height: 14.0625rem;
  }
}
.header .wrapper .logo__link {
  position: relative;
  z-index: 60;
}
.header .wrapper .logo__link svg {
  width: 14.0625rem;
  display: flex;
}
@media (min-width: 1024px) {
  .header .wrapper .logo__link svg {
    width: calc(120px + 200 * ((100vw - 320px) / 1280));
  }
}
@media (min-width: 1600px) {
  .header .wrapper .logo__link svg {
    width: 100%;
  }
}
.header .wrapper nav {
  position: absolute;
  opacity: 0;
  display: grid;
  overflow: scroll;
  z-index: 50;
  left: 100vw;
  width: 100vw;
  height: calc(100vh - 100px);
  top: 6.25rem;
  right: 0;
  bottom: 0;
  justify-content: center;
  grid-template-columns: 1fr;
  grid-template-rows: -webkit-max-content -webkit-min-content;
  grid-template-rows: max-content min-content;
  background-color: var(--white);
}
@media (min-width: 600px) {
  .header .wrapper nav {
    grid-template-rows: 1fr;
  }
}
@media (min-width: 1024px) {
  .header .wrapper nav {
    position: initial;
    display: block;
    margin-top: 1.5625rem;
    width: initial;
    height: initial;
    opacity: 1;
    overflow: initial;
  }
}
body.active .header .wrapper nav {
  background-color: var(--white);
  margin: 0;
  padding: 0;
  transition: all 0.7s ease-in-out;
  max-height: calc(100vh - 100px);
  overflow: scroll;
}
body.activating .header .wrapper nav {
  opacity: 1;
  left: 0;
  transition: all 0.7s ease-in-out;
}
.header .wrapper nav .header-alert__btn {
  display: inline-grid;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .header .wrapper nav .header-alert__btn {
    display: none;
  }
}
.header .wrapper nav .menu-list {
  grid-column-gap: calc(50px + 25 * ((100vw - 320px) / 1280));
  align-items: center;
  transition: transform 400ms ease-in-out;
  width: 100%;
  min-height: calc(100vh - (100vh - 100%) - 40px);
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  z-index: 50;
  position: relative;
}
@media (min-width: 600px) {
  .header .wrapper nav .menu-list {
    min-height: 100%;
  }
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list {
    display: grid;
    grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content max-content;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .header .wrapper nav .menu-list {
    grid-column-gap: 4.6875rem;
  }
}
.header .wrapper nav .menu-list .nav-item {
  margin-bottom: 1.5625rem;
}
.header .wrapper nav .menu-list .nav-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item {
    margin-bottom: 0;
  }
  .header .wrapper nav .menu-list .nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 195%;
    left: -45%;
    height: 300px;
    background-color: var(--white);
    z-index: 50;
  }
}
.header .wrapper nav .menu-list .nav-item.dropdown {
  font-family: var(--font-family-cormorant);
  font-weight: 500;
  letter-spacing: normal;
  line-height: normal;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown {
    overflow: initial;
  }
}
.header .wrapper nav .menu-list .nav-item.dropdown.active .nav-link span::before {
  width: 200vw;
}
.header .wrapper nav .menu-list .nav-item.dropdown .nav-link span {
  z-index: 55;
  position: relative;
}
.header .wrapper nav .menu-list .nav-item.dropdown .nav-link span::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  z-index: 25;
  left: -50vw;
  width: 0;
  height: 0.0625rem;
  background-color: var(--yellow-500);
  transition: width 800ms ease-in-out;
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .nav-link span::before {
    content: unset;
  }
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown.moveUp .nav-link.dropdown-toggle span::before {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .nav-link.dropdown-toggle span::before {
    content: "";
    position: absolute;
    z-index: 55;
    left: 0;
    width: 0;
    height: 0.3125rem;
    background-color: var(--yellow-500);
    transition: width 400ms ease-in-out;
    bottom: -0.625rem;
    top: initial;
  }
  .header .wrapper nav .menu-list .nav-item.dropdown .nav-link.dropdown-toggle span::after {
    content: "";
    width: 100%;
    min-width: calc(100% + 30px);
    height: 25px;
    top: 100%;
    display: block;
    position: absolute;
    background-color: #fff;
  }
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .nav-link.dropdown-toggle span:hover::before {
    width: 100%;
  }
}
.header .wrapper nav .menu-list .nav-item.dropdown.current-menu-parent .nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  z-index: 25;
  right: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--blue-800);
  transition: width 400ms ease-in-out;
}
.header .wrapper nav .menu-list .nav-item.dropdown.current-menu-parent:hover .nav-link.dropdown-toggle::before {
  width: 0;
}
.header .wrapper nav .menu-list .nav-item.dropdown .menu-list {
  padding: calc(20px + 55 * ((100vw - 320px) / 1280));
  padding-top: calc(20px + 54 * ((100vw - 320px) / 1280));
  background-color: var(--white);
}
@media (max-width: 1023px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .menu-list {
    padding-bottom: 0;
  }
}
@media (min-width: 1600px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .menu-list {
    padding: 4.625rem 4.6875rem 4.6875rem 4.6875rem;
  }
}
.header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item {
  margin-bottom: calc(8px + 6 * ((100vw - 320px) / 1280));
  align-items: center;
  justify-content: center;
  display: flex;
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item {
    justify-content: initial;
  }
}
@media (min-width: 1600px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item {
    margin-bottom: 0.9375rem;
  }
}
.header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item:last-child {
  margin-bottom: 0;
}
.header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item.current-menu-item .nav-link {
  color: var(--yellow-500);
}
.header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item .nav-link {
  font-size: 1rem;
  color: var(--blue-800);
  font-weight: 400;
  line-height: normal;
  font-family: var(--font-family-lato);
  transition: color 200ms ease-in-out;
}
.header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item .nav-link:hover {
  color: var(--yellow-500);
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown .menu-list .menu-item .nav-link {
    font-size: clamp(14px, 1.25vw + 1px, 21px);
  }
}
.header .wrapper nav .menu-list .nav-item.dropdown.moveUp > .menu-list {
  transform: translateY(0);
}
.header .wrapper nav .menu-list .nav-item.dropdown > .menu-list {
  margin-left: 0;
  margin-top: 0;
  display: none;
}
.header .wrapper nav .menu-list .nav-item.dropdown > .menu-list::before {
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--blue-800);
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item.dropdown > .menu-list {
    width: calc(100% + (95px + 55 * ((100vw - 320px) / 1280)));
    left: calc(-50px + -25 * ((100vw - 320px) / 1280));
    top: initial;
    position: absolute;
    display: block !important;
    transform: translateY(-200%);
    transition: transform 500ms ease-in-out;
  }
  .header .wrapper nav .menu-list .nav-item.dropdown > .menu-list:hover {
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .header .wrapper nav .menu-list .nav-item.dropdown > .menu-list {
    width: calc(100% + 150px);
    left: -75px;
  }
}
@media (max-width: 1023px) {
  .header .wrapper nav .menu-list .nav-item.active.dropdown > .menu-list {
    display: block;
  }
}
.header .wrapper nav .menu-list .nav-item .nav-link {
  font-weight: 500;
  letter-spacing: normal;
  line-height: normal;
  color: var(--blue-800);
  font-size: 1.75rem;
}
@media (min-width: 1024px) {
  .header .wrapper nav .menu-list .nav-item .nav-link {
    font-size: clamp(12px, 2.19vw + 1px, 32px);
  }
}
.header .wrapper nav .menu-list .nav-item .nav-link span {
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.header .wrapper .header-nav__dep {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  z-index: 50;
}
@media (min-width: 600px) {
  .header .wrapper .header-nav__dep {
    grid-template-columns: -webkit-max-content 40px;
    grid-template-columns: max-content 40px;
  }
}
.header .wrapper .header-nav__dep .header-alert__btn {
  display: none;
}
@media (min-width: 600px) {
  .header .wrapper .header-nav__dep .header-alert__btn {
    display: grid;
  }
}
.header .wrapper .header-nav__dep .header-alert__btn svg {
  pointer-events: auto;
}
.header .wrapper .header-nav__dep .header-menu__toggle {
  display: flex;
  border: none;
  height: 100%;
  padding: 0;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  flex-direction: column;
  width: 2.5rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header .wrapper .header-nav__dep .header-menu__toggle {
    display: none;
  }
}
.header .wrapper .header-nav__dep .header-menu__toggle span {
  background: var(--blue-800);
  border-radius: 0.625rem;
  height: 0.25rem;
  margin: 0.125rem 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.header .wrapper .header-nav__dep .header-menu__toggle span:nth-of-type(1) {
  width: 50%;
  min-width: 1.25rem;
}
.header .wrapper .header-nav__dep .header-menu__toggle span:nth-of-type(2) {
  width: 100%;
  min-width: 2.5rem;
}
.header .wrapper .header-nav__dep .header-menu__toggle span:nth-of-type(3) {
  width: 75%;
  min-width: 1.375rem;
}
body.active .header .wrapper .header-nav__dep .header-menu__toggle > span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotateZ(45deg) translate(-5px, 5px);
}
body.active .header .wrapper .header-nav__dep .header-menu__toggle > span:nth-of-type(2) {
  transform-origin: top;
  transform: rotateZ(-45deg);
}
body.active .header .wrapper .header-nav__dep .header-menu__toggle > span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(7px, -2px) rotateZ(45deg);
}

.nav__collapse-overlay {
  position: absolute;
  left: 0;
  bottom: -10000px;
  width: 100%;
  height: 10000px;
  background-color: var(--black-400);
  opacity: 94.5%;
  display: none;
}
@media (max-width: 1023px) {
  .nav__collapse-overlay {
    display: none !important;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
.footer {
  margin-top: clamp(85px, 12.5vw + 1px, 185px);
}
.footer .footer__subscribe-form .wrapper {
  margin-bottom: calc(-50px + -50 * ((100vw - 320px) / 1280));
  position: relative;
  z-index: 25;
  padding: clamp(25px, 6.25vw + 1px, 100px);
  background-color: var(--blue-300);
}
@media (min-width: 1280px) {
  .footer .footer__subscribe-form .wrapper {
    padding: clamp(50px, 6.25vw + 1px, 100px);
    padding-top: clamp(25px, 4.38vw + 1px, 70px);
  }
}
@media (min-width: 1600px) {
  .footer .footer__subscribe-form .wrapper {
    margin-bottom: -6.25rem;
  }
}
.footer .footer__subscribe-form .wrapper .gform_confirmation_wrapper .gform_confirmation_message {
  max-width: 500px;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 30px;
  font-family: var(--font-family-lato);
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_validation_errors {
  background-color: var(--blue-800);
  border: unset;
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading {
  font-size: clamp(36px, 3.75vw + 1px, 60px);
}
@media (min-width: 1440px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading {
    margin-top: 0.875rem;
    margin-bottom: -0.4375rem;
  }
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading .gform_title {
  font-family: var(--font-family-cormorant);
  font-weight: 300;
  line-height: 0.65;
  font-size: clamp(36px, 3.75vw + 1px, 60px);
  color: var(--yellow-500);
  position: relative;
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading .gform_title::after {
  content: "";
  position: absolute;
  background: var(--blue-800);
  height: 1px;
  width: 0;
  left: -100vw;
  bottom: 0;
  z-index: 100;
  transition-duration: 3s;
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading .gform_title .line {
  background: var(--blue-800);
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading .gform_title.show::after {
  width: 200vw;
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_heading .gform_description {
  margin-top: 25px;
  display: block;
  max-width: 500px;
  font-size: clamp(18px, 1.31vw + 1px, 21px);
  font-weight: 300;
  line-height: 30px;
  font-family: var(--font-family-lato);
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  margin-top: 3.125rem;
}
@media (min-width: 768px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 {
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
  }
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield {
  position: relative;
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield .ginput_container_email input {
  padding: 1.5rem;
  border: 1px solid var(--blue-800);
  background-color: var(--blue-300);
  color: var(--blue-800);
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  font-family: var(--font-family-roboto-condensed);
  outline: unset;
}
@media (max-width: 767px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield .ginput_container_email input {
    font-size: 1.125rem;
    padding: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield .ginput_container_email input {
    padding: 1.5rem;
    font-size: 1.3125rem;
  }
}
@media (min-width: 1440px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield .ginput_container_email input {
    padding-left: 1.9375rem;
  }
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield .gfield_validation_message {
  position: absolute;
  width: 100%;
  top: -3.4375rem;
  left: 0;
  font-weight: 500;
  background-color: var(--blue-800);
  border: unset;
}
@media (min-width: 768px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 #custom_gform_1 .gfield .gfield_validation_message {
    top: 4.6875rem;
  }
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_footer {
  padding: 0;
  position: relative;
  margin-left: 0;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_footer {
    margin: 0 0 0 3.125rem;
  }
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_footer #gform_submit_button_1 {
  margin-bottom: 0 !important;
  margin-left: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_footer #gform_submit_button_1 {
    width: initial;
  }
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_footer #gform_submit_button_1 svg {
  min-width: 1.25rem;
  min-height: 1.25rem;
}
.footer .footer__subscribe-form .wrapper #gform_wrapper_1 .gform_footer .gform_ajax_spinner {
  position: absolute;
  left: 0;
  top: 4.6875rem;
}
.footer .footer__content {
  min-height: clamp(500px, 51.38vw + 1px, 822px);
  background-color: #1e1f21;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-end;
  padding-bottom: clamp(50px, 5.81vw + 1px, 93px);
  padding-top: clamp(75px, 5.81vw + 1px, 93px);
}
@media (max-width: 767px) {
  .footer .footer__content {
    background-position: bottom left !important;
  }
}
@media (min-width: 1600px) {
  .footer .footer__content {
    background-position-x: calc(50% + 400px) !important;
  }
}
.footer .footer__content .container .footer-content__desc {
  max-width: clamp(400px, 35.63vw + 1px, 570px);
  font-weight: 300;
  color: #ccc6c3;
  font-family: var(--font-family-cormorant);
  font-size: clamp(36px, 3.75vw + 1px, 60px);
  line-height: clamp(50px, 4.69vw + 1px, 75px);
}
@media (max-width: 767px) {
  .footer .footer__content .container .footer-content__desc {
    line-height: normal;
  }
}
.footer .footer__content .footer-content__contact {
  margin-top: clamp(50px, 4.69vw + 1px, 75px);
}
.footer .footer__content .footer-content__contact h4 {
  color: var(--pale-600);
  font-size: clamp(18px, 1.31vw + 1px, 21px);
  font-weight: 600;
  line-height: 1.875rem;
  letter-spacing: 0.0125rem;
}
.footer .footer__content .footer-content__contact .contact__list-item,
.footer .footer__content .footer-content__contact p {
  color: var(--pale-600);
  font-size: clamp(18px, 1.31vw + 1px, 21px);
  font-weight: 300;
  line-height: clamp(27px, 1.88vw + 1px, 30px);
}
.footer .footer__content .footer-content__contact a {
  color: var(--pale-600);
  transition: color 400ms ease-in-out;
}
.footer .footer__content .footer-content__contact a:hover {
  color: var(--yellow-500);
}
.footer .footer__social {
  min-height: 6.25rem;
  background-color: var(--black-400);
  display: flex;
  align-items: center;
  padding: 1.5625rem 0;
}
@media (min-width: 768px) {
  .footer .footer__social {
    padding: 0;
    max-height: 6.25rem;
  }
}
.footer .footer__social .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer .footer__social .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: initial;
  }
}
.footer .footer__social .container .social__icons .social__icons-list {
  display: flex;
  align-items: center;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5625rem;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item:last-child {
  margin-right: 0;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--blue-300);
  width: 3.125rem;
  height: 3.125rem;
  transition: border 300ms ease-in-out;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item a svg > g {
  transition: fill 300ms ease-in-out;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item a svg * polygon {
  transition: fill 300ms ease-in-out;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item a svg * path {
  transition: fill 300ms ease-in-out;
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__email:hover {
  border: 0.0625rem solid var(--blue-400);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__email:hover .icon__email g {
  fill: var(--blue-400);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__twitter:hover {
  border: 0.0625rem solid var(--blue-200);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__twitter:hover .icon__twitter g {
  fill: var(--blue-200);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__linkedin:hover {
  border: 0.0625rem solid var(--blue-600);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__linkedin:hover .icon__linkedin g {
  fill: var(--blue-600);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__youtube:hover {
  border: 0.0625rem solid var(--red-400);
}
.footer .footer__social .container .social__icons .social__icons-list .social__icons-item .link__youtube:hover .icon__youtube g {
  fill: var(--red-400);
}
.footer .footer__social .arrow__up {
  position: absolute;
  border: 1px solid var(--blue-800);
  padding: 25px;
  display: flex;
  right: 33px;
  bottom: 0;
  transition: border 300ms ease-in-out;
}
@media (min-width: 768px) {
  .footer .footer__social .arrow__up {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
    right: initial;
    bottom: initial;
    border: 1px solid transparent;
    padding: 11.5px 16px;
  }
}
@media (max-width: 767px) {
  .footer .footer__social .arrow__up {
    padding: 0.8125rem 0.8125rem;
    bottom: 25px;
    right: 1.5625rem;
  }
}
.footer .footer__social .arrow__up:hover {
  border: 1px solid var(--yellow-500);
}
.footer .footer__social .arrow__up:hover svg #filter__header {
  fill: var(--yellow-500);
}
.footer .footer__social .arrow__up svg {
  width: 1rem;
  height: 1.5625rem;
}
@media (max-width: 767px) {
  .footer .footer__social .arrow__up svg {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.footer .footer__social .arrow__up svg #filter__header {
  transition: fill 300ms ease-in-out;
}
.footer .footer__copyright {
  display: grid;
  align-items: center;
  background-color: var(--pale-600);
  min-height: 3.125rem;
  padding: 0.25rem 0;
}
.footer .footer__copyright .container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 512px) {
  .footer .footer__copyright .container {
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
  }
}
.footer .footer__copyright .container .copyright__reserve,
.footer .footer__copyright .container .copyright__branding {
  color: var(--black-400);
  text-transform: uppercase;
  font-family: var(--font-family-roboto-condensed);
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 512px) {
  .footer .footer__copyright .container .copyright__branding {
    margin-left: auto;
  }
}
.footer .social__republic-icon {
  padding-top: 25px;
}
@media (min-width: 768px) {
  .footer .social__republic-icon {
    position: relative;
    top: -3.125rem;
    padding-top: 0;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
.section__pagination {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: clamp(35px, 6.25vw + 1px, 85px);
  margin-bottom: clamp(0px, 0.94vw + 1px, 15px);
  width: 100%;
}
@media (min-width: 1024px) {
  .section__pagination {
    align-items: center;
  }
}
.section__pagination .pages {
  list-style: none;
  display: flex;
}
.section__pagination .pages .page-number {
  display: flex;
  width: clamp(42px, 4.69vw + 1px, 75px);
  height: clamp(42px, 4.69vw + 1px, 75px);
  align-items: center;
  justify-content: center;
  margin: 0 clamp(3px, 0.78vw + 1px, 12.5px);
  font-weight: 700;
  border: 0.0625rem solid var(--blue-300);
  font-size: clamp(18px, 1.88vw + 1px, 30px);
  font-family: var(--font-family-roboto-condensed);
  line-height: 1.125rem;
  color: var(--blue-300);
  background-color: var(--white);
  transition: border 400ms ease-in-out, color 400ms ease-in-out;
}
@media (min-width: 768px) {
  .section__pagination .pages .page-number {
    width: clamp(50px, 4.69vw + 1px, 75px);
    height: clamp(50px, 4.69vw + 1px, 75px);
  }
}
.section__pagination .pages .page-number:hover {
  border: 0.0625rem solid var(--yellow-500);
  color: var(--yellow-500);
}
.section__pagination .pages .page-number.current {
  background-color: var(--yellow-500);
  color: var(--white);
  border: unset;
}
.section__pagination .next,
.section__pagination .prev {
  display: flex;
  width: clamp(42px, 4.69vw + 1px, 75px);
  height: clamp(42px, 4.69vw + 1px, 75px);
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--blue-300);
  background-color: var(--white);
  transition: border 400ms ease-in-out, color 400ms ease-in-out;
}
.section__pagination .next svg #filter__header,
.section__pagination .next svg #Footer,
.section__pagination .prev svg #filter__header,
.section__pagination .prev svg #Footer {
  transition: fill 400ms ease-in-out;
}
.section__pagination .next:hover:not(.invisible),
.section__pagination .prev:hover:not(.invisible) {
  border: 0.0625rem solid var(--yellow-500);
  color: var(--yellow-500);
}
.section__pagination .next:hover:not(.invisible) svg #filter__header,
.section__pagination .next:hover:not(.invisible) svg #Footer,
.section__pagination .prev:hover:not(.invisible) svg #filter__header,
.section__pagination .prev:hover:not(.invisible) svg #Footer {
  fill: var(--yellow-500);
}
@media (max-width: 511px) {
  .section__pagination .next,
.section__pagination .prev {
    display: none;
  }
}
@media (min-width: 768px) {
  .section__pagination .next,
.section__pagination .prev {
    width: clamp(50px, 4.69vw + 1px, 75px);
    height: clamp(50px, 4.69vw + 1px, 75px);
  }
}
.section__pagination .dots {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: clamp(42px, 4.69vw + 1px, 75px);
  height: clamp(42px, 4.69vw + 1px, 75px);
  font-size: clamp(40px, 3.25vw + 1px, 52px);
  line-height: clamp(24px, 2.63vw + 1px, 42px);
  color: var(--blue-300);
}
.section__pagination .prev {
  margin-right: clamp(3px, 0.78vw + 1px, 12.5px);
}
.section__pagination .prev.invisible {
  border-color: var(--pale-600);
}
.section__pagination .prev.invisible svg #filter__header,
.section__pagination .prev.invisible svg #Footer {
  fill: var(--pale-600);
}
.section__pagination .prev svg {
  transform: rotate(-90deg);
}
.section__pagination .next {
  margin-left: clamp(3px, 0.78vw + 1px, 12.5px);
}
.section__pagination .next.invisible {
  border-color: var(--pale-600);
}
.section__pagination .next.invisible svg #Footer,
.section__pagination .next.invisible svg #filter__header {
  fill: var(--pale-600);
}
.section__pagination .next svg {
  transform: rotate(90deg);
}

.gform_wrapper.gravity-theme * {
  box-sizing: border-box;
}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
  margin: 6px 0 0;
  padding: 16px 0;
}

.gform_wrapper.gravity-theme .gform_fields {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-column-gap: 2%;
  grid-row-gap: 16px;
}

.gform_wrapper.gravity-theme .gfield {
  grid-column: 1/-1;
}
.gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield select.large,
.gform_wrapper.gravity-theme .gfield textarea {
  width: 100%;
}

.gform_wrapper.gravity-theme .hidden_label .gfield_label,
.gform_wrapper.gravity-theme .hidden_sub_label,
.gform_wrapper.gravity-theme .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal !important;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
  padding: 0;
}

.gform_wrapper.gravity-theme .gfield input,
.gform_wrapper.gravity-theme .gfield select {
  max-width: 100%;
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-size: 15px;
  padding: 8px;
  margin-bottom: 0;
  margin-top: 0;
}

.gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield select.large {
  width: 100%;
}

.gform_wrapper .gform_validation_errors {
  background: #fff9f9;
  border-radius: 5px;
  border: 1.5px solid #c02b0a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.11), 0 0 4px rgba(18, 25, 97, 0.04);
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 16px 16px 16px 16px;
  position: relative;
  width: 100%;
}

.gform_wrapper .gform_validation_errors > h2 {
  color: #c02b0a;
  font-size: 13.2px;
  font-weight: 500;
  line-height: 17.6px;
  margin: 0 0 12px 0;
}

.gform_wrapper .gform_validation_errors > h2.hide_summary {
  margin: 0;
}

.gform_wrapper .gform_validation_errors > h2 .gform-icon {
  align-items: center;
  display: flex;
  font-size: 28px;
  height: 100%;
  left: 12px;
  position: absolute;
  top: 0;
}

.gform_wrapper .gfield_error .gfield_repeater_cell label,
.gform_wrapper .gfield_error label,
.gform_wrapper .gfield_error legend,
.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message,
.gform_wrapper [aria-invalid=true] + label,
.gform_wrapper label + [aria-invalid=true] {
  color: #c02b0a;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  background: #fff9f9;
  border: 1px solid #c02b0a;
  font-size: 14.992px;
  margin-top: 8px;
  padding: 12.992px 24px;
}

.gform_wrapper.gravity-theme .description,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .gsection_description,
.gform_wrapper.gravity-theme .instruction {
  font-size: 15px;
  line-height: inherit;
  clear: both;
  font-family: inherit;
  letter-spacing: normal;
  padding-top: 13px;
  width: 100%;
}

.footer .footer__subscribe-form .wrapper .gform_confirmation_message {
  max-width: 500px;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 30px;
  font-family: var(--font-family-lato);
}

.gform_wrapper .gfield_required {
  color: #c02b0a;
  display: inline-block;
  font-size: 13.008px;
  padding-left: 0.125em;
}

.gform_wrapper .gfield_required .gfield_required_custom,
.gform_wrapper .gfield_required .gfield_required_text {
  font-style: italic;
  font-weight: 400;
}

/*! locomotive-scroll v4.0.6 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  white-space: nowrap;
  height: 100vh;
  display: inline-block;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

.scrollContainer {
  perspective: 1px;
}

.alignfull,
.alignwide {
  clear: both;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper > .alignwide {
  max-width: 1280px;
}

.content-wrapper > .alignfull {
  max-width: none;
}

.content-wrapper > .alignleft {
  float: left;
  margin-right: 2em;
}

.content-wrapper > .alignright {
  float: right;
  margin-right: 2em;
}
