@charset "UTF-8";
/* ------- VARIABLES -------- */
@font-face {
  font-family: "TT New Pixel Square";
  src: url(../fonts/thatthatnewpixel-square.otf);
}
@font-face {
  font-family: "TT New Pixel Italic Square";
  src: url(../fonts/thatthatnewpixel-italicsquare.otf);
}
@font-face {
  font-family: "Libre Caslon Condensed";
  src: url(../fonts/LibreCaslonCondensed[wght].ttf);
}
/* ------- MAIN INFO -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #173031;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #173031;
  /* overflow-x: hidden; */
}

/* ------- TITLES, TEXTS -------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Caslon Condensed";
  font-weight: 400;
}

.font-pixel {
  font-family: "TT New Pixel Italic Square";
}

.font-work-sans {
  font-family: "Work Sans", sans-serif;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-200 {
  font-weight: 200;
}

.text-1 {
  font-size: 0.625rem;
}

.text-2 {
  font-size: 0.75rem;
}

.text-3 {
  font-size: 0.875rem;
}

.text-4 {
  font-size: 1rem;
}

.text-5 {
  font-size: 1.125rem;
}

.text-6 {
  font-size: 1.25rem;
}

.text-7 {
  font-size: 1.375rem;
}

.text-8 {
  font-size: 1.5rem;
}

.text-9 {
  font-size: 2rem;
}

.text-10 {
  font-size: 3rem;
}

.text-11 {
  font-size: 4rem;
}

.text-12 {
  font-size: 4.8125rem;
}

.text-black {
  color: black;
}

/* ------- BACKGROUNDS -------- */
.bg-neat {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: black;
}

.bg-green {
  background-color: #23E09C;
}

.bg-green-dark {
  background-color: rgba(23, 48, 49, 1);
}

/* -----  BORDERS, SHADOWS AND OTHER  ----- */
.border-green-dark {
  border-color: #173031 !important;
}

.border-bottom-last:last-child {
  border-bottom: 0.75px solid #173031;
}

/* ------- NAVBAR -------- */

.navbar-expand-lg .navbar-nav {
	align-items: center;
}

.navbar-brand img {
  width: 140px;
}

.nav-item {
  margin-left: 24px;
  margin-right: 24px;
}

.nav-link {
  font-size: 0.875rem;
  color: white !important;
  text-transform: uppercase;
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0%;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.modal-link { 
  font-size: 1rem;
  color: #173031;
  text-transform: uppercase;
}

.dropdown-lang .dropdown-menu {
	min-width: 20px;
	border: none;
	background-color: transparent;
}

.dropdown-lang .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  margin-left: 0rem;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='9' viewBox='0 0 16 9' fill='none'><path d='M15.1421 1.07107L8.18113 8.25222L0.999977 1.07107' stroke='white'/></svg>");
}

dropdown-lang.show .dropdown-toggle::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}


/* ------- HEADER -------- */
/* ------- FOOTER -------- */
.footer-brand img {
  width: 150px;
}

/* ------- BUTTONS -------- */
.btn {
  min-width: 150px;
  border-radius: 10px;
  padding: 14px 24px;
  text-transform: uppercase;
}

.btn-green {
  background-color: #23E09C;
  color: #173031;
  transition: 0.3s ease-in;
}
.btn-green:hover {
  background-color: white;
  transition: 0.3s ease-in;
  color: #173031;
}

.btn-outline-green {
  border: 1px solid #23E09C;
  color: #23E09C;
  background-color: transparent;
  transition: 0.3s ease-in;
}
.btn-outline-green:hover {
  border: 1px solid white;
  color: #173031;
  background-color: white;
  transition: 0.3s ease-in;
}

.button-style-none {
  border: none !important;
  background: transparent !important;
}

button:active {
  outline: none !important;
  border: none !important;
}

button:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* ------- FORMS -------- */
.form-control {
  background-color: #173031;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.73);
  border-radius: 0;
  padding: 10px 0px;
  color: white !important;
}

.form-control:focus {
  background-color: transparent;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #23E09C;
}

.form-check {
  padding-left: 1em;
}

.form-check .form-check-input {
  margin-left: -2em;
  border-radius: 0px;
  padding: unset;
}

.form-check-input:active {
  outline: none !important;
  border: none !important;
}

.form-check-input:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.form-check-input:checked {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.4783L5.8148 9L11 1' stroke='%23173031' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-color: white;
  border-color: white;
}

.form-check-input:checked[type=radio],
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.4783L5.8148 9L11 1' stroke='%23173031' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.4783L5.8148 9L11 1' stroke='%23173031' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #173031 inset !important; /* Use your desired background */
    box-shadow: 0 0 0 1000px #173031 inset !important;
    -webkit-text-fill-color: #fff !important; /* Text color, adjust as needed */
    caret-color: #23E09C !important; /* Optional: custom caret color */
    transition: background-color 5000s ease-in-out 0s !important;
}

/* For Firefox and Edge, set background and color for autofill */
input:autofill {
    background: #173031 !important;
    color: #fff !important;
}

/* ------- ACCORDIONS -------- */
.accordion-button:not(.collapsed) {
  color: initial;
  background-color: initial;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23212529%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3E%3C/svg%3E");
}

.accordion * {
  border-color: rgba(23, 48, 49, 0.6);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(23, 48, 49, 0.6) !important;
}

/* .accordion-button::after {
  margin-left: 20px;
} */

/* ------- POSITIONING -------- */
.container {
    width: 94%;
    max-width: unset;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

.my-sec {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mt-sec {
  margin-top: 70px;
}

.mb-sec {
  margin-bottom: 70px;
}

.py-sec {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-sec {
  padding-top: 70px;
}

.pb-sec {
  padding-bottom: 70px;
}

.w-30 {
  width: 30%;
}

.w-80 {
    width: 80%;
}

.h-16px {
  height: 16px;
}

.z-n1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.op-06 {
  opacity: 0.6;
}

.op-04 {
	opacity: 0.4;
	transition: opacity 0.3s ease;
}

.op-hover-1:hover {
  opacity: 1;
}

.scale-lg {
  transform: scale(1.05) translateX(-10%);
}

.rotate-90 {
  transform: rotate(90deg);
}

[fm-fade-in] {
    opacity: 0;
}

/* ------- OTHER -------- */
.link {
  color: inherit;
  text-decoration: underline;
}

.list-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item {
  position: relative;
  padding-left: 1.2em;
  border-top: 0.75px solid #173031;
  padding-top: 10px;
  padding-bottom: 10px;
}

.list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #173031; /* or whatever bullet color you want */
}

.number {
  width: 38px;
  height: 38px;
  border: 1px solid white;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "TT New Pixel Square";
  font-size: 26px;
}

.icon-excel {
  width: 50px;
}

/* ------- ACTIONS -------- */
.pointer {
  cursor: pointer;
}

a,
a:hover {
  text-decoration: none;
}

/* ------- QUERIES -------- */
@media (max-width: 991px) {
  .bg-green-mob {
    background-color: #23E09C;
  }
}
@media (min-width: 768px) {
  .w-md-50 {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .w-100-mob {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 88%;
    max-width: unset;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-60 {
    width: 60%;
  }
  .w-lg-75 {
    width: 75%;
  }
  .w-lg-80 {
    width: 80%;
  }
  .my-sec {
    margin-top: 120px;
    margin-bottom: 120px;
  }
  .mt-sec {
    margin-top: 120px;
  }
  .mb-sec {
    margin-bottom: 120px;
  }
  .py-sec {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .pt-sec {
    padding-top: 120px;
  }
  .pb-sec {
    padding-bottom: 120px;
  }
  html {
    font-size: 15px;
  }
  body {
    font-size: 15px;
  }
  .text-lg-7 {
    font-size: 1.375rem;
  }
  .text-lg-10 {
    font-size: 2.5rem;
  }
  .text-lg-11 {
    font-size: 4rem;
  }
  .text-lg-12 {
    font-size: 4.8125rem;
  }
  .navbar-brand img {
    width: 180px;
  }
  .scale-lg {
    transform: scale(1.25) translateX(-10%) translateY(5%);
  }
  .icon-excel {
    width: 60px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 83%;
  }
  html {
    font-size: 16px;
  }
  body {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */



/* #calendlyModal, */
#calendlyModal .modal-content {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.calendly-modal-close {
    width: 48px !important;
    height: 48px !important;
    font-size: 24px !important;
    z-index: 1050;
}

.wpcf7-response-output {
	display: none!important;
}