::selection {
  background-color: var(--color-accent);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  --color-primary: #0045E9;
  --color-primary-m: rgba(0,69,233,.55);
  --color-accent: #D63624;
  --color-accent-m: rgba(214,54,36,.6);
  --color-secondary: #0029AC;
  --color-secondary-m: rgba(0,41,249,.55);
  --color-gold: #E2BA68;
  --color-gold-m: rgba(226,186,104,.65);
  --color-white: #FFFFFF;
  --color-white-m: rgba(236,241,254,.8);
  --color-black: #000;
  --color-black-m: rgba(0,0,0,.7);
}

html[data-theme=dark] {
  --color-primary: rgb(36, 38, 43);
  --color-primary-m: rgba(36, 38, 43, 0.65);
  --color-accent: #D63624;
  --color-accent-m: rgba(214,54,36,.6);
  --color-secondary: #0045E9;
  --color-secondary-m: rgba(13,29,90,.55);
  --color-gold: #BB881D;
  --color-gold-m: rgba(187, 136, 29, 0.65);
  --color-white: #ECF1FE;
  --color-white-m: rgba(236,241,254,.5);
  --color-black: #000;
  --color-black-m: rgba(0,0,0,.7);
}

:root {
  font-size: 105%;
}

body {
  font-family: "Palanquin", sans-serif;
  line-height: 2;
  background-color: var(--color-black);
}

.container {
  display: grid;
  grid-template-columns: [container-start] 1fr [center-start] repeat(6, [col-start] minmax(min-content, 16.66667rem) [col-end]) [center-end] 1fr [container-end];
}

li {
  list-style: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 400;
  letter-spacing: 0.2rem;
  font-size: calc(0.7rem + 0.4vw);
}

i {
  color: var(--color-secondary);
  font-size: calc(1.5rem + 2vw);
}

.header {
  grid-column: container-start/container-end;
}
.header.open .header__menu--line {
  background-color: transparent;
}
.header.open .header__menu--line::before {
  transform: rotate(45deg);
}
.header.open .header__menu--line::after {
  transform: rotate(-45deg);
}
.header.open .header__menu--line::before, .header.open .header__menu--line::after {
  top: 0;
}
.header__overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--color-secondary);
  position: fixed;
  opacity: 0;
  display: none;
  z-index: 10;
}
.header__nav {
  width: 100%;
  height: 4.5rem;
  line-height: 4.5rem;
  display: flex;
  justify-content: space-evenly;
  background-color: var(--color-primary);
  text-transform: uppercase;
  overflow: hidden;
}
.header__nav--logo {
  padding: 0.8rem;
}
.header__nav--logo img {
  width: 131px;
  height: 49px;
}
.header__nav--links {
  display: flex;
  font-family: "Asul", sans-serif;
}
.header__nav--links__item a:link,
.header__nav--links__item a:visited {
  margin-right: 1vw;
  padding: 0 0.5rem;
  display: block;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.header__nav--links__item a:hover,
.header__nav--links__item a:active {
  transform: rotateX(90deg);
}
.header__nav--links__item a:link::after,
.header__nav--links__item a:visited::after {
  position: absolute;
  content: attr(data-text);
  background-color: var(--color-secondary);
  left: 0;
  top: 100%;
  transform: rotateX(-90deg);
  transform-origin: top;
  padding: inherit;
}
.header__nav--links__item:nth-child(odd) {
  animation: up 1s forwards;
}
.header__nav--links__item:nth-child(even) {
  animation: down 1s forwards;
}
.header__nav--links__toggle-container {
  display: flex;
  align-items: center;
}
.header__nav--links__toggle-container input[type=checkbox] {
  position: relative;
  width: 4rem;
  height: 2rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--color-white);
  border-radius: 2.5rem;
  box-shadow: inset 0 0 0.6rem 0.1rem rgb(158, 157, 157);
  transition: all 0.5s ease-in-out;
}
.header__nav--links__toggle-container input:checked[type=checkbox] {
  background-color: var(--color-secondary);
}
.header__nav--links__toggle-container input:not(:checked)[type=checkbox] {
  background-color: var(--color-secondary);
}
.header__nav--links__toggle-container input[type=checkbox]::before,
.header__nav--links__toggle-container input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 0.1rem 0.1rem 0.01rem rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
}
.header__nav--links__toggle-container input[type=checkbox]::before {
  left: 0.5rem;
}
.header__nav--links__toggle-container input[type=checkbox]::after {
  right: 0.5rem;
}
.header__nav--links__toggle-container input:checked[type=checkbox]::before {
  left: 37%;
  box-shadow: none;
}
.header__nav--links__toggle-container input:checked[type=checkbox]::after {
  right: 38%;
  box-shadow: none;
}
@media screen and (min-width: 1300px) {
  .header__nav--links__item a:link,
  .header__nav--links__item a:visited {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 800px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 12rem;
    height: 100vh;
    line-height: initial;
    flex-direction: column;
    text-align: center;
    z-index: 20;
    transform: perspective(70rem) rotateY(0.5turn);
    transform-origin: top left;
    transition: transform 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .header__nav--links {
    height: 80%;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .header__nav--links__item {
    animation: initial;
  }
  .header__nav--links__item a:link,
  .header__nav--links__item a:visited {
    transform-origin: left;
    margin-right: initial;
    padding: 1rem;
    font-size: 1rem;
  }
  .header__nav--links__item a:hover,
  .header__nav--links__item a:active {
    transform: rotateY(90deg);
  }
  .header__nav--links__item a:link::after,
  .header__nav--links__item a:visited::after {
    top: 0;
    bottom: 100%;
    left: 100%;
    width: 100%;
    height: 100%;
    transform-origin: left;
    transform: rotateY(-90deg);
  }
  .header__nav--links__toggle-container {
    justify-content: center;
  }
  .header.open nav {
    transform: rotateY(0);
  }
  .header__menu {
    height: 4rem;
    width: 4rem;
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 2rem;
    z-index: 20;
    cursor: pointer;
  }
  .header__menu--line, .header__menu--line::before, .header__menu--line::after {
    content: "";
    position: absolute;
    width: 2.5rem;
    height: 0.15rem;
    background-color: var(--color-white);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s ease-in-out;
  }
  .header__menu--line::before {
    top: -2.2rem;
  }
  .header__menu--line::after {
    top: 1.2rem;
  }
  .header__overlay.open {
    display: block;
    opacity: 0.8;
  }
}

@keyframes down {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes up {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.showcase {
  grid-column: container-start/container-end;
  background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_golenie_brody.webp");
  display: flex;
  justify-content: center;
  align-items: flex-end;
  top: 0;
  height: 90vh;
}
@media screen and (max-width: 800px) {
  .showcase {
    background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_golenie_brody_tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .showcase {
    background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_golenie_brody_medium.jpg");
  }
}
@media screen and (max-width: 400px) {
  .showcase {
    background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_golenie_brody_small.jpg");
  }
}
.showcase__content {
  display: flex;
  flex-direction: column;
}
.showcase__content--title {
  text-align: center;
  font-size: calc(1.5rem + 2vw);
  font-weight: 100;
  background-image: linear-gradient(135deg, var(--color-accent), var(--color-white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .showcase__content--title {
    font-size: 2.7rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .showcase__content--title {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .showcase__content--title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
}
.showcase__content--para {
  font-size: calc(1rem + 1vw);
  font-weight: 100;
  color: var(--color-white);
  margin-bottom: calc(1rem + 2vw);
}
@media screen and (max-width: 800px) {
  .showcase__content--para {
    margin-top: 20px;
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .showcase__content--para {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .showcase__content--para {
    font-size: 1rem !important;
    line-height: 1.2;
  }
}
.showcase__content--links {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
}
.showcase__content--links a:link,
.showcase__content--links a:visited {
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
  padding: calc(0.25rem + 0.7vh) calc(0.5rem + 0.7vw);
  text-transform: uppercase;
  position: relative;
  border-radius: 0.25rem;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.showcase__content--links a:link:first-child,
.showcase__content--links a:visited:first-child {
  background-color: var(--color-primary-m);
  border: 0.2rem solid var(--color-primary-m);
  color: var(--color-white);
  margin-right: calc(1rem + 2vw);
}
.showcase__content--links a:link:last-child,
.showcase__content--links a:visited:last-child {
  background-color: var(--color-accent-m);
  border: 0.2rem solid var(--color-accent-m);
  color: var(--color-white);
}
.showcase__content--links a:link:first-child::before,
.showcase__content--links a:visited:first-child::before,
.showcase__content--links a:link:last-child::before,
.showcase__content--links a:visited:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-white-m);
  border-radius: inherit;
  z-index: -1;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}
.showcase__content--links a:hover:first-child::before,
.showcase__content--links a:active:first-child::before,
.showcase__content--links a:hover:last-child::before,
.showcase__content--links a:active:last-child::before {
  transform: scale(1);
}
.showcase__content--links a:hover:first-child,
.showcase__content--links a:active:first-child {
  color: var(--color-primary);
}
.showcase__content--links a:hover:last-child,
.showcase__content--links a:active:last-child {
  color: var(--color-accent);
}
@media screen and (max-width: 800px) {
  .showcase {
    height: 100vh;
  }
  .showcase__content--title {
    text-align: left;
  }
  .showcase__content--links {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .showcase {
    padding: 4rem;
  }
  .showcase__content--title {
    font-size: calc(1.5rem + 5vw);
    font-weight: 600;
    line-height: 3.3rem;
    padding-bottom: 1.6rem;
  }
  .showcase__content--para {
    font-size: 1.2rem;
    line-height: 2rem;
    padding-bottom: 1.6rem;
  }
  .showcase__content--links {
    font-size: font-size font-size-small;
    text-align: center;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 400px) {
  .showcase__content--links {
    flex-direction: column;
    align-items: flex-start;
  }
  .showcase__content--links a:link,
  .showcase__content--links a:visited {
    display: inline-block;
  }
  .showcase__content--links a:link:first-child,
  .showcase__content--links a:visited:first-child {
    margin-bottom: 4vw;
  }
}

.section-motto {
  grid-column: container-start/container-end;
  background-image: url("../img/brodazagloby_przybory.jpg");
}
@media screen and (max-width: 800px) {
  .section-motto {
    background-image: url("../img/brodazagloby_przybory_tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .section-motto {
    background-image: url("../img/brodazagloby_przybory_medium.jpg");
  }
}
@media screen and (max-width: 400px) {
  .section-motto {
    background-image: url("../img/brodazagloby_przybory_small.jpg");
  }
}

.motto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  grid-gap: 2rem;
  place-content: center;
}
@media screen and (max-width: 800px) {
  .motto {
    grid-gap: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .motto {
    grid-gap: 1.5rem;
  }
}
.motto__content {
  display: grid;
  grid-row-gap: 4vh;
  background-color: var(--color-secondary-m);
  padding: 2rem;
}
@media screen and (max-width: 800px) {
  .motto__content {
    grid-row-gap: 3.5vh;
    padding: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .motto__content {
    grid-row-gap: 3vh;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 400px) {
  .motto__content {
    grid-row-gap: 2vh;
    padding: 0.7rem;
  }
}
@media screen and (max-width: 600px) {
  .motto__content--para {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 800px) {
  .motto__content--para {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 800px) {
  .motto__content--para {
    font-size: 15px !important;
  }
}
.motto__content--link:link, .motto__content--link:visited {
  background: var(--color-secondary);
  place-self: start;
  position: relative;
  padding: 0.7rem 1.5rem;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .motto__content--link:link, .motto__content--link:visited {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 600px) {
  .motto__content--link:link, .motto__content--link:visited {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 400px) {
  .motto__content--link:link, .motto__content--link:visited {
    font-size: 15px !important;
  }
}
.motto__content--link:link span, .motto__content--link:visited span {
  display: block;
  position: absolute;
}
.motto__content--link:link span:first-child, .motto__content--link:visited span:first-child {
  top: 0;
  left: -100%;
  height: 0.2rem;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--color-accent));
  transition: 0.5s;
  transition-delay: 1s;
}
.motto__content--link:link span:nth-child(2), .motto__content--link:visited span:nth-child(2) {
  top: -100%;
  right: 0;
  height: 100%;
  width: 0.2rem;
  background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
  transition: 0.5s;
  transition-delay: 0.75s;
}
.motto__content--link:link span:nth-child(3), .motto__content--link:visited span:nth-child(3) {
  bottom: 0;
  right: -100%;
  height: 0.2rem;
  width: 100%;
  background: linear-gradient(270deg, var(--color-primary), var(--color-accent));
  transition: 0.7s;
  transition-delay: 0.25s;
}
.motto__content--link:link span:nth-child(4), .motto__content--link:visited span:nth-child(4) {
  top: 100%;
  left: 0;
  height: 100%;
  width: 0.2rem;
  background: linear-gradient(360deg, var(--color-accent), transparent);
  transition: 0.5s;
  transition-delay: 0s;
}
.motto__content--link:hover, .motto__content--link:active {
  background: var(--color-primary-m);
  transition-delay: 1s;
}
.motto__content--link:hover span:first-child, .motto__content--link:active span:first-child {
  left: 100%;
  transition-duration: 1s;
  transition-delay: 0s;
}
.motto__content--link:hover span:nth-child(2), .motto__content--link:active span:nth-child(2) {
  top: 100%;
  transition-duration: 1s;
  transition-delay: 0.25s;
}
.motto__content--link:hover span:nth-child(3), .motto__content--link:active span:nth-child(3) {
  right: 100%;
  transition-duration: 1s;
  transition-delay: 0.5s;
}
.motto__content--link:hover span:nth-child(4), .motto__content--link:active span:nth-child(4) {
  top: -100%;
  transition-duration: 1s;
  transition-delay: 0.75s;
}

.reserve {
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_nozyczki.jpg");
  grid-column: container-start/container-end;
  display: grid;
  grid-template-rows: repeat(3, max-content);
  grid-row-gap: 3vh;
}
@media screen and (max-width: 800px) {
  .reserve {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_nozyczki_tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .reserve {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_nozyczki_small.jpg");
  }
}
@media screen and (max-width: 400px) {
  .reserve {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_nozyczki_small.jpg");
  }
}
.reserve__h2 {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .reserve__h2 {
    font-size: 32px !important;
  }
}
@media screen and (max-width: 600px) {
  .reserve__h2 {
    font-size: 26px !important;
  }
}
@media screen and (max-width: 400px) {
  .reserve__h2 {
    font-size: 22px !important;
  }
}
.reserve__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 17rem);
  place-content: center;
  grid-gap: 5rem 3vw;
  padding: 2rem 0;
  border-top: 2px solid var(--color-white-m);
  border-bottom: 2px solid var(--color-white-m);
}
@media screen and (max-width: 800px) {
  .reserve__content {
    grid-gap: 3rem 1vw;
  }
}
@media screen and (max-width: 600px) {
  .reserve__content {
    grid-gap: 2rem 0.7vw;
  }
}
@media screen and (max-width: 400px) {
  .reserve__content {
    grid-gap: 1.5rem 0.5vw;
  }
}
.reserve__content--section {
  display: grid;
  grid-gap: 1rem;
}
.reserve__content--section__link:link, .reserve__content--section__link:visited {
  display: block;
  letter-spacing: initial;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  .reserve__content--section__link:link, .reserve__content--section__link:visited {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 600px) {
  .reserve__content--section__link:link, .reserve__content--section__link:visited {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 400px) {
  .reserve__content--section__link:link, .reserve__content--section__link:visited {
    font-size: 16px !important;
  }
}
.reserve__content--section__link:link:hover, .reserve__content--section__link:link:active, .reserve__content--section__link:visited:hover, .reserve__content--section__link:visited:active {
  color: var(--color-gold);
}
.reserve__content--section__link:link span, .reserve__content--section__link:visited span {
  font-size: 30px;
}
@media screen and (max-width: 800px) {
  .reserve__content--section__link:link span, .reserve__content--section__link:visited span {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .reserve__content--section__link:link span, .reserve__content--section__link:visited span {
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  .reserve__content--section__link:link span, .reserve__content--section__link:visited span {
    font-size: 20px;
  }
}
.reserve__content--section__link:link span i, .reserve__content--section__link:visited span i {
  color: var(--color-white);
  font-size: 40px !important;
  line-height: 40px;
  margin-right: 20px;
}
.reserve__content--section__title {
  color: var(--color-white);
  font-weight: 100;
  font-size: calc(0.7rem + 0.4vw);
}
@media screen and (max-width: 800px) {
  .reserve__content--section__title {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 600px) {
  .reserve__content--section__title {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 400px) {
  .reserve__content--section__title {
    font-size: 16px !important;
  }
}
.reserve__content--section .comunicators a:link,
.reserve__content--section .comunicators a:visited {
  border: none;
  padding: 0 !important;
  background: transparent !important;
}
.reserve__content--section .comunicators a:link i,
.reserve__content--section .comunicators a:visited i {
  margin: 10px;
  font-size: 36px;
  color: var(--color-white);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 600px) {
  .reserve__content--section .comunicators a:link i,
  .reserve__content--section .comunicators a:visited i {
    font-size: 30px;
  }
}
.reserve__content--section .comunicators a:link i:hover, .reserve__content--section .comunicators a:link i:active,
.reserve__content--section .comunicators a:visited i:hover,
.reserve__content--section .comunicators a:visited i:active {
  color: var(--color-gold);
  transform: scale(1.3);
}
.reserve__content--section:first-child, .reserve__content--section:nth-child(2), .reserve__content--section:last-child {
  border-right: 2px solid var(--color-white-m);
}
@media screen and (max-width: 600px) {
  .reserve__content--section:first-child, .reserve__content--section:nth-child(2), .reserve__content--section:last-child {
    border-right: none;
  }
}
.reserve__content--section:first-child, .reserve__content--section:nth-child(2) {
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .reserve__content--section:first-child, .reserve__content--section:nth-child(2) {
    border-bottom: 1px solid var(--color-white-m);
    padding-bottom: 1rem;
  }
}
.reserve__content--section:last-child a {
  background-color: transparent;
  color: var(--color-white);
  font-size: 16px;
  border: 0.2rem solid var(--color-gold);
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  letter-spacing: inherit;
}
.reserve__content--section:last-child a:hover, .reserve__content--section:last-child a:active {
  background-color: var(--color-white);
  color: var(--color-gold);
}

.features {
  background: url("../img/contact/palm_leaf.png"), url("../img/contact/old_paper1.jpg");
  grid-column: container-start/container-end;
  display: grid;
  grid-gap: 1.1vw;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
}
@media screen and (max-width: 800px) {
  .features {
    background: url("../img/contact/palm_leaf_sm.png"), url("../img/contact/old_paper1_tb.jpg");
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    grid-gap: 10vw;
  }
}
@media screen and (max-width: 600px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 12vw;
  }
}
@media screen and (max-width: 400px) {
  .features {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-gap: 8vw;
  }
}
.features__content {
  background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/old-paper-md.jpg");
  display: grid;
  grid-gap: 0.8vw;
  margin: 0 auto;
  padding: 0 1rem;
  width: 80%;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  height: 24rem;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  .features__content {
    grid-gap: 0.7vw;
    padding: 0 0.9rem;
    width: 60%;
    height: 22rem;
  }
}
@media screen and (max-width: 600px) {
  .features__content {
    grid-gap: 0.8vw;
    padding: 0 0.8rem;
    width: 85%;
    height: 22rem;
  }
}
@media screen and (max-width: 400px) {
  .features__content {
    grid-gap: 1vw;
    width: 95%;
    padding: 0 0.7rem;
    height: 20rem;
  }
}
.features__content--title {
  color: var(--color-white);
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  position: relative;
  align-self: end;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .features__content--title {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .features__content--title {
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .features__content--title {
    font-size: 22px;
  }
}
.features__content--title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary-m);
  z-index: -1;
  transform: scaleX(0);
  transition: transform 0.5s ease-in-out;
  transform-origin: right;
}
.features__content:hover .features__content--title::before, .features__content:active .features__content--title::before {
  transform: scaleX(1);
  transform-origin: left;
}
.features__content:hover img, .features__content:active img {
  transform: scale(1);
  opacity: 1;
}
.features__content--para {
  color: var(--color-white);
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.5;
  background-color: var(--color-gold-m);
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 800px) {
  .features__content--para {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 600px) {
  .features__content--para {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 400px) {
  .features__content--para {
    font-size: 15px !important;
  }
}
.features__content img {
  position: absolute;
  bottom: 7%;
  left: 7%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  transform: rotate(0);
  width: 110px;
  height: 52px;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.5s ease-in;
}
@media screen and (max-width: 600px) {
  .features__content img {
    width: 99px;
    height: 47px;
  }
}
.features__content--link:link, .features__content--visited:link {
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  justify-self: end;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 600px) {
  .features__content--link:link, .features__content--visited:link {
    padding: 0.7rem 1.2rem;
  }
}
@media screen and (max-width: 400px) {
  .features__content--link:link, .features__content--visited:link {
    padding: 0.6rem 1rem;
  }
}
.features__content--link:link span, .features__content--visited:link span {
  position: absolute;
  display: block;
}
.features__content--link:link span:nth-child(1), .features__content--visited:link span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-image: linear-gradient(90deg, transparent, var(--color-primary));
  animation: border1 1s linear infinite;
  animation-delay: 0s;
}
@media screen and (max-width: 600px) {
  .features__content--link:link span:nth-child(1), .features__content--visited:link span:nth-child(1) {
    height: 0.1rem;
  }
}
.features__content--link:link span:nth-child(3), .features__content--visited:link span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-image: linear-gradient(270deg, var(--color-accent), var(--color-primary));
  animation: border3 1s linear infinite;
  animation-delay: 0.5s;
}
@media screen and (max-width: 600px) {
  .features__content--link:link span:nth-child(3), .features__content--visited:link span:nth-child(3) {
    height: 0.1rem;
  }
}
.features__content--link:link span:nth-child(2), .features__content--visited:link span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 0.2rem;
  background-image: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  animation: border2 1s linear infinite;
  animation-delay: 0.25s;
}
@media screen and (max-width: 600px) {
  .features__content--link:link span:nth-child(2), .features__content--visited:link span:nth-child(2) {
    width: 0.1rem;
  }
}
.features__content--link:link span:nth-child(4), .features__content--visited:link span:nth-child(4) {
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0.2rem;
  background-image: linear-gradient(360deg, var(--color-primary), transparent);
  animation: border4 1s linear infinite;
  animation-delay: 0.75s;
}
@media screen and (max-width: 600px) {
  .features__content--link:link span:nth-child(4), .features__content--visited:link span:nth-child(4) {
    width: 0.1rem;
  }
}
.features__content--link:hover, .features__content--link:active {
  background-color: var(--color-primary-m);
}

@keyframes border1 {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes border3 {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
@keyframes border2 {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes border4 {
  0% {
    top: 100%;
  }
  100% {
    top: -100%;
  }
}
.barbers {
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_stare_tlo.jpg");
  grid-column: container-start/container-end;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .barbers {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_stare_tlo_tb.jpg");
  }
}
@media screen and (max-width: 600px) {
  .barbers {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_stare_tlo_sm.jpg");
  }
}
.barbers__title {
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 3rem;
  background-color: var(--color-accent-m);
  border-bottom-left-radius: 8rem;
  border-bottom-right-radius: 8rem;
}
.barbers__title:last-child {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 8rem;
  border-top-right-radius: 8rem;
  transition: all 0.5s ease-in-out;
}
.barbers__title:last-child:hover {
  background-color: var(--color-primary-m);
}
.barbers__content {
  display: block;
  text-align: center;
}
.barbers__content--logo {
  width: 20rem;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  .barbers__content--logo {
    width: 18rem;
  }
}
@media screen and (max-width: 600px) {
  .barbers__content--logo {
    width: 14rem;
  }
}
.barbers__content--logo:hover, .barbers__content--logo:active {
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.6));
  transform: scale(1.01);
}
.barbers__content--quote {
  margin: 0 auto;
  padding-bottom: 0 !important;
  max-width: 70rem;
}
@media screen and (max-width: 800px) {
  .barbers__content--quote {
    max-width: 40rem;
  }
}
@media screen and (max-width: 400px) {
  .barbers__content--quote {
    max-width: 30rem;
  }
}
.barbers__content p {
  font-weight: 100;
  text-align: center;
  color: white;
  padding-bottom: 4rem;
}
.barbers__content--card {
  position: relative;
  margin: 0 auto;
  height: 24rem;
  width: 24rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 600px) {
  .barbers__content--card {
    height: 20rem;
    width: 20rem;
  }
}
@media screen and (max-width: 400px) {
  .barbers__content--card {
    height: 19rem;
    width: 19rem;
  }
}
.barbers__content--card__specialty, .barbers__content--card__name, .barbers__content--card__link {
  position: absolute;
  bottom: 25%;
  left: 5%;
  transform: translate(-12.5rem, -7.5rem);
  overflow: hidden;
}
.barbers__content--card__name {
  bottom: 20%;
}
.barbers__content--card__link {
  bottom: 4%;
}
.barbers__content--card__link a:link,
.barbers__content--card__link a:visited {
  font-size: calc(0.7rem + 0.4vw);
  font-weight: 400;
  padding: calc(0.25rem + 0.7vh) calc(0.5rem + 0.7vw);
  text-transform: uppercase;
  position: relative;
  border-radius: 0.25rem;
  background-color: var(--color-accent-m);
  border: 0.2rem solid var(--color-accent-m);
  color: var(--color-white);
  margin-right: calc(1rem + 2vw);
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.barbers__content--card__link a:link::before,
.barbers__content--card__link a:visited::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-white-m);
  border-radius: inherit;
  z-index: -1;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
}
.barbers__content--card__link a:hover::before,
.barbers__content--card__link a:active::before {
  transform: scale(1);
}
.barbers__content--card__link a:hover,
.barbers__content--card__link a:active {
  color: var(--color-accent);
}
.barbers__content--card__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.5rem ease-in-out;
}
.barbers__content--card:hover .barbers__content--card__img, .barbers__content--card:active .barbers__content--card__img {
  filter: contrast(30%);
}
.barbers__content--card:hover .barbers__content--card__specialty, .barbers__content--card:active .barbers__content--card__specialty, .barbers__content--card:hover .barbers__content--card__name, .barbers__content--card:active .barbers__content--card__name, .barbers__content--card:hover .barbers__content--card__link, .barbers__content--card:active .barbers__content--card__link {
  animation: name 1.5s linear forwards;
  z-index: 1;
}

@keyframes name {
  0% {
    transform: translate(-5rem, -12rem);
    opacity: 0;
  }
  30% {
    transform: translate(11rem, -12rem);
    opacity: 0.6;
  }
  60% {
    transform: translate(11rem, -2rem);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, -2rem);
    opacity: 1;
  }
}
.clients {
  grid-column: container-start/container-end;
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_pedzel.jpg");
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .clients {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_pedzel_tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .clients {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/brodazagloby_pedzel_small.jpg");
  }
}
.clients__title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600 !important;
  position: relative;
  align-self: center;
  padding: 0.5rem;
  transition: transform 0.5s ease-in-out;
}
.clients__title--sub {
  text-align: center;
  margin-bottom: 2rem;
  font-size: calc(1rem + 1vw) !important;
  font-weight: 600 !important;
  position: relative;
  align-self: center;
  padding: 0.5rem;
}
.clients__title::before, .clients__title::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 0.2rem;
  transition: all 0.5s ease-in-out;
}
.clients__title::before {
  left: 0;
  background-color: var(--color-primary);
}
.clients__title::after {
  right: 0;
  background-color: var(--color-accent);
}
.clients__title:hover::before, .clients__title:active::before, .clients__title:hover::after, .clients__title:active::after {
  height: 0.2rem;
  width: 100%;
}
.clients__title:hover::after, .clients__title:active::after {
  top: 100%;
}
.clients__content {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.clients__content--img {
  background-color: var(--color-white-m);
  width: 12rem;
  margin: 0.5rem;
  text-align: center;
  border-radius: 1rem;
  transition: all 0.5s ease-in-out;
}
.clients__content--img img {
  width: 149px;
  height: 82px;
}
.clients__content--img:hover, .clients__content--img:active {
  transform: scale(1.1);
}

.testimonials {
  grid-column: container-start/container-end;
  background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_sprzet.jpg");
}
@media screen and (max-width: 800px) {
  .testimonials {
    background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_sprzet_tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .testimonials {
    background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_sprzet_medium.jpg");
  }
}
@media screen and (max-width: 400px) {
  .testimonials {
    background-image: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/brodazagloby_sprzet_small.jpg");
  }
}
.testimonials__title {
  text-align: center;
  margin-bottom: 4vh;
}
.testimonials__content {
  max-width: 70rem;
  margin: 0 auto;
}
.testimonials__content--slider {
  background: var(--color-secondary-m);
  border: 0.1rem solid var(--color-white);
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  padding: 2vh 1vw;
}
.testimonials__content--slider__slide {
  display: none;
}
.testimonials__content--slider__slide--para {
  margin-bottom: 3rem;
}
.testimonials__content--slider__slide.active {
  display: block;
  animation: slide 1s linear;
}
.testimonials__content--indicator {
  padding-top: 4vh;
  padding-bottom: 4vh;
  display: flex;
  justify-content: center;
}
.testimonials__content--indicator__img {
  height: calc(6rem + 3vw);
  width: calc(6rem + 3vw);
  object-fit: cover;
  border-radius: 50%;
  margin: 2vh 2vw;
  opacity: 0.5;
  filter: grayscale(1);
  border: 0.2rem solid var(--color-white);
  cursor: pointer;
  transition: opacity 1s ease;
}
.testimonials__content--indicator__img.active {
  opacity: 1;
  filter: grayscale(0);
}
@media screen and (max-width: 800px) {
  .testimonials__content {
    max-width: 50rem;
  }
  .testimonials__content--slider {
    max-width: 40rem;
  }
  .testimonials__content--indicator__img {
    height: calc(5rem + 2vw);
    width: calc(5rem + 2vw);
  }
}
@media screen and (max-width: 400px) {
  .testimonials__content {
    max-width: 30rem;
  }
  .testimonials__content__title {
    max-width: 80% !important;
  }
  .testimonials__content--slider {
    max-width: 20rem;
    padding: 1rem 1.5rem;
  }
}

@keyframes slide {
  0% {
    transform: translateX(-1rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.form {
  background-color: var(--color-accent);
  grid-column: container-start/container-end;
  height: 600px;
}

.footer {
  grid-column: container-start/container-end;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url("../img/brodazagloby_nozyce.jpg");
  display: grid;
  grid-template-rows: repeat(3, max-content);
  grid-row-gap: 6vh;
}
@media screen and (max-width: 800px) {
  .footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url("../img/brodazagloby_nozyce_tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url("../img/brodazagloby_nozyce_medium.jpg");
  }
}
@media screen and (max-width: 400px) {
  .footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url("../img/brodazagloby_nozyce_small.jpg");
  }
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 20rem);
  place-content: center;
  grid-gap: 5rem 3vw;
}
@media screen and (max-width: 600px) {
  .footer__content {
    grid-gap: 3rem 1vw;
  }
}
@media screen and (max-width: 800px) {
  .footer__content {
    grid-gap: 2rem 0.7vw;
  }
}
@media screen and (max-width: 400px) {
  .footer__content {
    grid-gap: 1.5rem 0.5vw;
  }
}
.footer__content--section {
  display: grid;
  grid-gap: 1rem;
}
.footer__content--section i {
  font-size: calc(1rem + 1vw);
}
@media screen and (max-width: 800px) {
  .footer__content--section i {
    font-size: 36px !important;
  }
}
@media screen and (max-width: 400px) {
  .footer__content--section i {
    font-size: 32px !important;
  }
}
.footer__content--section__title {
  font-family: "Asul", sans-serif;
}
@media screen and (max-width: 800px) {
  .footer__content--section__title {
    font-size: 26px !important;
  }
}
@media screen and (max-width: 600px) {
  .footer__content--section__title {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 400px) {
  .footer__content--section__title {
    font-size: 22px !important;
  }
}
.footer__content--section__link:link, .footer__content--section__link:visited {
  display: block;
  letter-spacing: initial;
  transition: all 0.5s ease-in-out;
}
.footer__content--section__link:link:hover, .footer__content--section__link:link:active, .footer__content--section__link:visited:hover, .footer__content--section__link:visited:active {
  color: var(--color-accent-m);
}
.footer__content--section__para {
  color: var(--color-white);
  font-weight: 100;
  font-size: calc(0.7rem + 0.4vw);
}
.footer__content--section__soc {
  display: flex;
}
.footer__content--section__soc i {
  margin-right: 2rem;
  font-size: 1.6rem !important;
  color: var(--color-accent-m);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.footer__content--section__soc i:hover, .footer__content--section__soc i:active {
  color: var(--color-secondary);
  transform: scale(1.3);
}
.footer__content--section:first-child, .footer__content--section:nth-child(2), .footer__content--section:nth-child(3) {
  border-right: 1px solid var(--color-white-m);
}
@media screen and (max-width: 800px) {
  .footer__content--section:first-child, .footer__content--section:nth-child(2), .footer__content--section:nth-child(3) {
    border-right: none;
  }
}
.footer__content--section:first-child, .footer__content--section:nth-child(2), .footer__content--section:nth-child(3) {
  border-bottom: none;
}
@media screen and (max-width: 800px) {
  .footer__content--section:first-child, .footer__content--section:nth-child(2), .footer__content--section:nth-child(3) {
    border-bottom: 1px solid var(--color-white-m);
    padding-bottom: 1rem;
  }
}
.footer__content--section:nth-child(2) {
  padding-right: 3vw;
}
.footer__content--section:nth-child(2) input[type=email] {
  padding: 0.7rem;
  background-color: transparent;
  color: var(--color-white);
  border: 0.2rem solid var(--color-accent);
  border-left: none;
  border-right: none;
}
.footer__content--section:nth-child(2) input[type=submit] {
  background-color: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.2rem;
  border: 0.1rem solid var(--color-white);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.footer__content--section:nth-child(2) input[type=submit]:hover,
.footer__content--section:nth-child(2) input[type=submit]:active {
  background-color: var(--color-white-m);
  color: var(--color-secondary);
}
.footer__content--section:last-child {
  padding-bottom: 3vw;
  border-bottom: 1px solid var(--color-white-m);
}
.footer__content--section:last-child span {
  font-family: "Asul", sans-serif;
  font-size: calc(1rem + 0.5vw);
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copy {
  display: block;
  margin: 0 auto;
}
.footer__copy p {
  padding-bottom: 15px;
  color: var(--color-white);
  text-align: center;
}
.footer__copy a {
  color: var(--color-white-m);
  margin: 0 auto;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.5s ease-in-out;
}
.footer__copy a:hover {
  color: var(--color-accent-m);
}

.about {
  grid-column: container-start/container-end;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .about {
    padding-bottom: 50px;
  }
}
.about h2 {
  margin: 150px 0;
  color: var(--color-white);
  font-size: 70px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .about h2 {
    margin: 100px 0;
    font-size: 50px;
  }
}
@media screen and (max-width: 600px) {
  .about h2 {
    margin: 80px 0;
    font-size: 36px;
  }
}
@media screen and (max-width: 400px) {
  .about {
    font-size: 28px;
  }
}
.about__box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__box--container {
  position: relative;
  width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__box--container__img {
  position: relative;
  width: 800px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 800px) {
  .about__box--container__img {
    width: 600px;
    height: 380px;
  }
}
@media screen and (max-width: 600px) {
  .about__box--container__img {
    width: 500px;
    height: 360px;
  }
}
@media screen and (max-width: 400px) {
  .about__box--container__img {
    width: 400px;
    height: 280px;
  }
}
.about__box--container__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__box--container__content {
  position: absolute;
  right: 0;
  margin-top: 600px;
  margin-bottom: 40px;
  padding: 50px;
  color: var(--color-white);
  background: var(--color-primary-m);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.3);
  border-bottom: 6px solid var(--color-accent);
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .about__box--container__content {
    margin-top: 500px;
    padding: 40px;
    width: 400px;
  }
}
@media screen and (max-width: 600px) {
  .about__box--container__content {
    padding: 30px;
    width: 400px;
  }
}
@media screen and (max-width: 400px) {
  .about__box--container__content {
    padding: 20px;
    width: 300px;
  }
}
.about__box--container__content p {
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .about__box--container__content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .about__box--container__content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .about__box--container__content p {
    font-size: 14px;
  }
}
.about__box--container__content .right {
  display: flex;
  justify-content: right;
  margin-top: 10px;
}
.about__box--container__content .right span {
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .about__box--container__content .right span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .about__box--container__content .right span {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .about__box--container__content .right span {
    font-size: 14px;
  }
}
.about img {
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .about img {
    margin-top: 150px;
  }
}
@media screen and (max-width: 600px) {
  .about img {
    margin-top: 200px;
  }
}
@media screen and (max-width: 400px) {
  .about img {
    margin-top: 180px;
  }
}

.ab-bg1 {
  background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg1.jpg");
}
@media screen and (max-width: 800px) {
  .ab-bg1 {
    background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg1-tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .ab-bg1 {
    background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg1-medium.jpg");
  }
}

.ab-bg2 {
  background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg5.jpg");
}
@media screen and (max-width: 800px) {
  .ab-bg2 {
    background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg5-tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .ab-bg2 {
    background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg5-medium.jpg");
  }
}
@media screen and (max-width: 400px) {
  .ab-bg2 {
    background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg5-small.jpg");
  }
}

.ab-bg3 {
  background: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/about/about_bg3.jpg");
}
@media screen and (max-width: 800px) {
  .ab-bg3 {
    background: linear-gradient(var(--color-secondary-m), var(--color-secondary-m)), url("../img/about/about_bg3-tablet.jpg");
  }
}

.ab-bg4 {
  background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg4.jpg");
}
@media screen and (max-width: 800px) {
  .ab-bg4 {
    background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg4-tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .ab-bg4 {
    background: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/about/about_bg4-medium.jpg");
  }
}

.ab-bg5 {
  background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg2.jpg");
}
@media screen and (max-width: 800px) {
  .ab-bg5 {
    background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg2-tablet.jpg");
  }
}
@media screen and (max-width: 600px) {
  .ab-bg5 {
    background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg2-medium.jpg");
  }
}
@media screen and (max-width: 400px) {
  .ab-bg5 {
    background: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/about/about_bg2-small.jpg");
  }
}

.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: "object-fit: cover;";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.priceentry {
  grid-column: container-start/container-end;
  background-image: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/price/mapaslask_bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  height: 60vh;
}
@media screen and (max-width: 800px) {
  .priceentry {
    background-image: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/price/mapaslask_tb.jpg");
  }
}
@media screen and (max-width: 600px) {
  .priceentry {
    background-image: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/price/mapaslask_sm.jpg");
  }
}
.priceentry h1 {
  font-family: "Asul", sans-serif;
  font-size: calc(1.5rem + 2vw);
  font-weight: 100;
  background-image: linear-gradient(135deg, var(--color-accent), var(--color-white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .priceentry h1 {
    font-size: 2.7rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .priceentry h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .priceentry h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
}
.priceentry span {
  font-size: calc(1rem + 1vw);
  font-weight: 100;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .priceentry span {
    margin-top: 20px;
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .priceentry span {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .priceentry span {
    font-size: 1rem !important;
    line-height: 1.2;
  }
}
.priceentry p {
  color: var(--color-white);
  font-size: 28px !important;
}
@media screen and (max-width: 800px) {
  .priceentry p {
    font-size: 18px !important;
  }
}

.pricelist {
  grid-column: container-start/container-end;
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/ornament.png");
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .pricelist {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/ornament-tb.png");
  }
}
@media screen and (max-width: 600px) {
  .pricelist {
    background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/ornament-md.png");
  }
}
.pricelist__container {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .pricelist__container {
    padding-top: 50px;
  }
}
.pricelist__card {
  width: 600px;
}
@media screen and (max-width: 800px) {
  .pricelist__card {
    width: 500px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card {
    width: 380px;
  }
}

.pricelist__card-desc {
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/old-paper-md.jpg");
  padding: 3rem;
  box-shadow: 0 0 5px var(--color-black-m);
  display: flex;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc {
    padding: 1.7rem;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc {
    padding: 1.5rem;
  }
}

.pricelist__card-desc__imgwrapper {
  width: 9rem;
  height: 9rem;
  margin-right: 2rem;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__imgwrapper {
    width: 8rem;
    height: 8rem;
    margin-right: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__imgwrapper {
    margin-right: 0 !important;
  }
}

.pricelist__card-desc__imgwrapper img {
  position: absolute;
  top: 45%;
  left: -100px;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__imgwrapper img {
    left: -45px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__imgwrapper img {
    transform: rotate(-45deg);
    left: -20px;
    top: 65%;
  }
}
.pricelist__card-desc__imgwrapper img img {
  width: 300px;
  height: 105px;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__imgwrapper img img {
    width: 240px !important;
    height: 84px !important;
  }
}

.pricelist__card-desc__imgwrapper .logo {
  position: absolute;
  top: 7%;
  left: 5%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  transform: rotate(0);
  width: 110px;
  height: 52px;
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__imgwrapper .logo {
    width: 99px;
    height: 47px;
  }
}

.pricelist__card-desc__info {
  width: 65%;
  color: #fff;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
}

.pricelist__card-desc__info h3 {
  font-size: 32px;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__info h3 {
    font-size: 26px;
    margin-bottom: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__info h3 {
    font-size: 22px;
    margin-bottom: 0.8rem;
  }
}

.pricelist__card-desc__info p {
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__info p {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__info p {
    padding-bottom: 5px;
    font-size: 15px;
    line-height: 1.3;
  }
}

.pricelist__card-desc__btn {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more {
  transition: all 0.5s 0.1s;
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.change .pricelist__card-desc__btn-more {
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
}

.pricelist__card-desc__btn i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.pricelist__card-more {
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/old-paper-md.jpg");
  box-shadow: 0 0 3px var(--color-black-m);
  color: #fff;
  padding: 5px 70px;
  transform: translateY(-100%);
  transition: all 0.5s;
}
.pricelist__card-more .pricelist__card-more__price-wrappericon {
  margin: 0 20px;
}
.pricelist__card-more i {
  font-size: 40px;
  color: var(--color-white);
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 800px) {
  .pricelist__card-more i {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-more i {
    font-size: 28px;
  }
}
.pricelist__card-more h4 {
  margin-left: 20px;
  font-family: "Asul", sans-serif;
  font-size: 42px !important;
  font-weight: bold !important;
  text-transform: none !important;
  letter-spacing: 0.1rem;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transform-origin: left;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-more h4 {
    font-size: 36px !important;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-more h4 {
    font-size: 30px !important;
  }
}
.pricelist__card-more .price-small {
  font-size: 24px !important;
}
@media screen and (max-width: 800px) {
  .pricelist__card-more .price-small {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-more .price-small {
    font-size: 18px !important;
  }
}

.change .pricelist__card-more {
  transform: translateY(0);
}

.change .pricelist__card-more h4 {
  transform: scale(1);
}

.pricelist__card-more__price {
  background-image: linear-gradient(var(--color-gold-m), var(--color-gold-m)), url("../img/price/old-paper-md.jpg");
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.pricelist__card-more__price h4 {
  color: var(--color-white);
  font-size: 32px !important;
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
  line-height: 0.4;
}
@media screen and (max-width: 800px) {
  .pricelist__card-more__price h4 {
    font-size: 26px !important;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-more__price h4 {
    font-size: 22px !important;
  }
}
.pricelist__card-more__price span {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: var(--color-black);
  text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 800px) {
  .pricelist__card-more__price span {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-more__price span {
    font-size: 20px !important;
  }
}

.booksy {
  transition: all 0.5s 0.3s;
  box-shadow: 0 0 3px var(--color-black-m);
}

.change .pricelist__card-more__price {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.pricelist__card-more__price-wrappericon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .pricelist__card-more__price-wrappericon {
    width: 3rem;
    height: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-more__price-wrappericon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.booksy .pricelist__card-more__price-wrappericon {
  background-color: var(--color-black);
}
.booksy .pricelist__card-more__price-wrappericon img {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 800px) {
  .booksy .pricelist__card-more__price-wrappericon img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .booksy .pricelist__card-more__price-wrappericon img {
    width: 30px;
    height: 30px;
  }
}

.pricelist__container1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricelist__card-desc__btn1 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn1 {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn1 {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn1 {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn1 {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn1 {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn1 i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricelist__card-desc__btn1 i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn1 i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.pricelist__container2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricelist__card-desc__btn2 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn2 {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn2 {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn2 {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn2 {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn2 {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn2 i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricelist__card-desc__btn2 i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn2 i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.pricelist__container3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricelist__card-desc__btn3 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn3 {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn3 {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn3 {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn3 {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn3 {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn3 i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricelist__card-desc__btn3 i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn3 i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.pricelist__container4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricelist__card-desc__btn4 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn4 {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn4 {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn4 {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn4 {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn4 {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn4 i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricelist__card-desc__btn4 i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn4 i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.pricelist__container5 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .pricelist__container5 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__container5 {
    padding-bottom: 20px;
  }
}

.pricelist__card-desc__btn5 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn5 {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn5 {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn5 {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn5 {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn5 {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn5 i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricelist__card-desc__btn5 i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn5 i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.pricelist__container6 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .pricelist__container6 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__container6 {
    padding-bottom: 20px;
  }
}

.pricelist__card-desc__btn6 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  width: 12rem;
  height: 4rem;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 28px;
  font-family: "Palnquin", sans-serif !important;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 800px) {
  .pricelist__card-desc__btn6 {
    bottom: -2rem;
    right: 4rem;
    width: 10rem;
    height: 3.5rem;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pricelist__card-desc__btn6 {
    bottom: -2rem;
    right: 3rem;
    width: 8rem;
    height: 3rem;
    font-size: 20px;
  }
}

.change .pricelist__card-desc__btn6 {
  width: 4rem;
  right: 5rem;
  bottom: -2rem;
}
@media screen and (max-width: 800px) {
  .change .pricelist__card-desc__btn6 {
    width: 3.5rem;
    right: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .change .pricelist__card-desc__btn6 {
    width: 3rem;
    right: 3rem;
  }
}

.pricelist__card-desc__btn-more,
.pricelist__card-desc__btn6 i {
  color: var(--color-white);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricelist__card-desc__btn6 i {
  opacity: 0;
  visibility: hidden;
}

.change .pricelist__card-desc__btn6 i {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.animation-phone {
  animation: phone 1.8s 1s infinite;
}

@keyframes phone {
  0% {
    transform: scale(1) rotateZ(0);
  }
  5% {
    transform: scale(1.2) rotateZ(5deg);
  }
  10% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  15% {
    transform: scale(1.2) rotateZ(5deg);
  }
  20% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  25% {
    transform: scale(1.2) rotateZ(5deg);
  }
  30% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  35% {
    transform: scale(1.2) rotateZ(5deg);
  }
  40% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  45% {
    transform: scale(1.2) rotateZ(5deg);
  }
  50% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  55% {
    transform: scale(1.2) rotateZ(5deg);
  }
  60% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  65% {
    transform: scale(1.2) rotateZ(5deg);
  }
  70% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  75% {
    transform: scale(1.2) rotateZ(5deg);
  }
  80% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  85% {
    transform: scale(1.2) rotateZ(5deg);
  }
  90% {
    transform: scale(1.2) rotateZ(-5deg);
  }
  95% {
    transform: scale(1.2) rotateZ(5deg);
  }
  100% {
    transform: scale(1) rotateZ(0);
  }
}
.animation-booksy {
  animation: booksy 4s 1s infinite;
}

@keyframes booksy {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.05);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  30% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.05);
  }
  40% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1);
  }
  65% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.from .pricelist__card-more__price-wrappericon {
  padding-left: 10px !important;
}
.from .pricelist__card-more__price-wrappericon i {
  margin-right: 10px;
}
.from .pricelist__card-more__price-wrappericon h4 {
  margin: 0;
  font-size: 24px !important;
}

.servicesentry {
  grid-column: container-start/container-end;
  background-image: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/services/brodazagloby_uslugi_bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  height: 60vh;
}
@media screen and (max-width: 800px) {
  .servicesentry {
    background-image: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/services/brodazagloby_uslugi_tb.jpg");
  }
}
@media screen and (max-width: 600px) {
  .servicesentry {
    background-image: linear-gradient(var(--color-black-m), var(--color-black-m)), url("../img/services/brodazagloby_uslugi_sm.jpg");
  }
}
.servicesentry h1 {
  font-family: "Asul", sans-serif;
  font-size: calc(1.5rem + 2vw);
  font-weight: 100;
  background-image: linear-gradient(135deg, var(--color-accent), var(--color-white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 800px) {
  .servicesentry h1 {
    font-size: 2.7rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .servicesentry h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .servicesentry h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
}
.servicesentry span {
  font-size: calc(1rem + 1vw);
  font-weight: 100;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .servicesentry span {
    margin-top: 20px;
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .servicesentry span {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .servicesentry span {
    font-size: 1rem !important;
    line-height: 1.2;
  }
}
.servicesentry p {
  color: var(--color-white);
  font-size: 28px !important;
}
@media screen and (max-width: 800px) {
  .servicesentry p {
    font-size: 18px !important;
  }
}

.serviceslist {
  grid-column: container-start/container-end;
  background: url("../img/services/animacja_bg.png"), url("../img/services/brodazagloby_oldpaper.jpg");
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: animation-background 700s linear infinite;
}
@media screen and (max-width: 800px) {
  .serviceslist {
    background: url("../img/services/animacja_bg_tb.png"), url("../img/services/brodazagloby_oldpaper_tb.jpg");
    padding: 70px 0;
  }
}
@media screen and (max-width: 600px) {
  .serviceslist {
    background: url("../img/services/animacja_bg_sm.png"), url("../img/services/brodazagloby_oldpaper_sm.jpg");
    padding: 40px 0;
  }
}

.serviceslist_card {
  margin: 50px 0;
  position: relative;
  width: 500px;
  height: 800px;
  background-color: var(--color-white-m);
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 800px) {
  .serviceslist_card {
    width: 400px;
    height: 650px;
  }
}
@media screen and (max-width: 600px) {
  .serviceslist_card {
    width: 340px;
    height: 550px;
  }
}
@media screen and (max-width: 400px) {
  .serviceslist_card {
    width: 320px;
    height: 520px;
  }
}

.serviceslist_card--content {
  position: absolute;
  bottom: 0px;
  width: 80%;
  height: 80px;
  left: 10%;
  text-align: center;
  transition: 0.5s;
  overflow: hidden;
}
.serviceslist_card--content h3 {
  color: var(--color-white-m);
  font-size: 30px;
  text-transform: uppercase;
  margin: 20px;
}
@media screen and (max-width: 800px) {
  .serviceslist_card--content h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .serviceslist_card--content h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  .serviceslist_card--content h3 {
    font-size: 20px;
  }
}
.serviceslist_card--content p {
  color: var(--color-white);
  width: 80%;
  margin: 0px auto;
  padding-bottom: 40px;
  font-size: 18px;
  transition: 0.8s ease-in;
  opacity: 0;
}
@media screen and (max-width: 800px) {
  .serviceslist_card--content p {
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  .serviceslist_card--content p {
    padding-bottom: 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .serviceslist_card--content p {
    font-size: 14px;
  }
}
.serviceslist_card--content p:nth-of-type(2) {
  transition: 1.8s ease-in;
  opacity: 0;
}
.serviceslist_card--content a {
  padding: 10px 15px;
  display: inline-block;
  margin-top: 10px;
  transition: 2.5s ease-in;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .serviceslist_card--content a {
    padding: 5px 10px;
    margin-top: 0;
  }
}
.serviceslist_card--content .serviceslist_card--content_soc {
  padding-top: 20px;
}
@media screen and (max-width: 600px) {
  .serviceslist_card--content .serviceslist_card--content_soc {
    padding-top: 10px;
  }
}
.serviceslist_card--content .serviceslist_card--content_soc i {
  font-size: 40px;
  color: var(--color-accent-m);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  .serviceslist_card--content .serviceslist_card--content_soc i {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .serviceslist_card--content .serviceslist_card--content_soc i {
    font-size: 25px;
  }
}
.serviceslist_card--content .serviceslist_card--content_soc i:hover, .serviceslist_card--content .serviceslist_card--content_soc i:active {
  color: var(--color-secondary);
  transform: scale(1.2);
}

.serviceslist_card:hover .serviceslist_card--content {
  height: 100%;
  width: 100%;
  left: 0%;
}

.serviceslist_card:hover p,
.serviceslist_card:hover p:nth-of-type(2),
.serviceslist_card:hover a,
.serviceslist_card--content_soc:hover a {
  opacity: 1;
  transition-delay: 0.5s;
}

.serviceslist_card--imgbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.serviceslist_card--imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.serviceslist_card:hover img {
  opacity: 0;
}

.services_bg1 {
  background: url("../img/services/brodazagloby_broda1.png");
  background-color: var(--color-black-m);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .services_bg1 {
    background: url("../img/services/brodazagloby_broda1_sm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-black-m);
  }
}

.services_bg2 {
  background: url("../img/services/brodazagloby_broda2.png");
  background-color: var(--color-black-m);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .services_bg2 {
    background: url("../img/services/brodazagloby_broda2_sm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-black-m);
  }
}

.services_bg3 {
  background: url("../img/services/brodazagloby_broda3.png");
  background-color: var(--color-black-m);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .services_bg3 {
    background: url("../img/services/brodazagloby_broda3_sm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-black-m);
  }
}

.services_bg4 {
  background: url("../img/services/brodazagloby_broda4.png");
  background-color: var(--color-black-m);
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .services_bg4 {
    background: url("../img/services/brodazagloby_broda4_sm.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-black-m);
  }
}

@keyframes animation-background {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 5000px 10000px, 0 7500px, 0 5000px, 0 12000000px;
  }
}
.contactentry {
  grid-column: container-start/container-end;
  background-image: url("../img/contact/mapa_legnitz.png"), url("../img/contact/old_map.jpg");
  text-align: center;
  padding: 15vh 2vw;
  height: 800px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 800px) {
  .contactentry {
    background-image: url("../img/contact/mapa_legnitz_tb.png"), url("../img/contact/old_map_tb.jpg");
    padding: 13vh 2vw;
    height: 550px;
  }
}
@media screen and (max-width: 600px) {
  .contactentry {
    background-image: url("../img/contact/mapa_legnitz_sm.png"), url("../img/contact/old_map_sm.jpg");
    padding: 10vh 2vw;
    height: 450px;
  }
}
.contactentry h1 {
  font-family: "Asul", sans-serif;
  font-size: 70px;
  font-weight: 700;
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .contactentry h1 {
    font-size: 2.7rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .contactentry h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
}
@media screen and (max-width: 400px) {
  .contactentry h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
}
.contactentry span {
  font-size: calc(1rem + 1vw);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .contactentry span {
    margin-top: 20px;
    font-size: 1.3rem !important;
  }
}
@media screen and (max-width: 600px) {
  .contactentry span {
    font-size: 1.2rem !important;
  }
}
@media screen and (max-width: 400px) {
  .contactentry span {
    font-size: 1rem !important;
  }
}
.contactentry p {
  color: var(--color-accent-m);
  font-size: 28px !important;
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  .contactentry p {
    font-size: 18px !important;
  }
}
.contactentry .contactentry__loc {
  padding: 20px 0;
}
.contactentry .contactentry__loc i {
  margin-right: 20px;
  animation: pin 2s infinite;
  color: var(--color-secondary-m);
  filter: drop-shadow(0 0 10px var(--color-black-m));
}
@media screen and (max-width: 600px) {
  .contactentry .contactentry__loc i {
    margin-right: 10px;
    animation: pinSmall 2s infinite;
  }
}
.contactentry .contactentry__loc span {
  transition: 1s ease-in-out;
}
.contactentry .contactentry__loc span:hover {
  color: var(--color-primary);
}
.contactentry .contactentry__loc p {
  color: var(--color-black-m);
}
.contactentry .contactentry__loc p span {
  color: var(--color-black);
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .contactentry .contactentry__loc p span {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contactentry .contactentry__loc p span {
    font-size: 18px;
  }
}
.contactentry .imgBox__container .imgBox1 {
  position: absolute;
  top: 40px;
  left: 0px;
  width: 280px;
  height: 280px;
  filter: drop-shadow(0 0 10px var(--color-black-m));
  animation: rose 12s linear infinite;
}
@media screen and (max-width: 800px) {
  .contactentry .imgBox__container .imgBox1 {
    width: 222px;
    height: 228px;
    animation: roseTb 9s linear infinite;
  }
}
@media screen and (max-width: 600px) {
  .contactentry .imgBox__container .imgBox1 {
    top: 40px;
    left: -50px;
    width: 128px;
    height: 132px;
    animation: roseMd 6s linear infinite;
  }
}
.contactentry .imgBox__container .imgBox2 {
  position: absolute;
  top: 180px;
  right: -260px;
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 0 10px var(--color-black-m));
  animation: rose2 10s 1s linear infinite;
}
@media screen and (max-width: 800px) {
  .contactentry .imgBox__container .imgBox2 {
    width: 173px;
    height: 174px;
    animation: rose2Tb 9s linear infinite;
  }
}
@media screen and (max-width: 600px) {
  .contactentry .imgBox__container .imgBox2 {
    right: -120px;
    width: 99px;
    height: 100px;
    animation: rose2Md 9s linear infinite;
  }
}
.contactentry .imgBox__container .imgBox3 {
  position: absolute;
  top: 520px;
  left: 0px;
  width: 260px;
  height: 260px;
  filter: drop-shadow(0 0 10px var(--color-black-m));
  animation: rose3 15s linear infinite;
}
@media screen and (max-width: 800px) {
  .contactentry .imgBox__container .imgBox3 {
    top: 300px;
    left: 0px;
    width: 167px;
    height: 175px;
    animation: rose3Tb 9s linear infinite;
  }
}
@media screen and (max-width: 600px) {
  .contactentry .imgBox__container .imgBox3 {
    top: 260px;
    left: 0px;
    width: 97px;
    height: 101px;
    animation: rose3Md 9s linear infinite;
  }
}

.contact__info1 {
  grid-column: container-start/container-end;
  background: url("../img/contact/palm_leaf.png"), url("../img/contact/old_paper1.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 0;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .contact__info1 {
    background: url("../img/contact/palm_leaf_sm.png"), url("../img/contact/old_paper1_tb.jpg");
    padding: 100px 0;
  }
}
.contact__info1 .info--container1 {
  position: relative;
}
.contact__info1--container {
  width: 750px;
  height: 760px;
  padding: 30px;
  background: url("../img/contact/brodazagloby_logo_herb_kolor.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-black-m);
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.5);
  transition: 1s ease-in-out;
}
@media screen and (max-width: 800px) {
  .contact__info1--container {
    width: 550px;
    height: 700px;
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container {
    width: 350px;
    height: 520px;
    padding: 15px;
    background: url("../img/contact/brodazagloby_logo_herb_kolorsm.png");
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--color-black-m);
  }
}
@media screen and (max-width: 400px) {
  .contact__info1--container {
    width: 320px;
    height: 490px;
    padding: 10px;
  }
}
.contact__info1--container:hover {
  background: url("../img/contact/brodazagloby_logo_herb_ramka.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-black-m);
}
@media screen and (max-width: 600px) {
  .contact__info1--container:hover {
    background: url("../img/contact/brodazagloby_logo_herb_ramkasm.png");
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--color-black-m);
  }
}
.contact__info1--container:hover i {
  color: var(--color-gold);
}
.contact__info1--container:hover a {
  opacity: 1;
}
.contact__info1--container:hover h3 {
  opacity: 1;
}
.contact__info1--container:hover span {
  opacity: 1;
}
.contact__info1--container h2 {
  color: var(--color-white);
  font-size: 40px;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .contact__info1--container h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .contact__info1--container h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.contact__info1--container h5 {
  color: var(--color-white);
  font-size: 40px;
  margin-bottom: 40px;
  line-height: 1;
  animation: pin 2s infinite;
}
@media screen and (max-width: 800px) {
  .contact__info1--container h5 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .contact__info1--container h5 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.contact__info1--container h3 {
  font-size: 24px;
  color: var(--color-white);
  font-weight: 100;
  opacity: 0;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 600px) {
  .contact__info1--container h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container h3 {
    font-size: 18px;
  }
}
.contact__info1--container span {
  font-size: 40px;
  color: var(--color-white);
  opacity: 0;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 600px) {
  .contact__info1--container span {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container span {
    font-size: 22px;
  }
}
.contact__info1--container .reserve__booksy--link {
  margin: 25px 0;
}
.contact__info1--container .reserve__booksy--link a {
  padding: 15px 25px;
  background-color: var(--color-black-m);
  font-size: 24px;
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .contact__info1--container .reserve__booksy--link a {
    font-size: 20px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container .reserve__booksy--link a {
    font-size: 18px;
  }
}
.contact__info1--container .reserve__booksy--link a:hover {
  background-color: var(--color-gold);
  color: var(--color-black-m) !important;
}
.contact__info1--container i {
  color: var(--color-white);
  font-size: 40px;
  transition: 1s ease-in-out;
  animation: booksy 4s 1s infinite;
}
@media screen and (max-width: 600px) {
  .contact__info1--container i {
    font-size: 30px;
  }
}
.contact__info1--container a {
  margin: 0 150px;
  font-size: 36px;
  opacity: 0;
  transition: 1s ease-in-out;
}
@media screen and (max-width: 800px) {
  .contact__info1--container a {
    margin: 0 80px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container a {
    margin: 0 30px;
  }
}
@media screen and (max-width: 400px) {
  .contact__info1--container a {
    margin: 0 20px;
  }
}
.contact__info1--container a:hover {
  color: var(--color-gold) !important;
}
.contact__info1--container a:nth-of-type(2) {
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .contact__info1--container a:nth-of-type(2) {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact__info1--container a:nth-of-type(2) {
    font-size: 18px;
  }
}
.contact__info1--container .comunicators {
  margin: 20px 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .contact__info1--container .comunicators {
    margin: 0;
  }
}
.contact__info1--container .comunicators i {
  font-size: 30px;
}

@keyframes rose {
  0% {
    transform: translateX(-100%) translateY(0) rotate(0);
  }
  100% {
    transform: translateX(1000%) translateY(180%) rotate(360deg);
  }
}
@keyframes rose2 {
  0% {
    transform: translateX(100%) translateY(0%) rotate(0);
  }
  50% {
    transform: translateX(-350%) translateY(-20%) rotate(360deg);
  }
  100% {
    transform: translateX(-1500%) translateY(180%) rotate(-360deg);
  }
}
@keyframes rose3 {
  0% {
    transform: translateX(-100%) translateY(0%) rotate(0);
  }
  40% {
    transform: translateX(450%) translateY(-20%) rotate(360deg);
  }
  70% {
    transform: translateX(650%) translateY(-150%) rotate(-360deg);
  }
  100% {
    transform: translateX(1500%) translateY(-80%) rotate(360deg);
  }
}
@keyframes roseTb {
  0% {
    transform: translateX(-100%) translateY(0) rotate(0);
  }
  100% {
    transform: translateX(430%) translateY(110%) rotate(360deg);
  }
}
@keyframes rose2Tb {
  0% {
    transform: translateX(100%) translateY(0%) rotate(0);
  }
  50% {
    transform: translateX(-100%) translateY(-80%) rotate(360deg);
  }
  70% {
    transform: translateX(-300%) translateY(120%) rotate(-360deg);
  }
  100% {
    transform: translateX(-430%) translateY(-200%) rotate(360deg);
  }
}
@keyframes rose3Tb {
  0% {
    transform: translateX(-100%) translateY(0%) rotate(0);
  }
  40% {
    transform: translateX(300%) translateY(-20%) rotate(360deg);
  }
  100% {
    transform: translateX(430%) translateY(-280%) rotate(-360deg);
  }
}
@keyframes roseMd {
  0% {
    transform: translateX(-100%) translateY(-20%) rotate(0);
  }
  100% {
    transform: translateX(450%) translateY(180%) rotate(360deg);
  }
}
@keyframes rose2Md {
  0% {
    transform: translateX(100%) translateY(0%) rotate(0);
  }
  40% {
    transform: translateX(-100%) translateY(-180%) rotate(360deg);
  }
  70% {
    transform: translateX(-250%) translateY(180%) rotate(-360deg);
  }
  100% {
    transform: translateX(-420%) translateY(-280%) rotate(360deg);
  }
}
@keyframes rose3Md {
  0% {
    transform: translateX(-100%) translateY(0%) rotate(0);
  }
  40% {
    transform: translateX(200%) translateY(-20%) rotate(-360deg);
  }
  70% {
    transform: translateX(-20%) translateY(0%) rotate(360deg);
  }
  100% {
    transform: translateX(430%) translateY(-420%) rotate(-360deg);
  }
}
@keyframes pin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-15px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pinSmall {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-7px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
#cookies {
  display: block;
  z-index: 99999;
  padding: 10px 50px;
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -2%);
  background: var(--color-white-m);
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #cookies {
    width: 95%;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  #cookies {
    padding: 10px;
  }
}
#cookies p {
  color: var(--color-black-m);
}
#cookies #cookies_alert {
  padding-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  #cookies #cookies_alert {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  #cookies #cookies_alert {
    font-size: 13px;
  }
}
#cookies #cookies_info {
  color: var(--color-accent);
  font-size: 13px;
  padding: 15px;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  #cookies #cookies_info {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  #cookies #cookies_info {
    font-size: 13px;
  }
}
#cookies #cookies_info:hover {
  color: var(--color-primary);
}
#cookies #okbutton {
  position: absolute;
  color: var(--color-primary);
  padding: 5px 12px;
  text-decoration: none;
  font-size: 26px;
  top: -5%;
  right: 0%;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 800px) {
  #cookies #okbutton {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  #cookies #okbutton {
    font-size: 22px;
  }
}
#cookies #okbutton:hover, #cookies #okbutton:visited {
  color: var(--color-accent);
}

.error {
  grid-column: container-start/container-end;
}
.error__container {
  position: relative;
  margin: 0 auto;
  padding: 220px 0;
}
@media screen and (max-width: 1100px) {
  .error__container {
    padding: 150px 0;
  }
}
@media screen and (max-width: 1100px) and (max-width: 800px) {
  .error__container {
    padding: 250px 0;
  }
}
@media screen and (max-width: 1100px) and (max-width: 600px) {
  .error__container {
    padding: 150px 0;
  }
}
@media screen and (max-width: 1100px) and (max-width: 400px) {
  .error__container {
    padding: 160px 0;
  }
}
.error__container h1 {
  text-align: center;
  font-size: 550px;
  line-height: 600px;
  color: var(--color-white-m);
}
@media screen and (max-width: 1100px) {
  .error__container h1 {
    font-size: 400px;
    line-height: 500px;
  }
}
@media screen and (max-width: 800px) {
  .error__container h1 {
    font-size: 350px;
    line-height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .error__container h1 {
    font-size: 220px;
    line-height: 350px;
  }
}
@media screen and (max-width: 400px) {
  .error__container h1 {
    font-size: 160px;
    line-height: 220px;
  }
}
.error__container h3 {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -17%);
  color: var(--color-white);
  font-size: 42px;
  z-index: 20;
  animation: fadeIn 2s ease-in-out forwards;
}
@media screen and (max-width: 1100px) {
  .error__container h3 {
    top: 17%;
    font-size: 38px;
  }
}
@media screen and (max-width: 800px) {
  .error__container h3 {
    top: 30%;
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .error__container h3 {
    top: 32%;
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .error__container h3 {
    top: 32%;
    font-size: 20px;
  }
}
.error__container img {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translate(-50%, -78%);
  width: 600px;
  height: 859px;
  border: 4px solid var(--color-white);
  border-radius: 10%;
  filter: opacity(0.7);
  object-fit: cover;
  animation: border 1s linear infinite;
}
@media screen and (max-width: 1100px) {
  .error__container img {
    top: 75%;
    width: 500px;
    height: 715px;
  }
}
@media screen and (max-width: 800px) {
  .error__container img {
    width: 450px;
    height: 644px;
  }
}
@media screen and (max-width: 600px) {
  .error__container img {
    width: 340px;
    height: 487px;
    animation: borderSm 1s linear infinite;
  }
}
@media screen and (max-width: 400px) {
  .error__container img {
    width: 260px;
    height: 372px;
  }
}
.error__container button {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -90%);
  margin: 0 auto;
  text-align: center;
  background: var(--color-primary-m);
  border: none;
  padding: 15px 30px;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 1100px) {
  .error__container button {
    top: 87%;
  }
}
@media screen and (max-width: 800px) {
  .error__container button {
    top: 87%;
  }
}
@media screen and (max-width: 600px) {
  .error__container button {
    top: 89%;
    padding: 10px 15px;
  }
}
.error__container button:hover {
  background: var(--color-accent-m);
}
.error__container .logo404 {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 120px;
  height: 45px;
  border: none;
  border-radius: none;
  filter: drop-shadow(0 0 4px black);
  animation: none;
}
@media screen and (max-width: 1100px) {
  .error__container .logo404 {
    top: 79%;
  }
}
@media screen and (max-width: 800px) {
  .error__container .logo404 {
    top: 78%;
  }
}

@keyframes border {
  0% {
    box-shadow: 0 0 50px var(--color-white), 0 0 10px var(--color-white), 0 0 5px var(--color-white), 0 0 4px var(--color-white), 0 0 20px var(--color-white);
  }
  2% {
    box-shadow: 0 0 30px var(--color-white), 0 0 40px var(--color-white), 0 0 60px var(--color-white), 0 0 80px var(--color-white), 0 0 120px var(--color-white);
  }
  40% {
    box-shadow: 0 0 2px var(--color-white), 0 0 0px var(--color-white), 0 0 5px var(--color-white), 0 0 10px var(--color-white), 0 0 15px var(--color-white);
  }
  45% {
    box-shadow: 0 0 20px var(--color-white), 0 0 30px var(--color-white), 0 0 40px var(--color-white), 0 0 50px var(--color-white), 0 0 60px var(--color-white);
  }
  47% {
    box-shadow: 0 0 4px var(--color-white), 0 0 0px var(--color-white), 0 0 7px var(--color-white), 0 0 5px var(--color-white), 0 0 10px var(--color-white);
  }
  95% {
    box-shadow: 0 0 2px var(--color-white), 0 0 0px var(--color-white), 0 0 5px var(--color-white), 0 0 10px var(--color-white), 0 0 15px var(--color-white);
  }
  100% {
    box-shadow: 0 0 30px var(--color-white), 0 0 40px var(--color-white), 0 0 60px var(--color-white), 0 0 80px var(--color-white), 0 0 120px var(--color-white);
  }
}
@keyframes borderSm {
  0% {
    box-shadow: 0 0 25px var(--color-white), 0 0 5px var(--color-white), 0 0 2.5px var(--color-white), 0 0 2px var(--color-white), 0 0 10px var(--color-white);
  }
  2% {
    box-shadow: 0 0 15px var(--color-white), 0 0 20px var(--color-white), 0 0 30px var(--color-white), 0 0 40px var(--color-white), 0 0 60px var(--color-white);
  }
  40% {
    box-shadow: 0 0 1px var(--color-white), 0 0 0px var(--color-white), 0 0 2.5px var(--color-white), 0 0 5px var(--color-white), 0 0 7.5px var(--color-white);
  }
  45% {
    box-shadow: 0 0 10px var(--color-white), 0 0 15px var(--color-white), 0 0 20px var(--color-white), 0 0 25px var(--color-white), 0 0 30px var(--color-white);
  }
  47% {
    box-shadow: 0 0 2px var(--color-white), 0 0 0px var(--color-white), 0 0 3.5px var(--color-white), 0 0 2.5px var(--color-white), 0 0 5px var(--color-white);
  }
  95% {
    box-shadow: 0 0 1px var(--color-white), 0 0 0px var(--color-white), 0 0 2.5px var(--color-white), 0 0 5px var(--color-white), 0 0 7.5px var(--color-white);
  }
  100% {
    box-shadow: 0 0 15px var(--color-white), 0 0 20px var(--color-white), 0 0 30px var(--color-white), 0 0 40px var(--color-white), 0 0 60px var(--color-white);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.showcase, .section-motto, .reserve, .features__content, .barbers, .clients, .testimonials, .footer, .ab-bg1, .ab-bg2, .ab-bg3, .ab-bg4, .ab-bg5, .priceentry, .pricelist__card-desc, .pricelist__card-more, .pricelist__card-more__price, .servicesentry, .contactentry {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.showcase, .section-motto, .reserve, .features, .barbers, .barbers__content--quote, .clients, .testimonials, .footer, .priceentry, .pricelist, .servicesentry {
  padding: 5vh 4vw;
}

.motto__content--title, .reserve__h2, .barbers__title, .clients__title, .testimonials__title {
  font-size: calc(1rem + 1vw);
  font-weight: 100;
  letter-spacing: 0.2rem;
  line-height: 1.2;
  color: var(--color-white);
}

.motto__content--para, .testimonials__content--slider__slide--para {
  font-size: calc(0.7rem + 0.4vw);
  color: var(--color-white);
  font-family: "Palanquin", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}

.reserve__content--section__title, .barbers__content--quote, .barbers__content--card__name, .clients__title--sub, .testimonials__content--slider__slide--title, .footer__content--section__title {
  font-size: calc(0.7rem + 0.4vw);
  color: var(--color-white);
}

.barbers__content--card__specialty {
  color: var(--color-white);
}

.scroll {
  position: fixed;
  bottom: 35rem;
  right: 1.5rem;
  height: 4rem;
  width: 4rem;
  background-image: url("../img/arch.svg");
  background-repeat: no-repeat;
  background-color: var(--color-accent-m);
  background-size: contain;
  background-position: center;
  padding: 0.5rem;
  border-radius: 50%;
  z-index: 30;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}

.scroll.active {
  visibility: visible;
  opacity: 1;
  bottom: 2rem;
}

html.transition,
html.transition *,
html.transition *::before,
html.transition *::after {
  transition: all 0.5s !important;
  transition-delay: 0 !important;
}/*# sourceMappingURL=main-style.css.map */