@import url("https://use.typekit.net/mfj1bbn.css");
:root {
  --qahwcag_base-font-size: 1;
  --borderColor: #222;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  border: 0;
  font: inherit;
  font-family: "new-hero", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  background: #ccc;
}

::-webkit-scrollbar-thumb {
  background: #777;
  border-radius: 0.8rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
  font-size: 62.5%;
}

body {
  font: 400 clamp(1.6rem * var(--qahwcag_base-font-size, 1), 1.5264rem + 0.23vw * var(--qahwcag_base-font-size, 1), 1.8rem * var(--qahwcag_base-font-size, 1))/1.4 "new-hero";
  color: #011A01;
  overflow-x: hidden;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

strong {
  font-weight: 700;
}

.oh {
  overflow: hidden;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.text-bold {
  font-weight: 700;
}
.text-light {
  font-weight: 300;
}
.text-upper {
  text-transform: uppercase;
}
.text-underline {
  text-decoration: underline;
}
.text-nw {
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
}
.text-line-height-1 {
  line-height: 1;
}
.text-line-height-1-1 {
  line-height: 1.1;
}
.text-line-height-1-2 {
  line-height: 1.2;
}
.text-white {
  color: #fff;
}
.text-primary {
  color: #A1CD3A;
}
.text-secondary {
  color: #D6007E;
}
.text-xsmall {
  font-size: clamp(1rem * var(--qahwcag_base-font-size, 1), 0.9264rem + 0.23vw * var(--qahwcag_base-font-size, 1), 1.2rem * var(--qahwcag_base-font-size, 1));
}
.text-small {
  font-size: clamp(1.2rem * var(--qahwcag_base-font-size, 1), 1.1264rem + 0.23vw * var(--qahwcag_base-font-size, 1), 1.4rem * var(--qahwcag_base-font-size, 1));
}
.text-normal {
  font-size: clamp(1.4rem * var(--qahwcag_base-font-size, 1), 1.3264rem + 0.23vw * var(--qahwcag_base-font-size, 1), 1.6rem * var(--qahwcag_base-font-size, 1));
}
.text-semibig {
  font-size: clamp(1.6rem * var(--qahwcag_base-font-size, 1), 1.456rem + 0.45vw * var(--qahwcag_base-font-size, 1), 2rem * var(--qahwcag_base-font-size, 1));
}
.text-big {
  font-size: clamp(1.8rem * var(--qahwcag_base-font-size, 1), 1.5824rem + 0.68vw * var(--qahwcag_base-font-size, 1), 2.4rem * var(--qahwcag_base-font-size, 1));
}
.text-large {
  font-size: clamp(2.2rem * var(--qahwcag_base-font-size, 1), 1.6912rem + 1.59vw * var(--qahwcag_base-font-size, 1), 3.6rem * var(--qahwcag_base-font-size, 1));
}

a,
button {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: none;
  transition: all 0.3s;
}
a:focus,
button:focus {
  outline: 2px solid rgba(161, 205, 58, 0.2);
  transition: none;
}

sup,
sub,
small {
  font-size: 70%;
}

video {
  display: block;
  width: 100%;
  background: #000;
}

.video-portrait {
  width: auto;
  max-height: 85svh;
}

p {
  margin: 1rem 0;
  text-wrap: pretty;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
  text-decoration-color: #555;
}

.target {
  white-space: nowrap;
}
.target:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.1rem 0 0.4rem;
  background: url("../img/ico/external-link.svg") center no-repeat;
  background-size: contain;
  width: 1.1rem;
  height: 1.1rem;
  opacity: 0.8;
}
.target-white:after {
  background-image: url("../img/ico/external-link-white.svg");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-fit {
  object-fit: cover;
  width: 100%;
}

picture {
  display: block;
}

.bg {
  background: no-repeat;
}
.bg-center {
  background-position: center;
}
.bg-cover {
  background-size: cover;
}
.bg-top {
  background-position: top;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-white {
  background-color: #fff;
}
.bg-primary {
  background-color: #A1CD3A;
}
.bg-secondary {
  background-color: #D6007E;
}
.bg-gradient {
  background: linear-gradient(135deg, #010d01 0%, #027000 70%);
}

.radius {
  border-radius: 1.5rem;
}
.radius-big {
  border-radius: 3rem;
}
.radius-full {
  border-radius: 50%;
}

.shadow {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.list {
  margin-left: 0;
  list-style: none;
}
.list-dotted {
  list-style-type: disc;
  margin-left: 1.8em;
}
.list-dotted-primary > li::marker {
  color: #A1CD3A;
  font-size: 1.2em;
}
.list-dotted-secondary > li::marker {
  color: #D6007E;
  font-size: 1.2em;
}
.list-numeric {
  margin-left: 0.8em;
  list-style-type: decimal;
}