/* @font-face {
  font-family: 'PP Neue Corp Wide';
  src: url('https://cdn.prod.website-files.com/671752cd4027f01b1b8f1c7f/6717e399d30a606fed425914_PPNeueCorp-WideUltrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('https://cdn.prod.website-files.com/6819ed8312518f61b84824df/6819ed8312518f61b84825ba_PPNeueMontreal-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
} */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');



:root {
  --color-light: var(--color-neutral-200);
  --color-dark: var(--color-neutral-800);
  --color-primary: #ff4c24;
  --color-neutral-100: #ffffff;
  --color-neutral-200: #797979;
  --color-neutral-300: #e3e1de;
  --color-neutral-400: #cbc8c5;
  --color-neutral-500: #818180;
  --color-neutral-600: #2c2c2c;
  --color-neutral-700: #1f1f1f;
  --color-neutral-800: #131313;
  --color-neutral-900: #000000;
  --color-white: var(--color-neutral-100);
  --color-black: var(--color-neutral-900);
  --color-error: var(--color-primary);
  --color-success: #0ba954;
  --cubic-default: cubic-bezier(0.65, 0.05, 0, 1);
  --duration-default: 0.735s;
  --animation-default: var(--duration-default) var(--cubic-default);
  --gap: 2em;
  --section-padding: calc(3.5em + (var(--gap) * 2));
  --container-padding: 2em;
  --header-height: calc(1.5em + (var(--gap) * 2));
  --footer-height: calc(2.785em + (var(--gap) * 2));
  --size-unit: 16;
  /* body font-size in design - no px */
  --size-container-ideal: 1440;
  /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));

  --FontFamily: "Montserrat", sans-serif;

}


/* ------------------------- Hide Scrollbar -------------------------------------------------- */

/* body ::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
} */

/* Chrome, Safari, Opera */
/* body {
  -ms-overflow-style: none;
} */

/* IE & Edge */
/* html {
  scrollbar-width: none;
} */

/* Firefox */

/* ------------------------- Reset -------------------------------------------------- */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding:
}

svg {
  max-width: none;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none !important;
}

a:active,
a:focus,
a:hover {
  color: #03c8a8 !important;
}

a,
button {
  cursor: pointer;
}

pre {
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}

/* Selection */
::selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-dark);
  text-shadow: none;
}


body {
  background-color: #FFF;
  color: var(--color-light);
  margin: 0;
  padding: 0;
  font-family: var(--FontFamily);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
input,
select,
textarea {
  font-family: var(--FontFamily);
}


.cloneable {
  padding: var(--container-padding);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
}


.Section {
  margin: 0 auto;
  width: 100%;
  padding: 6rem var(--PaddingX);
}




#neuro {
  mix-blend-mode: screen;
}




button {
  margin: 20px;
}




.custom-btn {
  width: 200px;
  height: 50px;
  color: #fff;
  border-radius: 5px;
  padding: 1rem 4rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
    7px 7px 20px 0px rgba(0, 0, 0, .1),
    4px 4px 5px 0px rgba(0, 0, 0, .1);
  outline: none;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  /* font-family: 'PP Neue Corp Wide'; */
}



/* 4 */
.btn-4 {
  background-color: #4dccc6;
  background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  line-height: 52px;
  padding: 0;
  border: none;
}

.btn-4:hover {
  background-color: #89d8d3;
  background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
}

.btn-4 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.btn-4:before,
.btn-4:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .9),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}

.btn-4:before {
  height: 0%;
  width: .1px;
}

.btn-4:after {
  width: 0%;
  height: .1px;
}

.btn-4:hover:before {
  height: 100%;
}

.btn-4:hover:after {
  width: 100%;
}

.btn-4 span:before,
.btn-4 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .9),
    -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255, 255, 255, .9),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  transition: all 0.3s ease;
}

.btn-4 span:before {
  width: .1px;
  height: 0%;
}

.btn-4 span:after {
  width: 0%;
  height: .1px;
}

.btn-4 span:hover:before {
  height: 100%;
}

.btn-4 span:hover:after {
  width: 100%;
}







.site-footer {
  padding: 45px var(--PaddingX);
  font-size: 15px;
  line-height: 24px;
  color: #000000;
  width: 100%;
  margin: auto;
}

footer pre {
  line-height: 1.6;
  font-family: var(--FontFamily) !important;
  color: #FFF;
  font-size: 0.72rem;
}

.site-footer .row {
  display: flex;
  flex-direction: row;
}

.site-footer .row div {
  width: 33%;
  display: inline-block;
  padding: 10px;
  vertical-align: top;
}


.site-footer .row .FooterContactsDiv {
  width: 30%;
  min-width: 400px;
}

.site-footer .row .FooterLinksDiv {
  width: 30%;
  margin-top: 65px;
}

.site-footer h6 {
  color: #FFF;
  font-size: 16px;
  margin-top: 0px;
  letter-spacing: 2px;
  margin-bottom: 0px;
  display: none;
}

.FooterLogo {
  width: auto;
  height: auto;
  max-height: 60px;
  margin-left: -10px;
}

.site-footer a {
  /* color: #005370; */
  font-weight: bold;
}

.site-footer a:hover {
  /* color: #3366cc; */
  text-decoration: none;
}

.footer-links a {
  color: #FFF;
  cursor: pointer;
  padding: 3px;
  display: block;
  font-weight: 400;
  display: inline-block;
  width: auto;
}

.footer-links a.Active {
  font-weight: 800;
}



footer a {
  transition-duration: 400ms;

}

footer a:hover {
  letter-spacing: 1px;
  color: #FFF !important;
}


.site-footer .row .CopyRightDiv {
  width: 100%;
  /* min-width: 900px; */
  text-align: center;
}

.site-footer .row .FooterSocialDiv {
  /* float: right; */
  width: 40%;
  display: none;
}

.FooterSocialDiv ul {
  margin-top: 0px;
}





.site-footer hr {
  border: none;
  border-top: 1px solid #FFF;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0
}


.footer-links {
  padding-left: 0;
  list-style: none;
  margin: 0px;
}

.footer-links li {
  display: block;
  line-height: 1;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right;
}



.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.copyright-text {
  margin: 0;
  text-transform: uppercase;
  direction: ltr;
  font-size: 10px;
  line-height: 1.3;
  color: #FFF;
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  transition-duration: 200ms;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  transform: scale(1.1)
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}


#FooterBG {
  background-image: url('../imgs/Hero/BG.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  align-content: flex-end;
  margin-top: -140px;
}

#ContactUsSection {
  color: #FFF;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  padding-top: 50px;
}

.ContactUsDiv {
  background-color: #dddddd36;
  display: inline-block;
  width: calc(100% - 0px);
  margin-left: 0px;
  border-radius: 10px;
  padding: 72px 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* max-width: 1600px; */
}

#ContactUsSection h2 {
  /* font-family: 'PP Neue Corp Wide'; */
  text-transform: uppercase;
}
















.parallax__fade {
  pointer-events: none;
  --color-dark-rgb: 255, 255, 255;
  background: linear-gradient(to top, rgba(var(--color-dark-rgb), 1) 0%, rgba(var(--color-dark-rgb), 0.738) 19%, rgba(var(--color-dark-rgb), 0.541) 34%, rgba(var(--color-dark-rgb), 0.382) 47%, rgba(var(--color-dark-rgb), 0.278) 56.5%, rgba(var(--color-dark-rgb), 0.194) 65%, rgba(var(--color-dark-rgb), 0.126) 73%, rgba(var(--color-dark-rgb), 0.075) 80.2%, rgba(var(--color-dark-rgb), 0.042) 86.1%, rgba(var(--color-dark-rgb), 0.021) 91%, rgba(var(--color-dark-rgb), 0.008) 95.2%, rgba(var(--color-dark-rgb), 0.002) 98.2%, transparent 100%);
  z-index: 30;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.osmo-icon-svg {
  width: 8em;
  position: relative;
}

.parallax__header {
  z-index: 2;
  padding: var(--section-padding) var(--container-padding);
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.parallax {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.parallax__content {
  padding: 0px;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cover {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax__visuals {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax__placeholder {
  z-index: 0;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax__layers {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.cover-copy {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



/* .parallax__black-line-overflow {
  z-index: 20;
  background-color: #FFF;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
} */



.parallax__layer-title {
  position: absolute;
  bottom: 6rem;
  left: 0;
  padding: calc(var(--PaddingX) / 2);
  z-index: 9;
}

.parallax__title {
  pointer-events: auto;
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: .1em;
  margin-right: .075em;
  /* font-family: PP Neue Corp Wide, sans-serif; */
  font-weight: 800;
  line-height: 1;
  position: relative;
  font-size: 3vw;
  /* text-transform: uppercase; */
  color: #FFF;
}

.parallax__title.Second {
  font-size: 7.2vw;
}

.parallax__title.Third {
  font-size: 1rem;
  margin-top: 12px;
  max-width: 40vw;
  font-weight: 300;
}

.parallax__layer-title h5 {
  font-size: 10px;
  color: #FFF;
  font-weight: 100;
  margin-left: -3px;
  margin-bottom: 12px;
  /* position: absolute;
      bottom: 8rem; */
}

.HeroTextLogo {
  max-width: 270px;
}


.HeroCTADiv {
  margin-top: 12px;
  display: inline-block;
  width: auto;
}

.HeroCTA {
  border-radius: 5px;
  padding: 8px 21px;
  background-color: azure;
  color: cadetblue;
  display: inline-block;
  width: auto;
  cursor: pointer;
  transition-duration: 400ms;
}

.HeroWhatsapp {
  display: inline-block;
  font-size: 0px;
  width: 40px;
  height: 40px;
  background-image: url(../imgs/Icons/whatsapp.webp);
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 9px;
  transition-duration: 400ms;
}

.HeroCTA:hover,
.HeroWhatsapp:hover {
  transform: scale(1.1);
}


/* .parallax__radial-gradient {
  z-index: 10;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, transparent, var(--color-black));
  opacity: .5;
  pointer-events: none;
  mix-blend-mode: multiply;
  position: fixed;
  inset: 0;
} */



.parallax__layer-img {
  pointer-events: none;
  object-fit: cover;
  width: 100vw;
  max-width: none;
  height: 100%;
  position: absolute;
  bottom: 0%;
  right: 0;
  left: auto;
  object-position: bottom;
}

.parallax__layer-img.Cover {
  object-fit: cover;
  width: 100%;

}

.parallax__layer-img.is-third {
  top: -20%;
}



.ServicesPara {
  max-width: 600px;
  display: block;
  margin: auto;
  margin-bottom: 30px;
}




/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5em;
    --size-container-ideal: 834;
    /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 1em;
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}




@keyframes spin {
  0% {
    --rotate: 0deg;
  }

  100% {
    --rotate: 360deg;
  }
}