<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography &gt; general layout + grid &gt; page layout &gt; components
1em = 16px
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: 100%;
  width: 100%;
}

input {
  border: none;
  outline: none;
}

button {
  border: none;
  outline: none;
}

.container {
}

.utility {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px;
}

.utility__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.flag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.flag__link {
  font-size: 1.6rem;
}

.media__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.media__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.media__item:last-child {
  border-left: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
}

@media only screen and (max-width: 37.5em) {
  .media__item:last-child {
    /* display: none; */
  }
}

.media__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: gray;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.media__link:hover {
  color: #ec1c24;
}

.media__link:hover .media__text {
  color: #ec1c24;
}

.media__text {
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: gray;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header {
  max-width: 1200px;
  margin: 2px auto;
  padding: 0 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 37.5em) {
  .header {
    padding: 0 2rem;
  }
}

.header__button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  background-color: inherit;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #353535;
}

.header__button:hover {
  color: #ec1c24;
}

.header__button:hover svg {
  color: #ec1c24;
}

@media only screen and (max-width: 37.5em) {
  .header__span {
    display: none;
  }
}

.header__menu {
  display: none;
}

@media only screen and (max-width: 56.25em) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 37.5em) {
  .header__menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.header__icon {
  color: #353535;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.header__icon:hover {
  color: #ec1c24;
}

.header__text {
  font-size: 1.2rem;
}

@media only screen and (max-width: 37.5em) {
  .header__text {
    display: none;
  }
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__search {
  justify-self: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  padding: 0 1.2rem;
}

.header__search:hover {
  border: 1px solid grey;
}

@media only screen and (max-width: 56.25em) {
  .header__search {
    display: none;
  }
}

.header__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__input {
  width: 30rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 0;
  font-size: 1.6rem;
  color: #353535;
}

.header__input::-webkit-input-placeholder {
  color: #cacaca;
}

.header__input:-ms-input-placeholder {
  color: #cacaca;
}

.header__input::-ms-input-placeholder {
  color: #cacaca;
}

.header__input::placeholder {
  color: #cacaca;
}

.header__logo {
  -ms-grid-column-align: center;
      justify-self: center;
  width: 112px;
  height: 112px;
}

.header__aside {
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

@media only screen and (max-width: 37.5em) {
  .header__aside {
    display: none;
  }
}

.header__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #353535;
  font-size: 1rem;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header__link:hover {
  color: #ec1c24;
}

.header__badge {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  top: -6px;
  left: 12px;
  width: 14px;
  height: 14px;
  background-color: #ec1c24;
}

.navigation {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  padding: 1.4rem 0;
}

@media only screen and (max-width: 56.25em) {
  .navigation {
    display: none;
  }
}

.navigation__menu {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.navigation__link {
  position: relative;
  font-size: 1.4rem;
  color: #353535;
  text-transform: uppercase;
  padding: 4px 0;
}

.navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: transparent;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.navigation__link:hover::after {
  width: 100%;
  background: #ec1c24;
}

.navigation--mobile {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation--mobile__background {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(0, 0, 0, 0.4);
}

.navigation--mobile__menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  overflow: auto;
  z-index: 10;
}

.navigation--mobile__label {
  cursor: pointer;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f7f7;
  color: #353535;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #ec1c24;
}

.navigation--mobile__label:hover {
  color: #ec1c24;
}

.navigation--mobile__search {
  border-bottom: 1px solid #e7e7e7;
  -webkit-box-shadow: 0px -1px 9px rgba(0, 0, 0, 0.2);
          box-shadow: 0px -1px 9px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.navigation--mobile__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.navigation--mobile__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 3rem 0;
  font-size: 1.6rem;
  color: #353535;
}

.navigation--mobile__input::-webkit-input-placeholder {
  color: #cacaca;
}

.navigation--mobile__input:-ms-input-placeholder {
  color: #cacaca;
}

.navigation--mobile__input::-ms-input-placeholder {
  color: #cacaca;
}

.navigation--mobile__input::placeholder {
  color: #cacaca;
}

.navigation--mobile__icon {
  height: 21px;
  width: 21px;
  color: grey;
}

.navigation--mobile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2rem;
  border-bottom: 1px solid #e7e7e7;
}

.navigation--mobile__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 2rem 0;
  color: #353535;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.navigation--mobile__link:hover {
  color: #ec1c24;
}

.hidden {
  display: none;
}
/*# sourceMappingURL=style.css.map */
</pre></body></html>