/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/base/_base.sass ***!
  \*******************************************************************************************************************/
:root {
  font-size: 16px;
  --ff1: Montserrat, Helvetica;
  --bp1: 80rem;
  --bp2: 64rem;
  --bp3: 48rem;
  --bp4: 36rem;
  --color1: #000000;
  --color2: #ffffff;
  --color3: #E3232A;
  --color4: #8D0000;
  --color5: rgb(231, 231, 231);
  --color6: #0be60b;
  --header-background-color: rgba(255, 255, 255, 0.9);
  --btn-drop-shadow: rgba(0, 0, 0, 0.2);
  --fs-small: 0.8rem;
  --fs-regular: 1rem;
  --fs-mid: 1.27rem;
  --fs-large: 1.62rem;
  --fs-xl: 2rem;
  --fs-xxl: 2.62rem;
  --fs-xxxl: 4rem;
}

body,
html {
  padding: 0;
  margin: 0;
}

html {
  background-color: var(--color2);
}

h1, h2, h3, h4, h5, h6, p, a, span, input, select, label, i, button, code, textarea, strong, b, legend, cite, code, li, q {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-stroke: 0.45px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media all and (min-width: 64rem) {
  html {
    padding-top: 76.75px;
  }
}
@media all and (max-width: 64rem) {
  html {
    padding-top: 58px;
  }
}
/*!***************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_header.sass ***!
  \***************************************************************************************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 500;
  background-color: var(--header-background-color);
}
.header__container {
  margin: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--bp1);
}
.header__logo {
  display: block;
}
.header__logo:focus {
  outline: 1px solid var(--color3);
}
.header__logo-link {
  text-decoration: none;
}

.social {
  margin: auto 1rem;
  display: flex;
  align-items: center;
}
.social__icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: border-box;
  margin: auto 0.3rem;
}

.badge {
  background-color: var(--color3);
}
.badge__container {
  text-decoration: none;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge__text {
  color: var(--color2);
  font-family: var(--ff1);
  font-size: var(--fs-regular);
  font-weight: 400;
  margin: 0;
}
.badge__logo {
  display: block;
  margin: auto 1vw;
  width: auto;
}
.badge__link {
  color: var(--color2);
  text-decoration: none;
  border: none;
  background-color: transparent;
  appearance: none;
  font-family: var(--ff1);
  font-weight: 400;
  font-size: var(--fs-regular);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 2vw;
}

@media all and (min-width: 64rem) {
  .nav-close,
  .nav-show {
    display: none;
  }
  .header__buttons {
    display: flex;
  }
  .header__right-container {
    width: max-content;
    display: flex;
    align-items: center;
  }
  .header__container {
    display: flex;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    width: 8rem;
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav__element {
    text-decoration: none;
    cursor: pointer;
    color: var(--color1);
    font-weight: 400;
    font-size: var(--fs-regular);
    font-family: var(--ff1);
    display: block;
    padding: 0.2rem 1rem;
    margin: 0.2rem;
  }
  .badge__logo {
    height: 1.5vw;
  }
  .badge__container {
    width: 80%;
    padding: 0.5vw 0;
  }
  .badge__container svg {
    width: 1.5vw;
    height: auto;
    margin-left: 0.5vw;
  }
}
@media all and (max-width: 64rem) {
  .nav-show {
    border: none;
    cursor: pointer;
    appearance: none;
    background-color: transparent;
    color: var(--color1);
    padding: 0;
    position: absolute;
    top: 0.1rem;
    right: 0.5rem;
  }
  .nav-close {
    appearance: none;
    display: block;
    border: none;
    padding: none;
    background-color: transparent;
    color: var(--color2);
    margin: auto;
    cursor: pointer;
  }
  .header {
    z-index: 100;
  }
  .header__buttons {
    width: 10rem;
    margin: auto;
  }
  .header__container {
    padding: 0.5rem 1rem;
  }
  .header__right-container {
    box-shadow: -0.5rem 0 0.5rem rgba(0, 0, 0, 0.2);
    display: none;
    align-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    padding: 1rem;
    box-sizing: border-box;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 15rem;
    background-color: var(--color3);
    height: 100vh;
  }
  .header__right-container--active {
    display: flex;
  }
  .header__right-container .btn {
    margin-top: 1rem;
    color: var(--color3);
    background-color: var(--color2);
  }
  .header__right-container .btn-icon {
    filter: invert(1);
  }
  .header__logo {
    width: 7.5rem;
    margin: auto;
  }
  .nav {
    width: 100%;
  }
  .nav__element {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    text-align: center;
    color: var(--color2);
    font-weight: 500;
    font-size: var(--fs-mid);
    font-family: var(--ff1);
    text-decoration: none;
  }
  .nav__element:not(:last-child) {
    border-bottom: 1px solid var(--color5);
  }
  .social__icon {
    filter: invert(1);
  }
  .badge__link {
    display: none;
  }
  .badge__logo {
    height: 6vw;
  }
  .badge__container {
    width: 90%;
    padding: 2vw 0;
  }
}
/*!***************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/components/_footer.sass ***!
  \***************************************************************************************************************************/
.wa-floating {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-floating .btn-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  background-color: var(--color1);
}
.footer__container {
  width: 100%;
  max-width: var(--bp2);
  margin: auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__logo {
  display: block;
  width: 6rem;
  height: auto;
}
.footer__networks {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__network {
  color: var(--color2);
  text-decoration: none;
  margin: auto 0.5rem;
  display: block;
}
.footer__links {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__text {
  color: var(--color2);
  margin: auto 0.5rem;
  display: block;
  font-size: var(--fs-small);
  font-weight: 400;
  font-family: var(--ff1);
}
.footer__text--link {
  text-decoration: none;
  color: var(--color2);
}

@media all and (max-width: 64rem) {
  .footer__container {
    max-width: var(--bp4);
  }
  .footer__links {
    flex-wrap: wrap;
  }
  .footer__text {
    width: max-content;
    margin: 0.5rem;
  }
}
/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/sass/objects/_btns.sass ***!
  \**********************************************************************************************************************/
.btn {
  appearance: none;
  cursor: pointer;
}
.btn__default {
  text-decoration: none;
  border: none;
  font-weight: 700;
  font-family: var(--ff1);
}
.btn__default--red {
  background-color: var(--color3);
  color: var(--color2);
}
.btn__default--white {
  background-color: var(--color2);
  color: var(--color1);
}
.btn__outlined {
  text-decoration: none;
  font-weight: 400;
  font-family: var(--ff1);
}
.btn__outlined--red {
  background-color: transparent;
  border: 1px solid var(--color3);
  color: var(--color3);
}
.btn__outlined--red:hover {
  background-color: var(--color3);
  color: var(--color2);
}
.btn__outlined--red:hover .btn-icon {
  filter: saturate(0) invert(1) brightness(1);
}
.btn__outlined--white {
  background-color: transparent;
  color: var(--color2);
  border: 1px solid var(--color2);
}
.btn__outlined--white:hover {
  background-color: var(--color2);
  color: var(--color1);
}
.btn__outlined--white:hover .btn-icon {
  filter: invert(1);
}
.btn--small {
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
}
.btn--small .btn-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.btn--regular {
  border-radius: 1.2rem;
  padding: 0.7rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-regular);
}
.btn--regular .btn-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.7rem;
}
.btn--big {
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-mid);
}
.btn--big .btn-icon {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.btn svg {
  margin-right: 0.5rem;
  display: block;
}

.btn-icon {
  display: flex;
  object-fit: contain;
}
