.post-rounded__thumb,
.post-sqaure,
.post-filmstrip,
.shop-window__thumb {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.post-rounded__thumb,
.post-sqaure,
.post-filmstrip,
.shop-window__thumb {
  background: no-repeat center center;
  background-size: cover;
}

.post-rounded {
  margin-top: 15px;
  margin-bottom: 15px;
}

.brk-bordered-theme .post-rounded {
  border-radius: var(--b-radius);
  overflow: hidden;
}

.post-rounded__text {
  background-color: #ffffff;
  padding: 65px 38px 45px;
}

@media (max-width: 575px) {
  .post-rounded__text {
    padding: 60px 15px 30px;
  }
}

.post-rounded__text a {
  text-decoration: none !important;
}

.post-rounded__text p {
  margin-top: 18px;
}

.post-rounded:hover .post-rounded__thumb:after {
  left: 0;
  right: auto;
  width: 100%;
}

.post-rounded__thumb {
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.post-rounded__thumb:after {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  transition: width .3s;
  background-image: linear-gradient(to right, rgba(var(--brand-primary-rgb), 0.92), rgba(var(--secondary-rgb), 0.92));
}

.post-rounded__btn {
  position: absolute !important;
  left: 50%;
  bottom: -27px;
  transform: translateX(-50%);
  margin: 0 !important;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
}

.post-rounded__btn-square {
  border-radius: 0 !important;
}

.post-sqaure {
  margin-top: 15px;
  margin-bottom: 15px;
  height: 0;
  padding-bottom: 155.55555%;
  max-height: 500px;
  position: relative;
  overflow: hidden;
}

.post-sqaure:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.post-sqaure:hover .post-sqaure__title {
  bottom: calc(100% - 76px);
}

.post-sqaure:hover .post-sqaure__btn {
  opacity: 1;
  bottom: 30px;
}

.post-sqaure__title {
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  transition: all .3s ease-in-out;
  z-index: 3;
}

.post-sqaure__btn {
  min-height: 52px !important;
  letter-spacing: 0 !important;
  position: absolute !important;
  opacity: 0;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease-in-out;
  margin: 0;
}

.post-sqaure__btn.btn-inside-out>.before {
  padding-top: 14px !important;
}

.post-filmstrip {
  position: relative;
  width: 100%;
  max-width: 370px;
  min-height: 370px;
}

@media (max-width: 767px) {
  .post-filmstrip {
    max-width: 300px;
    max-height: 300px;
    margin: auto;
  }
}

.post-filmstrip:hover .post-filmstrip__overlay {
  opacity: 1;
  visibility: visible;
}

.post-filmstrip:hover .post-filmstrip__content {
  opacity: 1;
  visibility: visible;
}

.post-filmstrip:hover .post-filmstrip__content h3 {
  opacity: 1;
  transform: translateY(0);
}

.post-filmstrip:hover .post-filmstrip__excerpt {
  opacity: 1;
  transform: translateY(0);
}

.post-filmstrip:hover .links__permalink,
.post-filmstrip:hover .links__view {
  opacity: 1;
  transform: translateX(0);
}

.post-filmstrip__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: .2s;
}

.post-filmstrip__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: .2s;
}

.post-filmstrip__content h3 {
  max-width: 300px;
  color: #fff;
  margin: 61px auto 0;
  opacity: 0;
  transform: translateY(-30px);
  transition: all .4s ease-in-out .3s;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .post-filmstrip__content h3 {
    margin: 30px auto 0;
  }
}

.post-filmstrip__excerpt {
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 320px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(-30px);
  transition: all .4s ease-in-out .1s;
}

.post-filmstrip .links {
  position: relative;
  width: 101px;
  height: 54px;
  margin: 36px auto 0;
}

.post-filmstrip .links i {
  font-size: 1rem;
  line-height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.post-filmstrip .links__permalink,
.post-filmstrip .links__view {
  width: 54px;
  height: 54px;
  display: block;
  position: absolute;
  top: 0;
  border-radius: 50%;
  transition: all .3s ease-in-out .5s;
  z-index: 3;
}

.post-filmstrip .links__permalink {
  color: #fff;
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.2);
  left: 0;
  opacity: 0;
  transform: translateX(-100px);
}

.post-filmstrip .links__permalink:hover i:before {
  color: #fff;
}

.post-filmstrip .links__view {
  background-color: var(--white);
  border: 2px solid var(--white);
  right: 0;
  opacity: 0;
  transform: translateX(100px);
}

.post-filmstrip .links__view i:before {
  color: var(--brand-primary);
}

.post-angle-slider {
  max-width: 870px;
}

.post-angle-slider .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}

.shop-window {
  padding: 7px;
  position: relative;
  transition: all .2s ease-in-out;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .shop-window {
    margin-bottom: 50px;
  }
}

.shop-window:hover {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}

.shop-window:hover:before {
  width: 100%;
}

.shop-window:hover .shop-window__price {
  transform: translateX(-50%) scale(1);
}

.shop-window a {
  text-decoration: none !important;
}

.shop-window:before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: all .2s ease-in-out;
  background-color: var(--brand-primary);
}

.shop-window__thumb {
  height: 0;
  padding-bottom: 100%;
}

.shop-window__title {
  min-height: 90px;
  padding: 23px 15px 0;
}

.shop-window__price {
  position: absolute;
  width: 106px;
  height: 42px;
  box-shadow: 0 5px 16px rgba(var(--brand-primary-rgb), 0.5);
  border-radius: 21px;
  line-height: 42px;
  bottom: -21px;
  left: 50%;
  letter-spacing: 0.03rem;
  transform: translateX(-50%) scale(0);
  transition: all .4s ease-in-out;
  background-color: var(--brand-primary);
  color: var(--white);
}

.shop-setout {
  margin-top: 27px;
  margin-bottom: 22px;
}

.shop-setout__img {
  height: 0;
  padding-bottom: calc(100% - 39px);
  max-height: 230px;
  background: no-repeat center top;
  position: relative;
  overflow: hidden;
}

.shop-setout__img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.shop-setout__img .add-cart,
.shop-setout__img .add-wishlist {
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 1.0625rem;
  border-radius: 27px;
  line-height: 50px;
  transition: all .3s ease-in-out;
}

.shop-setout__img .add-cart i,
.shop-setout__img .add-wishlist i {
  line-height: inherit;
}

.shop-setout__img .add-cart {
  background-color: var(--brand-primary);
  color: var(--white);
  box-shadow: 0 5px 16px rgba(var(--brand-primary-rgb), 0.5);
  opacity: 0;
  left: 90%;
  z-index: 3;
}

.shop-setout__img .add-wishlist {
  background-color: var(--white);
  color: var(--brand-primary);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
  opacity: 0;
  right: 90%;
  z-index: 2;
}

.shop-setout__img:hover:before {
  opacity: 1;
}

.shop-setout__img:hover .add-cart {
  opacity: 1;
  left: 86px;
}

.shop-setout__img:hover .add-wishlist {
  opacity: 1;
  right: 86px;
}

.shop-setout__link {
  display: block;
  margin: 12px 25px 0;
  padding: 12px 25px 4px;
}

.shop-setout__link h3 {
  transition: all .3s ease-in-out;
}

.shop-setout__link:hover h3 {
  color: var(--brand-primary);
}

.shop-setout .old-price {
  color: var(--text-base-color-1);
  text-decoration: line-through;
  padding-right: 13px;
}

.filmstrip-slider {
  padding: 45px 0;
  position: relative;
}

.filmstrip-slider.slider--scroll .swiper-slide {
  width: 370px;
  height: 370px;
}

.filmstrip-slider.slider--scroll .swiper-slide:first-child {
  margin-left: 0;
}

.filmstrip-slider.slider--scroll .swiper-slide:last-child {
  margin-right: 0;
}

.filmstrip-slider .brk-scrollbar {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 1170px;
  background-color: #fff;
  height: 4px;
  cursor: pointer;
  border-radius: 25px;
  border: 0;
  box-shadow: 0 0 0 3px #fff, 0 3px 13px rgba(0, 0, 0, 0.5), inset 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.filmstrip-slider .brk-scrollbar-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  max-width: 100% !important;
  background: var(--brk-secondary-3);
  border-radius: 4px;
  height: 4px;
}

[dir=rtl] .filmstrip-slider .brk-scrollbar-track {
  left: auto;
  right: 0;
}

.filmstrip-slider .brk-scrollbar-drag {
  box-shadow: 0 0 0 4px #fff, 0 0 13px 3px rgba(0, 0, 0, 0.5);
  height: 8px;
  width: 8px !important;
  border-radius: 50%;
  background: var(--brk-secondary-6);
  cursor: pointer;
  margin-top: -2px;
}

.landscape-slider {
  position: relative;
}

.landscape-slider-for {
  width: 100%;
}

.landscape-slider-for .brk-slid {
  background: no-repeat center center;
  background-size: cover;
  /*      @media (max-width:767px){
							height: 700px;
						}

						@media (max-width:575px){
							height: 400px;
						}*/
}

.landscape-slider-nav {
  position: absolute !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 400px;
  z-index: 9;
}

@media (max-width: 991px) {
  .landscape-slider-nav {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .landscape-slider-nav {
    width: 100%;
    height: 300px;
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 575px) {
  .landscape-slider-nav {
    height: 100%;
  }
}

.landscape-slider-nav:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(var(--brand-primary-rgb), 0.84), rgba(var(--secondary-rgb), 0.84));
}

.landscape-slider-nav__content,
.landscape-slider-nav .slick-list {
  position: relative;
  z-index: 3;
}

.landscape-slider-nav__title {
  color: #fff;
  max-width: 340px;
  margin: 53px auto 0;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .landscape-slider-nav__title {
    max-width: none;
    margin-top: 40px;
  }
}

.landscape-slider-nav__text {
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
  margin: 26px auto 0;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .landscape-slider-nav__text {
    max-width: none;
    margin-top: 15px;
  }
}

.landscape-slider-nav__btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: #fff;
  border-radius: 27px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
  margin: 35px auto 0 !important;
  min-width: 188px;
}

@media (max-width: 767px) {
  .landscape-slider-nav__btn {
    margin-top: 15px;
  }
}

.landscape-slider-nav__btn:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.rotate-slider {
  margin: 0 auto;
  height: 390px;
  padding-top: 35px;
  width: 100%;
  overflow: hidden;
}

.rotate-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  top: 0;
  left: 50%;
  transform-origin: center center;
  width: 100%;
}

.rotate-container.animate {
  transition: all 0.75s ease-in-out;
}

.rotate-slid {
  background: no-repeat center center;
  background-size: cover;
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  text-align: center;
  transform-origin: bottom center;
  width: 100%;
}

.rotate-slid__over {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.rotate-slid__content {
  padding: 15px;
  max-width: 450px;
  margin: 139px auto 0;
  color: #fff;
}

@media screen and (max-width: 575.98px) {
  .rotate-slid__content {
    max-width: 360px;
  }
}

.rotate-slid__content h1,
.rotate-slid__content h2,
.rotate-slid__content h3,
.rotate-slid__content h4 {
  color: #fff;
  margin-bottom: 14px;
}

.rotate-slid__content p {
  color: rgba(255, 255, 255, 0.7);
}

.svg-hidden {
  height: 0;
  overflow: hidden;
}