@font-face {
  font-display: swap;
  font-family: "Noto";
  src: url("fonts/NotoSans-Bold.woff2") format("woff2"), url("fonts/NotoSans-Bold.ttf") format("truetype");
}
:root {
  --typography: "Helvetica";
  --color-white: white;
  --color-black: black;
  --color-primary: #9F2241;
  --color-secondary: #BC955C;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--typography);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

*:focus {
  outline: none;
}

html,
body {
  color: var(--color-black);
  font-size: 16px;
  line-height: 1;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--color-white);
}

a {
  color: currentColor;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
img.full {
  -o-object-fit: cover;
     object-fit: cover;
}
img.w-100 {
  height: auto;
}

input, button, select, textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  display: block;
  float: none;
  color: var(--color-black);
  background: none;
}

.full {
  height: 100%;
}

.full,
.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.px-content,
.pr-content {
  padding-right: 5%;
}

.px-content,
.pl-content {
  padding-left: 5%;
}

.m-auto,
.mx-auto,
.ml-auto,
.btns,
[class*=cnt] {
  margin-left: auto;
}

.m-auto,
.mx-auto,
.mr-auto,
.btns,
[class*=cnt] {
  margin-right: auto;
}

.m-auto,
.my-auto,
.mt-auto,
[class*=cnt] {
  margin-top: auto;
}

.m-auto,
.my-auto,
.mb-auto,
[class*=cnt] {
  margin-bottom: auto;
}

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

.d-block {
  display: block;
}

.flex, .btns {
  display: flex;
  align-items: center;
}

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

.flex-start {
  align-items: flex-start;
}

.gap-16 {
  gap: 1rem;
}

.d-none,
.d-sm-block,
.d-md-block {
  display: none;
}

.relative {
  position: relative;
}

[class*=cnt] {
  position: absolute;
}

.cnt,
.cntV {
  top: 0;
  bottom: 0;
}

.cnt,
.cntH {
  left: 0;
  right: 0;
}

.txt-center {
  text-align: center;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  color: var(--color-black);
  line-height: 1.2em;
  text-transform: uppercase;
}

p, li, label {
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.5em;
}

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

.clr-black {
  color: var(--color-black);
}

.clr-white {
  color: var(--color-white);
}

.clr-primary {
  color: var(--color-primary);
}

.btns {
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 8px 16px;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 transparent;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1rem;
  font-family: "Noto";
  text-align: center;
  justify-content: center;
  transition-duration: 0.35s;
  transition-property: background-color, color, border-color;
  background-color: var(--color-white);
}
.btns:disabled {
  pointer-events: none;
}
@media (hover: hover) {
  .btns:hover {
    color: var(--color-white);
    border-color: var(--color-secondary) !important;
    background-color: var(--color-secondary) !important;
  }
}

header {
  background-color: var(--color-primary);
}
header .nav {
  max-width: 1200px;
}
header .nav .logo {
  width: clamp(50px, 15vw, 100px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

footer {
  padding: 50px 0;
  margin-top: 25px;
  background-color: var(--color-primary);
}
@media (hover: hover) {
  footer a:hover {
    text-decoration: underline;
  }
}

.mute {
  width: 35px;
  padding: 5px;
  border-radius: 50%;
  position: absolute;
  right: 5%;
  bottom: 5%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: var(--color-white);
}
.mute::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  margin: auto;
  position: absolute;
  inset: 0;
  transition: 0.25s transform;
  transform: rotate(-45deg) scale(0);
  background-color: var(--color-black);
}
.mute.muted::after {
  transform: rotate(-45deg) scale(1);
}
.mute img {
  transition: 0.2s transform;
}

@media screen and (max-width: 768px) {
  .d-md-block {
    display: block;
  }
}
