:root {
  --main-font-size: 18px;
}

.the_custom_logo img {
  width: auto;
  height: 300px;
}

img.custom-logo {
  width: 300px;
}

body {
  font-family: "DM Sans", "Geist", "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: var(--main-font-size);
}

::-moz-selection {
  background-color: #ffcb05;
  color: #1c1b1b;
}

::selection {
  background-color: #ffcb05;
  color: #1c1b1b;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}

.nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  overflow: hidden;
  font-size: 1.5rem;
  text-transform: capitalize;
  z-index: 1;
  color: #707070;
  transition: color 0.4s ease;
}
.nav a:hover {
  color: black;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #012d8c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 0;
}
.nav a:hover::after {
  transform: scaleX(1);
}

.target-text {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  will-change: transform;
  transition: transform 0.4s ease;
  backface-visibility: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.target-text:first-of-type {
  clip-path: polygon(0 0, 100% 0, 100% 51%, 0 51%);
  transform-origin: center bottom;
}

.target-text:nth-of-type(2) {
  clip-path: polygon(0 49%, 100% 49%, 100% 100%, 0 100%);
  transform-origin: center top;
  top: 50%;
}

.horizontal-wrapper {
  will-change: transform;
}

/* Add to your global CSS or Tailwind config */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

input,
textarea,
select {
  background-color: #f6f6f6;
  color: #012d8c;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23012d8c' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
  cursor: pointer;
}

.ff-el-input--label,
label,
#budgetValue {
  font-weight: 300;
  padding: 5px;
  font-size: 12px;
  color: #1207ea;
}

#budgetSliderContainer input {
  padding: 5px;
}

.ff-btn {
  display: inline-block;
  background-color: #012d8c;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ff-btn:hover {
  background-color: #001f5a;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.php-error #adminmenuback,
.php-error #adminmenuwrap {
  margin-top: 0em;
}

.ff-el-input--label {
  display: none;
}

.wp-element-button, .wp-block-button__link {
  background-color: #001dff;
  border-width: 0;
  color: #fff;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  text-decoration: none;
  text-transform: inherit;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 8px;
  border-radius: 20px;
  font-size: 12px;
  transition: 0.3s ease-in-out;
}
.wp-element-button:hover, .wp-block-button__link:hover {
  background-color: #000000;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}/*# sourceMappingURL=global.css.map */