@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-Medium.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-Book.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "ExpoArabic";
  src: url(../fonts/ExpoArabic/ExpoArabic-SemiBold.ttf);
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "ExpoArabic", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: var(--dark-color);
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(88, 172, 121, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(1.5, 1.5, 1.5);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #58AC79;
  --secondary-color: #BF9064;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(55%) sepia(98%) saturate(203%) hue-rotate(91deg) brightness(90%) contrast(88%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

.custom-btn {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  z-index: 9;
  border: 1px solid;
  overflow: hidden;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.custom-btn::after {
  left: 0px;
}
.custom-btn::before {
  right: 0px;
}
.custom-btn span {
  font-size: 16px;
  font-weight: 900;
  position: relative;
  z-index: 9;
}
.custom-btn.primary-btn {
  background-color: var(--light-color);
  border-color: var(--primary-color) !important;
}
.custom-btn.primary-btn::after, .custom-btn.primary-btn::before {
  background-color: var(--primary-color);
}
.custom-btn.primary-btn span {
  color: var(--light-color);
}
.custom-btn.primary-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.light-btn {
  background-color: var(--primary-color);
  border-color: var(--light-color);
}
.custom-btn.light-btn::after, .custom-btn.light-btn::before {
  background-color: var(--light-color);
}
.custom-btn.light-btn span {
  color: var(--primary-color);
}
.custom-btn.light-btn:hover span {
  color: var(--light-color);
}
.custom-btn:hover::after, .custom-btn:hover::before {
  width: 0px;
}
.custom-btn:hover span {
  animation: storm 0.4s linear;
}

.sub-title {
  width: 100%;
  position: relative;
  z-index: 9;
  padding-inline-start: 30px;
}
.sub-title.white-color::after {
  background-color: var(--light-color);
}
.sub-title.white-color h1, .sub-title.white-color p {
  color: var(--light-color);
}
.sub-title::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 80px;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -1;
}
html[dir=rtl] .sub-title::after {
  left: unset;
  right: 0px;
}
.sub-title .desc {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .sub-title .desc {
    font-size: 17px !important;
  }
}
.sub-title .head {
  color: var(--dark-color);
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0px;
}
.sub-title .head.light-head {
  color: var(--light-color);
}
@media (max-width: 992px) {
  .sub-title .head {
    font-size: 20px !important;
  }
}

.general-section {
  width: 100%;
  padding: 90px 0px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .general-section {
    padding: 40px 0px;
  }
}
.general-section.padding-top-no {
  padding-top: 0px !important;
}

.navbar {
  width: 100%;
  padding: 12px 0px;
  background-color: var(--light-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.navbar.scrolled {
  padding: 10px 0px;
  box-shadow: 0px 0px 10px rgba(88, 172, 121, 0.4);
}
@media (max-width: 992px) {
  .navbar.scrolled .navbar-nav {
    top: 80px !important;
  }
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
@media (max-width: 992px) {
  .navbar .contain .hamburger {
    display: block;
  }
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: linear-gradient(45deg, #58AC79 0%, #6EB464 100%);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: var(--light-color);
    left: -100%;
    top: 104px;
    transition: all 0.3s linear;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-content: flex-start;
    gap: 0px;
    padding: 20px 15px;
  }
  html[dir=rtl] .navbar .contain .navbar-nav {
    left: unset;
    right: -100%;
  }
  .navbar .contain .navbar-nav.active-nav {
    left: 0px;
  }
  html[dir=rtl] .navbar .contain .navbar-nav.active-nav {
    left: unset;
    right: 0%;
  }
}
.navbar .contain .navbar-nav .nav-item {
  margin: 0px;
  padding: 0px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item {
    padding: 10px 0px !important;
    border-bottom: 1px solid rgba(88, 172, 121, 0.5);
  }
  .navbar .contain .navbar-nav .nav-item:first-child {
    padding-top: 0px !important;
  }
  .navbar .contain .navbar-nav .nav-item:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}
.navbar .contain .lang {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 10px;
}
.navbar .contain .lang span {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.navbar .contain .lang:hover span {
  animation: fadeInLeft 0.3s linear;
}

header {
  width: 100%;
  padding: 200px 0px 80px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
@media (max-width: 992px) {
  header {
    padding: 150px 0px 50px;
  }
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  z-index: -1;
}
header .intro-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  animation: spinner 20s linear infinite;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
}
header .contain .desc {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  header .contain .desc {
    font-size: 17px;
  }
}
header .contain h1 {
  color: var(--light-color);
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  header .contain h1 {
    font-size: 25px;
  }
}
header .contain p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  header .contain p {
    font-size: 15px;
    text-align: justify;
  }
}
header .contain .button-contain {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 15px;
}

.product {
  width: 100%;
  padding: 50px 0px 15px;
  background-color: var(--dark-color);
  position: relative;
  z-index: 9;
}
.product .heading {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.product .heading::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.75);
  top: 70px;
  right: 0px;
  z-index: -1;
}
html[dir=rtl] .product .heading::after {
  left: 0px;
  right: unset;
}
@media (max-width: 992px) {
  .product .heading::after {
    display: none;
  }
}
.product .heading h1 {
  font-size: 24px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
}
@media (min-width: 992px) {
  .product .heading h1 {
    width: 100%;
    transform: rotate(90deg);
    text-align: end;
    margin-top: -20px;
  }
}
.product .box {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .product .box {
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
}
.product .box .image-contain {
  width: 80px;
  height: 80px;
}
.product .box .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 992px) {
  .product .box .contain {
    width: calc(100% - 80px);
  }
}
.product .box .contain h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}
.product .box .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.product .box:hover {
  transform: translateY(-10px);
}

.about-us .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about-us .contain .data {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 30px;
}
.about-us .contain .list {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.about-us .contain .list li {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.about-us .contain .list li img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-us .contain .list li span {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 700;
}
.about-us .image-contain {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .about-us .image-contain {
    height: 300px;
  }
}
.about-us .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  animation: translateY 1s linear infinite alternate;
}
.about-us .image-contain.rotate-img {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-end;
}
.about-us .image-contain.rotate-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/about/setting.svg") top left/contain no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spin 10s linear infinite alternate;
}
@media (min-width: 992px) {
  .about-us .image-contain.rotate-img img {
    width: 80%;
    height: 80%;
  }
}

.excellent .sub-title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.excellent .sub-title::after {
  top: calc(50% - 70px);
}
.excellent .sub-title h1 {
  margin-bottom: 0px !important;
}
.excellent .swiper-wrapper {
  width: 100%;
  padding: 15px 0px 40px;
}
.excellent .box {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  padding: 15px 20px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .excellent .box {
    height: 200px;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
  }
}
.excellent .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .excellent .box img {
    border-radius: 20px;
    overflow: hidden;
  }
}
.excellent .box h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .excellent .box h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.excellent .box p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .excellent .box p {
    font-size: 12px;
  }
}
.excellent .box:hover {
  transform: translateY(-10px);
}
.excellent .box:hover img {
  transform: scale(1.2);
}
.excellent .box:hover h2 {
  color: var(--primary-color);
}
.excellent .excellent-intro {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 20s linear infinite;
}

.explore .sub-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .explore .sub-title {
    margin-bottom: 30px;
  }
}
.explore .sub-title .data {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0px;
}
.explore .box {
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .explore .box {
    padding: 10px 5px;
    border-radius: 10px;
  }
}
.explore .box img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .explore .box img {
    width: 50px;
    height: 50px;
  }
}
.explore .box h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  .explore .box h2 {
    font-size: 13px;
    margin: 15px 0px;
  }
}
.explore .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .explore .box p {
    font-size: 10px;
  }
}
.explore .box:hover {
  transform: translateY(-10px);
}
.explore .box:hover h2 {
  color: var(--primary-color);
}

.nature .contain .data {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px 0px;
}
.nature .nature-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 20s linear infinite alternate;
}
.nature .box {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.3s linear;
  margin-bottom: 20px;
}
.nature .box:last-child {
  margin-bottom: 0px;
}
@media (max-width: 992px) {
  .nature .box {
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
}
.nature .box img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .nature .box img {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 992px) {
  .nature .box .data {
    width: calc(100% - 100px);
  }
}
.nature .box .data h2 {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}
.nature .box .data p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.nature .box:hover {
  transform: translateY(-10px);
}
.nature .box:hover h2 {
  color: var(--primary-color);
}

.teamwork .sub-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .teamwork .sub-title .data {
    text-align: justify;
    font-size: 10px;
  }
}
.teamwork .swiper-wrapper {
  padding: 15px 0px 30px;
}
.teamwork .box {
  width: 100%;
  transition: all 0.3s linear;
  text-align: center;
}
.teamwork .box img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px auto;
}
@media (max-width: 992px) {
  .teamwork .box img {
    width: 70px;
    height: 70px;
  }
}
.teamwork .box h2 {
  color: var(--dark-color);
  font-size: 20px;
  font-weight: 900;
  margin: 20px 0px 10px;
}
@media (max-width: 992px) {
  .teamwork .box h2 {
    font-size: 12px !important;
    margin: 10px 0px 5px;
  }
}
.teamwork .box p {
  color: var(--gray-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .teamwork .box p {
    font-size: 10px;
  }
}
.teamwork .box:hover {
  transform: translateY(-10px);
}
.teamwork .box:hover h2 {
  color: var(--primary-color);
}

.brands .sub-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .brands .sub-title .data {
    text-align: justify;
    font-size: 10px;
  }
}
.brands .swiper-wrapper {
  padding: 15px 0px 30px;
}
.brands img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s linear;
}
.brands img:hover {
  transform: translateY(-10px);
}

footer {
  width: 100%;
  padding: 50px 0px 0px;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  footer {
    padding: 30px 0px 0px;
  }
}
footer .contain {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  footer .contain {
    gap: 10px;
  }
}
footer .contain .brand-name img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
footer .contain .socail {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
footer .contain .socail li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 992px) {
  footer .contain .socail li a {
    width: 40px;
    height: 40px;
  }
}
footer .contain .socail li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  transform: scale(0);
  border-radius: 50%;
  transition: all 0.4s linear;
  top: 0;
  left: 0;
  z-index: -1;
}
footer .contain .socail li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .socail li a:hover::after {
  transform: scale(1);
}
footer .copyrights {
  width: 100%;
  padding: 10px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 40px;
}
footer .copyrights p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 2px;
}
footer .copyrights p img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .copyrights p a {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */