﻿@charset "UTF-8";
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.6);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cartShake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-2px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(2px, 0, 0);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --bs-primary: $primary;
  --bs-primary-rgb: 255, 196, 81;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: #444;
}

main {
  flex: 1;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  main {
    margin-bottom: 60px;
  }
}

a {
  color: #3e7879;
  text-decoration: none;
}
a:hover {
  color: rgb(79.2786885246, 153.4426229508, 154.7213114754);
  text-decoration: none;
}
a[target=_blank]:not([href*="beautypillow.com.ua"]), a[href^="http://"]:not([href*="beautypillow.com.ua"]), a[href^="https://"]:not([href*="beautypillow.com.ua"]) {
  position: relative;
  padding-right: 14px;
}
a[target=_blank]:not([href*="beautypillow.com.ua"]):after, a[href^="http://"]:not([href*="beautypillow.com.ua"]):after, a[href^="https://"]:not([href*="beautypillow.com.ua"]):after {
  content: "↗";
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 0.8em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
a[target=_blank]:not([href*="beautypillow.com.ua"]):hover:after, a[href^="http://"]:not([href*="beautypillow.com.ua"]):hover:after, a[href^="https://"]:not([href*="beautypillow.com.ua"]):hover:after {
  opacity: 1;
}
a.external-link {
  position: relative;
  padding-right: 14px;
}
a.external-link:after {
  content: "↗";
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 0.8em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
a.external-link:hover:after {
  opacity: 1;
}
a.no-external-icon:after {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 30px;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .breadcrumbs {
    margin-bottom: 60px;
  }
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  padding-right: 10px;
  color: rgb(46.5, 46.5, 46.5);
  content: "/";
}

.container--short {
  max-width: 730px;
  margin: 0 auto;
  padding: 0 12px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  bottom: 15px;
  z-index: 996;
  background: #ffc451;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #151515;
}
.back-to-top.right {
  right: 15px;
}
@media (min-width: 479px) {
  .back-to-top.right {
    right: 10px;
  }
}
.back-to-top.left {
  left: 15px;
}
@media (min-width: 479px) {
  .back-to-top.left {
    left: 10px;
  }
}
.back-to-top:hover {
  background: #151515;
  color: #ffc451;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #3fabac;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0ms !important;
  }
}
.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.highlight-color {
  color: #dc3545;
}

.underline-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  padding: 15px 0;
  background: #3fabac;
}
#header .logo {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  #header .logo {
    font-size: 38px;
  }
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  #header .logo {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  #header .logo {
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  #header .logo {
    font-size: 24px;
  }
}
#header .logo a {
  color: #fff;
  font-family: "Mr Dafoe", sans-serif;
}
#header .logo a span {
  color: #ffc451;
}
#header .logo img {
  max-height: 40px;
}

.language-selector {
  margin-left: 10px;
  position: relative;
}
.language-selector:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #3e7879;
  pointer-events: none;
}
.language-selector select {
  padding: 8px 30px 8px 15px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}
.language-selector select.language-changing {
  opacity: 0.7;
  transform: scale(0.95);
}
.language-selector select:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.language-selector select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(62, 120, 121, 0.3);
}
.language-selector select option {
  background-color: #3fabac;
  color: #fff;
}

/*--------------------------------------------------------------
#  Get Start Button
--------------------------------------------------------------*/
.cart-button {
  position: relative;
  color: #fff;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cart-button {
    margin-right: 15px;
  }
}
.cart-button:hover, .cart-button:active, .cart-button:focus {
  color: #3e7879;
}
.cart-button.added-item .cart-button__counter {
  animation: bounce 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.cart-button.added-item svg {
  animation: cartShake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.cart-button__counter:not(:empty) {
  position: absolute;
  right: -7px;
  top: -2px;
  background: #ffc451;
  color: #151515;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.animated-add-to-cart {
  box-shadow: 0 0 10px rgba(255, 196, 81, 0.7);
  pointer-events: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #444;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #ffc451;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 10px;
  margin-right: 7px;
}
.mobile-nav-toggle > span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: transform 0.3s ease-in-out;
}
.mobile-nav-toggle.active {
  position: absolute;
  top: 0;
  right: 0;
}
.mobile-nav-toggle.active > span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.active > span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active > span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:hover, .navbar-mobile li:hover > a {
  color: #151515;
  background-color: #ffc451;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background-color: #ffc451;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  background-color: #3e7879;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media (min-width: 992px) {
  #hero {
    min-height: calc(100vh - 72px);
  }
}
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
#hero h1 {
  margin: 0;
  font: 400 96px/1 "Mr Dafoe", sans-serif;
  color: #fff;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}
#hero p {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
}
#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
  color: #ffc451;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 1279px) {
  #hero .icon-box {
    padding: 10px;
  }
}
#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0;
  padding: 0;
  font-size: 19px;
  line-height: 1.4;
  color: #3e7879;
}
#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}
#hero .icon-box h3 a:hover {
  color: #ffc451;
}
#hero .icon-box:hover {
  border-color: #ffc451;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 60px;
  }
  #hero h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.section-title {
  padding-bottom: 40px;
}
.section-title > span {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}
.section-title > span:after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  background: rgb(255, 221.9396551724, 157.5);
  margin: 0 10px;
}
.section-title > h2 {
  text-transform: uppercase;
  color: #343a40;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  margin-bottom: 30px;
  font-size: 28px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding: 0 0 8px;
  position: relative;
}
.about .content ul svg {
  flex-shrink: 0;
  color: #ffc451;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .icon-box {
  padding-left: 15px;
  font-size: 15px;
  display: flex;
  gap: 15px;
}
.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px;
}
.about .icon-box svg {
  color: #ffc451;
  flex-shrink: 0;
}
.about .icon-box p {
  color: rgb(131.75, 131.75, 131.75);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}
.features .icon-box {
  padding-left: 15px;
  font-size: 15px;
  display: flex;
  gap: 15px;
}
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px;
}
.features .icon-box svg {
  color: #ffc451;
  flex-shrink: 0;
}
.features .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Noto Sans", sans-serif;
}
.features .content ul {
  list-style: none;
  padding: 0;
  padding-left: 0rem;
}
.features .content ul li {
  padding: 0 0 8px;
  position: relative;
}
.features .content ul svg {
  flex-shrink: 0;
  color: #ffc451;
}
.features .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-color: #3e7879;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 60px 0;
  color: #fff;
}
.cta h3 {
  font-size: 28px;
  font-weight: 700;
}
.cta .cta-btn {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .products-item {
  margin-bottom: 30px;
}
.products #products-filters {
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  text-align: center;
}
.products #products-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
.products #products-filters li:hover, .products #products-filters li.filter-active {
  color: #fff;
  background: #3e7879;
}
.products #products-filters li:last-child {
  margin-right: 0;
}
.products .products-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.2);
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}
.products .products-wrap:hover {
  border-color: transparent;
  box-shadow: 0 0 20px 10px rgba(0, 255, 255, 0.7);
}
.products .products-wrap:hover::before {
  opacity: 1;
  z-index: 2;
}
.products .products-wrap:hover img {
  transform: scale(1.2);
}
.products .products-wrap:hover .products-info {
  opacity: 1;
  z-index: 3;
}
.products .products-wrap:hover .products-price {
  opacity: 0;
}
.products .products-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  opacity: 0;
  border-radius: 15px;
  box-shadow: 0 0 20px 10px rgba(0, 255, 255, 0.5);
}
.products .products-wrap img {
  transition: all ease-in-out 0.3s;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  max-height: 100%;
  object-fit: contain;
}
.products .products-wrap .products-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.products .products-wrap .products-info h4 {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
}
.products .products-wrap .products-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  padding: 0;
  margin: 0 0 20px;
}
.products .products-wrap .products-links {
  text-align: center;
}
.products .products-wrap .products-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.products .products-wrap .products-links a:hover {
  color: #ffc451;
}
.products .products-wrap .products-price {
  transition: 0.3s;
  background: #c5f4ee;
}

/*--------------------------------------------------------------
# Products Details
--------------------------------------------------------------*/
.products-details {
  padding-top: 40px;
}
.products-details .products-details-slider img {
  width: 100%;
}
.products-details .products-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.products-details .products-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc451;
}
.products-details .products-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}
.products-details .products-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}
.products-details .products-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.products-details .products-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.products-details .products-info ul li + li {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}
.counts .content h3 {
  font-weight: 700;
  color: #151515;
}
@media (min-width: 768px) {
  .counts .content h3 {
    font-size: 34px;
  }
}
.counts .content p {
  margin-bottom: 0;
}
.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
  display: flex;
  gap: 15px;
}
.counts .content .count-box svg {
  color: #ffc451;
  flex-shrink: 0;
}
.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-bottom: 15px;
}
.counts .content .count-box p {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: rgb(59.25, 59.25, 59.25);
}
.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: rgb(59.25, 59.25, 59.25);
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
  color: rgb(97.5, 97.5, 97.5);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background-image: image-set(var(--small-testimonials-image) 1x, var(--large-testimonials-image) 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 80px 0;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  vertical-align: baseline;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  vertical-align: top;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}
@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .email-form {
  width: 100%;
  background: #fff;
}
.contact .email-form .form-group {
  padding-bottom: 8px;
}
.contact .email-form .error-message {
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .email-form .error-message br + br {
  margin-top: 25px;
}
.contact .email-form .sent-message {
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
.contact .email-form input,
.contact .email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .email-form input:focus,
.contact .email-form textarea:focus {
  border-color: #ffc451;
}
.contact .email-form input {
  height: 44px;
}
.contact .email-form textarea {
  padding: 10px 12px;
}
.contact .email-form button[type=submit] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .email-form button[type=submit]:hover {
  background: rgb(255, 204.6465517241, 106.5);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 45px 30px;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid rgb(33.75, 33.75, 33.75);
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(41.4, 41.4, 41.4);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: rgb(255, 204.6465517241, 106.5);
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.secondary-button, .primary-button {
  display: inline-flex;
  justify-content: center;
  background: #ffc451;
  color: #151515;
  min-width: 110px;
  padding: 7px 15px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 700;
  text-decoration: none;
}
.secondary-button:hover, .primary-button:hover {
  text-decoration: none;
}

.primary-button {
  background: #ffc451;
  color: #151515;
  border: 2px solid #ffc451;
}
.primary-button:hover, .primary-button:active, .primary-button:focus {
  background: #151515;
  color: #ffc451;
  border-color: #151515;
}

.secondary-button {
  background: transparent;
  border: 2px solid #ffc451;
}
.secondary-button--bordered {
  border-color: #151515;
}
.secondary-button:hover, .secondary-button:active, .secondary-button:focus {
  background: #ffc451;
  color: #151515;
  border-color: #ffc451;
}
.secondary-button--bordered:hover, .secondary-button--bordered:active, .secondary-button--bordered:focus {
  background: #151515;
  color: #ffc451;
  border-color: #151515;
}

.form-label {
  margin-bottom: 5px;
  font-size: 14px;
}

.form-control:focus,
.form-check-input:focus {
  border-color: #ffc451;
  box-shadow: 0 0 0 0.25rem rgba(249, 196, 93, 0.25);
}

.form-check-input:checked {
  background-color: #ffc451;
  border-color: #ffc451;
}

.product-page__info {
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 15px;
}
.product-page__info p:not(:empty) {
  display: table-row;
  margin: 0;
}
.product-page__info p:last-child > strong {
  padding-bottom: 0;
}
.product-page__info p > strong {
  display: table-cell;
  padding: 0 10px 10px 0;
  min-width: 130px;
  max-width: 180px;
}

.checkout-page__item {
  padding-bottom: 24px;
  border-bottom: 1px solid #e9e9e9;
}
.checkout-page__item-description p {
  margin: 0;
}
.checkout-page__item-counter {
  border: 1px solid #e9e9e9;
}
.checkout-page__item-counter .btn {
  padding-top: 0;
  padding-bottom: 0;
}
.checkout-page__item-counter .btn:active {
  border-color: transparent;
}
.checkout-page__delivery-form {
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 20px;
}
.checkout-page .text-red {
  color: #dc3545;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/shared/_animations.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/shared/_general.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/shared/_variables.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/shared/_mixins.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/shared/_utilities.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/header.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/nav.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/hero.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/sections.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/footer.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/button.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/components/form.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/pages/product-page.scss%22,%22file:///C:/MyProjects/beauty-pillow/BeautyPillow.Infrastructure/wwwroot/scss/pages/checkout-page.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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EACI;;;AAKZ;AAAA;AAAA;AAGA;EACI;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,ON3GF;EM4GE;;AAKJ;EACI;EACA;EACA,aNzHG;;AM4HP;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA,ONnIN;;AMuIF;EACI;;;AAKZ;AAAA;AAAA;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI,aNpKO;EMqKP;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,YN5KF;EM6KE,cN7KF;EM8KE,ON7KA;;;AMkLZ;AAAA;AAAA;AAII;EACI;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,ON1MF;EM2ME;EACA;EACA;;AAEA;EAEI,ONpMR;EMqMQ,YNhMH;;AMmMD;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,ONvRR;EMwRQ;;AAGJ;EACI;EACA;EACA;EACA;;AAIR;EACI;;AAEA;EACI,ONvSR;EMwSQ;EACA;EACA;EACA;;AAEA;EACI,ON1TV;;AM+TF;EACI;EACA,YN/SC;;;AMoTb;AAAA;AAAA;AAGA;EACI;;AAGI;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI,kBN9VN;;AMmWN;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;;AAMhB;AAAA;AAAA;AAII;EACI;;AAEA;EACI;EACA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%22%7D */