@font-face {
  font-family: "Yeseva";
  src: url("../assets/fonts/Yeseva One/YesevaOne-Regular.woff") format("woff"), url("../assets/fonts/Yeseva One/YesevaOne-Regular.woff") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Forum";
  src: url("../assets/fonts/Forum/Forum-Regular.woff") format("woff"), url("../assets/fonts/Forum/Forum-Regular.woff") format("woff2");
  font-weight: 400;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Forum;
  color: #333333;
}

html, body {
  overflow-x: hidden;
}

body {
  background-color: #E5FAFB;
}

h1, h2, h3, h4, h5 {
  font-family: Yeseva;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.btn {
  font-size: 18px;
  font-family: Yeseva;
  background-color: #96D0FA;
  border-radius: 50px;
  padding: 10px 22px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

.btn:hover {
  background-color: #77C1F8;
}

.title--underline {
  font-family: Yeseva;
  position: relative;
  display: inline;
}

.title--underline svg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1024px) {
  .title--underline svg {
    display: none;
  }
}

.header {
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 10px 0;
  background-color: #A9EFF2;
}

.header--homepage {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

@media (max-width: 767px) {
  .header {
    position: relative;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .header--logo img {
    height: 50px;
    width: auto;
  }
}

.header--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header--menu-btn {
  display: none;
}

@media (max-width: 1024px) {
  .header--menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .header--menu-btn__line {
    height: 4px;
    width: 26px;
    background-color: #333333;
    border-radius: 20px;
    margin: 2px 0;
  }
  .header--menu-btn__line:last-child {
    width: 14px;
  }
}

.header--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1024px) {
  .header--nav {
    display: none;
  }
}

.header--nav-item {
  padding: 0 20px;
  border-right: 1px solid #333333;
}

.header--nav-item:nth-child(1) {
  padding: 0 20px 0 0;
}

.header--nav-item:last-child {
  padding: 0 0 0 20px;
  border: none;
}

.header--nav-link {
  color: #333333;
  font-size: 24px;
  font-family: Forum;
  text-decoration: none;
}

.header--nav-link:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #333333;
}

.dropdown-link {
  position: relative;
}

.dropdown-link:hover .dropdown {
  display: block;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 35px;
  width: 350px;
  display: none;
  z-index: 99;
}

.dropdown--space {
  background: #A9EFF2;
  height: 45px;
}

.dropdown--list {
  list-style: none;
  padding: 0;
  background-color: rgba(169, 239, 242, 0.95);
}

.dropdown--list-item {
  border: none;
  width: 100%;
  padding: 10px 0 10px 20px;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

.dropdown--list-item:hover {
  cursor: pointer;
  background-color: #96D0FA;
}

.dropdown--link {
  font-size: 24px;
  color: #333333;
  font-family: Forum;
  text-decoration: none;
}

.dropdown--link:hover {
  text-decoration: none;
  color: #333333;
}

.mobile-menu {
  position: absolute;
  z-index: 4;
  top: -100%;
  left: 0;
  width: 100%;
  height: calc(100vh - 134px);
  background-color: #A9EFF2;
  overflow-y: scroll;
  -webkit-transition: .5s ease-in;
  transition: .5s ease-in;
}

@media (max-width: 767px) {
  .mobile-menu {
    height: calc(100vh - 80px);
  }
}

.mobile-menu--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0;
  padding: 15px;
  list-style: none;
}

.mobile-menu--item {
  margin: 15px 0;
}

.mobile-menu--link {
  color: #333333;
  font-size: 24px;
  font-family: Forum;
  text-decoration: none;
  font-weight: bold;
}

.mobile-menu--link:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #333333;
}

.mobile-menu .mobile-dropdown {
  display: none;
}

.mobile-menu .mobile-dropdown--list {
  list-style: none;
  padding: 0;
}

.mobile-menu .mobile-dropdown--list-item {
  border: none;
  width: 100%;
  padding: 10px 0;
}

.mobile-menu .mobile-dropdown--link {
  font-size: 20px;
  color: #333333;
  font-family: Forum;
  text-decoration: none;
}

.mobile-menu .mobile-dropdown--link:hover {
  text-decoration: none;
  color: #333333;
}

.mobile-menu .dropdown-show {
  display: block;
}

.mobile-menu .mobile-dropdown-link {
  text-align: right;
}

.mobile-menu-show {
  top: 134px;
}

@media (max-width: 767px) {
  .mobile-menu-show {
    top: 80px;
  }
}

.menu-overflow {
  overflow: hidden;
}

.footer {
  background-color: #333333;
}

.footer--link {
  font-family: Forum;
  font-size: 24px;
  text-decoration: none;
  color: white;
  margin-left: 10px;
}

.footer--link:hover {
  color: white;
  cursor: pointer;
  text-decoration: underline;
}

.footer--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}

.footer--column:nth-child(1) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1024px) {
  .footer--column:nth-child(1) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer--column:nth-child(2) {
  border-left: 1px solid white;
  border-right: 1px solid white;
}

@media (max-width: 1024px) {
  .footer--column:nth-child(2) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}

.footer--column:nth-child(3) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1024px) {
  .footer--column:nth-child(3) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}

.footer--socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .footer--socials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
}

@media (max-width: 1024px) {
  .footer--social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer--social a {
  font-family: Forum;
  font-size: 24px;
  text-decoration: none;
  color: white;
  margin-left: 10px;
}

.footer--social a:hover {
  color: white;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer--social:nth-child(1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer--social:nth-child(1) a {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .footer--social:nth-child(2) {
    margin-top: 10px;
  }
}

.footer--social:nth-child(2) a {
  margin-left: 10px;
}

.footer--copyright {
  color: white;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .footer--copyright {
    font-size: 14px;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    padding: 30px 0;
  }
}

.hero-section--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

@media (max-width: 767px) {
  .hero-section--image {
    height: 100%;
  }
}

.hero-section--column {
  z-index: 2;
  margin-left: 8rem;
}

@media (max-width: 1024px) {
  .hero-section--column {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .hero-section--content {
    max-width: 90%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
  }
}

.hero-section--content p {
  max-width: 70%;
}

.hero-section--content::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 56%;
  top: 0;
  z-index: -2;
  left: 0;
}

@media (max-width: 1024px) {
  .hero-section--content::before {
    display: none;
  }
}

.hero-section--content::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
  height: 200px;
  width: 200px;
  top: -105px;
  right: 325px;
}

@media (max-width: 1024px) {
  .hero-section--content::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-section--content::after {
    display: none;
  }
}

.hero-section--indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
  -webkit-animation: indicator-animate ease-in-out;
          animation: indicator-animate ease-in-out;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (max-width: 1024px) {
  .hero-section--indicator {
    display: none;
  }
}

@-webkit-keyframes indicator-animate {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}

@keyframes indicator-animate {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}

.about-section--image {
  position: relative;
}

.about-section--image::after {
  content: "";
  width: 90%;
  height: 70%;
  background-color: white;
  position: absolute;
  z-index: -1;
  bottom: -35px;
  right: -35px;
}

@media (max-width: 1024px) {
  .about-section--image::after {
    display: none;
  }
}

.gallery-image {
  cursor: pointer;
}

.products-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 320px;
}

.product-image-big {
  width: 100%;
}

.product-image-small {
  cursor: pointer;
}

.image-active {
  border: 2px solid #96D0FA;
}

.product-gallery-link {
  font-size: 24px;
  color: #333333;
  font-family: Forum;
  text-decoration: none;
}

.product-gallery-link:hover {
  color: #333333;
  text-decoration: underline;
}

.faq {
  position: relative;
}

.faq::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #96D0FA;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
}

.faq--title {
  font-family: Yeseva;
}

#contact-form {
  max-width: 670px;
  margin: 0 auto;
}

.about-page--portrait {
  max-width: 520px;
}

@media (max-width: 1024px) {
  .about-page--portrait {
    max-width: 100%;
  }
}

.hug-a-bear__tagline {
  font-family: Yeseva, serif;
}

.hug-a-bear__section-title {
  font-family: Yeseva, serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 4px solid #96D0FA;
}

.hug-a-bear__package {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(150, 208, 250, 0.65);
  -webkit-box-shadow: 0 6px 28px rgba(51, 51, 51, 0.06);
          box-shadow: 0 6px 28px rgba(51, 51, 51, 0.06);
}

.hug-a-bear__package-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hug-a-bear__package-list li {
  position: relative;
  padding-left: 1.75rem;
}

.hug-a-bear__package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background-color: #96D0FA;
  border-radius: 50%;
}

.hug-a-bear__price {
  font-family: Yeseva, serif;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  background-color: #96D0FA;
  color: #333333;
  border-radius: 50px;
  padding: 14px 36px;
  display: inline-block;
}

.hug-a-bear__order-sheet {
  background-color: #fff;
  border: 2px dashed #96D0FA;
  border-radius: 12px;
}

.hug-a-bear__print-banner {
  font-family: Yeseva, serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hug-a-bear__label {
  font-weight: 700;
}

.hug-a-bear__line {
  min-height: 26px;
  border-bottom: 1px solid #333333;
  opacity: 0.75;
}

.hug-a-bear__line--tall {
  min-height: 64px;
}

.hug-a-bear__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 32px;
}

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

.hug-a-bear__checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #333333;
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hug-a-bear__disclaimer {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

@media print {
  .hug-a-bear__order-sheet {
    border-style: solid;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
/*# sourceMappingURL=style.css.map */