:root {
  scroll-behavior: smooth;
  --sunmatch-brown: rgba(255, 128, 128, 1);
  --sunmatch-white: #ffffff;
  --sunmatch-black: #000000;
  --sunmatch-dark-yellow: rgba(250, 217, 161, 1);
  --sunmatch-yellow: rgba(250, 239, 155, 1);
  --sunmatch-background-gray: rgba(236, 236, 236, 1);
  --sunmatch-green: rgba(99, 136, 137, 1);
  --sunmatch-gray: rgba(228, 228, 228, 1);
  --sunmatch-text: rgba(105, 105, 105, 1);
  --sunmatch-heading-font: "Battambang", system-ui;
  --sunmatch-font: "Poppins", sans-serif;
}

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--sunmatch-font);
  background-color: var(--sunmatch-background-gray);
  color: var(--sunmatch-text);
  overflow-x: hidden;
}

/* ------------------start scroller-------------------------------- */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--sunmatch-black);
  border-radius: 10px;
}

/* ---------------end scroller--------------------------------------- */
/* ------------start header section----------------------- */
.header {
  position: absolute;
  z-index: 10000;
  width: 100%;
}

.burger {
  position: absolute;
  z-index: 10;
  right: 13px;
  top: 30px;
  cursor: pointer;
  transform: rotateY(0);
  padding: 22px 15px;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: var(--sunmatch-white);
}

.burger__patty {
  width: 28px;
  height: 2px;
  margin: 0 0 8px 0;
  background: #ff8080;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger__patty:last-child {
  margin-bottom: 0;
}

.burger--close {
  transform: rotate(180deg);
  right: -130px;
  top: 0px;
}

.burger--close .burger__patty:nth-child(1) {
  transform: rotate(45deg) translate(7px, 8px);
  background: var(--sunmatch-text);
}

.burger--close .burger__patty:nth-child(2) {
  opacity: 0;
}

.burger--close .burger__patty:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--sunmatch-text);
}

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  visibility: hidden;
}

.menu--active {
  visibility: visible;
}

.menu__brand,
.menu__list {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.menu__list {
  margin: 0;
  padding: 0;
  background-color: var(--sunmatch-background-gray);
  list-style-type: none;
  transform: translate3d(0, -100%, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu__list--active {
  transform: translate3d(0, 0, 0);
}

.menu__brand {
  background: #38c5b9;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate3d(0, 100%, 0);
}

.menu__brand--active {
  transform: translate3d(0, 0, 0);
}

.menu__item {
  transform: translate3d(500px, 0, 0);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu__item--active {
  transform: translate3d(0, 0, 0);
}

.menu__link {
  display: inline-block;
  position: relative;
  font-size: 30px;
  padding: 15px 0;
  font-weight: 300;
  color: var(--sunmatch-black);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--sunmatch-text);
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__link:hover:before {
  width: 100%;
}
.menu .menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.menu .menu__item:nth-child(2) {
  transition-delay: 0.2s;
}
.menu .menu__item:nth-child(3) {
  transition-delay: 0.3s;
}
.menu .menu__item:nth-child(4) {
  transition-delay: 0.4s;
}
.menu .menu__item:nth-child(5) {
  transition-delay: 0.5s;
}
.menu .menu__item:nth-child(6) {
  transition-delay: 0.6s;
}
.menu .menu__item:nth-child(7) {
  transition-delay: 0.7s;
}
/* .menu .menu__item:nth-child(8) {
  transition-delay: 0.8s;
}
.menu .menu__item:nth-child(9) {
  transition-delay: 0.9s;
} */
.header-container {
  position: relative;
  margin-top: 30px;
}
.logo-sunmatch-header img {
  width: 180px;
  box-shadow: -2px 10px 20px 0px #0b0a0a40;
  border-radius: 6px;
}

.details-sunmatch-header {
  display: flex;
  justify-content: flex-end;
}

.sunmatch-hot-line p {
  color: var(--sunmatch-white);
  font-size: 16px;
}

.social-media-icons-header {
  position: absolute;
  right: 90px;
  top: 30px;
  background-color: var(--sunmatch-yellow);
  cursor: pointer;
  border-radius: 6px;
  padding: 21px 30px;
  display: flex;
  gap: 18px;
}

.social-media-icons-header a i {
  font-size: 16px;
  color: var(--sunmatch-black);
}

.logo-sunmatch-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo-sunmatch-header h1 {
  font-size: 14px;
  color: var(--sunmatch-black);
}

.social-media-icons-header a i:hover {
  color: var(--sunmatch-brown);
}

.sunmatch-hot-line p a {
  color: var(--sunmatch-white);
}

.inner-mobile-main-banner-section {
  display: block;
}

/* ------------end header section---------------------------- */
/* ------- start main banner section----------- */
.mobile-banner-section {
  display: none;
}

.inner-mobile-main-banner-section {
  display: none;
  position: relative;
}

.carousal-main-wrapper.mobile-inner-carousal-main-wrapper {
  bottom: 0;
  top: auto;
  margin-top: 0px;
}

.headr-background-banner {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}

.header-gradient-section {
  background: linear-gradient(270deg, #7e044e, #f6a61e, #f23656, #f87330);
  background-size: 800% 800%;

  -webkit-animation: AnimationName 30s ease infinite;
  -moz-animation: AnimationName 30s ease infinite;
  animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.carousal-main-wrapper {
  position: absolute;
  top: 0;
  margin-top: 114px;
  left: 0;
  right: 0;
}

.icon {
  color: var(--sunmatch-black);
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 60px;
  margin-top: -30px;
  position: absolute;
  bottom: 6%;
  text-align: center;
  width: 50px;
  height: 50px;
}

.owl-next,
.owl-prev {
  height: 100%;
  position: absolute;
  top: 0;
  width: 33.33333333%;
}

.owl-next {
  right: 0;
}

.owl-prev {
  left: 0;
}

.icon-arrow-left7 {
  left: 0;
}

.icon-arrow-left7:before {
  content: "\f060";
  padding: 8px 9px;
  border: 2px solid var(--sunmatch-black);
  border-radius: 50%;
}

.icon-arrow-right7 {
  right: 0;
}

.icon-arrow-right7:before {
  content: "\f061";
  padding: 8px 9px;
  border: 2px solid var(--sunmatch-black);
  border-radius: 50%;
}

.owl-main-banner-item {
  display: flex;
  justify-content: flex-end;
}

.banner-conteint {
  position: absolute;
  left: 20px;
  bottom: 100px;
  z-index: 200;
  background-color: var(--sunmatch-yellow);
  padding: 40px;
  border-top-right-radius: 54px;
  box-shadow: -2px 10px 20px 0px #0b0a0a40;
}

.banner-conteint h1 {
  color: var(--sunmatch-black);
  font-family: var(--sunmatch-heading-font);
  line-height: 60px;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 18px;
}

.banner-conteint h1 span {
  color: var(--sunmatch-green);
  font-size: 70px;
  font-weight: 800;
}

.banner-conteint p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 100;
  word-spacing: 1px;
}

.banner-image {
  position: relative;
  height: 78vh;
  width: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.owl-next {
  left: 112px;
}

.owl-prev {
  left: 60px;
}

.icon-arrow-left7 {
  left: 0;
  right: 0;
}

.icon-arrow-right7 {
  left: 0;
  right: 0;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}

/* @media (min-width: 768px) {

    .owl-carousel {
      margin: 0 -60px;
      position: relative;
    }
    .owl-item > div {
      margin: 45px 60px;
      transition: margin 400ms ease-out;
    }
    .owl-item.center > div {
      margin: 0;
    }
    .owl-next {
      right: 60px;
    }
    .owl-prev {
      left: 60px;
    }
    .icon-arrow-left7 { left: auto; right: 0; }
    .icon-arrow-right7{ left: 0; right: autp; }
  } */
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mobile-banner-section-wrapper {
  height: 100vh;
}

.banner-image.mobile-banner-image {
  height: 100vh;
  width: 100%;
  position: relative;
}

.mobile-banner-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust opacity & color */
}

.mobile-banner-containt {
  height: 100vh;
  color: var(--sunmatch-white);
  padding: 0px 250px 160px 70px;
}

/* ----------end main banner section----------- */

/* ----------------------start welcome section------------------------------ */

.sm-welcome-main-wrapper {
  padding: 70px 50px;
}

.sunmatch-welcome-main h1 {
  color: var(--sunmatch-green);
  font-size: 36px;
  font-family: var(--sunmatch-heading-font);
  line-height: 40px;
  margin-bottom: 10px;
}

.sunmatch-welcome-main h4,
.main-product-discription h4 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.sunmatch-welcome-main p,
.sunmatch-welcome-sub p,
.product-discription p,
.news-update-header p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  word-spacing: 2px;
}

.sunmatch-btn {
  padding: 15px;
  text-align: center;
  max-width: 170px;
  border-radius: 10px;
  margin: 24px 0px;
  background-color: var(--sunmatch-green);
}

.sunmatch-btn:hover {
  background-color: var(--sunmatch-brown);
}

.sunmatch-btn a {
  text-decoration: none;
  color: var(--sunmatch-white);
  font-size: 14px;
  font-weight: 100;
}

.sunmatch-btn:hover a {
  color: var(--sunmatch-black);
}

.sunmatch-welcome-sub {
  margin-top: 50px;
}

.sunmatch-welcome-sub h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 8px;
}

.welcome-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.welcome-image img {
  width: 100%;
}

.sunmatch-certified {
  display: flex;
  margin-top: 20px;
}

.certificate-cards img {
  width: 90%;
}

.certificate-cards img {
  border-radius: 6px;
  box-shadow: -4px 5px 20px 0px #0b0a0a2b;
}

/* ----------------------end welcome section---------------------------- */
/*-----------------------start product section-------------------------*/
.sunmatch-product-section {
  background-color: #ffcf96;
  padding-bottom: 170px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.flower-one {
  position: absolute;
  top: 220px;
  left: -10px;
  animation: flowerOne 200s linear infinite;
}

@keyframes flowerOne {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.flower-two {
  position: absolute;
  right: -100px;
  top: 500px;
  animation: flowerTwo 250s linear infinite;
}

@keyframes flowerTwo {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.product-discription-image img {
  width: 110%;
  margin-top: -160px;
  margin-left: -40px;
}

.main-product-discription {
  display: flex;
  z-index: 1;
}

.product-discription {
  padding: 40px 0px 30px 100px;
}

.product-list-row {
  display: flex;
  margin-bottom: 20px;
  gap: 14px;
}

.product-card img {
  width: 100%;
}

.product-card-wrapper {
  background-color: var(--sunmatch-white);
  border-radius: 6px;
  z-index: 1;
}

.product-card {
  padding: 30px 24px;
}

.product-card h4 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 16px;
  font-weight: 100;
  line-height: 22px;
}

.view-product-btn {
  margin-top: 20px;
}

.view-product-btn a {
  text-decoration: none;
  color: var(--sunmatch-green);
  font-size: 14px;
}

.view-product-btn a i {
  margin-right: 6px;
  font-size: 19px;
}

.view-product-btn p.view-more-product {
  text-decoration: none;
  color: var(--sunmatch-green);
  font-size: 14px;
  font-weight: 500;
}

.view-product-btn p.view-more-product i {
  margin-right: 6px;
  font-size: 19px;
}

.product-card p {
  font-size: 13px;
  font-weight: 100;
  line-height: 22px;
  color: var(--sunmatch-text);
}

.product-list {
  padding: 10px 0px 10px 60px;
  z-index: 1;
}

.product-list .product-card-wrapper a {
  text-decoration: none;
  cursor: pointer;
}

.product-card-wrapper:hover {
  box-shadow: -7px 8px 20px 0px #0b0a0a2b;
}

.product-card-wrapper:hover p.view-more-product {
  padding-left: 10px;
  color: var(--sunmatch-brown);
}

/*-----------------------end product section-------------------------*/
/* ---------------------- start work-countdown-------------------------- */
.work-group img {
  width: 100%;
  padding-top: 100px;
}

.work-group {
  padding: 0px;
}

.countdown-wrapper {
  background-color: var(--sunmatch-white);
  position: relative;
  padding: 60px 40px;
  border-radius: 6px;
}

.work-details-sub-wrapper {
  display: flex;
}

.work-icon img {
  width: 70%;
}

.background-flower img {
  position: absolute;
  width: 60%;
  right: 10px;
  bottom: 10px;
}

.work-group-details h4 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 18px;
  font-weight: 100;
  line-height: 22px;
}

.work-group-details h2 {
  color: #ff8080;
  font-size: 28px;
  margin-bottom: 8px;
}

.work-group-details p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
}

.work-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-group-details {
  padding-left: 30px;
}

.sunmatch-main-detail-wrapper {
  padding: 0px 0px 0px 60px;
  margin-top: -140px;
}

.work-details-main-details-wrapper {
  display: flex;
  row-gap: 40px;
  flex-direction: column;
}

/* ---------------------- end work-countdown-------------------------- */
/* -------------------------start partners section-------------------- */
.sunmatch-partners-section {
  padding: 70px 0px 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.partner-main-discription {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-main-discription h1 {
  color: var(--sunmatch-white);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.partner-main-discription p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  width: 60%;
  color: var(--sunmatch-white);
}

#news-slider {
  margin-top: 30px;
}

.post-slide {
  margin: 20px 6px 20px;
  border-radius: 15px;
  padding-top: 1px;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.partners-final-section {
  display: flex;
  position: relative;
}

.partners-final-section-pharagraph p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  color: var(--sunmatch-white);
}

.sunmatch-box-img {
  position: relative;
}

.sunmatch-box-img img {
  position: absolute;
  width: 100%;
}

.partners-final-section-pharagraph {
  padding-top: 60px;
}

/* -------------------------end partners section-------------------- */
/* -----------------start news and events section-------------------------------- */
.sunmatch-news-updates-section {
  position: relative;
}

.news-section-bacground-image img {
  top: 140px;
  right: -300px;
  position: absolute;
  animation: newsFlower 300s linear infinite;
}

.home-news-section-bacground-image img {
  top: 140px;
  right: -300px;
  position: absolute;
}

@keyframes newsFlower {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.news-update-header h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  line-height: 34px;
  margin-bottom: 8px;
}

.news-update-header h1,
.news-update-header p {
  width: 50%;
}

.news-update-header {
  margin-bottom: 30px;
}

.main-news-card {
  background-color: var(--sunmatch-white);
  padding: 34px;
  border-radius: 6px;
}

.main-news-card img {
  width: 100%;
  height: auto;
}

.main-news-card h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 16px;
  font-weight: 100;
  line-height: 25px;
  margin: 10px 0px;
}

.news-item-sunmatch-details h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 16px;
  font-weight: 100;
  line-height: 25px;
  margin: 0px 0px 10px;
}

.main-news-card p,
.news-item-sunmatch-details p {
  font-size: 13px;
  font-weight: 100;
  line-height: 24px;
}

.news-updates-main-wrapper {
  padding: 120px 0px 80px;
  z-index: 1;
  position: relative;
}

.news-item-sunmatch-image img {
  width: 100%;
  border-radius: 6px;
}

.sunmatch-main-news-cards-collection hr {
  background-color: #dddddd;
  height: 1px;
  border: none;
  margin: 22px 0px 26px;
}

.sunmatch-main-news-cards-collection .sunmatch-btn {
  padding: 15px;
  text-align: center;
  max-width: 170px;
  border-radius: 10px;
  margin: 30px 0px;
  background-color: var(--sunmatch-green);
}

.sunmatch-main-news-cards-collection .sunmatch-btn:hover {
  background-color: var(--sunmatch-brown);
}

.sunmatch-main-news-card {
  padding: 0px 30px 0px 0px;
}

.main-news-card.home-main-news-card:hover .view-news-btn a {
  margin-left: 10px;
  color: var(--sunmatch-brown);
}

.news-item-list-sunmatch.home-news-item-list-sunmatch:hover .view-news-btn a {
  margin-left: 10px;
  color: var(--sunmatch-brown);
}

/* ------------------end news and events section--------------------------------- */
/* -----------------start our brands section-------------------------------- */
.sunmatch-brands {
  background: url("../images/background/Frame41.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sun-match-our-brands {
  padding: 60px 0px;
}

.our-brand-containt {
  padding: 60px 30px 60px 0px;
}

.our-brand-containt h1 {
  color: var(--sunmatch-white);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 8px;
}

.our-brand-containt p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  color: var(--sunmatch-white);
}

.our-brand-images {
  background-color: var(--sunmatch-white);
}

.our-brand-image-set img {
  width: 90%;
}

.our-brand-images {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  border-radius: 6px;
}

.our-brand-image-set {
  display: flex;
  align-items: center;
}

.our-brand-image-set .sunmatch-btn {
  padding: 12px 15px;
  margin: 0px;
}

.our-brand-image-set .sunmatch-btn a {
  font-size: 13px;
}

/* ------------------end our brands section--------------------------------- */
/* -------------------start brand ambassador section------------------------------ */
.sunmatch-brand-ambassdor-section {
  padding: 70px 0px;
}

.brand-ambassdor-image img {
  width: 100%;
}

.brand-ambassdor-details h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 18px;
  line-height: 36px;
}

.brand-ambassdor-details p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 10px;
}

.brand-ambassdor-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 26px;
}

/* -------------------end brand ambassador section------------------------------ */
/* -------------------start social activies section------------------------------ */
.sunmatch-social-activities {
  background-color: #e4e4e4;
  padding: 70px 0px;
}

.social-activities-main-discription {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-activities-main-discription h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 8px;
}

.social-activities-main-discription p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  width: 60%;
}

#social-activity-slider {
  margin-top: 30px;
}

#social-activity-slider .post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
}

#social-activity-slider .post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;
}

#social-activity-slider .post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

#social-activity-slider .post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

#social-activity-slider .post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}

#social-activity-slider .post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

#social-activity-slider .post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}

#social-activity-slider .post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}

#social-activity-slider .post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

#social-activity-slider .post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}

#social-activity-slider .post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

#social-activity-slider .post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}

#social-activity-slider .post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}

#social-activity-slider .owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

#social-activity-slider .owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

#social-activity-slider .owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

#social-activity-slider .owl-controls .owl-buttons .owl-prev:after,
#social-activity-slider .owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}

#social-activity-slider .owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}

#social-activity-slider .owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#social-activity-slider .owl-next {
  left: initial;
}

#social-activity-slider .owl-next {
  right: 0;
}

#social-activity-slider .owl-next,
.owl-prev {
  height: 100%;
  position: absolute;
  top: 0;
  width: inherit;
}

#social-activity-slider .owl-prev {
  left: 60px;
}

#social-activity-slider .owl-prev {
  left: 0;
}

.icon.social-icon {
  bottom: 50%;
}

.icon-arrow-social-left7 {
  left: 0;
}

.icon-arrow-social-left7:before {
  content: "\f060";
  padding: 8px 9px;
  border: 2px solid var(--sunmatch-black);
  border-radius: 50%;
}

.icon-arrow-social-right7 {
  right: 0;
}

.icon-arrow-social-right7:before {
  content: "\f061";
  padding: 8px 9px;
  border: 2px solid var(--sunmatch-black);
  border-radius: 50%;
}

.icon-arrow-social-left7 {
  left: -50px;
  right: 0;
}

.icon-arrow-social-right7 {
  left: 0;
  right: 0;
}

#social-activity-slider .post-slide h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 16px;
  font-weight: 100;
  line-height: 25px;
  margin: 14px 0px;
  min-height: 75px;
}

#social-activity-slider .post-slide p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 10px;
}

.post-slide:hover .view-product-btn {
  margin-left: 10px;
}

.post-slide:hover .view-product-btn a {
  color: var(--sunmatch-brown);
}

/* -------------------end social activies section------------------------------ */
/* --------------------------start footer-------------------------------------- */
footer {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.about-sun-match {
  padding: 50px 50px 20px;
  background-color: var(--sunmatch-white);
}

.sunmatch-footer-logo-image {
  width: 50%;
  margin-bottom: 30px;
}

.sunmatch-footer-logo-image img {
  width: 90%;
  border-radius: 6px;
}

.sunmatch-footer-logo-image h1 {
  text-align: center;
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 14px;
  font-weight: 600;
  line-height: 9px;
}

.sunmatch-company-discription p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  margin-bottom: 10px;
}

.sunmatch-company-discription hr {
  background-color: #dddddd;
  height: 1px;
  border: none;
  margin: 22px 0px 26px;
}

.social-media-icons a {
  background-color: var(--sunmatch-yellow);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-media-icons a i {
  font-size: 16px;
  color: var(--sunmatch-black);
}
.social-media-icons {
  margin: 10px 0px 50px;
  display: flex;
  gap: 10px;
}
.footer-details {
  display: flex;
  padding: 50px 0px 0px 30px;
}
.footer-quick-links,
.footer-products,
.footer-quick-contacts,
.mian-quick-links,
.terms-and-condition-links {
  display: flex;
  flex-direction: column;
}
.mian-quick-links a,
.terms-and-condition-links a,
.footer-products a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sunmatch-black);
  margin-bottom: 16px;
}
.mian-quick-links a:hover,
.terms-and-condition-links a:hover,
.footer-products a:hover,
.footer-quick-contacts-sub a:hover {
  padding-left: 3px;
  color: var(--sunmatch-green);
}
/* .mian-quick-links {
  margin-bottom: 30px;
} */
.footer-products h1,
.footer-quick-contacts h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 18px;
  font-weight: 100;
  margin: 0px 0px 10px;
}

.footer-quick-contacts-sub p {
  font-size: 14px;
  text-decoration: none;
  color: var(--sunmatch-black);
  margin-bottom: 16px;
  line-height: 24px;
}

.footer-quick-contacts-sub {
  display: flex;
  flex-direction: column;
}

.footer-quick-contacts-sub a {
  font-size: 14px;
  color: var(--sunmatch-black);
  margin-bottom: 12px;
  line-height: 16px;
  text-decoration: none;
}

.footer-quick-contacts-sub {
  margin-bottom: 10px;
}

.footer-details a {
  cursor: pointer;
}

.social-media-icons a:hover {
  background-color: var(--sunmatch-brown);
}

.social-media-icons a:hover i {
  color: var(--sunmatch-white);
}

.footer-rights-mobile-view {
  display: none;
}
.ogilvy-martech img {
  width: 110px;
}
/* -------------------------------end footer----------------------------------- */
/* --------------------------------start-path section---------------------------------------------------------------------- */
.inner-page-path {
  padding: 20px 0px 0px;
  display: flex;
  justify-content: flex-end;
}

.inner-page-path p {
  font-style: italic;
  font-weight: 100;
  font-size: 14px;
}

.inner-page-path span {
  font-weight: 400;
}

/* --------------------------------end-path section---------------------------------------------------------------------- */

/* -----------------------------------------start terms and condition page------------------------------------------------------------- */
.main-banner-carosal.inner-page-main-banner {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.inner-page-container {
  position: relative;
}

.banner-conteint.inner-page-banner-conteint {
  left: 0px;
}

.terms-conditions-inner-wrapper {
  padding: 70px 0px;
}

.terms-conditions-inner-wrapper h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.terms-conditions-inner-wrapper p {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 20px;
}

/* -----------------------------------------end terms and condition page------------------------------------------------------------- */

/* -----------------------------------------start about us page------------------------------------------------------------- */
.product-discription-image.inner-product-discription-image {
  margin-top: -150px;
}

.inner-page-sunmatch-product-section {
  padding-bottom: 50px;
}

.sunmatch-inner-page-certified {
  padding: 0px 0px 70px;
}

.inner-page-certified-discription {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-page-certified-discription h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 8px;
}

.inner-page-certified-discription p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  width: 60%;
}

.inner-page-sunmatch-certified .col {
  display: flex;
  justify-content: center;
}

.inner-page-sunmatch-certified .certificate-cards img {
  width: 100%;
}

.inner-page-sunmatch-welcome-section {
  position: relative;
}

/* -----------------------------------------end about us page--------------------------------------------------------------- */
/* -----------------------------------------start news update page--------------------------------------------------------------- */
.news-inner-page-news-list-section {
  padding: 0px 0px 70px;
}

.news-list-half hr {
  background-color: #dddddd;
  height: 1px;
  border: none;
  margin: 22px 0px 26px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination a {
  color: var(--sunmatch-black);
  text-decoration: none;
  font-size: 15px;
}

.pagination li {
  min-width: 40px;
  background-color: var(--sunmatch-white);
  float: left;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--sunmatch-black);
  display: flex;
  justify-content: center;
}

.pagination a.active {
  background-color: var(--sunmatch-black);
  color: white;
}

a.pagination-arrow {
  border: none;
  background-color: transparent;
}

.pagination a.pagination-arrow:hover:hover:not(.active) {
  color: var(--sunmatch-black);
  background-color: transparent;
  border: none;
}

.pagination li:hover:not(.active) {
  background-color: var(--sunmatch-brown);
  border: 1px solid var(--sunmatch-brown);
  color: var(--sunmatch-white);
}

.pagination li.active {
  background-color: var(--sunmatch-black);
}

.pagination li.active a {
  color: var(--sunmatch-white);
}

.news-updates-main-wrapper.innaer-page-news-updates-main-wrapper {
  padding: 70px 0px;
}

/* -----------------------------------------end news update page--------------------------------------------------------------- */

/* -----------------------------------------start news detail page--------------------------------------------------------------- */

.news-details-header h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.news-details-header p {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 20px;
}

.news-details-header {
  padding: 70px 0px 40px;
}

.news-banner-image {
  margin: 20px 0px;
}

.news-banner-image img {
  width: 100%;
}

.view-all-updates-btn {
  display: flex;
  justify-content: center;
}

/* -----------------------------------------end news detail page--------------------------------------------------------------- */

/* -----------------------------------------start careers page--------------------------------------------------------------- */
.terms-conditions-inner-wrapper .pagination {
  padding: 30px 0px 0px;
}

.terms-conditions-inner-wrapper ul {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 20px;
}

.terms-conditions-inner-wrapper h4 {
  margin-bottom: 20px;
}

.join-with-us-main-wrapper {
  display: flex;
  justify-content: center;
}

.join-with-sunmatch {
  background-color: #ffcf96;
}

.join-with-sunmatch {
  padding: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  margin-bottom: 70px;
  box-shadow: 4px 4px 20px 0px #0b0a0a2b;
  border-radius: 6px;
}

.join-with-sunmatch form input {
  width: 100%;
  border: none;
  height: 56px;
  margin-bottom: 20px;
  font-size: 14px;
  padding: 20px;
  border-radius: 6px;
}

.join-with-sunmatch form textarea {
  width: 100%;
  border: none;
  height: 200px;
  font-size: 14px;
  padding: 20px;
  border-radius: 6px;
}

.join-with-sunmatch form label {
  font-size: 14px;
  text-align: left;
}

.cv-lable {
  text-align: left;
  color: var(--sunmatch-black);
}

.join-with-sunmatch h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.inner-page-form-bacground-image {
  position: absolute;
  left: auto;
  right: auto;
}

.join-with-sunmatch form input[type="file" i] {
  height: 50px;
  background-color: var(--sunmatch-white);
  height: 38px;
  padding: 0px;
}

input::file-selector-button {
  background-color: #cecece;
  border-radius: 6px;
  border: none;
  height: 38px;
  color: var(--sunmatch-text);
}

input[type="file"] {
  color: var(--sunmatch-text);
}

.join-with-sunmatch form .submit-btn input {
  padding: 15px;
  text-align: center;
  max-width: 170px;
  border-radius: 10px;
  margin: 20px 0px 0px;
  background-color: var(--sunmatch-green);
  color: var(--sunmatch-white);
}

.join-with-us-inner-page-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.join-with-us-inner-page-details p {
  width: 80%;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 26px;
}

.opprtunity-card-main-wrapper {
  display: flex;
  background-color: var(--sunmatch-white);
  padding: 40px;
  align-items: center;
  border-radius: 6px;
  box-shadow: 4px 4px 20px 0px #0b0a0a2b;
}

.sunmatch-btn.apply-now-btn {
  margin: 24px 0px 0px;
}

.sunmach-positions h1 {
  font-family: var(--sunmatch-heading-font);
  font-size: 24px;
  color: var(--sunmatch-black);
}

.sunmach-positions p {
  font-style: italic;
  font-size: 14px;
}

.sunmach-inner-location-details {
  border-left: 2px solid #a7a7a7;
  padding: 0px 40px;
}

.sunmach-inner-location-details p {
  font-size: 14px;
  line-height: 26px;
}

.opprtunity-card-container-wrapper {
  display: flex;
  gap: 34px 0px;
}

.sunmatch-btn.view-all-oppatunities-btn {
  margin: 0px;
}

.sunmatch-other-opatunities h1 {
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  margin-bottom: 30px;
}

.sunmatch-other-opatunities {
  margin-bottom: 70px;
}

.btn-alignment {
  width: 100%;
  text-align: -webkit-center;
}

.pagination.careers-pagination {
  margin-top: 20px;
}

.join-with-us-cover img {
  width: 100%;
}

.join-with-sunmatch.carrer-page-main-join-with {
  margin-bottom: 0px;
}

.careers-page-inner-join-with-inner {
  padding: 0px 0px;
}

.inner-page-form-bacground-image.careers-page-join-with-us-background {
  top: 120px;
}

.careers-page-join-with-us-background img {
  width: 100%;
}

.careers-page-inner-join-with-us {
  margin-bottom: 70px;
}

.join-with-us-cover {
  border-radius: 6px;
  box-shadow: 4px 4px 20px 0px #0b0a0a2b;
}

.sunmach-positions h1 {
  font-size: 24px;
  line-height: 34px;
  padding-right: 12px;
  margin-bottom: 0px;
}
/* -----------------------------------------end careers page----------------------------------------------------------------- */
/* ---------------------------------------start contact us----------------------------------------------------------------- */
.contact-us-inner-page-dateils {
  margin: 60px 0px 70px;
}

.join-with-us-inner-page-details.join-with-us-inner-page-details-left {
  align-items: flex-start;
}

.join-with-us-inner-page-details.join-with-us-inner-page-details-left p {
  text-align: left;
}

.submit-btn.careers-submit-btn {
  display: flex;
}

.sunmach-contact-us-icons img {
  width: 100%;
}

.opprtunity-card-main-wrapper.contactus-page-main-wrapper {
  padding: 10px;
}

.opprtunity-card-main-wrapper.contactus-page-sub-wrapper {
  padding: 20px;
}

.contactus-page-wrapper {
  margin: 20px 0px;
}

.contactus-page-sub-wrapper .sunmach-inner-location-details {
  padding: 0px 20px;
}

.contactus-page-sub-wrapper .sunmach-inner-location-details p {
  line-height: 40px;
}

.contactus-page-sub-wrapper .sunmach-inner-location-details ul {
  list-style: none;
  padding: 0px;
  font-size: 14px;
  line-height: 24px;
}

.sunmach-inner-location-details a {
  color: var(--sunmatch-text);
  text-decoration: none;
}

.contactus-page-inner-join-with-inner {
  margin-bottom: 100px;
}

.location-sunmatch img {
  width: 100%;
  border-radius: 6px;
}

.sunmatch-btn:hover button {
  background-color: var(--sunmatch-brown);
  color: var(--sunmatch-black);
}

.sunmatch-btn button {
  color: var(--sunmatch-white);
  font-size: 14px;
  font-weight: 100;
  background-color: var(--sunmatch-green);
}

.sunmatch-submit-form.sunmatch-btn {
  padding: 12px 50px;
  margin-top: 20px;
  color: var(--sunmatch-white);
}

.sunmatch-submit-form.sunmatch-btn:hover {
  color: var(--sunmatch-black);
}

/* ------------------------------------------end contact us------------------------------------------- */
/* --------------------------------------start achievement--------------------------------------------- */
.achievements-page-brand {
  margin: 70px 0px;
}

.achievements-sunmatch-inner-page {
  margin-top: 70px;
}

.achievement-main-pharagraph p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 100;
  word-spacing: 1px;
  text-align: center;
}

.award-background img {
  width: 100%;
}

.award-section {
  display: flex;
}

.award-details-list {
  display: flex;
  gap: 25px;
  margin: 80px;
  margin-left: -220px;
  flex-direction: column;
}

.award-image {
  padding: 0px;
}

.award-image img {
  width: 100%;
}

.achievement-detail-wrepper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
}

.achievement-detail-wrepper h1 {
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  margin-bottom: 4px;
}

.achievement-detail-wrepper h4 {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  margin-bottom: 6px;
  font-weight: 100;
}

.achievement-detail-wrepper p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 100;
  word-spacing: 1px;
}

.award-image-box {
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 4px 4px 20px 0px #0b0a0a2b;
  border-radius: 6px;
}

.achievement-main-pharagraph {
  margin-bottom: 70px;
}

/* ---------------------------------------end achievement------------------------------------------ */
.sunmatch-box-shadow {
  box-shadow: 4px 4px 20px 0px #0b0a0a2b;
}

/* ---------------------------start product categories page------------------------------------------------ */
.nav.product-nav {
  flex-direction: column;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  position: relative;
  min-width: 200px;
  padding: 10px;
  background-color: var(--sunmatch-white);
  display: flex;
  align-items: center;
  color: var(--sunmatch-black);
  font-size: 14px;
  border: 1px solid var(--sunmatch-green);
  margin-bottom: 14px;
  border-radius: 2px;
}

.nav-tabs .nav-link.active {
  position: relative;
  min-width: 200px;
  padding: 10px;
  background-color: var(--sunmatch-green);
  border: none;
  display: flex;
  align-items: center;
  color: var(--sunmatch-white);
  border: 1px solid var(--sunmatch-green);
  border-radius: 2px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active::after {
  position: absolute;
  top: 10px;
  height: 0;
  width: 0;
  right: -14px;
  transform: rotate(90deg);
  border: 7px solid transparent;
  border-bottom-color: var(--sunmatch-green);
  content: "";
  border-radius: 2px;
}

.nav-item-product .nav-link img {
  width: 40px;
  margin-right: 13px;
  box-shadow: 3px 4px 8px 0px #0b0a0a2b;
}

.sunmatch-product-section.product-sunmatch-product-section {
  padding-bottom: 100px;
  padding-top: 100px;
}

.product-list-row.main-product-list-row {
  gap: 40px;
}

.product-list-row.main-product-list-row a {
  text-decoration: none;
}

.space {
  height: 190px;
}

.product-page-welcome-wrapper h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.product-page-welcome-wrapper p {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 20px;
}

.sunmatch-product-welcome-section {
  margin: 70px 0px;
}

.product-list-row.main-product-list-row.category-list-product-row {
  gap: 0px;
}

.mobile-list-tab-header {
  display: none;
}

.mobile-list-tab-header h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 18px;
  font-weight: 100;
  margin: 10px 0px;
}

/* ---------------------------end product categories page------------------------------------------------ */
/* ----------------------------start product categories inner page----------------------------------------------- */
.nav.inner-product-nav {
  flex-direction: row;
  gap: 30px;
  margin-bottom: 30px;
}

.nav-tabs .nav-item-product .nav-link.active {
  justify-content: center;
}

.nav-tabs .nav-item-product .nav-link {
  justify-content: center;
}

.nav-tabs .nav-item-product .nav-link.active::after {
  top: 40px;
  left: 20px;
  right: 0;
  transform: rotate(180deg);
}

.product-list-row.main-product-list-row {
  margin-bottom: 40px;
}

.inner-product-details-sunmatch {
  z-index: 10;
  margin-bottom: 30px;
  overflow: hidden;
}

.sunmatch-welcome-sub-category-page h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.sunmatch-welcome-sub-category-page p {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 30px;
}

.sunmatch-welcome-sub-category-page h4 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-black);
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 8px;
}

.product-details-list li::marker {
  color: var(--sunmatch-green);
  font-size: 26px;
}

.product-details-list ul {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 30px;
}

ul.square {
  list-style-type: square;
}

.product-page-welcome-wrapper-inner {
  margin: 40px 0px;
}

.nav-tabs .nav-item-product.new-listing-product .nav-link.active::after {
  top: 10px;
  left: auto;
  right: -14px;
  transform: rotate(90deg);
}
.product-card-wrapper.product-variation-card:hover .sunmatch-btn {
  margin-left: 10px;
}

.product-card-wrapper.product-variation-card:hover .sunmatch-btn a {
  color: var(--sunmatch-black);
}

.nav-tabs .nav-link.sunmatch-range.active {
  min-width: 220px;
}

.nav-tabs .nav-link.sunmatch-range {
  min-width: 220px;
}

/* ----------------------------end product categories inner page----------------------------------------------- */
/* ----------------------------start product page------------------------------------------------------------- */
.product-sunmatch h2,
.product-gallary h2 {
  color: var(--sunmatch-black);
  font-size: 20px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 6px;
  margin-top: 10px;
}

.product-sunmatch h3 {
  color: var(--sunmatch-black);
  font-size: 20px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin: 0px 0px 10px;
}

.product-icon.icon-arrow-social-left7 {
  left: 500px;
  right: 0px;
}

.product-icon.icon-arrow-social-right7 {
  left: 450px;
  right: 0;
}

.icon.product-icon {
  bottom: 9%;
}

.sunmatch-btn.sunmatch-product-btn {
  padding: 10px;
  margin: 8px 0px 30px;
}

.post-slide.product-post-slide {
  margin: 0px;
}

.product-page-welcome-wrapper-inner.product-detail-wrapper-inner {
  margin: 0px;
}

.sunmatch-welcome-sub-category-page.product-sunmatch p,
.product-gallary p {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 24px;
}

.sunmatch-welcome-sub-category-page.product-sunmatch .product-details-list ul {
  line-height: 26px;
  margin-bottom: 20px;
}

.product-gallary-wrapper,
.main-product-discription {
  margin: 70px 0px;
}

#product-slider .owl-nav {
  position: absolute;
  left: 0px;
  bottom: 30px;
}

#product-slider .owl-nav .owl-prev {
  left: 0px;
}

#product-slider .owl- .owl-next {
  left: 0px;
}

/* ------------------------------------end product page-------------------------------------------------------- */
/*--------------------------------- start inner page banner section-------------------------------------------- */
.inner-page-headr-background-banner {
  height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}

.inner-page-main-banner-image {
  position: relative;
  height: 30vh;
  width: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.innert-page-main-banner-conteint {
  position: absolute;
  left: 20px;
  bottom: 0px;
  z-index: 200;
  background-color: var(--sunmatch-yellow);
  padding: 40px;
  border-top-right-radius: 54px;
  box-shadow: -2px 10px 20px 0px #0b0a0a40;
}

.innert-page-main-banner-conteint h1 {
  color: var(--sunmatch-black);
  font-family: var(--sunmatch-heading-font);
  line-height: 34px;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 18px;
}

.innert-page-main-banner-conteint p {
  font-size: 12px;
  line-height: 22px;
  font-weight: 100;
  word-spacing: 1px;
  margin-bottom: 0px;
}

.inner-page-main-banner-image img {
  position: absolute;
  right: 0px;
  bottom: -50px;
  width: 500px;
}

/*--------------------------------- end inner page banner section-------------------------------------------- */
/* --------------------------------------start 404 page--------------------------------------------------------------- */
.robot-error-section {
  margin: 40px 0px 70px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.robot-error-section h1 {
  color: var(--sunmatch-black);
  font-size: 28px;
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
  margin-bottom: 10px;
}

.robot-error-section p {
  font-size: 14px;
  font-weight: 100;
  line-height: 24px;
  word-spacing: 2px;
}

.robot-error-section a {
  text-decoration: none;
  color: var(--sunmatch-black);
  font-weight: 400;
}

.news-section-bacground-image.error-bacground-image img {
  top: 90px;
}

svg {
  display: block;
  margin: 0 auto;
  overflow: visible !important;
}

svg.robot-error {
  width: 300px;
  margin-top: 50px;
}

svg #robot_1_ {
  animation-name: verticalAnimation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

svg #light_1_ {
  animation-name: blinkLight;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: steps(2);
}

svg #leftEye_1_,
svg #rightEye_1_ {
  animation-name: blinkEye;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
  transform-origin: 50% 50%;
}

svg #leftArm_1_ {
  animation-name: moveLeftArm;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  transform-origin: 50% 10%;
  transition: all;
}

svg #rightArm_1_ {
  animation-name: moveRightArm;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  transform-origin: 50% 10%;
}

svg #shadow_1_ {
  animation-name: shadowAnimation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  transform-origin: 50%;
}

@keyframes wave {
  0% {
    transform: rotate(120deg);
  }

  100% {
    transform: rotate(170deg);
  }
}

@keyframes moveLeftArm {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(4deg);
  }
}

@keyframes moveRightArm {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-4deg);
  }
}

@keyframes shadowAnimation {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.6;
  }
}

@keyframes verticalAnimation {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

@keyframes blinkLight {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blinkEye {
  0% {
    transform: scaleY(0);
  }

  4% {
    transform: scaleY(1);
  }
}

/* --------------------------------------end 404 page--------------------------------------------------------------- */
#news-gallery-slider.owl-carousel .owl-dots,
#csr-gallery-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
  position: absolute;
  bottom: 27px;
  left: auto;
  right: auto;
  width: 100%;
}

#news-gallery-slider.owl-carousel .owl-dot,
#csr-gallery-slider.owl-carousel .owl-dot {
  display: inline-block;
  width: 30px;
  height: 4px;
  margin: 0 5px;
  border-radius: 6px;
  background-color: var(--sunmatch-white);
  transition: background-color 0.3s ease;
}

#news-gallery-slider.owl-carousel .owl-dot.active,
#csr-gallery-slider.owl-carousel .owl-dot.active {
  background-color: var(--sunmatch-green);
}

.news-gallery-carosal {
  display: flex;
  justify-content: center;
}

.news-photo-gallary-sectiopn {
  margin-bottom: 80px;
}

.image-discription-news-gallery {
  display: flex;
  justify-content: center;
}

.image-gallery-sub-wrapper {
  position: absolute;
  bottom: 20px;
  width: 70%;
  text-align: center;
  z-index: 2;
}

.image-gallery-sub-wrapper h1 {
  font-family: var(--sunmatch-heading-font);
  color: var(--sunmatch-white);
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 8px;
}

.image-gallery-sub-wrapper p {
  font-size: 14px;
  font-weight: 100;
  line-height: 28px;
  word-spacing: 2px;
  margin-bottom: 20px;
  color: var(--sunmatch-white);
}

.overlayer-gallery {
  background: rgb(0 0 0 / 32%);
  z-index: 1;
  position: absolute;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}

.lightbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.lightbox-target img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 3px solid white;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

a.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  top: -80px;
  right: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

a.lightbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.lightbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.lightbox-target:target {
  opacity: 1;
  top: 0;
  bottom: 0;
  overflow: scroll;
}

.lightbox-target:target img {
  max-height: 100%;
  max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
  top: 0;
}

.flower-home {
  position: absolute;
  top: 146px;
  left: 30px;
  animation: flowerOne 400s linear infinite;
}

.sunmatch-product-section.product-sunmatch-product-section.error-page-section-wrapper {
  padding-bottom: 0px;
  padding-top: 0px;
  height: 100vh;
  overflow: hidden;
}

.second-layer,
.second-layer .container {
  height: 100vh;
}

.error-content {
  color: var(--sunmatch-black);
  opacity: 1;
  margin: 60px 0px;
}

.error-content h1,
.coming-soon-content h1 {
  font-family: var(--sunmatch-heading-font);
  font-size: 200px;
  font-weight: 600;
  line-height: 170px;
}

.error-content img {
  width: 140px;
  border-radius: 6px;
  margin-bottom: 40px;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.coming-soon-content {
  color: var(--sunmatch-white);
}

.coming-soon-content h1 {
  color: var(--sunmatch-white);
  font-size: 82px;
  line-height: 80px;
  width: 67%;
}

.breadcrumb a {
  color: var(--sunmatch-text);
}

.breadcrumb-item {
  font-style: italic;
}

.join-with-sunmatch .contact-us-form form input,
.join-with-sunmatch .contact-us-form form textarea {
  margin-top: 20px;
  margin-bottom: 0px;
}

.product-card-wrapper.fetured-products {
  padding: 20px;
}

.product-card-wrapper.fetured-products h4 {
  font-size: 16px;
  color: var(--sunmatch-black);
  font-family: var(--sunmatch-heading-font);
}

.fetuered-products-sunmatch h4 {
  font-size: 24px;
  color: var(--sunmatch-black);
  font-family: var(--sunmatch-heading-font);
  font-weight: 100;
}

.add-cv-form {
  color: var(--sunmatch-text);
  margin-top: 15px;
}
.menu__item a:hover {
  color: var(--sunmatch-green);
}
#product-carosal.owl-carousel .owl-nav.disabled {
  display: none;
}
.contact-us-form select {
  width: 100%;
  border: none;
  height: 56px;
  font-size: 14px;
  padding: 0px 20px;
  border-radius: 6px;
  background-color: var(--sunmatch-white) !important;
  margin-top: 20px;
  margin-bottom: 0px;
  color: var(--sunmatch-text);
}
.product-buy-btn {
  z-index: 1000;
}