.categoryList .category-list-content {
  display: none;
}

@media (min-width: 768px) {
  .categoryLisl .product-list {
    width: 100%;
    padding-left: 0%;
  }

  .section-header .dropdown-menu {
    min-width: 255px;
  }
}

.productList .col-md-5,
.productList .product-content-wrapper .learn-more,
.productList .col-md-7 {
  display: none;
}

.product-list .product-content-wrapper,
.blogs .productTitle {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 0px 20px;
  position: relative;
  z-index: 9;
}

.product-list .product-wrapper,
#alternative-product .product-wrapper {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  transition: all 0.4s;
}

.product-list .product-wrapper:hover {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


.product-list .product-content-wrapper::before,
.blogs .productTitle::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.7;
  z-index: -1;
}

.product-list .product-wrapper,
.product-list .product-wrapper .rgw,
.blogs .product-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 363px;
    height: 258px;
}

.product-list .product-wrapper .rgw {
  min-height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-list .product-wrapper .rgw::before,
.blogs .product-wrapper a .productImage::before {
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  transition: all 0.4s;
  opacity: 0.2;
}

.product-list .product-wrapper:hover .rgw::before,
.blogs .product-wrapper a:hover .productImage::before {
  opacity: 0;
}

.product-list .product-wrapper:hover img,
.blogs .product-wrapper:hover img {
  transform: scale(1.1);
}

.blogs .product-wrapper img {
  transition: all 0.5s ease-in-out;
  max-height: 100%;
  min-height: 100%;
  overflow: hidden;
  object-fit: cover !important;
}

.productDetail .col-md-7 {
  display: flex;
  flex-direction: column;
}

.product-list .product-content-wrapper .product-code {
  display: none;
}

#product-list .weta-icerik-tag {
  font-size: 18px !important;
}

.page-breadcrumb .relative-title .page-name span {
  top: 45px;
}

.blogs .productTitle {
  padding: 12px 20px;
  margin-top: 0px !important;
}

.blogs .productTitle .text-center {
  text-align: left !important;
  margin-bottom: 0px;
}

@media (min-width: 1150px) {
  .section-header #navigation > ul > li:hover a::after,
  .section-header #navigation li:hover .dropdown-menu li:hover a::after {
    width: 0%;
  }

  .section-header .dropdown-menu {
    left: 0;
    background-color: var(--site-color);
    padding: 0px !important;
    box-shadow: none;
    border: none !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }

  .section-header #navigation > ul > li:hover {
    background-color: var(--site-color);
  }

  .section-header #navigation > ul > li:hover a {
    color: #fff !important;
  }

  .section-header #navigation > ul > li:hover .dropdown-menu a,
  .section-header #navigation > ul > li .dropdown-menu a {
    font-weight: 400 !important;
    transition: all 0.4s;
  }

  .section-header .dropdown-menu li:hover {
    transform: translateX(0px);
    background-color: #605e5e;
  }

  .section-header .dropdown-menu li:hover a {
    transform: translateX(10px);
  }

  .pageSliderContent .swiper-slide .slider-contents {
    width: 50%;
    bottom: 40%;
    left: -100%;
  }

  .pageSliderContent .swiper-slide .container {
    overflow: hidden;
  }

  .pageSliderContent .swiper-slide.swiper-slide-active .slider-contents {
    animation: sliderAnimate 0.4s ease-out 1s forwards;
  }

  .pageSliderContent .swiper-slide .slider-contents::before {
    opacity: 0.5;
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    right: 0;
    bottom: 0;
    height: 150%;
    background-color: var(--site-color);
    z-index: -1;
    width: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
  }

  .pageSliderContent
    .swiper-slide.swiper-slide-active
    .slider-contents::before {
    animation: widthAuto 0.4s ease-out 1s forwards;
  }

  .weta-slider-buttons .btn {
    font-size: 16px !important;
    min-width: 170px;
    padding: 10px 20px;
    font-weight: 600 !important;
  }

  .weta-slider-buttons .btn:nth-child(2) {
    background-color: #fff !important;
    border-color: #fff !important;
    color: var(--site-color) !important;
  }

  .weta-slider-buttons .btn:nth-child(2):hover {
    background-color: var(--site-hover-color) !important;
    border-color: var(--site-hover-color) !important;
    color: #fff !important;
  }
  #alternative-product .product-wrapper{
    min-height: auto;
    height: auto;
  }
  .blogs .productTitle .text-center{
    font-size: 14px !important;
  }
}

.product-breadcrumb,
.page-breadcrumb {
  background-color: var(--site-color);
}

@keyframes widthAuto {
  0% {
    width: 0;
  }

  100% {
    width: 120%;
  }
}

@keyframes sliderAnimate {
  0% {
    left: -100%;
  }

  100% {
    left: 5%;
  }
}

#alternative-product .productImage {
  position: relative;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.productDetail .tab-content,
.productDetail .col-md-7 {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.productDetail .col-md-7 {
  padding: 20px 30px;
}

@media (min-width: 768px) {
  .productDetail .col-md-5 {
    width: 55%;
  }

  .productDetail .col-md-7 {
    width: 45% !important;
  }
}

.productList .category-list-content {
  display: none !important;
}

.category-section-wrapper .product-list {
  width: 100%;
  padding-left: 0px !important;
}

.learn-more {
  display: none !important;
}

.productDetail #myTabContent .tab-pane.active {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#icon-section-1 .fa-500px:before {
  content: "\f590";
}

#icon-section-1 .fa-chain:before {
  content: "\f4b8";
}

#icon-section-1 .custom-col .icon-wrapper {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.4s;
}

#icon-section-1 .custom-col .icon-wrapper:hover {
  transform: translateY(-10px);
}

.icon-section .icon-wrapper .weta-icerik-tag {
  font-size: 18px;
}

.icon-section .icon-wrapper p {
  font-size: 13px !important;
}

.icon-section .icon-wrapper * {
  transition: all 0.4s !important;
}

.icon-section .icon-wrapper:hover * {
  color: #fff !important;
}

.btn {
  position: relative;
  overflow: hidden;
  height: 40px;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

.pageSliderContent .btn {
  line-height: 20px;
}

.btn:after {
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}

.btn:hover:after {
  opacity: 1;
  top: -30%;
  left: -30%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}

.btn:active:after {
  opacity: 0;
}

.footer .footer-pages li {
  padding: 5px 0px;
}

.footer .footer-info-list,
.footer-description {
  margin-top: 20px;
}

footer img {
  max-width: 80%;
}

.slider-description * {
  font-size: 18px !important;
}

.weta-slider-tag {
  font-size: 45px !important;
}

@media (max-width: 768px) {
  .page-breadcrumb .relative-title .page-name span {
    top: 25px;
    font-size: 24px;
  }
  .icon-section .row {
    flex-wrap: nowrap;
    overflow: scroll;
  }
  .icon-section .row::-webkit-scrollbar {
    display: none;
  }
  .page-breadcrumb .relative-title .page-list {
    display: none;
  }
  .icon-section .custom-col {
    width: 80% !important;
  }
  .icon-section .icon-description {
    display: none !important;
  }
  .product-breadcrumb,
  .page-breadcrumb {
    height: 140px;
  }

  .productAccordions {
    display: none;
  }

  .productDetail .col-md-5 {
    padding: 0px;
    margin-bottom: 30px;
  }

  .productDetail .col-md-5 .swiper-slide img {
    width: 70%;
    height: 70%;
  }

  .productDetail .col-md-5 .productImage .lightbox {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .pageSliderContent .sliderJs,
  .pageSliderContent .sliderJs .swiper-wrapper,
  .pageSliderContent .sliderJs .swiper-slide {
    max-height: calc(70vh - 75px) !important;
    height: calc(70vh - 75px) !important;
  }

  #slider-1 .slider-description * {
    font-size: 13px !important;
  }

  #icon-section-1 .row {
    justify-content: center;
  }

  #icon-section-1 .custom-col .icon-wrapper {
    max-height: 305px;
    min-height: 305px;
  }

  #icon-section-1 .icon-wrapper p {
    font-size: 10px !important;
  }

  #icon-section-1 .icon-wrapper .weta-icerik-tag {
    font-size: 14px;
  }

  #footer-col {
    margin: 20px 0px;
  }

  .footer .footer-info-list,
  .footer-description {
    margin-top: 0px;
  }

  .pageSliderContent .swiper-slide .slider-contents {
    width: 90%;
  }

  .weta-slider-tag {
    font-size: 30px !important;
  }

  .slider-description * {
    font-size: 16px !important;
  }

  .section-header
    .navbar-weta
    .navbar
    .dropdown
    .dropdown-menu
    #multi-dropdown {
    position: relative;
  }
  .section-header
    .navbar-weta
    .navbar
    .dropdown
    .dropdown-menu
    #multi-dropdown
    span.dropdown-trigger.fa-solid.fa-chevron-down {
    position: absolute;
    right: 0;
    top: 30%;
  }

  .blogs .productTitle .text-center {
    font-size: 12px !important;
  }
}
.product-thumbs {
  padding: 10px !important;
}
.icon-section .icon-wrapper {
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 30px 30px;
    transition: all 0.4sease-out;
}

.section-header #multi-dropdown .navigation-button{
   color: #000 !important;
}