/* stylelint-disable */
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/* stylelint-enable */
.themes-block {
  margin-top: clamp(25px, 6.25vw + 1px, 50px);
}
.themes-block .title-wrapper {
  margin-bottom: 6.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 clamp(0px, 6.25vw + 1px, 100px);
  padding-top: 1.6875rem;
}
@media (max-width: 767px) {
  .themes-block .title-wrapper {
    margin-bottom: 3.125rem;
    padding: 0;
  }
}
.themes-block .title-wrapper .title {
  font-size: clamp(36px, 3.75vw + 1px, 60px);
  line-height: 0.65;
  font-weight: 300;
  font-family: var(--font-family-cormorant);
  color: var(--blue-800);
  position: relative;
  margin-top: 1.5625rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.themes-block .title-wrapper .title::after {
  content: "";
  position: absolute;
  background: var(--blue-300);
  height: 1px;
  width: 0;
  left: -100vw;
  bottom: 0;
  transition-duration: 3s;
}
.themes-block .title-wrapper .title.show::after {
  width: 200vw;
}
.themes-block .themes-wrapper {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 4.6875rem;
}
.themes-block .themes-wrapper .theme {
  flex: 1 1 calc(33.3% - 4.6875rem);
  position: relative;
  transition-duration: 2s;
}
.themes-block .themes-wrapper .theme:nth-child(1n) {
  top: 9.375rem;
}
.themes-block .themes-wrapper .theme:nth-child(2n) {
  top: 15.625rem;
}
.themes-block .themes-wrapper .theme:nth-child(3n) {
  top: 21.875rem;
}
.themes-block .themes-wrapper .theme.is-inview:nth-child(1n), .themes-block .themes-wrapper .theme.is-inview:nth-child(2n), .themes-block .themes-wrapper .theme.is-inview:nth-child(3n) {
  top: 0;
}
.themes-block .themes-wrapper .theme::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.themes-block .themes-wrapper .theme .content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: 0 0 15px rgba(204, 198, 195, 0.25);
  transition-duration: 1s;
  padding: 1.5625rem;
}
.themes-block .themes-wrapper .theme .content .svg-wrapper {
  height: 6.25rem;
  width: auto;
  margin-bottom: 1.5625rem;
}
.themes-block .themes-wrapper .theme .content .svg-wrapper svg {
  height: 100%;
  width: auto;
}
.themes-block .themes-wrapper .theme .content svg path {
  fill: var(--blue-800);
  transition-duration: 1s;
}
.themes-block .themes-wrapper .theme .content svg .white {
  fill: var(--white);
}
.themes-block .themes-wrapper .theme .content .theme-title {
  font-family: var(--font-family-cormorant);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.22;
  color: var(--blue-800);
  margin-bottom: 1.5625rem;
  text-align: center;
}
.themes-block .themes-wrapper .theme .content .arrow svg {
  width: 1.5625rem;
  height: auto;
}
.themes-block .themes-wrapper .theme .content .arrow svg path {
  fill: transparent;
}
.themes-block .themes-wrapper .theme:hover .content {
  box-shadow: 0 0 15px var(--pale-600);
}
.themes-block .themes-wrapper .theme:hover .content svg path {
  fill: var(--yellow-500);
}
.themes-block .themes-wrapper .theme:hover .content svg .white {
  fill: var(--white);
}
@media (max-width: 1023px) {
  .themes-block .themes-wrapper {
    grid-gap: 1.5625rem;
  }
  .themes-block .themes-wrapper .theme {
    flex: 1 1 calc(50% - 1.5625rem);
  }
}
@media (max-width: 511px) {
  .themes-block .themes-wrapper .theme {
    flex: 1 1 100%;
  }
}
