@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap);
@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

@font-face {
  font-family: "lte-font";
  src: url("/wp-content/themes/usa-rugby/assets/dist/fonts/lte-font.woff2") format("woff2"), url("/wp-content/themes/usa-rugby/assets/dist/fonts/lte-font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body,
html {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #222;
  font-variation-settings: "wdth" 100;
}

h1,
h2,
h3,
h4 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

strong,
b {
  font-weight: 600;
}

.btn {
  display: inline-block;
  background: #c42221;
  color: white;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 1em;
  min-width: 12em;
  text-align: center;
  transition: all 0.5s ease;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.7rem;
    min-width: 10em;
  }
}
@media screen and (max-width: 500px) {
  .btn {
    font-size: 1.6rem;
    min-width: 9em;
  }
}
.btn:hover {
  background: white;
  color: #222;
}
.btn::after {
  display: inline-block;
  font-family: "lte-font";
  font-weight: 400 !important;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  content: "";
  font-size: 1em;
  position: relative;
  padding-left: 0.5em;
}

body,
html {
  font-size: 10px;
}
body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.container .row {
  padding: 0 5rem;
}
@media screen and (max-width: 1023px) {
  .container .row {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 639px) {
  .container .row {
    padding: 0 3.5rem;
  }
}
@media screen and (max-width: 500px) {
  .container .row {
    padding: 0 3rem;
  }
}

.fade-in-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(25%);
}

.fade-in-up-small {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
}

.fade-in {
  opacity: 0;
  visibility: hidden;
}

.slick-hidden {
  display: none !important;
}

/***
    The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
pre {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: "";
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  transition: background 0.3s ease;
}
header.scrolled, header.nav-open {
  background: #0d1a30;
}
header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .row .logo-wrapper {
  width: 15rem;
}
@media screen and (max-width: 1023px) {
  header .row .logo-wrapper {
    width: 12rem;
  }
}
@media screen and (max-width: 639px) {
  header .row .logo-wrapper {
    width: 11rem;
  }
}
@media screen and (max-width: 500px) {
  header .row .logo-wrapper {
    width: 8rem;
  }
}
header .row .logo-wrapper a.logo {
  width: 9rem;
  display: block;
}
@media screen and (max-width: 1023px) {
  header .row .logo-wrapper a.logo {
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  header .row .logo-wrapper a.logo {
    width: 9rem;
  }
}
@media screen and (max-width: 639px) {
  header .row .logo-wrapper a.logo {
    width: 8rem;
  }
}
@media screen and (max-width: 500px) {
  header .row .logo-wrapper a.logo {
    width: 7.5rem;
  }
}
header .row .logo-wrapper a.logo img {
  width: 100%;
}
header .row .hamburger {
  margin: 0;
  padding: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  header .row .hamburger {
    display: block;
  }
}
header .row .hamburger .hamburger-inner {
  background: white;
  border-radius: 0;
  height: 0.3rem;
}
header .row .hamburger .hamburger-inner::before, header .row .hamburger .hamburger-inner::after {
  background: white;
  border-radius: 0;
  height: 0.3rem;
}
@media screen and (max-width: 767px) {
  header .row nav {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #0d1a30;
    width: 100%;
    display: flex;
    z-index: 99999;
  }
}
header .row nav ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  color: white;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  header .row nav ul {
    font-size: 2rem;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  header .row nav ul {
    display: block;
    text-align: center;
    font-size: 6.4rem;
    margin-bottom: 15%;
  }
}
@media screen and (max-width: 639px) {
  header .row nav ul {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 500px) {
  header .row nav ul {
    font-size: 5rem;
    margin-bottom: 22%;
  }
}
header .row nav ul li {
  transition: color 0.3s ease;
}
header .row nav ul li:hover {
  color: #c42221;
}
header .row a.btn {
  width: 15rem;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1023px) {
  header .row a.btn {
    width: 12rem;
  }
}
@media screen and (max-width: 639px) {
  header .row a.btn {
    font-size: 1.6rem;
    padding: 0.8em 0;
    width: 11rem;
  }
}
@media screen and (max-width: 500px) {
  header .row a.btn {
    width: 8rem;
  }
}
@media screen and (max-width: 500px) {
  header .row a.btn::after {
    display: none;
  }
}

footer {
  color: white;
  background: #0d1a30;
  text-align: center;
  position: relative;
  padding: 7.5rem 0 2rem;
}
@media screen and (max-width: 1599px) {
  footer {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 1439px) {
  footer {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  footer {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  footer {
    padding: 2.5rem 0 1rem;
  }
}
footer img.bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  opacity: 0.15;
}
footer img.logo {
  display: block;
  width: 15rem;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 1599px) {
  footer img.logo {
    margin-bottom: 3.5rem;
  }
}
@media screen and (max-width: 1439px) {
  footer img.logo {
    width: 12.5rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  footer img.logo {
    width: 10rem;
    margin-bottom: 1.5rem;
  }
}
footer h2 {
  text-transform: uppercase;
  font-size: 3.6rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1023px) {
  footer h2 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  footer h2 {
    width: 80%;
    margin: 0 auto 0.5em;
  }
}
@media screen and (max-width: 639px) {
  footer h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  footer h2 {
    width: 100%;
    font-size: 2.4rem;
  }
}
footer hr {
  border-top: 1px solid white;
  margin: 5rem 0 2rem;
}
@media screen and (max-width: 1439px) {
  footer hr {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  footer hr {
    margin: 2.5rem 0 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  footer hr {
    margin: 2rem 0 1rem;
  }
}
footer p {
  font-size: 1.6rem;
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  footer p {
    width: 75%;
  }
}
@media screen and (max-width: 1279px) {
  footer p {
    width: 85%;
  }
}
@media screen and (max-width: 1023px) {
  footer p {
    width: 100%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  footer p {
    font-size: 1.4rem;
  }
}
footer p a {
  transition: color 0.3s ease;
}
footer p a:hover {
  color: #c42221;
}
footer p.copyright {
  font-size: 1.4rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  footer p.copyright {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 639px) {
  footer p.copyright {
    font-size: 1.2rem;
  }
}

.ua-ios #hero {
  height: 100svh;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 696px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  #hero {
    min-height: 600px;
    align-items: center;
  }
}
@media screen and (max-width: 639px) {
  #hero {
    min-height: 500px;
  }
}
#hero video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center center !important;
     object-position: center center !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
#hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 1599px) {
  #hero .container {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 1023px) {
  #hero .container {
    padding-bottom: 0;
    text-align: center;
  }
}
#hero h1 {
  font-size: 10rem;
  line-height: 0.9;
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1599px) {
  #hero h1 {
    font-size: 9rem;
    margin-bottom: 0.8em;
  }
}
@media screen and (max-width: 1439px) {
  #hero h1 {
    font-size: 8rem;
    margin-bottom: 0.7em;
  }
}
@media screen and (max-width: 1279px) {
  #hero h1 {
    font-size: 7.2rem;
    margin-bottom: 0.6em;
  }
}
@media screen and (max-width: 767px) {
  #hero h1 {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 639px) {
  #hero h1 {
    font-size: 5.8rem;
    width: 75%;
    margin: 0 auto 0.6em;
  }
}
@media screen and (max-width: 500px) {
  #hero h1 {
    font-size: 5.4rem;
    width: 100%;
    margin-bottom: 0.5em;
  }
}
#hero h1 span {
  font-weight: 300;
  display: inline-block;
  font-style: italic;
  position: relative;
  line-height: 0.8em;
  padding: 0.06em 0.08em 0 0.08em;
  z-index: 2;
}
#hero h1 span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #c42221;
  z-index: -1;
  transform: skew(-15deg, 0);
}
#hero .mute-toggle {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #hero .mute-toggle {
    width: 4.2rem;
    height: 4.2rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  #hero .mute-toggle {
    width: 3.8rem;
    height: 3.8rem;
    bottom: 1rem;
    right: 1rem;
  }
}
#hero .mute-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}
#hero .mute-toggle:active {
  transform: scale(0.95);
}
#hero .mute-toggle svg {
  width: 2.4rem;
  height: 2.4rem;
  display: none;
}
@media screen and (max-width: 767px) {
  #hero .mute-toggle svg {
    width: 2.1rem;
    height: 2.1rem;
  }
}
@media screen and (max-width: 500px) {
  #hero .mute-toggle svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}
#hero .mute-toggle.muted .icon-muted {
  display: block;
}
#hero .mute-toggle:not(.muted) .icon-unmuted {
  display: block;
}

#fixtures {
  background-image: url("/wp-content/uploads/2024/09/Background_Pattern.jpg");
  background-position: center center;
  background-repeat: repeat;
  background-size: 39% auto;
  color: white;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  padding: 12.5rem 0 10rem;
  text-align: center;
}
@media screen and (max-width: 1599px) {
  #fixtures {
    padding: 10rem 0 7.5rem;
  }
}
@media screen and (max-width: 1279px) {
  #fixtures {
    padding: 7rem 0 6rem;
  }
}
@media screen and (max-width: 767px) {
  #fixtures {
    padding: 6rem 0 5rem;
  }
}
@media screen and (max-width: 639px) {
  #fixtures {
    padding: 5rem 0 4rem;
  }
}
@media screen and (max-width: 500px) {
  #fixtures {
    padding: 4rem 0 3rem;
  }
}
#fixtures h2 {
  background: #c42221;
  display: inline-block;
  font-size: 2.4rem;
  padding: 0.1em 0.4em;
  line-height: 1;
  margin-bottom: 1em;
}
@media screen and (max-width: 639px) {
  #fixtures h2 {
    margin-bottom: 0.8em;
  }
}
@media screen and (max-width: 500px) {
  #fixtures h2 {
    font-size: 2.1rem;
  }
}
#fixtures .teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  font-size: 4.8rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1439px) {
  #fixtures .teams {
    font-size: 4rem;
    gap: 5rem;
  }
}
@media screen and (max-width: 1279px) {
  #fixtures .teams {
    font-size: 3.6rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  #fixtures .teams {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  #fixtures .teams {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  #fixtures .teams {
    font-size: 2.1rem;
  }
}
#fixtures .teams .score {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.25em;
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .score {
    display: none;
  }
}
#fixtures .teams .team {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
@media screen and (max-width: 1279px) {
  #fixtures .teams .team {
    gap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team {
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 500px) {
  #fixtures .teams .team {
    margin-bottom: 1rem;
  }
}
#fixtures .teams .team .name {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team .name {
    gap: 2rem;
  }
}
#fixtures .teams .team .team-score {
  display: none;
  font-weight: 400;
  font-size: 1.25em;
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team .team-score {
    display: block;
  }
}
#fixtures .teams .team:nth-child(2) {
  order: 3;
  justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team:nth-child(2) {
    margin-bottom: 0;
    justify-content: space-between;
  }
}
#fixtures .teams .team:nth-child(2) img {
  order: 2;
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team:nth-child(2) img {
    order: 1;
  }
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team:nth-child(2) h3 {
    order: 2;
  }
}
#fixtures .teams .team img {
  width: 7.5rem;
  height: auto;
}
@media screen and (max-width: 1279px) {
  #fixtures .teams .team img {
    width: 7rem;
  }
}
@media screen and (max-width: 1023px) {
  #fixtures .teams .team img {
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  #fixtures .teams .team img {
    width: 7.5rem;
  }
}
@media screen and (max-width: 500px) {
  #fixtures .teams .team img {
    width: 5.5rem;
  }
}
#fixtures p,
#fixtures time {
  color: rgba(255, 255, 255, 0.65);
}
#fixtures p {
  font-size: 1.8rem;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 1023px) {
  #fixtures p {
    margin-top: 2.5rem;
    border-top: 1px solid white;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 500px) {
  #fixtures p {
    margin-top: 2rem;
    padding-top: 2.5rem;
  }
}
#fixtures time {
  font-size: 3.2rem;
  display: inline-block;
}
@media screen and (max-width: 500px) {
  #fixtures time {
    font-size: 2.8rem;
  }
}

#about {
  text-align: center;
  background: #f5f5f5;
}
#about .text {
  width: 67.5%;
  margin: 0 auto;
  padding: 8rem 0;
  color: #222;
}
@media screen and (max-width: 1919px) {
  #about .text {
    padding: 6.5rem 0;
  }
}
@media screen and (max-width: 1599px) {
  #about .text {
    width: 75%;
  }
}
@media screen and (max-width: 1439px) {
  #about .text {
    width: 85%;
  }
}
@media screen and (max-width: 1279px) {
  #about .text {
    width: 100%;
    padding: 5rem 0 5.5rem;
  }
}
@media screen and (max-width: 639px) {
  #about .text {
    padding: 4rem 0 4.5rem;
  }
}
@media screen and (max-width: 500px) {
  #about .text {
    padding: 3.5rem 0 4rem;
  }
}
#about .text h4 {
  text-transform: uppercase;
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 0.6em;
  line-height: 1.3;
  color: #222;
}
@media screen and (max-width: 1439px) {
  #about .text h4 {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 1279px) {
  #about .text h4 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  #about .text h4 {
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  #about .text h4 {
    font-size: 2.8rem;
    line-height: 1.1;
  }
}
#about .text h4 span {
  color: #c42221;
}
#about .text p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #222;
}
@media screen and (max-width: 500px) {
  #about .text p {
    font-size: 1.5rem;
  }
}

.img-window {
  position: relative;
  aspect-ratio: 2/0.75;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .img-window {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 767px) {
  .img-window {
    aspect-ratio: 2/1.125;
  }
}
@media screen and (max-width: 500px) {
  .img-window {
    aspect-ratio: 4/3;
  }
}
.img-window::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.img-window img {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-inline-size: none;
  max-block-size: none;
}
@media screen and (max-width: 767px) {
  .img-window img {
    width: auto;
    height: 150%;
  }
}
@media screen and (max-width: 500px) {
  .img-window img {
    bottom: -10%;
  }
}

#testimonials {
  background: #f5f5f5;
  padding: 7.5rem 0 10rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1599px) {
  #testimonials {
    padding: 5rem 0 7.5rem;
  }
}
@media screen and (max-width: 1439px) {
  #testimonials {
    padding-bottom: 6.5rem;
  }
}
@media screen and (max-width: 1023px) {
  #testimonials {
    padding: 6rem 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  #testimonials {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 500px) {
  #testimonials {
    padding: 3rem 0 4.5rem;
  }
}
#testimonials h2,
#testimonials h3 {
  text-transform: uppercase;
  color: #222;
}
#testimonials h2 {
  color: #c42221;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  #testimonials h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  #testimonials h2 {
    font-size: 1.8rem;
  }
}
#testimonials h3 {
  font-size: 5.6rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1439px) {
  #testimonials h3 {
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 1279px) {
  #testimonials h3 {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  #testimonials h3 {
    font-size: 4.8rem;
    margin-bottom: 0.2em;
  }
}
@media screen and (max-width: 500px) {
  #testimonials h3 {
    font-size: 4rem;
  }
}
#testimonials .slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
#testimonials .controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  right: 5rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  #testimonials .controls {
    left: 3rem;
    right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #testimonials .controls {
    left: 2rem;
    right: 2rem;
  }
}
@media screen and (max-width: 500px) {
  #testimonials .controls {
    left: 1rem;
    right: 1rem;
  }
}
#testimonials .controls button {
  background: #c42221;
  color: white;
  width: 2em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  border: none;
  font-size: 2.4rem;
}
@media screen and (max-width: 639px) {
  #testimonials .controls button {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 500px) {
  #testimonials .controls button {
    font-size: 2rem;
    width: 1.5em;
  }
}
#testimonials .controls button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
#testimonials .controls button.prev::before {
  font-family: "lte-font";
  content: "";
  transform: scale(-1);
}
#testimonials .controls button.next::before {
  font-family: "lte-font";
  content: "";
  transform: none;
}
#testimonials .testimonial-slider {
  padding: 0 2rem;
}
@media screen and (max-width: 1023px) {
  #testimonials .testimonial-slider {
    padding: 0 1rem;
  }
}
#testimonials .testimonial-slider .slick-list {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  #testimonials .testimonial-slider .slick-list {
    overflow: hidden;
  }
}
#testimonials .testimonial-slider .slick-track {
  display: flex;
  align-items: center;
}
#testimonials .testimonial-slider .slick-slide:not(.slick-current) .slide-inner {
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #testimonials .testimonial-slider .slick-slide:not(.slick-current) .slide-inner {
    opacity: 1;
    transform: scale(1);
  }
}
#testimonials .testimonial-slider .slick-slide.slick-current .slide-inner {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}
#testimonials .testimonial-slide {
  outline: none;
}
#testimonials .slide-inner {
  background: white;
  padding: 6rem 8rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1439px) {
  #testimonials .slide-inner {
    padding: 5rem 6rem;
  }
}
@media screen and (max-width: 1023px) {
  #testimonials .slide-inner {
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  #testimonials .slide-inner {
    padding: 3.5rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  #testimonials .slide-inner {
    padding: 3rem 2.5rem;
  }
}
#testimonials .quote-left,
#testimonials .quote-right {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
}
#testimonials .quote-left {
  top: 2rem;
  left: 2rem;
}
#testimonials .quote-left img {
  width: 6rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #testimonials .quote-left img {
    width: 4rem;
  }
}
#testimonials .quote-right {
  bottom: 2rem;
  right: 2rem;
}
#testimonials .quote-right img {
  width: 6rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  #testimonials .quote-right img {
    width: 4rem;
  }
}
#testimonials .testimonial-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
#testimonials .author-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  background: #c0c0c0;
}
@media screen and (max-width: 767px) {
  #testimonials .author-image {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1.5rem;
  }
}
#testimonials .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#testimonials .author-info {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #testimonials .author-info {
    margin-bottom: 2rem;
  }
}
#testimonials .author-info h3 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 2.5em;
  font-weight: 800;
  color: #0d1a30;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  #testimonials .author-info h3 {
    font-size: 2.2em;
  }
}
@media screen and (max-width: 500px) {
  #testimonials .author-info h3 {
    font-size: 2em;
  }
}
#testimonials .author-info .function {
  font-size: 1.2em;
  color: #c42221;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  #testimonials .author-info .function {
    font-size: 1.1em;
  }
}
#testimonials .testimonial-text {
  max-width: 900px;
  margin: 0 auto;
}
#testimonials .testimonial-text .testimonial-content-text {
  font-size: 1.2em;
  line-height: 1.8;
  color: #222;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  #testimonials .testimonial-text .testimonial-content-text {
    font-size: 1.15em;
  }
}
@media screen and (max-width: 500px) {
  #testimonials .testimonial-text .testimonial-content-text {
    font-size: 1.1em;
    line-height: 1.7;
  }
}
#testimonials .testimonial-text .read-more {
  background: transparent;
  border: none;
  color: #c42221;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
  padding: 0;
}
@media screen and (max-width: 500px) {
  #testimonials .testimonial-text .read-more {
    font-size: 1.1em;
  }
}
#testimonials .testimonial-text .read-more:hover {
  color: #0d1a30;
}

.testimonial-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}
.testimonial-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-modal .modal-content {
  background: white;
  position: relative;
  padding: 6rem;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .testimonial-modal .modal-content {
    padding: 4rem 3rem;
    width: 95%;
  }
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-content {
    padding: 3rem 2rem;
  }
}
.testimonial-modal .modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #c42221;
  color: white;
  border: none;
  width: 4rem;
  height: 4rem;
  font-size: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2.5rem;
  }
}
.testimonial-modal .modal-close:hover {
  background: #0d1a30;
}
.testimonial-modal .modal-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-header {
    margin-bottom: 2rem;
  }
}
.testimonial-modal .modal-author-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
  background: #c0c0c0;
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-author-image {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1.5rem;
  }
}
.testimonial-modal .modal-author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-modal .modal-author-info h3 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 2.5em;
  font-weight: 800;
  color: #0d1a30;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-author-info h3 {
    font-size: 2.2em;
  }
}
.testimonial-modal .modal-author-info .function {
  font-size: 1.2em;
  color: #c42221;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-author-info .function {
    font-size: 1.1em;
  }
}
.testimonial-modal .modal-body {
  font-size: 1.2em;
  line-height: 1.8;
  color: #222;
}
@media screen and (max-width: 767px) {
  .testimonial-modal .modal-body {
    font-size: 1.15em;
  }
}
@media screen and (max-width: 500px) {
  .testimonial-modal .modal-body {
    font-size: 1.1em;
    line-height: 1.7;
  }
}

#news {
  padding: 7.5rem 0 10rem;
}
@media screen and (max-width: 1599px) {
  #news {
    padding: 5rem 0 7.5rem;
  }
}
@media screen and (max-width: 1439px) {
  #news {
    padding-bottom: 6.5rem;
  }
}
@media screen and (max-width: 1023px) {
  #news {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  #news {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 500px) {
  #news {
    padding: 3rem 0 4.5rem;
  }
}
#news h2,
#news h3,
#news h4 {
  text-transform: uppercase;
  color: #222;
}
#news h2 {
  color: #c42221;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  #news h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  #news h2 {
    font-size: 1.8rem;
  }
}
#news h3 {
  font-size: 5.6rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1439px) {
  #news h3 {
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 1279px) {
  #news h3 {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  #news h3 {
    font-size: 4.8rem;
    margin-bottom: 0.2em;
  }
}
@media screen and (max-width: 500px) {
  #news h3 {
    font-size: 4rem;
  }
}
#news article {
  display: flex;
  gap: 5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 1599px) {
  #news article {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  #news article {
    display: block;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 639px) {
  #news article {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 500px) {
  #news article {
    margin-bottom: 3.5rem;
  }
}
#news article:last-child {
  margin-bottom: 0;
}
#news article .img {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #news article .img {
    aspect-ratio: 3/2;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 639px) {
  #news article .img {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  #news article .img {
    margin-bottom: 2.5rem;
  }
}
#news article .img .tag {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 1.8rem;
  padding: 0.25em 0.75em;
  background: #c42221;
  text-transform: uppercase;
  color: white;
  font-weight: 800;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
}
#news article .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
#news article .text {
  flex: 1;
}
#news article time {
  font-size: 2.1rem;
  display: inline-block;
  text-transform: uppercase;
  color: #c42221;
  font-weight: 800;
  margin-bottom: 0.25em;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
}
@media screen and (max-width: 500px) {
  #news article time {
    font-size: 1.8rem;
  }
}
#news article h4 {
  font-size: 3.6rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1599px) {
  #news article h4 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1279px) {
  #news article h4 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1023px) {
  #news article h4 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 639px) {
  #news article h4 {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  #news article h4 {
    font-size: 2.8rem;
  }
}
#news article p {
  margin-bottom: 1.25em;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 1279px) {
  #news article p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  #news article p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 639px) {
  #news article p {
    font-size: 1.5rem;
  }
}
#news article p:first-of-type {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1279px) {
  #news article p:first-of-type {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1023px) {
  #news article p:first-of-type {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  #news article p:first-of-type {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 500px) {
  #news article p:first-of-type {
    font-size: 1.6rem;
  }
}
#news article p a {
  color: #c42221;
  text-decoration: underline;
}
#news article p:last-child {
  margin-bottom: 0;
}

#sponsor {
  background-image: url("/wp-content/uploads/2024/09/Background_Pattern_White.png");
  background-position: center center;
  background-repeat: repeat;
  background-size: 39% auto;
  text-align: center;
  padding: 7.5rem 0 10rem;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  #sponsor {
    padding: 5rem 0 7.5rem;
  }
}
@media screen and (max-width: 1439px) {
  #sponsor {
    padding-bottom: 6.5rem;
  }
}
@media screen and (max-width: 1023px) {
  #sponsor {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  #sponsor {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor {
    padding: 3rem 0 4.5rem;
  }
}
#sponsor h2 {
  font-size: 6rem;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 1599px) {
  #sponsor h2 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  #sponsor h2 {
    line-height: 1.1;
  }
}
@media screen and (max-width: 767px) {
  #sponsor h2 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 639px) {
  #sponsor h2 {
    font-size: 4.4rem;
    line-height: 1;
  }
}
@media screen and (max-width: 500px) {
  #sponsor h2 {
    font-size: 4rem;
  }
}
#sponsor p {
  font-size: 1.8rem;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 1599px) {
  #sponsor p {
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 1439px) {
  #sponsor p {
    margin-bottom: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  #sponsor p {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 639px) {
  #sponsor p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor p {
    margin-bottom: 1.5em;
  }
}
#sponsor .slider-wrapper {
  position: relative;
}
#sponsor .slider-wrapper .controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
  right: 15%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  #sponsor .slider-wrapper .controls {
    left: 6.5%;
    right: 6.5%;
  }
}
@media screen and (max-width: 767px) {
  #sponsor .slider-wrapper .controls {
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 639px) {
  #sponsor .slider-wrapper .controls {
    left: -2.5rem;
    right: -2.5rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .slider-wrapper .controls {
    left: -2rem;
    right: -2rem;
  }
}
#sponsor .slider-wrapper .controls button {
  cursor: pointer;
  width: 2em;
  aspect-ratio: 1/1;
  background: #c42221;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.4rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 639px) {
  #sponsor .slider-wrapper .controls button {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .slider-wrapper .controls button {
    font-size: 2rem;
    width: 1.5em;
  }
}
#sponsor .slider-wrapper .controls button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
#sponsor .slider-wrapper .controls button::before {
  font-family: "lte-font";
  content: "";
  transform: scale(-1);
}
#sponsor .slider-wrapper .controls button:last-child::before {
  content: "";
  transform: none;
}
#sponsor .sponsor-slider {
  margin: 0 -2.5rem;
}
@media screen and (max-width: 1439px) {
  #sponsor .sponsor-slider {
    margin: 0 -2rem;
  }
}
@media screen and (max-width: 1279px) {
  #sponsor .sponsor-slider {
    margin: 0;
    width: 65%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  #sponsor .sponsor-slider {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  #sponsor .sponsor-slider {
    width: 90%;
  }
}
@media screen and (max-width: 639px) {
  #sponsor .sponsor-slider {
    width: 100%;
  }
}
#sponsor .sponsor-slider .slick-track {
  display: flex;
  align-items: flex-end;
  overflow: visible;
}
@media screen and (max-width: 1279px) {
  #sponsor .sponsor-slider .slick-track {
    align-items: center;
  }
}
@media screen and (max-width: 639px) {
  #sponsor .sponsor-slider .slick-track {
    overflow: hidden;
  }
}
#sponsor .sponsor-slider .slick-list {
  overflow: visible;
}
@media screen and (max-width: 639px) {
  #sponsor .sponsor-slider .slick-list {
    overflow: hidden;
  }
}
#sponsor .sponsor-slider .sponsor-slide {
  padding: 0 2.5rem;
}
@media screen and (max-width: 1439px) {
  #sponsor .sponsor-slider .sponsor-slide {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1279px) {
  #sponsor .sponsor-slider .sponsor-slide {
    padding: 0;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner {
  background: #0d1a30;
  color: white;
  border-radius: 2.5rem;
  padding: 5rem 4rem;
  position: relative;
}
@media screen and (max-width: 1599px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner {
    padding: 3rem 3rem 3.5rem;
  }
}
@media screen and (max-width: 1279px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner {
    margin: 0 auto;
    width: 80%;
    padding: 3rem 4rem 3.5rem;
  }
}
@media screen and (max-width: 639px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner {
    width: 85%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner {
    width: 90%;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner > img.bg {
  position: absolute;
  opacity: 0.1;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner > * {
  position: relative;
  z-index: 2;
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner img.star {
  display: block;
  height: 10rem;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 1599px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner img.star {
    height: 8rem;
    margin-bottom: 0pt;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner img.star {
    height: 6rem;
    margin-bottom: 0.5rem;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner.light {
  background: #162c53;
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner::before {
  position: absolute;
  top: 3px;
  content: "";
  left: 3px;
  bottom: 3px;
  right: 3px;
  border: 2px solid white;
  border-radius: 2rem;
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner h3,
#sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: 4.2rem;
}
@media screen and (max-width: 1599px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner h3,
#sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 1439px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner h3,
#sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
    font-size: 3.6rem;
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner h3,
#sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
    font-size: 3.2rem;
    line-height: 1.1;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
  font-size: 1.8rem;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 1em;
  font-family: "Open Sans";
}
@media screen and (max-width: 1599px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner h4 {
    font-size: 1.4rem;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner p {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1599px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1439px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner p {
    font-size: 1.4rem;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner p:last-of-type {
  margin-bottom: 0;
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}
@media screen and (max-width: 1599px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner .links {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 1439px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner .links {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner .links {
    flex-direction: column;
    gap: 1rem;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner .links .btn {
  min-width: 10em;
}
@media screen and (max-width: 500px) {
  #sponsor .sponsor-slider .sponsor-slide .slide-inner .links .btn {
    order: 2;
    min-width: 0;
    width: 100%;
  }
}
#sponsor .sponsor-slider .sponsor-slide .slide-inner .links img {
  width: 7.5rem;
}

#partners {
  padding: 10rem 0;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  #partners {
    padding: 7.5rem 0;
  }
}
@media screen and (max-width: 1439px) {
  #partners {
    padding: 6.5rem 0;
  }
}
@media screen and (max-width: 1023px) {
  #partners {
    padding: 5rem 0 6rem;
  }
}
@media screen and (max-width: 639px) {
  #partners {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 500px) {
  #partners {
    padding: 3.5rem 0 4.5rem;
  }
}
#partners .title {
  position: relative;
}
#partners .title span {
  font-size: 20rem;
  color: #f5f5f5;
  position: absolute;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 800;
  top: 50%;
  left: -7.5rem;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  #partners .title span {
    font-size: 18rem;
  }
}
@media screen and (max-width: 1023px) {
  #partners .title span {
    font-size: 16rem;
  }
}
@media screen and (max-width: 500px) {
  #partners .title span {
    font-size: 13rem;
  }
}
#partners .title h2,
#partners .title h3 {
  text-transform: uppercase;
  color: #222;
  position: relative;
  z-index: 2;
}
#partners .title h2 {
  color: #c42221;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  #partners .title h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  #partners .title h2 {
    font-size: 1.8rem;
  }
}
#partners .title h3 {
  font-size: 5.6rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 1439px) {
  #partners .title h3 {
    margin-bottom: 0.75em;
  }
}
@media screen and (max-width: 1279px) {
  #partners .title h3 {
    font-size: 5.2rem;
    margin-bottom: 0.65em;
  }
}
@media screen and (max-width: 767px) {
  #partners .title h3 {
    font-size: 4.8rem;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 500px) {
  #partners .title h3 {
    font-size: 4rem;
    margin-bottom: 0.4em;
  }
}
#partners .logo-slider-wrapper {
  position: relative;
}
#partners .logo-slider-wrapper .controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
#partners .logo-slider-wrapper .controls button {
  cursor: pointer;
  width: 2em;
  aspect-ratio: 1/1;
  background: #c42221;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2.4rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 639px) {
  #partners .logo-slider-wrapper .controls button {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 500px) {
  #partners .logo-slider-wrapper .controls button {
    font-size: 2rem;
    width: 1.5em;
  }
}
#partners .logo-slider-wrapper .controls button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.4);
}
#partners .logo-slider-wrapper .controls button::before {
  font-family: "lte-font";
  content: "";
  transform: scale(-1);
}
#partners .logo-slider-wrapper .controls button:last-child::before {
  content: "";
  transform: none;
}
#partners .logo-slider-wrapper .logo-slider {
  padding: 0 5rem;
}
#partners .logo-slider-wrapper .logo-slider .logo-wrapper {
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15rem;
}
@media screen and (max-width: 1439px) {
  #partners .logo-slider-wrapper .logo-slider .logo-wrapper {
    height: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  #partners .logo-slider-wrapper .logo-slider .logo-wrapper {
    height: 10rem;
  }
}
@media screen and (max-width: 639px) {
  #partners .logo-slider-wrapper .logo-slider .logo-wrapper {
    height: 12.5rem;
  }
}
#partners .logo-slider-wrapper .logo-slider .logo-wrapper:hover img {
  transform: scale(1.1) rotate(-1deg);
}
#partners .logo-slider-wrapper .logo-slider .logo-wrapper img {
  display: block;
  max-width: 20rem;
  mix-blend-mode: multiply;
  max-height: 100%;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1439px) {
  #partners .logo-slider-wrapper .logo-slider .logo-wrapper img {
    max-width: 17.5rem;
  }
}
@media screen and (max-width: 767px) {
  #partners .logo-slider-wrapper .logo-slider .logo-wrapper img {
    max-width: 16rem;
  }
}
@media screen and (max-width: 639px) {
  #partners .logo-slider-wrapper .logo-slider .logo-wrapper img {
    max-width: 17.5rem;
  }
}
