:root {
  --color-main: #000;
  --color-v1: #038143;
  --color-v2: #ff6000;
  --color-v3: #0088ec;
  --color-v4: #04a94e;
  --color-scrollbar: #038143;
  --font-main: "Source Sans Pro", sans-serif;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--color-main);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

input,
button,
select,
textarea {
  font-family: var(--font-main);
  outline: none;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar {
  width: 0.5rem;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background: var(--color-scrollbar);
}

a,
i,
input[type="submit"],
button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.s-content ol {
  list-style: decimal;
  margin-left: 15px;
  margin-bottom: 10px;
}

.s-content ul {
  list-style: initial;
  margin-left: 15px;
  margin-bottom: 10px;
}

.s-content li {
  list-style: inherit;
  margin-bottom: 5px;
}

.s-content p {
  margin-bottom: 10px;
}

.s-content img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
  width: auto !important;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto !important;
}

.s-content table,
.s-content iframe {
  max-width: 100%;
  width: 100%;
}

.s-content table {
  border-collapse: collapse;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.431372549);
  background-color: #fff;
}

.s-content table td {
  border-collapse: collapse;
  border: solid 1px rgba(0, 0, 0, 0.431372549);
  padding: 3px;
}

.s-content h1,
.s-content h2,
.s-content h3,
.s-content h4,
.s-content h5,
.s-content h6 {
  display: block;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

.s-content h1 {
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}

.s-content h2 {
  font-size: 1.5em;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

.s-content h3 {
  font-size: 1.17em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.s-content h4 {
  font-size: 1em;
  margin-top: 0.6em;
  margin-bottom: 0.6em;
}

.s-content h5 {
  font-size: 0.83em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.s-content h6 {
  font-size: 0.67em;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.c-img {
  position: relative;
  display: block;
}

.c-img img,
.c-img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.scale-img {
  transition: all 0.5s;
  overflow: hidden;
}

.scale-img img {
  transition: all 0.5s;
}

.scale-img:hover img {
  transform: scale(1.03) rotateZ(0.3deg) translateY(-2px);
  filter: brightness(1.1) contrast(1.05) saturate(1.1);
}

.img__ {
  position: relative;
  overflow: hidden;
}

.img__:hover::after {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

.img__::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.hv_img {
  display: block;
  position: relative;
  overflow: hidden;
}

.hv_img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hv_img:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img__contain img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
  -o-object-fit: contain;
}

.img__h-full img {
  height: 100% !important;
}

.img__w-full img {
  width: 100%;
}

.img__center img {
  display: block;
  margin: 0 auto;
}

.img_plus {
  position: relative;
  display: block;
}

.img_plus:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.img_plus:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.img_plus:hover:before {
  right: 50%;
  left: 50%;
  width: 0;
  background: rgba(255, 255, 255, 0.3);
}

.img_plus:hover:after {
  height: 0;
  top: 50%;
  bottom: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.menu-footer a {
  display: block;
  margin-bottom: 0.5rem;
}

.menu-footer a:hover {
  color: var(--color-v2);
}

.s-content ul li {
  list-style-image: url("../images/checkmark.png");
  margin-left: 1rem;
}

.c-img-pro img {
  object-fit: contain;
}

.form-distributor-registration form,
.form-contact form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.form-distributor-registration form .control-input {
  width: calc(50% - 1rem);
}

.form-contact form .control-input {
  width: calc(100% / 3 - 1.35rem);
}

.form-distributor-registration form .control-textarea,
.form-contact form .control-textarea,
.form-distributor-registration form .control-submit {
  width: 100%;
}

.form-distributor-registration form .control-input input,
.form-distributor-registration form .control-textarea textarea,
.form-contact form .control-input input,
.form-contact form .control-textarea textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-distributor-registration form .control-input input:focus,
.form-distributor-registration form .control-textarea textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-distributor-registration form .control-input > p:nth-child(1),
.form-distributor-registration form .control-textarea > p:nth-child(1) {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-contact form .control-input > p:nth-child(1),
.form-contact form .control-textarea > p:nth-child(1) {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.form-distributor-registration form .control-submit input,
.form-contact form .control-submit input {
  padding: 1.125rem 3.875rem;
  width: 100%;
  border: none;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  background: #ff6000;
  border-radius: 10px;
  color: #fff;
}

.form-distributor-registration form .control-submit p,
.form-contact form .control-submit p {
  position: relative;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #dc3232;
  font-size: 12px !important;
  padding: 0 10px;
  display: block;
  border-radius: 3px;
  color: #fff !important;
  animation: fadeInUp 0.5s ease-in-out;
}

.wpcf7-not-valid-tip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #dc3232;
}

.wpcf7-spinner {
  display: none;
  position: absolute;
}
.wpcf7-spinner {
  background-color: var(--color-v2) !important;
  opacity: 1 !important;
  margin: 0 !important;
  display: flex !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 10px !important;
}
.wpcf7-spinner::after {
  content: "";
  margin: auto !important;
  border: 0.3rem solid transparent !important;
  border-radius: 50% !important;
  border-top: 0.3rem solid #fff !important;
  border-bottom: 0.3rem solid #fff !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
  animation: spinner 3s linear infinite !important;
  background-color: transparent !important;
}
.wpcf7-spinner::before {
  display: none !important;
}

.wpcf7-response-output {
  display: none !important;
}

.title-all {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.title-all::before,
.title-all::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rank-math-breadcrumb span.separator {
  display: inline-block;
  margin: 0 0.5rem;
}

.rank-math-breadcrumb span.last {
  font-weight: 700;
}

.pagination ul {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.pagination ul li {
  min-width: 2.5rem;
  text-align: center;
  border: 1px solid #6d6d6d;
  border-radius: 5px;
  transition: all 0.3s;
}

.pagination ul li:is(:first-child, :last-child) {
  border-color: transparent;
}

.pagination a,
.pagination strong {
  display: block;
  text-align: center;
  padding: 0.5rem;
  width: 100%;
}

.c-pagination a,
.c-pagination span {
  display: block;
  text-align: center;
  padding: 0.5rem;
  min-width: 2.5rem;
  border: 1px solid #6d6d6d;
  border-radius: 5px;
}

.pagination ul a:hover,
.pagination ul a.active {
  background-color: var(--color-v1);
  color: #fff;
  border-color: var(--color-v1);
}

.c-pagination .page-numbers.dots {
  border-color: transparent;
  background-color: transparent;
  color: #6d6d6d;
}

.pagination ul li {
  display: flex;
  align-items: center;
}

.swiper-image-single-pro .c-img img {
  height: 90% !important;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  object-fit: contain;
}

.swiper-image-single-pro .swiper-thumb .swiper-slide-thumb-active .c-img {
  border-color: var(--color-v4);
}

.module-modal {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.module-modal.active {
  visibility: visible;
  opacity: 1;
}

.module-modal .modal-content {
  transform: translateY(-5rem);
  transition: all 0.3s;
}

.module-modal.active .modal-content {
  transform: translateY(0);
}

@media not all and (min-width: 576px) {
  .form-distributor-registration form .control-input {
    width: 100%;
  }
}

@media not all and (min-width: 768px) {
  .header__bottom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: min(80%, 320px);
    height: 100dvh;
    transform: translateX(-100%);
    transition: all 0.5s;
    font-weight: 600;
    background-color: #fff;
  }
  .header__bottom.active {
    transform: translateX(0);
  }
  .menu-header {
    font-weight: 500;
  }
  .menu-header > ul > li > a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 700;
  }
  .menu-header > ul > li {
    border-bottom: 1px solid #e0e0e0;
  }
  .menu-header ul ul li a {
    display: block;
    padding: 0.5rem 1rem;
    padding-left: 1.5rem;
    border-top: 1px solid #e0e0e0;
  }
  .menu-header ul li {
    position: relative;
  }
  .menu-header .btn-toggle-menu-item {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    width: 2.25rem;
    z-index: 1;
  }
  .menu-header .btn-toggle-menu-item.active i {
    transform: rotate(180deg);
  }
  .menu-header ul li:has(.btn-toggle-menu-item) a {
    padding-right: 2.25rem;
  }
  .menu-header ul ul ul li a {
    padding-left: 2rem;
  }
  .menu-header {
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
  }
  .menu-header ul ul {
    display: none;
  }
  .bg-layout-menu-moblie.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .form-contact form .control-input {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .menu-header ul {
    font-weight: 700;
    text-transform: uppercase;
  }

  .menu-header > ul {
    display: flex;
    gap: 2vw;
  }

  .menu-header > ul > li > a {
    display: block;
    padding: 1rem 0;
  }

  .menu-header ul li {
    position: relative;
  }

  .menu-header ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
  }

  .menu-header ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-header ul ul li:hover {
    background-color: #f5f5f5;
  }

  .menu-header ul ul li a {
    padding: 0.625rem 1.25rem;
    display: block;
    text-transform: capitalize;
    font-weight: 600;
  }

  .menu-header ul ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .menu-header ul ul ul {
    top: 0;
    left: 100%;
  }

  .menu-header ul li.current_page_item,
  .menu-header ul li:has(li.current-menu-item) > a,
  .menu-header ul li:has(li.current-menu-item) > .btn-toggle-menu-item,
  .menu-header ul li:hover > a,
  .menu-header ul li:hover .btn-toggle-menu-item {
    color: var(--color-v2);
  }

  .menu-header ul li:has(ul) {
    padding-right: 1.25rem;
  }

  .menu-header ul li .btn-toggle-menu-item {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
  }

  .menu-header ul ul li .btn-toggle-menu-item {
    right: 0.25rem;
    transform: translateY(-50%) rotate(-90deg);
  }
}

/* Loading */

.loading {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 2;
}

.ball {
  width: 40px;
  height: 20px;
  position: absolute;
  background-color: white;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 2;
}

.ball::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.7;
  z-index: -1;
}

.ball:nth-child(1) {
  background-color: #11e793;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

.ball:nth-child(2) {
  background-color: #d035f7;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
}

.ball:nth-child(3) {
  background-color: #ff459f;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.ball:nth-child(4) {
  background-color: #0ba5ff;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  animation: rotateText 3s linear infinite;
  z-index: 1;
  transform-origin: center;
}

@keyframes rotateText {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bounce {
  0% {
    top: 30px;
  }
  25% {
    top: 40px;
  }
  50% {
    top: 25px;
  }
  75% {
    top: 35px;
  }
  100% {
    top: 30px;
  }
}

.loading-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background-color: #000;
  opacity: 0.5;
  animation: glow 2s ease-in-out infinite;
}

.loading-text::before:nth-child(1) {
  background-color: #11e793;
}

.loading-text::before:nth-child(2) {
  background-color: #d035f7;
}

.loading-text::before:nth-child(3) {
  background-color: #ff459f;
}

.loading-text::before:nth-child(4) {
  background-color: #0ba5ff;
}

.loading-ajax.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media (min-width: 1300px) and (max-width: 1500px) {
  .container,
  .md\:container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
