@charset "UTF-8";
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-ThinIta.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-XLightIta.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-LightIta.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-BookIta.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-MediumIta.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-BoldIta.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Ultra.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-UltraIta.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../assets/fonts/Gotham-BlackIta.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
nav {
  width: 100%;
  height: 6.25rem;
  background-color: #004077;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0px 26px 24px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 48rem) {
  nav {
    height: 5rem;
  }
}
nav .nav-wrapper {
  width: 100%;
  height: 100%;
  max-width: 75rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .nav-wrapper .nav-logo {
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 50rem) {
  nav .nav-wrapper .nav-logo {
    max-width: 9.375rem;
    height: auto;
  }
}
nav .nav-wrapper .nav-logo img {
  width: 100%;
  height: auto;
}
nav .nav-wrapper .menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.313rem;
  width: 1.6rem;
  height: 1.5rem;
  cursor: pointer;
}
nav .nav-wrapper .menu-btn span {
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
nav .nav-wrapper .menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(6px);
}
nav .nav-wrapper .menu-btn.active span:nth-child(2) {
  width: 0rem;
}
nav .nav-wrapper .menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4px) translateX(5px);
}
@media screen and (min-width: 48rem) {
  nav .nav-wrapper .menu-btn {
    display: none;
  }
}
nav .nav-wrapper .nav-menu {
  width: 0%;
  height: calc(100% - 5rem);
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #004077;
  padding: 0rem;
  padding-top: 3rem;
  overflow: hidden;
  user-select: none;
  visibility: hidden;
  display: flex;
  justify-content: start;
  align-items: end;
  flex-direction: column;
  z-index: 999;
  gap: 1.25rem;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
nav .nav-wrapper .nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
}
nav .nav-wrapper .nav-menu ul li {
  display: flex;
  justify-content: end;
  align-items: center;
}
nav .nav-wrapper .nav-menu ul li a {
  text-decoration: none;
  color: #004077;
  padding: 0.313rem 0.4rem;
  background-color: #fff;
  font-weight: bold;
}
nav .nav-wrapper .nav-menu.active {
  user-select: unset;
  visibility: visible;
  width: 100%;
  padding: 1.25rem;
}
@media screen and (min-width: 48rem) {
  nav .nav-wrapper .nav-menu {
    user-select: unset;
    visibility: visible;
    padding: 1.25rem;
    position: unset;
    width: 100%;
    justify-content: end;
    align-items: center;
    gap: 1.25rem;
    flex-direction: row;
  }
  nav .nav-wrapper .nav-menu ul {
    display: flex;
    gap: 1.25rem;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    list-style: none;
  }
  nav .nav-wrapper .nav-menu ul li {
    display: flex;
    justify-content: end;
    align-items: center;
  }
  nav .nav-wrapper .nav-menu ul li a {
    text-decoration: none;
    color: #004077;
    padding: 0.313rem;
    background-color: #fff;
    font-weight: bold;
  }
}

.main-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("/wp-content/themes/vocaler/assets/images/bg_1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  padding: 0rem 1.25rem;
}
@media screen and (max-width: 48rem) {
  .main-section {
    background-position: right;
  }
}
.main-section .main-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 75rem;
  height: auto;
  z-index: 1;
}
.main-section .main-section-wrapper h2 {
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  font-weight: bold;
  color: #004077;
  margin-left: 7rem;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 62.5rem) {
  .main-section .main-section-wrapper h2 {
    margin-left: 0rem;
    gap: 1rem;
    align-items: end;
  }
}
@media screen and (max-width: 50rem) {
  .main-section .main-section-wrapper h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 48rem) {
  .main-section .main-section-wrapper h2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-shadow: 3px 3px 2px rgba(255, 231, 231, 0.3);
  }
}
.main-section .main-section-wrapper h2 p {
  font-size: 4.5rem;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3);
  color: #fff;
}
@media screen and (max-width: 50rem) {
  .main-section .main-section-wrapper h2 p {
    font-size: 3.5rem;
  }
}
.main-section .main-section-wrapper .products {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 48rem) {
  .main-section .main-section-wrapper .products {
    flex-direction: column-reverse;
  }
}
.main-section .main-section-wrapper .products .left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 48rem) {
  .main-section .main-section-wrapper .products .left {
    width: 100%;
    gap: 1.25rem;
    margin-left: -1rem;
  }
}
.main-section .main-section-wrapper .products .left img {
  width: 150px;
  height: auto;
}
@media screen and (max-width: 48rem) {
  .main-section .main-section-wrapper .products .left img {
    width: 100px;
  }
}
.main-section .main-section-wrapper .products .right {
  width: 20%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 50rem) {
  .main-section .main-section-wrapper .products .right {
    width: 40%;
    justify-content: center;
  }
}
@media screen and (max-width: 48rem) {
  .main-section .main-section-wrapper .products .right {
    width: 100%;
  }
}
.main-section .main-section-wrapper .products .right img {
  width: 300px;
  height: auto;
}

.main-section-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  position: relative;
  position: relative;
  z-index: 2;
  padding: 0rem 1.25rem;
}
.main-section-bottom p {
  font-size: 1rem;
  text-align: center;
  font-weight: 300;
  max-width: 75rem;
  color: #004077;
  padding: 1.5rem;
  z-index: 2;
  background-color: #fff;
}
.main-section-bottom p strong {
  font-weight: 700;
}
.main-section-bottom::after {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #ffffff 20%, rgba(0, 0, 0, 0.3960784314) 50%, #ffffff 80%);
  content: "";
  position: absolute;
  bottom: -10px;
  border-radius: 60%;
  z-index: -1;
  filter: blur(10px);
}

.product {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("/wp-content/themes/vocaler/assets/images/bg_2.webp");
  background-size: 80%;
  background-position: left;
  background-repeat: no-repeat;
  z-index: 2;
  padding: 0rem 1.25rem;
}
.product .product-wrapper {
  padding-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  flex-direction: column;
  padding-bottom: 1.25rem;
}
.product .product-wrapper .content {
  font-size: 1.25rem;
  color: #004077;
  line-height: 1.4;
  text-align: left;
  font-weight: 300;
}
@media screen and (max-width: 48rem) {
  .product .product-wrapper .content {
    font-size: 1rem;
  }
}
.product .product-wrapper .content span {
  padding: 0.313rem;
  background-color: #9d3eb6;
  color: #fff;
}
.product .product-wrapper .columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 48rem) {
  .product .product-wrapper .columns {
    flex-direction: column;
  }
}
.product .product-wrapper .columns .left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 48rem) {
  .product .product-wrapper .columns .left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.product .product-wrapper .columns .left img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 48rem) {
  .product .product-wrapper .columns .left img {
    width: 100%;
    max-width: 500px;
  }
}
.product .product-wrapper .columns .left .buy-now-btn {
  background-color: #9d3eb6;
}
.product .product-wrapper .columns .right {
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 48rem) {
  .product .product-wrapper .columns .right {
    width: 100%;
  }
}
.product .product-wrapper .columns .right .ingredients {
  border: 2px solid #4a265c;
  padding: 1.25rem;
  color: #004077;
  border-radius: 1.25rem;
  background-color: #fff;
  padding-top: 2rem;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}
.product .product-wrapper .columns .right .ingredients .title {
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 1.25rem;
  line-height: 1.4;
}
.product .product-wrapper .columns .right .ingredients .title strong {
  font-weight: bold;
}
.product .product-wrapper .columns .right .ingredients ul {
  list-style: none;
  padding-left: 2rem;
}
.product .product-wrapper .columns .right .ingredients ul li {
  padding-bottom: rem;
  position: relative;
}
.product .product-wrapper .columns .right .ingredients ul li:first-child {
  padding-bottom: 1.25rem;
}
.product .product-wrapper .columns .right .ingredients ul li:first-child::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 80%;
  height: 1px;
  background-color: #004077;
}
.product .product-wrapper .columns .right .ingredients ul li:last-child {
  padding-bottom: 1rem;
}
.product .product-wrapper .columns .right .ingredients ul li h2 {
  font-size: 1.4rem;
}
@media screen and (max-width: 48rem) {
  .product .product-wrapper .columns .right .ingredients ul li h2 {
    font-size: 1rem;
  }
}
.product .product-wrapper .columns .right .ingredients ul li p {
  font-size: 0.8rem;
  font-weight: 300;
}
.product .product-wrapper .columns .right .ingredients ul li::after {
  position: absolute;
  content: "";
  top: 10px;
  left: -1.25rem;
  width: 9px;
  height: 9px;
  background: #FAA66C;
  border-radius: 50%;
  background: linear-gradient(126deg, rgb(250, 166, 108) 0%, rgb(86, 48, 21) 90%);
}
.product .product-wrapper .supplement {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 2.25rem;
}
.product .product-wrapper .supplement p {
  padding: 0.625rem 1.25rem;
  color: #004077;
  border: 1px solid #004077;
  font-weight: 300;
}

.vocaler {
  background-image: url("/wp-content/themes/vocaler/assets/images/bg_3.webp");
  background-size: 80%;
  background-position: right;
  background-repeat: no-repeat;
  padding-bottom: 2rem;
}
.vocaler .vocaler-wrapper .content {
  color: #004077;
}
.vocaler .vocaler-wrapper .content span {
  background-color: #004077;
}
.vocaler .vocaler-wrapper .columns {
  flex-direction: row-reverse;
}
@media screen and (max-width: 48rem) {
  .vocaler .vocaler-wrapper .columns {
    flex-direction: column-reverse;
  }
}
.vocaler .vocaler-wrapper .columns .left .buy-now-btn {
  background-color: #004077;
}
.vocaler .vocaler-wrapper .columns .right .ingredients {
  border: 2px solid #004077;
}
.vocaler .vocaler-wrapper .columns .right .ingredients ul li h2 {
  width: fit-content;
  border-bottom: 1px solid #004077;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.vocaler .vocaler-wrapper .columns .right .ingredients ul li:last-child h2 {
  border-bottom: none;
}
.vocaler .vocaler-wrapper .columns .right .ingredients ul li::before {
  display: none;
}
.vocaler .vocaler-wrapper .columns .right .ingredients ul li:nth-child(1) {
  padding-bottom: 0;
}
.vocaler .vocaler-wrapper .columns .right .ingredients ul li::after {
  position: absolute;
  content: "";
  top: 15px;
  left: -1.25rem;
  width: 9px;
  height: 9px;
  background: #004077;
  border-radius: 50%;
  background: linear-gradient(126deg, rgb(73, 179, 218) 10%, rgb(0, 0, 0) 100%);
}

.no-sugar {
  background-image: url("/wp-content/themes/vocaler/assets/images/bg_4.webp");
  background-size: 80%;
  background-position: left;
  background-repeat: no-repeat;
  padding-bottom: 2rem;
}
.no-sugar .no-sugar-wrapper .content {
  text-align: left;
  width: 100%;
  color: #004077;
}
.no-sugar .no-sugar-wrapper .content span {
  background-color: #259d4e;
}
.no-sugar .no-sugar-wrapper .columns {
  flex-direction: row;
}
@media screen and (max-width: 48rem) {
  .no-sugar .no-sugar-wrapper .columns {
    flex-direction: column;
  }
}
.no-sugar .no-sugar-wrapper .columns .left .buy-now-btn {
  background-color: #259d4e;
}
.no-sugar .no-sugar-wrapper .columns .right .ingredients {
  border: 2px solid #259d4e;
}
.no-sugar .no-sugar-wrapper .columns .right .ingredients ul li h2 {
  width: fit-content;
  border-bottom: 1px solid #004077;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.no-sugar .no-sugar-wrapper .columns .right .ingredients ul li:last-child h2 {
  border-bottom: none;
}
.no-sugar .no-sugar-wrapper .columns .right .ingredients ul li::before {
  display: none;
}
.no-sugar .no-sugar-wrapper .columns .right .ingredients ul li:nth-child(1) {
  padding-bottom: 0;
}
.no-sugar .no-sugar-wrapper .columns .right .ingredients ul li::after {
  position: absolute;
  content: "";
  top: 15px;
  left: -1.25rem;
  width: 9px;
  height: 9px;
  background: #004077;
  border-radius: 50%;
  background: linear-gradient(126deg, rgb(37, 157, 78) 10%, rgb(0, 0, 0) 100%);
}

.ingredients-section {
  background: transparent;
}
.ingredients-section .ingredients-wrapper {
  width: 100%;
}
.ingredients-section .ingredients-wrapper h2 {
  font-size: 3rem;
  color: #004077;
  padding-bottom: 3.125rem;
  font-weight: bold;
}
@media screen and (max-width: 48rem) {
  .ingredients-section .ingredients-wrapper h2 {
    font-size: 2rem;
  }
}
.ingredients-section .ingredients-wrapper .ingredients-list {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 6.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 48rem) {
  .ingredients-section .ingredients-wrapper .ingredients-list {
    gap: 3.125rem;
  }
}
.ingredients-section .ingredients-wrapper .ingredients-list .single-ingredient {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 6.25rem;
  gap: 1.25rem;
}
.ingredients-section .ingredients-wrapper .ingredients-list .single-ingredient img {
  width: 100%;
  height: auto;
}
.ingredients-section .ingredients-wrapper .ingredients-list .single-ingredient p {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  flex: 1 0 auto;
  color: #004077;
}
.ingredients-section .ingredients-wrapper .ingredients-bottom {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.625rem;
}
.ingredients-section .ingredients-wrapper .ingredients-bottom .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.ingredients-section .ingredients-wrapper .ingredients-bottom .icon img {
  max-width: 50px;
  width: 100%;
}
.ingredients-section .ingredients-wrapper .ingredients-bottom .icon h4 {
  font-size: 0.625rem;
  max-width: 100px;
  color: #004077;
}
.ingredients-section .ingredients-wrapper .ingredients-bottom p {
  font-size: 0.8rem;
  color: #004077;
}

/* Stan początkowy – niewidoczny */
.animate {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

/* Różne warianty animacji */
.animate[data-animation=fade-up] {
  transform: translateY(40px);
}

.animate[data-animation=fade-in] {
  transform: none;
}

.animate[data-animation=scale-in] {
  transform: scale(0.9);
}

.animate[data-animation=fade-left] {
  transform: translateX(-40px);
}

.animate[data-animation=fade-right] {
  transform: translateX(40px);
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.animate[style*="--delay"] {
  transition-delay: var(--delay);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

.buy-now-btn {
  padding: 0.625rem;
  background-color: #ef7601;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
}
.buy-now-btn p {
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 48rem) {
  .buy-now-btn {
    width: auto;
  }
}

.container {
  width: 100%;
  height: auto;
}

.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
  padding: 1.5rem;
}
.page-content .page-content-wrapper {
  width: 100%;
  max-width: 75rem;
}
.page-content .page-content-wrapper .page-title {
  margin-bottom: 3.125rem;
  font-weight: bold;
}
.page-content .page-content-wrapper ul, .page-content .page-content-wrapper ol {
  list-style-position: inside;
  padding: 1.25rem 0rem;
}
.page-content .page-content-wrapper strong {
  font-weight: bold;
  color: #004077;
}

.section-separator {
  background: #ffffff;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(14, 57, 71) 25%, rgb(255, 255, 255) 50%, rgb(14, 57, 71) 75%, rgb(255, 255, 255) 100%);
  width: 100%;
  height: 8px;
}
.section-separator.no-sugar-separator {
  opacity: 0.2;
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #106B9B;
  background: linear-gradient(180deg, rgb(16, 107, 155) 0%, rgb(53, 138, 181) 50%, rgb(16, 107, 155) 100%);
  box-shadow: inset 0px 17px 17px -2px rgba(0, 0, 0, 0.25);
  padding-bottom: 1.25rem;
}
footer h2 {
  font-size: 2rem;
  text-align: center;
  width: 100%;
  max-width: 700px;
  color: #fff;
  opacity: 0.5;
  padding: 3.125rem 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 48rem) {
  footer h2 {
    font-size: 1.4rem;
  }
}
footer .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 48rem) {
  footer .footer-links {
    flex-direction: column;
    width: 100%;
    gap: 0.625rem;
  }
}
footer .footer-links a {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
footer .footer-links a:hover {
  opacity: 1;
}
/*# sourceMappingURL=main.min.css.map */
