/* Nav Toggler */
.nav-toggler {
  background-color: var(--color--grey);
  border: none;
  cursor: pointer;
  display: flex;
  height: 42px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: all .3s ease-in-out;
  width: 42px
}
.nav-toggler span {
  background-color: var(--color--black);
  display: block;
  height: 2px;
  left: 13px;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: .3s ease-in-out;
  width: 16px
}
.nav-toggler span:first-child {
  top: 15px
}
.nav-toggler span:nth-child(2) {
  top: 20px
}
.nav-toggler span:nth-child(3) {
  top: 25px
}
.state--nav-open .nav-toggler span:first-child {
  top: 20px;
  transform: rotate(135deg)
}
.state--nav-open .nav-toggler span:nth-child(2) {
  left: -50px;
  opacity: 0
}
.state--nav-open .nav-toggler span:nth-child(3) {
  top: 20px;
  transform: rotate(-135deg)
}

@media (min-width: 1024px) {
  .nav-toggler {
    display: none;
  }
}





/* Logo */
.logo {
  display: block;
  width: 150px;
  height: 27px;
}
.logo-image {
  display: block;
  width: 150px;
  height: 27px;
}
.logo.logo--big,
.logo.logo--big .logo-image {
  width: 240px;
  height: 44px;
}

@media (min-width: 1024px) {
  .logo {
    width: 165px;
    height: 30px;
  }
  .logo-image {
    width: 165px;
    height: 30px;
  }
  .logo.logo--big,
  .logo.logo--big .logo-image {
    width: 280px;
    height: 51px;
  }
}

@media (min-width: 1250px) {
  .logo {
    width: 193px;
    height: 35px;
  }
  .logo-image {
    width: 193px;
    height: 35px;
  }
  .logo.logo--big,
  .logo.logo--big .logo-image {
    width: 320px;
    height: 58px;
  }
}

@media (min-width: 1600px) {
  .logo.logo--big,
  .logo.logo--big .logo-image {
    width: 360px;
    height: 65px;
  }
}





/* Title label */
.title-label {
  position: relative;
  color: var(--color--red);
  line-height: 1.4;
  padding-left: 55px;
}
.title-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  left: 0;
  width: 45px;
  height: 2px;
  background-color: var(--color--red);
}

.title-label-center {
  display: inline-block;
  position: relative;
  padding-left: 55px;
  padding-right: 55px;
  color: var(--color--red);
  line-height: 1.4;
}
.title-label-center::before {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  left: 0;
  width: 45px;
  height: 2px;
  background-color: var(--color--red);
}
.title-label-center::after {
  content: "";
  display: block;
  position: absolute;
  top: 49%;
  right: 0;
  width: 45px;
  height: 2px;
  background-color: var(--color--red);
}

@media only screen and (min-width: 1250px) {
  .title-label {
    padding-left: 68px;
  }
  .title-label::before {
    width: 55px;
  }
  .title-label.title-label--big {
    padding-left: 75px;
  }
  .title-label.title-label--big::before {
    width: 62px;
  }

  .title-label-center {
    padding-left: 68px;
    padding-right: 68px;
  }
  .title-label-center::before,
  .title-label-center::after {
    width: 55px;
  }
}





/* Card */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-weight: 400;
}
.card--bg {
  position: relative;
}
.card--bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card--bg-red {
  background-color: rgba(251, 13, 43, 0.85);
}
.card--bg-black {
  background-color: rgba(24, 24, 24, 0.85);
}
.card--bg-grey {
  background-color: rgba(160, 160, 160, 0.85);
}
.card__header {
  overflow: hidden;
}
.card__main {
  flex: 1;
}
.card:hover .fake-link span::after {
  transform-origin: right;
  transform: scaleX(0);
}
.card img {
  transition: 500ms ease all;
}
.card:hover img {
  transform: scale(1.1) rotate(-3deg);
}





/* Price */
.price {
  display: flex;
}
.price__currency {
  font-weight: 700;
  align-self: flex-start;
  margin-right: 5px;
}
.price__amount {
  font-size: 3.4em;
  line-height: 1;
  font-weight: 700;
}
.price--small .price__amount {
  font-size: 2.4em;
}
.price__text {
  margin-left: 5px;
}

@media only screen and (min-width: 1250px) {
  .price__amount {
    font-size: 4.6em;
  }
  .price--small .price__amount {
    font-size: 3.4em;
  }
}





/* Icon String */
.icon-string {
  position: relative;
  line-height: 1.4;
  padding-left: 28px;
}
.icon-string.icon-string--s {
  padding-left: 26px;
}
.icon-string svg {
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  fill: var(--color--red);
}
.icon-string.icon-string--s svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 1250px) {
  .icon-string {
    padding-left: 33px;
  }
  .icon-string.icon-string--s {
    padding-left: 29px;
  }
  .icon-string svg {
    top: 0px;
    width: 24px;
    height: 24px;
  }
  .icon-string.icon-string--s svg {
    width: 20px;
    height: 20px;
  }
}





/* Icon Widget */
.icon-widget {
  position: relative;
  line-height: 1.4;
  padding-left: 46px;
}
.icon-widget svg {
  position: absolute;
  top: 1px;
  left: 0;
  width: 42px;
  height: 42px;
  fill: var(--color--red);
}

@media (min-width: 1024px) {
  .icon-widget {
    padding-left: 50px;
  }
  .icon-widget svg {
    width: 45px;
    height: 45px;
  }
}

@media (min-width: 1250px) {
  .icon-widget {
    padding-left: 53px;
  }
  .icon-widget svg {
    width: 48px;
    height: 48px;
  }
}





/* Button */
.button {
  line-height: 1.2;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 15px 26px;
  background-color: var(--color--red);
  box-shadow: 0 0 0 rgba(0,0,0,.2);
  text-align: center;
  border: none;
  color: var(--color--white);
  font-weight: 500;
  transition: all .3s ease-in-out;
}
.button::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right,transparent,#FFF);
  position: absolute;
  z-index: 1;
  transform: skewX(-15deg) translateX(-120%);
  transition: none;
  opacity: .5;
}
.button:focus {
  outline: none;
}
.button:hover {
  filter: brightness(1.15);
  box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.button:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}
.button span {
  color: var(--color--white);
}

.button-simple {
  line-height: 1.2;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 15px 26px;
}
.button-simple:hover {
  color: var(--color--red);
}
.button-simple span {
  display: block;
  position: relative;
}
.button-simple span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--color--black);
  transition: 300ms ease transform,300ms ease background;
  transform-origin: left;
  transform: scaleX(1);
}
.button-simple:hover span::after {
  transform-origin: right;
  transform: scaleX(0);
  background: var(--color--red);
}

@media (min-width: 1250px) {
  .button,
  .button-simple {
    padding: 17px 32px;
  }
}





/* Fake Link */
.fake-link {
  line-height: 1.2;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0 0 6px;
  font-weight: 500;
}
.fake-link.fake-link--white span {
  color: var(--color--white);
}
.fake-link span {
  display: block;
  position: relative;
  color: var(--color--black);
}
.fake-link span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--color--black);
  transition: 300ms ease transform,300ms ease background;
  transform-origin: left;
  transform: scaleX(1);
}
.fake-link.fake-link--white span::after {
  background: var(--color--white);
}





/* Link */
.link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
.link span {
  display: block;
  position: relative;
  color: var(--color--black);
  transition: all .3s ease;
}
.link:hover span,
.link.active span {
  color: var(--color--red);
}
.link span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  background: var(--color--black);
  transition: 300ms ease transform,300ms ease background;
  transform-origin: right;
  transform: scaleX(0);
}
.link:hover span::after,
.link.active span::after {
  transform-origin: left;
  transform: scaleX(1);
  background: var(--color--red);
}





/* Nav Link */
@media (max-width: 1023px) {
  .nav-link {
    font-size: 1.33em;
  }
}

@media (min-width: 1024px) {
  .nav-link {
    font-size: 0.85em;
  }
}

@media (min-width: 1100px) {
  .nav-link {
    font-size: 0.95em;
  }
}

@media (min-width: 1250px) {
  .nav-link {
    font-size: 1em;
  }
}





/* Page Header */
.page-header-wrapper {
  margin-bottom: 50px;
}
.page-header {
  position: relative;
  margin-left: -26px;
  margin-right: -26px;
  padding: 50px 26px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 24, 24, 0.65);
}
.page-header--bg-01 {
  background-image: url(/assets/images/intro-01--mobile.webp);
}
.page-header--bg-02 {
  background-image: url(/assets/images/intro-02--mobile.webp);
}
.page-header--bg-03 {
  background-image: url(/assets/images/intro-03--mobile.webp);
}
.page-header--bg-04 {
  background-image: url(/assets/images/intro-04--mobile.webp);
}
.page-header--bg-05 {
  background-image: url(/assets/images/intro-05--mobile.webp);
}

@media (min-width: 450px) {
  .page-header {
    margin-left: 0;
    margin-right: 0;
  }
  .page-header--bg-01 {
    background-image: url(/assets/images/intro-01--tablet.webp);
  }
  .page-header--bg-02 {
    background-image: url(/assets/images/intro-02--tablet.webp);
  }
  .page-header--bg-03 {
    background-image: url(/assets/images/intro-03--tablet.webp);
  }
  .page-header--bg-04 {
    background-image: url(/assets/images/intro-04--tablet.webp);
  }
  .page-header--bg-05 {
    background-image: url(/assets/images/intro-05--tablet.webp);
  }
}

@media (min-width: 825px) {
  .page-header-wrapper {
    margin-bottom: 60px;
  }
  .page-header {
    padding: 60px 38px;
  }
  .page-header--bg-01 {
    background-image: url(/assets/images/intro-01--laptop.webp);
  }
  .page-header--bg-02 {
    background-image: url(/assets/images/intro-02--laptop.webp);
  }
  .page-header--bg-03 {
    background-image: url(/assets/images/intro-03--laptop.webp);
  }
  .page-header--bg-04 {
    background-image: url(/assets/images/intro-04--laptop.webp);
  }
  .page-header--bg-05 {
    background-image: url(/assets/images/intro-05--laptop.webp);
  }
}

@media (min-width: 1250px) {
  .page-header-wrapper {
    margin-bottom: 80px;
  }
  .page-header {
    padding: 80px 70px;
  }
  .page-header--bg-01 {
    background-image: url(/assets/images/intro-01--desktop.webp);
  }
  .page-header--bg-02 {
    background-image: url(/assets/images/intro-02--desktop.webp);
  }
  .page-header--bg-03 {
    background-image: url(/assets/images/intro-03--desktop.webp);
  }
  .page-header--bg-04 {
    background-image: url(/assets/images/intro-04--desktop.webp);
  }
  .page-header--bg-05 {
    background-image: url(/assets/images/intro-05--desktop.webp);
  }
}

@media (min-width: 1600px) {
  .page-header-wrapper {
    margin-bottom: 90px;
  }
  .page-header {
    padding: 90px 6.818%;
  }
}





/* Centered Info */
.centered-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.centered-info svg {
  width: 52px;
  height: 52px;
  fill: var(--color--red);
}

@media (min-width: 1250px) {
  .centered-info svg {
    width: 64px;
    height: 64px;
  }
  .centered-info {
    max-width: 500px;
  }
}





/* List Simple */
.list-simple li {
  margin-bottom: 10px;
}
.list-simple li:last-child {
  margin-bottom: 0;
}






/* Inline List */
.inline-list {
  display: inline-flex;
}
.inline-list li {
  line-height: 1;
  margin-right: 7px;
}
.inline-list li:last-child {
  margin-right: 0;
}






/* List */
.list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: var(--color--red);
}

@media (min-width: 1024px) {
  .list li {
    padding-left: 28px;
  }
  .list li::before {
    width: 17px;
  }
}

@media (min-width: 1250px) {
  .list li {
    padding-left: 30px;
  }
  .list li::before {
    width: 19px;
    top: 11px;
  }
}





/* Icon Link */
.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color--red);
  transition: all .3s ease-in;
}
.icon-link:hover {
  background-color: var(--color--black);
}
.icon-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color--white);
  transition: fill .3s ease-in-out;
}
.icon-link:hover svg {
  fill: var(--color--white);
}