.header__logo {
  background-image: url(../images/headerbg.jpg);
  background-position: center;
  background-color: #ed2625;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}
.header__logo > a > img {
  height: 150px;
}
@media (max-width: 768px) {
  .header__logo {
    height: 120px;
  }
  .header__logo > a > img {
    height: 100px;
  }
}
.header__nav {
  z-index: 99;
  position: sticky !important;
  top: 0px;
  height: 55px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.header__nav__container {
  position: relative;
  max-width: 1000px;
  padding: 0 15px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
.header__nav__container > a {
  white-space: nowrap;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.header__nav__container__buttons {
  background-color: rgba(255, 255, 255, 0.8509803922);
  position: absolute;
  right: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 15px;
}
.header__nav__container__buttons > a {
  text-decoration: none;
}
.header__nav__container__buttons > a > svg {
  height: 20px !important;
  width: 20px !important;
  margin: 0 !important;
}
.header__nav__container__buttons > a:last-child {
  transform: translateY(-2px);
}

.footer {
  background-color: #ed2625;
  padding: 20px 0;
}
.footer__container {
  max-width: 1000px;
  padding: 0 10px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 950px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__container span, .footer__container a {
  font-size: 16px;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 950px) {
  .footer__container span, .footer__container a {
    text-transform: uppercase;
  }
}
.footer__container__links {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 950px) {
  .footer__container__links {
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    gap: 5px;
  }
}
.footer__container__links > a {
  padding: 15px 30px;
  text-align: center;
}
@media (max-width: 950px) {
  .footer__container__links > a {
    flex-direction: column;
    width: 100%;
  }
}
.footer__container__links > a:not(:last-child) {
  background: #f7503f;
}
.footer__container__links > a:last-child {
  background-color: #ce1501;
}

.title h1 {
  font-size: 1.8rem !important;
  margin-top: 0;
}
.title h2 {
  font-size: 1.3rem !important;
  font-weight: 500;
}/*# sourceMappingURL=header.css.map */