@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --theme-color: #ff6000;
  --theme-light-color: #ff60001c;
}

@-webkit-keyframes animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

body {
  font-family: "Rubik", sans-serif !important;
}

.footerwebsite {
  border: none;
  box-shadow: none !important;
  margin-top: 3rem;
  padding: 1.5rem 0;
  background-color: #000;
  padding-top: 3rem;
}

.header-wrapper {
  padding: 1rem;
}

.header-quick-menu > li > a {
  margin-right: 1rem;
}

#search,
.sogo-header.hovered + #search,
.sogo-header.hovered.header-minimized + #search,
.search-overlay.active,
.search-overlay {
  top: 75px !important;
}

.exchanges-item {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.exchanges-item > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
}

.exchanges-item:first-child > i {
  background-color: #39b54a;
}

.exchanges-item:last-child > i {
  background-color: #0e70a8;
}

.exchanges-item:first-child {
  margin-bottom: 0.3rem;
}

.exchanges-item > strong {
  margin: 0 0.5rem;
}

.header-bottom-wrapper {
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-item > span,
.order-item > strong {
  font-size: 13px;
  color: #fff;
  padding: 0 0.3rem;
}

.header-order-wrapper {
  display: flex;
  width: 85%;
  padding: 0.5rem;
}

.order-item {
  display: flex;
  align-items: center;
}

.header-sale-wrapper > span {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.header-sale-wrapper {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
}

.header-sale-wrapper::before {
  content: "";
  width: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transform: rotate(20deg);
  height: 60px;
}

.header-sale-wrapper::after {
  content: "";
  width: 2px;
  background-color: #fff;
  position: absolute;
  left: 10px;
  transform: rotate(20deg);
  height: 60px;
}

.review-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem 0;
  margin-top: 0;
}

.review-title > span {
  display: flex;
  position: relative;
  font-size: 25px;
  font-weight: 600;
}

.review-title > span::before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.review-title > span::after {
  content: "";
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.review-contain {
  overflow: hidden;
  position: relative;
  padding: 0 1rem;
}

.review-item-icon > i {
  font-size: 40px;
  color: var(--theme-color);
}

.review-item {
  padding: 1rem;
  border-radius: 8px;
  background-color: var(--theme-light-color);
}

.review-item-desc {
  font-size: 13px;
  line-height: 24px;
  margin: 1rem 0;
}

.review-item-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.review-item-bottom-image {
  display: flex;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
}

.review-item-bottom-image > img {
  width: 100%;
  object-fit: contain;
}

.review-item-name {
  font-size: 17px;
  font-weight: 600;
}

.review-item-center {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-swiper {
  overflow: hidden;
  padding: 1rem 0;
}

.featured-contain {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  gap: 2rem;
}

.featured-product {
  display: flex;
  width: 49%;
  padding-bottom: 1rem;
}

.featured-product:last-child {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.featured-product > div {
  width: 50%;
}

.featured-product-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #fff;
}

.featured-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -5px;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(to right, var(--theme-color), orange);
}

.featured-product:last-child .featured-product-comparison {
  margin-right: 5px;
  margin-left: 0;
}

.featured-product .featured-product-comparison {
  margin-left: 5px;
}

.product-card-image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.product-card-image > img {
  width: 100%;
}

.product-card-kupon-image {
  position: absolute;
  top: 5px;
  right: 5px;
}

.product-card-kupon-image > img {
  width: 90px;
}

.product-card-marketplace-price-list > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem;
}

.product-card-marketplace-price-list > ul > li > span {
  font-size: 15px;
  font-weight: 400;
  color: #6e7787;
}

.product-card-marketplace-price-list > ul > li > p {
  font-size: 15px;
  font-weight: 400;
  color: #6e7787;
}

.product-card-marketplace-price-list > ul > li:not(:last-child) {
  margin-bottom: 0.3rem;
}

.product-card-marketplace-price-list > ul > li:nth-child(2n + 1) {
  background-color: #f0f0f0;
}

.product-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.product-card-buttons > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.3rem;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
}

.featured-wrapper-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  margin-top: 2rem;
}

.featured-wrapper-title > span {
  position: relative;
  display: flex;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-wrapper-title > span::before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.featured-wrapper-title > span::after {
  content: "";
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.product-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.product-card-price-text {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-light-color);
  padding: 0.5rem;
  border-radius: 10px;
  color: #444;
  position: relative;
  overflow: hidden;
  height: 45px;
  font-size: 17px;
  font-weight: bold;
}

.product-card-price-text > img {
  position: absolute;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.product-card-price > span {
  display: flex;
  margin-top: 1rem;
  font-size: 25px;
  font-weight: 500;
}

.featured-contain-vs {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 0.5rem;
}

.featured-contain-vs > img {
  width: 100%;
}

.featured-product-comparison {
  display: flex;
  padding: 1rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #f5f5f5;
  margin-bottom: 75px;
}

.product-comprasion-review-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-comparison-fps-title,
.product-comprasion-review-title > span {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 130px;
}

.product-comparison-fps-title::before,
.product-comprasion-review-title > span::before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.product-comparison-fps-title::after,
.product-comprasion-review-title > span::after {
  content: "";
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.product-comparison-fps > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-comparison-fps > ul > li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.product-comparison-fps {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-comparison-fps > ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
}

.product-comparison-fps > ul > li > span,
.product-comparison-fps > ul > li > p {
  font-size: 15px;
  font-weight: 400;
}

.product-comprasion-review {
  margin-top: 3rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-comprasion-review .review-item-top {
  display: flex;
  align-items: center;
}

.product-comprasion-review .review-item-top .review-item-icon {
  margin-right: 1rem;
}

.product-comprasion-review .review-item-center {
  border: none;
  padding: 0;
}

.product-comprasion-review .swiper-button-next {
  right: -5px;
}

.product-comprasion-review .swiper-button-prev {
  left: -5px;
}

.product-comprasion-review .swiper-button-prev,
.product-comprasion-review .swiper-button-next {
  top: 55%;
}

.featured-contain-bottom-btn {
  position: absolute;
  width: 45%;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-49%);
}

.featured-contain-bottom-btn > a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: var(--theme-light-color);
  color: #444;
  height: 60px;
  position: relative;
}

.featured-contain-bottom-btn > a > span {
  display: flex;
  font-size: 18px;
  font-weight: 400;
  align-items: center;
  font-weight: bold;
}

.featured-contain-bottom-btn > a > p {
  font-size: 18px;
  font-weight: bold;
}

.featured-contain-bottom-btn > a > span > i {
  margin: 0 1rem;
}

.featured-contain-bottom-btn > a > img {
  position: absolute;
  width: 50px;
  right: 10px;
  bottom: 0;
}

.featured-wrapper {
  margin-top: 4rem;
}

.market-place-content {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: #007dfc1a;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.market-place-content::before {
  content: "";
  position: absolute;
  inset: -10px 70px;
  background: linear-gradient(#628ebb, #083360);
  transition: 0.5s;
  -webkit-animation: animate 4s linear infinite;
  animation: animate 4s linear infinite;
}

.market-place-content::after {
  content: "";
  position: absolute;
  background-color: #007dfc;
  inset: 10px;
  border-radius: 50%;
  z-index: 1;
}

.market-place-content .content {
  position: absolute;
  inset: 22px;
  border: 6px solid #0a427b;
  z-index: 3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}

.market-place-content .content img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  text-align: center;
  pointer-events: none;
  z-index: 3;
}

.market-place-content .content h2 {
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0;
  margin: 0;
}

.market-place-content .content h2 span {
  display: block;
  font-weight: 300;
  font-size: 13px;
  padding: 5px 0;
}

.market-place-content .content a {
  position: relative;
  background-color: #fff;
  color: #0a427b;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
}

.market-place-content .content a:hover {
  letter-spacing: 3px;
}

.market-place-content:hover::before {
  inset: -20px 0px;
}

.market-place-content:hover img {
  opacity: 0;
}

.home-marketplace-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 4rem 0;
}

.horr-hover-slider {
  --skew: 130px;
  --gap: 0px;
  --skew-img: calc(var(--skew) + var(--skew) + var(--gap));
  display: flex;
  min-height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.horr-hover-slider-link {
  display: block;
  flex: 1 1 auto;
  width: 25%;
  transition: width 0.5s cubic-bezier(0.3, 0.5, 0.2, 1),
    opacity 0.3s ease-in-out;
}

.horr-hover-slider-link:first-of-type {
  -webkit-clip-path: polygon(
    0 0,
    0% 100%,
    calc(100% - var(--skew)) 100%,
    calc(100% + var(--skew)) 0
  );
  clip-path: polygon(
    0 0,
    0% 100%,
    calc(100% - var(--skew)) 100%,
    calc(100% + var(--skew)) 0
  );
}

.horr-hover-slider-link:first-of-type > img {
  -webkit-clip-path: polygon(
    0 100%,
    0 0,
    calc(100% - (var(--gap) * 0.5)) 0,
    calc(100% - var(--skew-img)) 100%
  );
  clip-path: polygon(
    0 100%,
    0 0,
    calc(99% - (var(--gap) * 0.5)) 0,
    calc(100% - var(--skew-img)) 113%
  );
}

.horr-hover-slider-link:last-of-type {
  -webkit-clip-path: polygon(
    var(--skew) 0,
    calc(var(--skew) * -1) 100%,
    100% 100%,
    100% 0
  );
  clip-path: polygon(
    var(--skew) 0,
    calc(var(--skew) * -1) 100%,
    100% 100%,
    100% 0
  );
}

.horr-hover-slider-link:last-of-type > img {
  -webkit-clip-path: polygon(
    var(--gap) 100%,
    var(--skew-img) 0,
    100% 0,
    100% 100%
  );
  clip-path: polygon(var(--gap) 100%, var(--skew-img) 0, 100% 0, 100% 100%);
}

.horr-hover-slider-link:not(:first-of-type):not(:last-of-type) {
  -webkit-clip-path: polygon(
    var(--skew) 0,
    calc(var(--skew) * -1) 100%,
    calc(100% - var(--skew)) 100%,
    calc(100% + var(--skew)) 0
  );
  clip-path: polygon(
    var(--skew) 0,
    calc(var(--skew) * -1) 100%,
    calc(100% - var(--skew)) 100%,
    calc(100% + var(--skew)) 0
  );
}

.horr-hover-slider-link:not(:first-of-type):not(:last-of-type) > img {
  -webkit-clip-path: polygon(
    var(--gap) 100%,
    var(--skew-img) 0,
    calc(100% - var(--gap)) 0,
    calc(100% - var(--skew-img)) 100%
  );
  clip-path: polygon(
    var(--gap) 100%,
    var(--skew-img) 0,
    calc(100% - var(--gap)) 0,
    calc(100% - var(--skew-img)) 100%
  );
}

.horr-hover-slider-link img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 85%;
  width: calc(100% + var(--skew) + var(--skew));
  max-width: calc(100% + var(--skew) + var(--skew));
  margin-left: calc(var(--skew) * -1);
  transform: translate3d(0, 0, 0);
}

.horr-hover-slider-label {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 !important;
  pointer-events: none;
  font-size: 4vw;
  z-index: 1;
}

.horr-hover-slider-label > span {
  display: inline-block;
  min-width: 20px;
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.7s cubic-bezier(0.3, 1, 0.1, 1),
    transform 0.6s cubic-bezier(0.3, 1, 0.1, 1);
}

.horr-hover-slider-label > .show {
  transform: translateX(0);
  opacity: 1;
}

.horr-hover-slider-link-heading {
  display: none;
  color: #fff;
  text-decoration: none;
}

.horr-hover-slider-link-heading:hover,
.horr-hover-slider-link-heading:focus {
  text-decoration: underline;
}

.review-swiper .swiper-slide {
  transform: scale(0.9);
  transition: all 200ms linear;
}

.review-swiper .swiper-slide.swiper-slide-active {
  transform: scale(1.1);
  margin: 0 30px;
}

.review-wrapper {
  margin-top: 3rem;
}

.home-page-read-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-page-read-more-btn {
  cursor: pointer;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.3rem;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
}

.home-page-content {
  height: 420px;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #444;
}

.home-page-text-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  margin-top: 2rem;
}

.home-page-text-title > h1 {
  position: relative;
  display: flex;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.home-page-content > h2 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.home-page-text-title > h1::before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.home-page-text-title > h1::after {
  content: "";
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.header-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  padding-top: 0;
}

.header-contain-logo {
  display: flex;
  width: 230px;
}

.header-contain-right {
  display: flex;
  align-items: center;
  width: 470px;
  gap: 1rem;
}

.header-contain-search {
  display: flex;
  width: calc(100% - 700px);
  margin: 0 2rem;
}

.header-contain-search #search {
  width: 100%;
}

.header-contain-search #search .search-input-wrapper {
  padding: 0;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.header-contain-search #search .search-input-wrapper button.search-remove {
  display: none !important;
}

.header-contain-search #search .search-input-wrapper button.search-search {
  display: flex !important;
  width: 80px;
  background-color: var(--theme-color);
}

.search-result-wrapper {
  position: absolute;
  z-index: 9999;
  width: 100% !important;
  overflow: auto;
  left: 0;
}

.header-contain-search #search .search-input-wrapper #quick-search {
  background-color: #f0f0f0;
  height: 50px;
}

.header-contain-search #search .search-input-wrapper button.search-search > i {
  color: #fff;
}

.header-contain-search #search .search-input-wrapper > button.search-clear {
  background-color: #f0f0f0;
  height: 50px;
}

.header-contain-right > div {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  height: 50px;
  padding: 0 1rem;
  border-radius: 8px;
  cursor: pointer;
  justify-content: center;
}

.header-contain-right > div > i {
  margin-right: 0.5rem;
}

.header-contain-account {
  position: relative;
}

.header-contain-account-sub {
  position: absolute;
  top: 100%;
  background-color: #fff;
  width: 170px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}

.header-contain-account:hover .header-contain-account-sub {
  opacity: 1;
  visibility: visible;
}

.header-contain-account-sub > ul > li > a {
  display: flex;
  padding: 1rem 0.5rem;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
  width: 100%;
}

.header-contain-account-sub > ul > li > a:hover {
  color: var(--theme-color);
}

.exchanges-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-contain-top {
  padding: 0.5rem 0;
}

.footer-container-top {
  display: flex;
  gap: 1rem;
}

.footer-container-top-content {
  width: calc(50% - (1rem) / 2);
}

.footer-top-content-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-top-content-title > i {
  font-size: 27px;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-top-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.footer-top-content > ul {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.footer-top-content > ul > li {
  margin-bottom: 0.3rem;
}

.footer-top-content > ul > li > a > i {
  margin-right: 0.5rem;
  color: var(--theme-color);
}

.footer-social > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 1rem;
}

.footer-social > ul > li {
  width: 35px;
  height: 35px;
}

.footer-social > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.footer-container-center-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-container-center {
  margin-top: 3rem;
}

.footer-center-contain {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.footer-center-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.footer-center-content-title {
  margin-bottom: 1rem;
}

.footer-center-content > ul > li > a {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.footer-center-content > ul > li > a:hover {
  color: #fff;
}

.footer-container strong,
.footer-center-content-title > a {
  color: #fff !important;
  font-weight: 700;
}

.footer-container span,
.footer-container a {
  color: #a9b7d0;
}

.footer-container-bottom > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-container-bottom > ul > li {
  margin: 0 0.5rem;
}

.footer-container-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-header-contain {
  display: none;
}

/* PRODUCT CSS START */

.gallery-top {
  margin-bottom: 1rem;
  z-index: 99;
}

.gallery-top-wrapper {
  position: relative;
  border-radius: 5px;
}

.gallery-top-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -5px;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(to right, var(--theme-color), orange);
  z-index: 9;
}

.sogo-product-container
  .product-right
  .product-details-upper
  .name-fav
  .product-name {
  width: 100%;
}

.sogo-product-container
  .product-right
  .product-details-upper
  .product-info
  .detail-info {
  margin-top: 1rem;
}

.product-card-price
  .product-card-price-bottom
  .product-card-price-bottom-left
  > span {
  display: flex;
  font-size: 25px;
  font-weight: 500;
}

.product-card-price-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}

.product-card-price-bottom .product-card-price-bottom-rigth > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  background-color: var(--theme-color);
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.sogo-product-container
  .product-right
  .product-details-upper
  .name-fav
  .product-name {
  margin-bottom: 1rem;
}

.sogo-product-container
  .product-right
  .product-details-upper
  .name-fav
  .product-name
  span {
  font-size: 1.3rem;
  font-weight: 400;
}

.gallery-thumbs .swiper-slide {
  border: 2px solid transparent;
  padding: 0.3rem;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

.gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border: 2px solid var(--theme-color);
}

.product-related-wrapper .product-card {
  padding: 0.5rem;
  box-shadow: 0 2px 8px 0 rgb(0 0 0/15%);
}

.product-tab-wrapper > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-tab-wrapper > ul > li.active > a,
.product-tab-wrapper > ul > li > a:hover {
  border: none !important;
  border-bottom: 2px solid var(--theme-color) !important;
  color: var(--theme-color);
}

.product-tab-wrapper > ul > li > a {
  border: none !important;
  border-bottom: 2px solid transparent !important;
  transition: 0.2s ease-in-out;
  background-color: transparent !important;
  margin-right: 0 !important;
  position: relative;
}

.tab-content {
  margin-top: 1rem;
}

.product-tab-wrapper > ul > li.active > a::before {
  content: "";
  width: 15px;
  height: 7px;
  display: inline-block;
  background-color: var(--theme-color);
  position: absolute;
  bottom: -7px;
  left: calc(50% - 5px);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.product-tab-wrapper {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-top: 2rem;
  border-radius: 5px;
  padding: 1rem;
}

.related-product-wrapper-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.related-product-wrapper-title .product-comparison-fps-title {
  width: 160px;
}

.related-product-wrapper {
  margin-top: 2rem;
}

.related-product-wrapper-contain {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-product-wrapper-content {
  display: flex;
  width: calc(50% - (1rem) / 2);
  flex-direction: column;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 0.5rem;
}

.related-content-image {
  display: flex;
  width: 100%;
}

.related-content-top {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.related-content-image > img {
  width: 100%;
}

.related-content-text {
  width: 100%;
}

.related-content-name > span {
  font-size: 14px;
  width: 100%;
  display: flex;
  font-weight: 500;
  text-align: center;
}

.related-content-price {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-top: 0.5rem;
}

.related-content-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.related-content-bottom > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  width: 100%;
  padding: 0.3rem;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.product-featured-wrapper {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}

.item.product-card {
  width: calc(20% - (1rem * 4) / 5);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 1rem;
}

/* PRODUCT CSS FINISH */

.featured-contain-vs span {
  display: none;
}

.mobile-market-place {
  display: none;
}

.product-card .product-caption .product-price-wrapper .product-new-price {
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

.product-card .product-caption .product-name-wrapper > a .product-name {
  text-align: center;
}

.product-market-palce-contain {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-market-place-content > a {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.product-market-place-content > a > img {
  width: 100px;
  height: 60px;
  object-fit: cover;
}

.product-market-place-content {
  display: flex;
  width: calc(50% - (1rem) / 2);
  padding: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
}

.product-market-place-content > a > span {
  display: flex;
  width: calc(100% - 100px);
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}

.mobile-search {
  display: none;
}

.product-market-place-wrapper {
  margin-top: 1rem;
}

.click-gif {
  position: absolute;
  right: -4px;
  bottom: -9px;
}

.click-gif > img {
  width: 35px;
}

.product-mobile-market-place {
  display: none;
}

.footer-phone {
  position: fixed;
  bottom: 95px;
  right: 15px;
  z-index: 9;
}

.footer-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 9;
}

.footer-phone > a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-whatsapp > a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-phone > a > i,
.footer-whatsapp > a > i {
  color: #fff;
  font-size: 18px;
}

.footer-whatsapp > a > img,
.footer-phone > a > img {
  width: 90%;
}

div#bottomwp {
  display: none;
}

.footer-phone > a > i {
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.opportunity-wrapper {
  position: absolute;
  top: 80px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opportunity-wrapper > img {
  width: 70%;
}

.marketplace-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.marketplace-btn > a {
  display: flex;
  width: 100%;
  background-color: var(--theme-color);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
  padding: 0.4rem;
}

.header-contain-cart > a > img,
.header-contain-account > img,
.header-contain-blog > a > img {
  width: 30px;
  margin-right: 0.3rem;
}

.header-contain-cart > a,
.header-contain-account > span,
.header-contain-blog > a {
  font-weight: 500;
  font-size: 15px;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--theme-color);
  margin-bottom: 0;
  padding: 0 1rem;
}

ul.megamenu > li > a:hover,
ul.megamenu > li.active > a,
ul.megamenu > li.home > a,
ul.megamenu > li:hover > a {
  background-color: transparent;
  color: var(--theme-color);
}

.megamenu-wrapper {
  background-color: transparent !important;
}

.category-image-wrapper {
  display: flex;
  width: 100%;
}

.category-image-wrapper > img {
  width: 100%;
}

.category-text {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  margin-bottom: 2rem;
}

.category-text-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem 0;
  margin-top: 2rem;
}

.category-text-title > h1 {
  display: flex;
  position: relative;
  font-size: 25px;
  font-weight: 600;
}

.category-text-title > h1::before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.category-text-title > h1::after {
  content: "";
  position: absolute;
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ddd 50%);
}

.product-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
}

.product-list-wrapper .item.product-card .related-content-bottom {
  margin-top: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.footer-logo > a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.footer-logo > a > img {
  width: 55%;
}

.mobile-blog {
  display: none;
}

.wrapper {
  max-width: 100%;
  margin: 0px auto;
  background: #000000;
  overflow: hidden;
}

.bigtitle {
  font-weight: bold;
}

.slider {
  background: transparent;
  height: 630px;
  overflow: hidden;
  display: flex;
  margin-left: -50px;
  margin-right: -285px;
}
.slider__item {
  flex: 1;
  border-left: 4px solid #fff;
  transform: skew(-20deg);
  overflow: hidden;
  position: relative;
  left: -120px;
  /* opacity: 1; */
  transition: all 0.9s;
  cursor: pointer;
}
.slider__item.active {
  flex: 4;
  opacity: 1;
}
.slider__item.active .slider__textg {
  transition: all 0.9s;
  color: #009fc0;
  font-size: 50px;
  opacity: 1;
}
.slider__item.active {
  flex: 100%;
  opacity: 1;
  transform: skew(0);
}
.slider__item.active .slider__textd {
  transition: all 0.9s;
  color: #bccf00;
  font-size: 50px;
  opacity: 1;
}
.slider__img-gauche {
  /* background-blend-mode: multiply; */
  /* background-size: cover; */
  /* background-position: center; */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0px; */
  /* bottom: 0; */
  /* right: -170px; */
  /* transform: skew(20deg); */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.single-news-image {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
}

.single-news-image > img {
  width: 100%;
}

.single-blog-content strong {
  font-weight: 700 !important;
}

@media screen and (max-width: 991px) {
  .featured-contain {
    gap: 0;
  }

  .featured-product {
    flex-direction: column !important;
  }

  .featured-product > div {
    width: 100%;
  }

  .mobile-header-contain {
    display: flex;
    padding: 1rem 0.5rem;
    justify-content: space-between;
    align-items: center;
  }

  .header-contain-logo,
  .header-contain-right,
  .header-contain-search #search {
    display: none;
  }

  .mobile-header-contain-right {
    display: flex;
    align-items: center;
    gap: 1.1rem;
  }

  .mobile-header-contain-right i {
    font-size: 20px;
  }

  .quick-btn-wrapper > button {
    background-color: transparent;
    border: none;
  }

  .quick-btn-wrapper > button > i {
    font-size: 19px;
  }

  .mobile-header-contain-cart > a > i {
    font-size: 23px;
  }

  .mobile-header-contain-order-tracking > a > i {
    font-size: 25px;
  }

  .header-contain {
    padding: 0;
  }

  .header-sale-wrapper {
    display: none;
  }

  .header-order-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .order-item {
    flex-direction: column;
  }

  .order-item > strong {
    text-align: center;
    font-size: 12px;
  }

  .order-item > span {
    text-align: center;
    font-size: 11px;
  }

  .exchanges-list {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0.5rem;
  }

  .header-contain-top {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .featured-contain-bottom-btn {
    width: 94%;
    left: 49%;
  }

  .featured-product .featured-product-comparison {
    margin-left: 0;
    margin-top: 5px;
    margin-right: 0 !important;
  }

  .featured-contain-vs {
    z-index: 99;
  }

  .mobile-search {
    padding: 0.5rem;
    position: relative;
    display: flex;
  }

  .mobile-search
    .header-contain-search
    #search
    .search-input-wrapper
    button.search-search {
    width: 45px;
    height: 45px;
  }

  .mobile-search .header-contain-search {
    width: 100%;
    margin: 0;
  }

  .mobile-search .header-contain-search #search {
    display: block;
  }

  .header-contain-search #search .search-input-wrapper #quick-search {
    height: 45px;
  }

  .mobile-header-contain-right > div > a > img {
    width: 30px;
  }

  .mobile-header-contain-right > div > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mobile-header-contain-right > div > a > p {
    font-size: 12px;
    font-weight: 500;
    margin-top: 0.2rem;
  }

  .mobile-header-contain-right > div > a > span {
    position: absolute;
    top: 0;
    right: 0;
  }

  .mobile-blog {
    display: flex;
  }

  .mobile-blog > a {
    display: flex;
    width: 130px;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 2px solid var(--theme-color);
    border-radius: 5px;
    color: var(--theme-color);
  }

  .header-menu {
    padding: 0.5rem 1rem;
  }

  .show-menu > i {
    font-size: 29px;
  }

  .header-menu {
    justify-content: space-between;
  }

  .megamenu-wrapper {
    background-color: #fff !important;
  }

  ul.megamenu > li > a {
    height: auto !important;
  }
}

@media screen and (max-width: 769px) {
  .wrapper {
    display: none;
  }
  .sogo-container {
    background-color: #fff;
  }

  .product-left {
    padding: 1.5rem;
  }

  .product-comparison-fps,
  .related-product-wrapper {
    padding: 0 1.5rem;
  }

  .related-content-top {
    flex-direction: row;
    align-items: center;
  }

  .related-content-image {
    width: 50%;
  }

  .related-content-text {
    margin-left: 0.5rem;
  }

  .home-marketplace-wrapper {
    overflow: auto;
    justify-content: flex-start;
    gap: 2rem;
    padding-left: 1rem;
  }

  .horr-hover-slider {
    display: none;
  }

  .review-wrapper {
    margin-top: 1.5rem;
  }

  .main-slider1 {
    display: block;
  }

  .product-featured-wrapper {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
  }

  .mobile-market-place {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.3rem;
  }

  .home-marketplace-wrapper {
    display: none;
  }

  .featured-wrapper {
    margin-top: 0rem;
  }

  .market-place-item {
    width: calc(50% - (1rem) / 2);
    height: 240px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .market-place-content {
    width: 150px;
    height: 150px;
  }

  .market-place-content .content a {
    font-size: 11px;
  }

  .market-place-content .content h2 {
    letter-spacing: 2px;
  }

  .market-place-content .content {
    inset: 14px;
    border: 3px solid #0a427b;
  }
}

@media screen and (max-width: 767px) {
  .product-market-place-wrapper {
    display: none;
  }

  .product-mobile-market-place {
    display: flex;
    padding: 1rem;
    margin-top: 1rem;
  }

  .product-featured-wrapper .item.product-card:nth-child(5) {
    display: none;
  }

  div#bottomwp {
    display: flex;
    box-shadow: 0 0 2px #000;
    left: 0;
    bottom: 0;
    padding: 10px;
    width: 100%;
    position: fixed;
    z-index: 1073;
    background: linear-gradient(#fff, #c1bdbe);
  }

  a.vBtn.whatsapp {
    display: block;
    padding: 8px 0;
    border-radius: 10px;
    background-color: #25d366;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #000000;
  }

  a.vBtn.clickcall {
    display: block;
    padding: 8px 0;
    border-radius: 10px;
    background-color: var(--theme-color);
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #000000;
  }

  .footer-phone,
  .footer-whatsapp {
    display: none;
  }

  .product-card-price-bottom-left {
    text-align: center;
    margin-bottom: 1rem;
  }

  .product-right .product-comprasion-review {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 553px) {
  .featured-product {
    position: relative;
    width: 100%;
  }

  .featured-product-comparison {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease-in-out;
  }

  .featured-product-comparison.active {
    opacity: 1;
    visibility: visible;
  }

  .product-card-kupon-image.remove {
    opacity: 0;
    visibility: hidden;
  }

  .featured-contain-vs {
    top: 49.2%;
    border: 2px dashed var(--theme-color);
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    display: flex;
    flex-direction: column;
    width: 80px;
    height: 80px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
  }

  .featured-contain-bottom-btn > a > span {
    font-size: 14px;
  }

  .featured-contain-bottom-btn {
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }

  .product-card-kupon-image > img {
    width: 70px;
  }

  .featured-contain {
    flex-direction: column;
  }

  .featured-product > div {
    width: 100%;
  }

  .featured-wrapper-title > span {
    text-align: center;
    font-size: 20px;
  }

  .featured-wrapper-title > span::before,
  .featured-wrapper-title > span::after {
    display: none;
  }

  .featured-contain-vs span {
    display: flex;
    font-size: 12px;
    color: var(--theme-color);
    font-weight: 600;
  }

  .review-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    margin: 0;
  }

  .home-marketplace-wrapper {
    justify-content: flex-start;
    overflow: auto;
    padding: 1rem;
    margin: 0;
  }

  .market-place-item {
    margin-right: 1rem;
  }

  .featured-contain-vs > img {
    width: 60%;
  }

  .related-product-wrapper-contain {
    flex-direction: column;
  }

  .related-product-wrapper-content {
    width: 100%;
  }

  .product-related-header > span {
    text-align: center;
    font-size: 18px;
  }

  .item.product-card .product-caption,
  .product-card .product-caption,
  .item.product-card .product-caption,
  .product-card .product-caption > div {
    height: auto !important;
  }

  .product-tab-wrapper > ul > li > a {
    font-size: 14px;
    text-align: center;
  }

  .product-tab-wrapper > ul > li {
    width: 100%;
  }

  .product-card-price-bottom {
    flex-direction: column;
  }

  .product-card-price-bottom > a {
    margin-top: 1rem;
  }

  .sogo-product-container
    .product-right
    .product-details-upper
    .name-fav
    .product-name
    span {
    text-align: center;
  }

  .product-comparison-fps-title,
  .product-comprasion-review-title > span {
    font-size: 15px;
  }

  .product-comparison-fps-title::after,
  .product-comprasion-review-title > span::after,
  .product-comparison-fps-title::before,
  .product-comprasion-review-title > span::before {
    width: 50px;
  }

  .product-tab-wrapper {
    margin: 0 0.6rem;
  }

  .exchanges-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.4rem;
  }

  .exchanges-item:first-child {
    margin-bottom: 0.3rem;
    margin-right: 1rem;
  }

  .exchanges-item > strong {
    display: none;
  }

  .exchanges-item > i {
    margin-right: 0.3rem;
  }

  .footer-container-top {
    flex-direction: column;
  }

  .footer-container-top-content {
    width: 100%;
  }

  .footer-center-contain {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container-bottom > ul > li {
    margin-bottom: 0.5rem;
  }

  .featured-contain {
    gap: 2rem;
  }

  .review-title > span {
    font-size: 20px;
  }

  .review-title > span::before,
  .review-title > span::after {
    width: 40px;
  }

  .featured-product .featured-product-comparison {
    margin-left: 0;
    margin-top: 0;
    margin-right: 0 !important;
  }

  .review-item-bottom {
    justify-content: center;
  }

  .product-featured-wrapper .item.product-card {
    width: calc(50% - (1rem) / 2);
    padding: 0.5rem;
  }

  .item.product-card .product-caption,
  .product-card .product-caption {
    padding: 0;
  }

  .product-card .product-caption .product-name-wrapper > a .product-name {
    text-align: center;
  }

  .product-mobile-market-place .product-market-palce-contain {
    flex-direction: column;
    width: 100%;
  }

  .product-mobile-market-place
    .product-market-palce-contain
    .product-market-place-content {
    width: 100%;
  }

  .opportunity-wrapper {
    top: 65px;
    right: -10px;
  }

  .opportunity-wrapper > img {
    width: 60%;
  }
}

@media screen and (max-width: 376px) {
  .mobile-header-contain-logo {
    width: 160px;
  }

  .mobile-header-contain-logo > a {
    display: flex;
    width: 100%;
  }

  .mobile-header-contain-logo > a > img {
    width: 100%;
  }
}
