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

@media (max-width: 1023px) {
  .mobile-menu-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .mobile-menu-trigger .lines {
    position: relative;
  }
  .mobile-menu-trigger .lines > div {
    width: 20px;
    height: 2px;
    background-color: black;
  }
  .mobile-menu-trigger .lines > div + div {
    margin-top: 0.3em;
  }
  .mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    -webkit-transition: -webkit-transform 0.4s linear;
    transition: -webkit-transform 0.4s linear;
    transition: transform 0.4s linear;
    transition: transform 0.4s linear, -webkit-transform 0.4s linear;
    z-index: 9999999;
    height: 100vh;
    overflow-y: scroll;
    padding: 1em;
  }
  .mobile-menu-wrapper.active {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mobile-menu-wrapper ul {
    padding: 5rem 2rem 0;
  }
  .mobile-menu-wrapper ul li {
    margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 600;
    list-style: none;
    padding: 0 0 3rem;
    text-align: center;
  }
  .mobile-menu-wrapper ul li a {
    text-decoration: none;
    color: black;
    font-weight: 400;
  }
  .mobile-menu-wrapper ul li:last-child img {
    width: 100%;
    max-width: 100%;
  }
  .mobile-menu-wrapper ul .current-menu-item a {
    color: #000;
    font-weight: 600;
  }
  .mobile-menu-wrapper ul.sub-menu {
    padding: 3rem;
  }
  .mobile-menu-wrapper ul.sub-menu li {
    padding: 0;
  }
  .mobile-menu-wrapper .mobile-menu-trigger {
    color: black;
    position: absolute;
    right: 2rem;
    top: 1rem;
    font-size: 4rem;
    font-weight: 300;
  }
  .mobile-menu-wrapper .mobile-header-logo {
    text-align: left;
  }
  .menu-item {
    list-style: none;
  }
  .menu-item a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
  }
  .menu-item:last-child {
    border: none;
  }
  .menu-item-has-children a::after {
    content: "+";
    display: inline-block;
    float: left;
  }
  .menu-item-has-children a.active::after {
    content: "-";
  }
  .menu-item-has-children .sub-menu a:after {
    display: none;
  }
  .sub-menu {
    display: none;
  }
}

section.home-about {
  position: relative;
}

section.home-about .home-about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1023px) {
  section.home-about .home-about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

section.home-about .home-about-wrapper .home-about-icon {
  position: relative;
  -webkit-margin-end: 6em;
          margin-inline-end: 6em;
}

@media (max-width: 1023px) {
  section.home-about .home-about-wrapper .home-about-icon {
    width: 75%;
    padding-top: 2em;
  }
}

section.home-about .home-about-wrapper .home-about-icon lottie-player {
  position: relative;
  border-radius: 50%;
  border: 14px solid #3a78ae;
  background-color: #fff;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  /* margin: 0 0 5.5rem 0; */
  padding: 0;
  cursor: pointer;
}

section.home-about .home-about-wrapper .home-about-icon .decor {
  width: 65%;
  z-index: -1;
  bottom: -4em;
}

@media (max-width: 1023px) {
  section.home-about .home-about-wrapper .home-about-icon {
    text-align: center;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
  section.home-about .home-about-wrapper .home-about-icon img {
    width: 60%;
  }
}

section.home-category {
  background-color: #F7F7F7;
}

section.home-category .circle-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 1023px) {
  section.home-category .circle-button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 1023px) {
  section.home-category .circle-button-wrapper .circle-button {
    margin: 0 0 8.5rem 0;
  }
}

section.home-category .circle-button-wrapper .circle-button span {
  font-family: "Rubik", sans-serif;
}

@media (max-width: 1023px) {
  section.home-category .circle-button-wrapper .circle-button span {
    bottom: -3.5rem;
  }
}

section.home-recently {
  position: relative;
}

section.home-blog {
  position: relative;
  background-color: #F7F7F7;
}

@media (max-width: 1023px) {
  section.home-blog .container {
    padding: 4rem 6rem;
  }
}

section.home-blog .all-blog-button {
  text-align: center;
  padding-top: 4em;
  border-radius: 10px;
}

section.home-blog .all-blog-button button {
  color: #ffffff;
  background: #4080C0;
  padding: 0.6em 2em;
}

section.home-blog .all-blog-button button a {
  text-decoration: none;
}

section.newsletter {
  position: relative;
  text-align: center;
  color: white;
  background-color: #E2893E;
}

section.newsletter .title {
  padding-bottom: 0.2em;
}

section.newsletter .pos {
  right: 30em;
}

@media (max-width: 1023px) {
  section.newsletter .pos {
    right: 0;
  }
}

section.newsletter img {
  width: 9%;
}

section.newsletter form .newsletter {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 2fr 1fr;
      grid-template-columns: 2fr 2fr 1fr;
  gap: 2em;
  width: 90rem;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  section.newsletter form .newsletter {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    width: 80%;
  }
}

section.newsletter form .newsletter .btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.title {
  text-align: center;
  padding-bottom: 1em;
  font-size: 3rem;
  font-weight: 700;
}

.flickity-page-dots .is-selected {
  background: #4080C0 !important;
}

.blog-card-container {
  height: 18em;
}

@media (max-width: 1023px) {
  .blog-card-container {
    height: 29em;
  }
}

.blog-card-container .flickity-viewport {
  height: 100% !important;
}

@media (min-width: 1024px) {
  .blog-card-container .flickity-slider .is-selected {
    padding-left: 0.4em;
  }
}

.blog-card {
  margin: 1em;
  width: 48%;
}

@media (max-width: 1023px) {
  .blog-card {
    width: 100%;
  }
}

.blog-card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

@media (max-width: 1023px) {
  .blog-card__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog-card__img {
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}

@media (max-width: 1023px) {
  .blog-card__img {
    width: 100%;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.blog-card__img img {
  display: block;
  border-radius: 0 10px 10px 0;
}

.blog-card__img img:lang(en) {
  border-radius: 10px 0 0 10px !important;
}

@media (max-width: 1023px) {
  .blog-card__img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 23rem;
    border-radius: 10px 10px 0 0;
  }
}

.blog-card__content {
  -webkit-margin-end: 1em;
          margin-inline-end: 1em;
}

@media (max-width: 1023px) {
  .blog-card__content {
    padding: 1em;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

@media (max-width: 1023px) {
  .blog-card__content-read-more {
    text-align: end;
  }
}

.blog-card__content-read-more a {
  color: #4080C0;
  text-decoration: none;
  font-weight: 500;
}

.products-container {
  height: 21em;
}

.products-container .flickity-viewport {
  height: 100% !important;
}

.products-container .product {
  text-align: center;
  text-decoration: none;
}

.products-container .product-outer {
  width: 25%;
  padding: 0 1em;
}

@media (max-width: 1023px) {
  .products-container .product-outer {
    width: 75%;
  }
}

.products-container .product__wrapper > div + div {
  margin-top: 0.4em;
}

.products-container .product__img img {
  border-radius: 10px;
  display: block;
  width: 26rem;
  height: 26rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .products-container .product__img img {
    width: 100%;
  }
}

.products-container .product__title h3 {
  font-weight: 400;
}

.products-container .product__price span {
  font-weight: 600;
  font-size: 2rem;
}

.blog-container .blog-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}

.blog-container .blog-wrapper .blog-card {
  width: 46%;
}

@media (max-width: 1023px) {
  .blog-container .blog-wrapper .blog-card {
    width: 100%;
  }
}
/*# sourceMappingURL=gal.css.map */