:root {
  --primary-color: #e32317;
  --second-color: #faf6ea;
  --text-color: #333;
  --text-color-light: #ffffff;
  --background-color: #faf6ea;
}
.ft-d-flex--center{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
ul.menu-policy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* list-style: none; */
}
ul.menu-policy li:first-child {
  list-style: none;
}

.menu-policy li{
  margin-left: 30px;
}
.menu-policy li:hover{
  margin-left: 30px;
  color: var(--primary-color);
}
.menu-policy li a{
  color: #fff;
}
.menu-policy li a:hover{
  color: var(--primary-color);
}
@media screen and (max-width: 767.98px) {
.footer-bottom.ft-d-flex--center{
  display: block;
}
.ft_policy {
  margin-top: 10px;
}
}



.d--none {
  display: none;
}
#d--none {
  display: none;
}
.hidden-tt {
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 0;
}
/* .iti__country-list {
  width: 100% !important;
} */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.elementor-9
  .elementor-element.elementor-element-fc5a39d
  .elementor-heading-title {
  font-family: "Noto Sans SC", sans-serif;
  font-size: 43px;
}
h2.title_banner {
  font-size: 36px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Header */
header {
  background: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-logo-link {
  max-width: 150px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #e32317;
  opacity: 0.8;
}

.get-access-btn {
  padding-left: 2rem;
  background: #e32317;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get-access-btn:hover {
  background: var(--primary-color);
  color: #fff;
  opacity: 0.8;
}

/* Hero Section */
#hero {
  /* background: #f9f9f9; */
  padding: 70px 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content .hero-text {
  width: 50%;
}

.hero-content .hero-image {
  width: 50%;
  text-align: right;
}

.hero-text h1 {
  font-size: 52px;
  color: #000000;
  font-weight: 900 !important;
}

.hero-text h2 {
  font-size: 42px;
  color: #000000;
  font-weight: 900 !important;
}

.hero-text span,
.hero-text strong {
  color: #e32317;
}

.hero-text p {
  font-size: 20px;
  margin: 20px 0;
}

.register-btn {
  background: #e32317;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
}

.register-btn:hover {
  background: var(--second-color);
  color: var(--primary-color);
  opacity: 0.8;
}

.hero-image img {
  max-width: 600px;
  animation: slideInRight 1s ease-in-out;
}

/* Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Trusted Brands */
#trusted-brands {
  /* background: #fff; */
  padding: 50px 0;
  text-align: center;
}
#trusted-brands .brands {
  /* background: #fff; */
  padding-left: 30px;
  text-align: center;
}

.brands img {
  margin: 10px;
  width: 100px;
}

/* Stats Section */
#stats {
  /* background: #f9f9f9; */
  padding: 50px 0;
  text-align: center;
}

.stat-box {
  display: inline-block;
  width: calc(33.33% - 0px);
  margin: 10px 0;
  text-align: center;
  padding: 20px;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.05);
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
  opacity: 0.8;
}

.stat-box h3 {
  font-size: 36px;
  color: #333;
}

.stat-box p {
  font-size: 18px;
  color: #666;
}

.stat-box img {
  width: 40px;
  margin-top: 10px;
}

/* What We Do Section */
#what-we-do {
  background: #fff;
  padding: 50px 0;
}

.what-we-do-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.what-we-do-content img {
  max-width: 500px;
  animation: fadeIn 1s ease-in-out;
}

.what-we-do-content .text {
  width: 50%;
}

.what-we-do-content h3 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.what-we-do-content ul {
  list-style: none;
  padding: 0;
}

.what-we-do-content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.what-we-do-content ul li i {
  font-size: 20px;
  color: #e32317;
  margin-right: 10px;
}

.what-we-do-content ul li small {
  display: block;
  font-size: 14px;
  color: #666;
}

/* Perfect for Every Type of Store */
#perfect-for-every-store {
  background: #faf6ea;
  padding: 50px 0;
}

.store-types {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.store-type {
  background-color: #fff;
  width: calc(25% - 20px);
  margin: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-type:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.store-type img {
  width: 100%;
  margin-bottom: 20px;
  max-width: 160px;
}

.store-type h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.store-type p {
  font-size: 16px;
  color: #666;
}

/* Footer */
footer {
  background: #1f2327;
  color: #fff;
  padding: 50px 0;
  padding-bottom: 0;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
}

.footer-col {
  width: calc(25% - 20px);
}

.footer-col.col-left {
  width: calc(20% - 20px);
}
.footer-col.col-right {
  width: calc(50% - 20px);
}

.footer-col h4 {
  font-size: 23px;
  margin-bottom: 20px;
  font-weight: 600 !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #e32317;
  opacity: 0.8;
}

.footer-col .social-icons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.footer-col .social-icons img {
  width: 100px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #000001;
}
.footer-bottom p {
  margin-bottom: 0 !important;
}

.footer li.iti__divider, .iti__country-name {
    color: #1f2327;
}

.pt-30 {
  padding-top: 30px;
}
/* Form */
form input,
form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  background: #e32317;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: var(--second-color);
  opacity: 0.8;
}

#gt_float_wrapper {
  position: relative !important;
}
.gt_float_switcher .gt-selected {
  position: relative;
  z-index: 888;
  background-color: transparent !important;
  cursor: pointer;
  text-transform: uppercase;
  overflow: hidden;
  text-align: right;
}
.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 10px 15px;
  color: #333;
  font-weight: bold;
}
.gt_float_switcher img {
  vertical-align: middle;
  display: inline-block;
  width: 24px;
  height: auto;
  margin: 0 5px 0 0;
  border-radius: 3px;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  color: #000;
  font-size: 13px;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
  position: relative;
  top: 2px;
}
.gt_float_switcher
  .gt-selected
  .gt-current-lang
  span.gt_float_switcher-arrow.gt_arrow_rotate {
  transform: rotate(0deg);
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  display: none;
}
.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
  display: inline-block;
  height: 18px;
  width: 15px;
  vertical-align: middle;
  /* background-image: url(data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23666'/></svg>); */
  background-position: 50%;
  background-size: 11px;
  background-repeat: no-repeat;
  transition: all 0.3s;
  transform: rotate(-180deg);
}
.gt_float_switcher .gt_options.gt-open {
  opacity: 1;
  transform: translateX(0px);
}
.gt_float_switcher .gt_options {
  position: relative;
  z-index: 777;
  max-height: 250px;
  overflow-y: auto;
  transform: translateY(-30px);
  opacity: 0;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.3, 1.1, 0.4, 1.1);
}
.gt_float_switcher .gt_options {
  background: #fff;
  text-align: left;
}
.gt_float_switcher .gt_options a.gt-current {
  display: none;
}
.gt_float_switcher .gt_options a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
  color: #444;
  font-size: 13px;
  transition: color 0.4s linear;
}
.gt_float_switcher img {
  vertical-align: middle;
  display: inline-block;
  width: 24px;
  height: auto;
  margin: 0 5px 0 0;
  border-radius: 3px;
}

/* GT Float Switcher Custom Styling */
#gt-wrapper-60054159 {
  position: relative !important;
}

.gt_float_switcher {
  position: static !important;
  width: auto !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Selected language styling */
.gt_float_switcher .gt-selected {
  display: flex !important;
  align-items: center !important;
  padding: 0px !important;
  cursor: pointer !important;
}

/* Options container */
.gt_float_switcher .gt_options {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 200px !important;
  background: white !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  padding: 8px 0 !important;
  z-index: 9999 !important;
}

/* Show options when switcher is active */
.gt_float_switcher.gt_show .gt_options {
  display: block !important;
  transform: none !important;
  animation: none !important;
}

/* Individual option styling */
.gt_float_switcher .gt_options a {
  display: flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  text-decoration: none !important;
  color: #333 !important;
  transition: background-color 0.2s !important;
}

.gt_float_switcher .gt_options a:hover {
  background-color: #f5f5f5 !important;
  opacity: 0.8;
}

/* Flag images */
.gt_float_switcher img {
  margin-right: 8px !important;
  width: 20px !important;
  height: auto !important;
}

.elementor-kit-6 h2 {
  color: #000000;
}
.elementor-kit-6 h2 strong {
  color: #e32317;
}

@media (min-width: 769px) and (max-width: 1139.98px) {
  h2.title_banner {
    font-size: 33px !important;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .hero-content .hero-text,
  .hero-content .hero-image {
    width: 50%;
    text-align: left;
  }

  .hero-content .hero-image {
    text-align: right;
  }

  .hero-text h1 {
    font-size: 24px;
  }
  .hero-text h2 {
    font-size: 19px;
  }

  h2.title_banner {
    font-size: 28px !important;
  }

  #trusted-brands .d-flex--center {
    display: block;
    text-align: left;
  }

  .footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-col.col-left {
    width: calc(40% - 20px);
  }
  .footer-col.col-mid {
    width: calc(60% - 20px);
  }
  .footer-col.col-right {
    width: calc(100% - 20px);
  }

  .footer-logo {
    max-width: 300px;
    margin-bottom: 20px;
  }

  
}

@media screen and (max-width: 767.98px) {
  .footer-col.col-left {
    /* width: calc(30% - 20px); */
    width: 100%;
  }
  .footer-col.col-mid {
    width: calc(100% - 0px);
  }
  .footer-col.col-right {
    width: calc(100% - 0px);
  }
  .footer-col {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 499.98px) {
  .container {
    padding: 0 20px;
  }
  h2.title_banner {
    font-size: 29px !important;
  }
  h2.title_solo_en {
    font-size: 43px !important;
  }

  #stats .container.d-flex {
    display: block;
  }
  .stats-section .container.d-flex .stat-box {
    width: 100%;
    /* margin-bottom: 20px; */
  }

  .footer-col.col-left {
    /* width: calc(30% - 20px); */
    width: 100%;
  }
  .footer-col.col-mid {
    width: calc(100% - 0px);
  }
  .footer-col.col-right {
    width: calc(100% - 0px);
  }
  .footer-col {
    margin-bottom: 20px;
  }
}

/* Form Styling  */
form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
}
.elementor-28
  .elementor-element.elementor-element-8c1563e
  .fluentform-widget-wrapper
  .ff-el-group
  .ff-btn-submit {
  background-color: #000000 !important;
}
.elementor-28
  .elementor-element.elementor-element-8c1563e
  .fluentform-widget-wrapper
  .ff-el-group
  .ff-btn-submit:hover {
  background-color: #e32317 !important;
}

.site-main {
  min-height: 70vh;
}
.elementor-button-link.elementor-size-sm:hover {
  opacity: 0.8;
  transition: background 0.3s ease;
}

/* form  */
.frm-fluent-form.fluent_form_5 .ff-el-group .ff-el-input--content,
.ff-el-input--content {
  position: relative;
}

.frm-fluent-form.fluent_form_5 .ff-el-group .ff-el-input--content .text-danger,
.fluentform .ff-el-is-error .text-danger {
  position: absolute;
  right: 10px;
  /* top: 15px; */
  bottom: 0px;
}
.frm-fluent-form .ff-t-container {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: flex-end;
}

.ff-default .ff-el-form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #79808a !important;
}

.ff-default .ff-el-form-control:focus {
  background-color: initial;
  border-color: var(--primary-color) !important;
  color: var(--text-color-light) !important;
  outline: none;
}

form#fluentform_3 .ff-el-form-control:focus {
  border-color: var(--primary-color) !important;
  color: var(--fluentform-secondary) !important;
}
.ff-message-success {
  color: var(--primary-color) !important;
}

/* tranlate express  */

.lang-selector {
  /* margin-right: 2rem; */
  /* border-right: 1px solid #333; */
  /* height: 70%; */
  cursor: pointer;
}

/* .lang-selector img {
  width: 20px;
  height: 15px;
  margin-right: 5px;
} */

.trp-language-switcher .trp-ls-shortcode-current-language {
  border: none !important;
  background-color: transparent !important;
}
.trp-language-switcher > div {
  border: none !important;
  padding: 0 !important;
}
.trp-language-switcher > div > a {
  padding-left: 10px !important;
  background-position-x: calc(100% - 0px), calc(100% - 3px) !important;
}
.trp-language-switcher {
  max-width: 130px !important;
}

@media (max-width: 767px) {
    .elementor-689 .elementor-element.elementor-element-0d2fa91 .elementor-counter-title, .elementor-689 .elementor-element.elementor-element-77bdcfb .elementor-counter-title, .elementor-689 .elementor-element.elementor-element-94a852f .elementor-counter-title {
        text-align: center;
    }
}



.ht-content ul,
.ht-content ol {
    padding-left: 40px;
    margin-bottom: 20px;
    list-style-position: outside;
}
@media screen and (max-width: 768px) {
  .ht-content ul,
.ht-content ol {
    padding-left: 20px;
}
}


.ht-content h1 {
    margin: 10px 0;
    font-size: 36px;
    font-weight: 700 !important;
}

.ht-content h2 {
    font-size: 30px;
    margin: 10px 0;
font-weight: 700 !important;  }

.ht-content h3 {
    font-size: 24px;
    margin: 10px 0;
font-weight: 700 !important;  }

.ht-content h4 {
    font-size: 20px;
    margin: 10px 0;
font-weight: 700 !important;  }

.ht-content h5 {
    font-size: 18px;
    margin: 10px 0;
}

.ht-content h6 {
    font-size: 16px;
    margin: 10px 0;
}
