/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
h1 {
  line-height: normal !important;
}

@media (max-width: 500px) {
  h2 {
    font-size: 23px !important;
    text-align: center;
  }
}

.container-center {
  width: 1300px;
  padding: 0;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (width <= 1360px) {
  .container-center {
    width: 100%;
    padding: 0 30px;
  }
}
@media (width <= 600px) {
  .container-center {
    padding: 0 20px;
  }
}
.flex {
  display: flex;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-50 {
  gap: 50px;
}

.gap-70 {
  gap: 70px;
}

.gap-100 {
  gap: 100px;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 600;
}

.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

.m-0 {
  margin: 0;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-100 {
  margin-bottom: 100px;
}

.rounded-md {
  border-radius: 5px;
}

.rounded-full {
  border-radius: 100%;
}

#container-hero {
  border-bottom: 1px solid #f5f5f5;
  overflow: hidden;
  /* Hero Responsive */
}
#container-hero p.hero-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: var(--theme-font-family);
  line-height: 24px;
  color: var(--theme-palette-color-5);
}
#container-hero ul {
  list-style-type: none;
  padding-left: 5px;
  font-size: 18px;
}
#container-hero ul span {
  margin: 0 10px 0;
}
#container-hero .container-hero-text {
  flex: 1.5 0 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#container-hero .container-hero-text .button {
  width: 200px;
}
#container-hero .container-hero-example {
  flex: 0 0 500px;
  border-bottom: none;
  margin: 60px 0 0 100px;
  height: 650px;
  position: relative;
}
#container-hero .container-hero-example img {
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.05);
  border: 15px solid white;
  transition: box-shadow 0.2s;
  height: 95%;
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 10;
  transition: transform 0.3s, box-shadow 0.3s;
}
#container-hero .container-hero-example img + img {
  top: 0;
  right: 0;
  z-index: 9;
}
#container-hero .container-hero-example:hover img:first-of-type {
  transform: translate(-5px, 3px);
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.07);
}
#container-hero .container-hero-example:hover img:nth-of-type(2) {
  transform: translate(5px, -3px);
}
#container-hero .container-hero-example:hover svg {
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
}
#container-hero .container-hero-example #arrow-hint-example {
  position: absolute;
  width: 130px;
  right: 105%;
  bottom: 100px;
  text-align: center;
  z-index: 11;
}
#container-hero .container-hero-example #arrow-hint-example p {
  margin: 0;
}
#container-hero .container-hero-example #arrow-hint-example svg {
  position: absolute;
  right: -80px;
  width: 100px;
  bottom: -40px;
  transition: filter 0.3s;
}
@media (width <= 1200px) {
  #container-hero .container-hero-example {
    margin-left: 50px;
  }
}
@media (width <= 1100px) {
  #container-hero h1 {
    font-size: 40px;
  }
  #container-hero p.hero-subtitle {
    font-size: 15px;
  }
  #container-hero ul {
    font-size: 15px;
  }
  #container-hero .container-hero-example {
    flex: 0 0 450px;
    height: 600px;
  }
}
@media (width <= 1000px) {
  #container-hero #arrow-hint-example {
    display: none;
  }
}
@media (width <= 950px) {
  #container-hero h1 {
    font-size: 35px;
  }
  #container-hero .container-hero-example {
    flex: 0 0 420px;
    height: 550px;
  }
}
@media (width <= 850px) {
  #container-hero h1 {
    font-size: 40px;
  }
  #container-hero .container-hero-text {
    margin: 60px 0;
  }
  #container-hero .container-hero-example {
    display: none;
  }
}

.product-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 30px;
}
@media (max-width: 1000px) {
  .product-carousel-container {
    margin-bottom: -30px;
  }
}
.product-carousel-container .shadow-left,
.product-carousel-container .shadow-right {
  position: absolute;
  top: 3%;
  width: 10px;
  height: calc(94% - 30px);
  z-index: 1;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.2);
  display: none;
}
.product-carousel-container .shadow-left {
  left: -10px;
}
.product-carousel-container .shadow-right {
  right: -10px;
}
.product-carousel-container.overflowing-left .shadow-left, .product-carousel-container.overflowing-right .shadow-right {
  display: block;
}

.product-carousel {
  overflow-x: auto;
  padding: 20px 0;
  /* Hide scrollbar for IE, Edge and Firefox */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.product-carousel::-webkit-scrollbar {
  display: none;
}
.product-carousel ul {
  display: flex;
  gap: 0 20px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.product-carousel ul li {
  width: 250px;
  flex: 0 0 auto;
  padding: 10px 20px 15px 20px;
  border: 1px solid #efefef;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.product-carousel ul li:hover {
  transform: scale(1.03);
}
.product-carousel ul li img {
  width: 100%;
  height: auto;
}
.product-carousel ul li h3 {
  margin-top: 5px;
  display: -webkit-box;
  color: var(--theme-palette-color-3);
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  line-height: 22px;
  height: 44px;
  width: 100%;
}
.product-carousel ul li a {
  color: var(--theme-palette-color-3);
}
.product-carousel ul li a:hover {
  text-decoration: underline;
}
.product-carousel ul li span.price {
  display: block;
  padding-top: 10px;
}

.scroll-left,
.scroll-right {
  background-color: none;
  position: absolute;
  display: block;
  bottom: 0;
  color: rgba(0, 0, 0, 0.109);
  border: none;
  padding: 0 10px;
  z-index: 1;
  pointer-events: none;
  cursor: pointer;
}
.scroll-left svg,
.scroll-right svg {
  width: 11px;
  height: auto;
}
@media (max-width: 1000px) {
  .scroll-left,
  .scroll-right {
    display: none;
  }
}

.scroll-left {
  right: calc(50% + 30px);
}

.scroll-right {
  right: calc(50% - 30px);
}

.product-carousel-container.overflowing-left .scroll-left,
.product-carousel-container.overflowing-right .scroll-right {
  color: var(--theme-palette-color-4);
  pointer-events: auto;
}
.product-carousel-container.overflowing-left .scroll-left:hover,
.product-carousel-container.overflowing-right .scroll-right:hover {
  color: var(--theme-palette-color-3);
}

.single-product-container {
  display: flex;
  flex-direction: row;
  gap: 100px;
}
@media (max-width: 1000px) {
  .single-product-container {
    gap: 70px;
  }
}
@media (max-width: 900px) {
  .single-product-container {
    gap: 50px;
  }
}
@media (max-width: 800px) {
  .single-product-container {
    flex-direction: column;
  }
  .single-product-container .single-product-text-container {
    text-align: center;
  }
  .single-product-container .single-product-text-container a {
    margin: 10px auto 0;
  }
}

.single-product-images {
  position: relative;
  width: 450px;
}
.single-product-images img {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border: 10px solid white;
  transition: transform 0.5s;
}
.single-product-images img:first-of-type {
  width: 80%;
  position: relative;
  z-index: 5;
}
.single-product-images img:nth-of-type(2) {
  width: 70%;
  position: absolute;
  top: 6.5%;
  right: 10%;
  z-index: 4;
}
.single-product-images img:nth-of-type(3) {
  width: 60%;
  position: absolute;
  top: 13%;
  right: 0%;
  z-index: 3;
}
.single-product-images:hover img:first-of-type {
  transform: translateX(-10px);
}
.single-product-images:hover img:nth-of-type(2) {
  transform: translateX(13px);
}
.single-product-images:hover img:nth-of-type(3) {
  transform: translateX(35px);
}
@media (max-width: 900px) {
  .single-product-images {
    width: 350px;
  }
  .single-product-images:hover img {
    transform: none !important;
  }
}
@media (max-width: 400px) {
  .single-product-images {
    width: 100%;
  }
}

.products-section {
  background-color: white;
}

#section-posts {
  background-color: var(--theme-palette-color-6);
}
#section-posts .posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1000px) {
  #section-posts .posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  #section-posts .posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#section-posts .posts .post {
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
#section-posts .posts .post img {
  width: 100%;
  height: auto;
}
#section-posts .posts .post h3 {
  font-size: 20px;
  line-height: 22px;
}
#section-posts .posts .post a {
  color: var(--theme-palette-color-3);
}
#section-posts .posts .post a:hover {
  color: var(--theme-palette-color-1);
}

.lds-heart {
  /* change color here */
  color: var(--theme-button-background-initial-color);
}

.lds-heart,
.lds-heart div,
.lds-heart div:after,
.lds-heart div:before {
  box-sizing: border-box;
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  transform-origin: 40px 40px;
}

.lds-heart div {
  top: 28px;
  left: 28px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: currentColor;
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background: currentColor;
}

.lds-heart div:before {
  left: -24px;
  border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
  top: -24px;
  border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}
#container {
  display: flex;
  gap: 30px;
}

.column {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.column div {
  border-radius: 5px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.column div h3 {
  background-color: var(--theme-button-background-initial-color);
  color: var(--theme-button-text-initial-color);
  font-size: 22px;
  line-height: 25px;
}

@media (max-width: 800px) {
  #container {
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 400px;
  }
}
@media (max-width: 500px) {
  .column {
    width: 100%;
  }
}
