html {
  scroll-behavior: smooth;
}

body {
  --color-background: #FDF8F5;
  --color-primary: #6FCF97;
  --color-primary-2: #27AE60;
  --color-primary-3: #CAF9D4;
  --color-secondary: #4F4F4F;
  --color-secondary-2: #333333;
  --color-secondary-3: #828282;
  --color-white: #FFFFFF;
  --color-blue: #B2ECFF;
  --color-darkOrange: #CA7021;
  --color-darkGreen:#219653;
  --color-darkYellow: #DAAE2A;
  --color-darkPurple: #A139C8;
  --color-darkBlue: #39AED4;
  --color-darkRed: #E15C5C;
  --color-lightOrange: #FFDAB9;
  --color-lightGreen: #CAF9D4;
  --color-lightYellow: #FFEEBB;
  --color-lightPurple: #F5CEFF;
  --color-lightBlue: #BFEFFF;
  --color-lightRed: #FFBFBF;

  background: var(--color-background);
  font-family: 'Aileron', Arial, Helvetica, sans-serif;
  padding-top: 7rem;
}

h1, h2, h3, h4 {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
}

.container {
  max-width: 114rem;
}

.contactBtn {
  cursor: pointer;
}

.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.btn {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  border-radius: 3.8rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: var(--color-white);
  text-align: center;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.btn:hover {
  color: var(--color-white);
}

.btn.primary {
  background: var(--color-primary-2);
  box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.25);
}

.btn.primary:hover {
  background: white;
  color: var(--color-primary-2);
}

.btn.secondary {
  border: 2px solid white;
}

.btn.secondary:hover {
  background: white;
  color: var(--color-primary-2);
}

.btn.tertiary {
  color: var(--color-primary-2);
  border: 2px solid var(--color-primary-2);
}

.btn.tertiary:hover {
  background: white;
  border-color: white;
  box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.25);
}

.nav-header__title {
  display: none;
}

img.nav-header__logo-text {
  margin-left: 1.6rem;
}
img.nav-header__logo-img {
  width: 4.8rem;
}

/**
 * Navbar
 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: var(--color-background);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s;
  box-shadow: 0rem 0rem 2rem rgba(0, 0, 0, 0.25);
}

.navbar.scrollUp {
  transform: translateY(-7rem)
}

.navbar .nav-header {
  display: flex;
  align-items: center;
  margin-left: 5%;
  min-height: 7rem;
}
.navbar .nav-header a {
  display: flex;
  align-items: center;
}

.navbar .nav-header .nav-header__logo {
  margin-right: 1rem;
}

.navbar .nav-header h1 {
  font-size: 2.4rem;
  color: var(--color-primary-2);
  margin: 0;
}

.navbar ul.nav-content {
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar ul.nav-content li {
  min-height: 7rem;
  font-size: 1.6rem;
  align-items: center;
  margin: 0;
  cursor: pointer;
  display: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.navbar ul.nav-content li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 100%;
  font-size: 1.6rem;
  text-decoration: none;
  color: #222222;
}

.navbar ul.nav-content li:not(:last-child) {
  margin-right: 2rem;
}

.navbar ul.nav-content li.active a {
  font-weight: bold;
}

.navbar ul.nav-content li:hover a,
.navbar ul.nav-content li.active a {
  color: var(--color-primary-2);
}

.navbar:not(.responsive) ul.nav-content li.pinned {
  background: var(--color-primary);
  color: #CAF9D4;
  padding: 0 5rem;
  font-weight: bold;
}

.navbar:not(.responsive) ul.nav-content li.pinned img {
  margin-right: 0.8rem;
}

.navbar:not(.responsive) ul.nav-content li.pinned:hover {
  cursor: not-allowed;
}

.navbar .menu {
  min-height: 7rem;
  align-items: center;
  padding: 0 2rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  font-size: 2.3rem;
  color: var(--color-primary-2);
}

.navbar.responsive ul.nav-content {
  position: absolute;
  top: 7rem;
  width: 100%;
  z-index: 10;
}

.navbar.responsive ul.nav-content li {
  display: flex;
  background: var(--color-background);
  width: 100%;
  padding: 0 3rem;
  margin-right: 0;
}

.navbar.responsive ul.nav-content li a {
  width: 100%;
}

.navbar.responsive ul.nav-content li:hover {
  background: var(--color-primary);
  color: white;
}

@media (min-width: 992px) {
  .navbar ul.nav-content li {
    display: inline-flex;
  }

  .navbar .menu {
    display: none;
  }
}

@media(max-width: 550px) {
  .nav-header__logo-img {
    width: 3.8rem!important;
  }
  .nav-header__logo-text {
    width: 18rem;
  }
}

/**
 * Footer
 */
.footer {
  margin-top: 9.5rem;
  padding-top: 6.5rem;
}

.footer .logo {
  width: 18.6rem;
  height: 18.6rem;
  margin-top: -3rem;
}

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

.footer ul li {
  margin: 0;
}

.footer ul li a {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-primary-2);
  text-decoration: none;
}

.footer ul li + li {
  margin-top: 1.6rem;
}

.footer .download {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer .download img + img {
  margin-top: 1.8rem;
}

.footer-bottom {
  position: relative;
  margin-top: 3.15rem;
  padding: 7rem 0rem 3.5rem;
  background: var(--color-primary-2);
}

.footer-bottom .footer-bottom-shape {
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
}

.footer-bottom .footer-bottom-shape img {
  width: 100%;
}

@media (max-width: 550px) {
  .footer-bottom .footer-bottom-shape img {
    height: 3rem;
  }
}

.footer-bottom .row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-bottom .links li, .footer-bottom .links li a {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-white);
}

.footer-bottom .links, .footer-bottom .socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.footer-bottom .socials {
  margin-left: 4.0rem;
}

.footer-bottom .links li, .footer-bottom .socials li {
  margin: 0;
}

.footer-bottom .socials li + li {
  margin-left: 1.4rem;
}

.footer-bottom .links li + li {
  margin-left: 0.4rem;
}

@media (max-width: 992px) {
  .footer > .container > .row {
    display: flex;
    flex-direction: column;
  }

  /* .footer .logo {
    width: 5.7rem;
    height: 5.7rem;
  } */
  .footer .links-1 {
    margin-top: 4.4rem;
  }

  .footer .links-2 {
    position: relative;
    margin-top: 3.3rem;
  }

  .footer .links-2::before {
    content: '';
    position: absolute;
    top: -1.6rem;
    width: 5.6rem;
    height: 0.1rem;
    background: var(--color-primary-2);
  }

  .footer > .container > .row .three.columns,
  .footer > .container > .row .four.columns,
  .footer > .container > .row .one.columns {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }

  .footer .download {
    margin-top: 5.6rem;
    flex-direction: row;
    align-items: center;
  }


  .footer .download img {
    width: 12rem;
  }

  .footer .download img:nth-of-type(2) {
    margin: 0 0 0 1.1rem;
  }

  .footer > .container > .row ul li {
    text-align: center;
  }

  .footer-bottom {
    padding: 4.7rem 0 3.5rem 0;
  }

  .footer-bottom .row {
    flex-direction: column-reverse;
  }

  .footer-bottom .socials {
    margin: 0;
  }

  .footer-bottom .links {
    margin-top: 1.6rem;
  }
}

/*
* Form
*/

form .form-group {
  position: relative;
  height: 4.4rem;
}

form .form-group + .form-group {
  margin-top: 1.6rem;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  margin: 0;
  padding: 1.7rem 0 0;
  height: 100%;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 130.3%;
  color: var(--color-secondary);
}

form input[type="text"] ~ span::before,
form input[type="email"] ~ span::before,
form input[type="tel"] ~ span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: grey;
  width: 100%;
  height: 0.2rem;
  border-radius: 1rem;
}

form label {
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 130.3%;
  color: var(--color-secondary);
  transition: 0.2s all ease-in-out;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus {
  border: none;
}

form input[type="text"]:focus + label,
form input[type="text"]:not(:placeholder-shown) + label,
form input[type="email"]:focus + label,
form input[type="email"]:not(:placeholder-shown) + label,
form input[type="tel"]:focus + label,
form input[type="tel"]:not(:placeholder-shown) + label {
  bottom: 2.6rem;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 130.3%;
  color: var(--color-secondary-3);
}

form input[type="text"]:focus ~ span::before,
form input[type="text"]:not(:placeholder-shown) ~ span::before,
form input[type="email"]:focus ~ span::before,
form input[type="email"]:not(:placeholder-shown) ~ span::before,
form input[type="tel"]:focus ~ span::before,
form input[type="tel"]:not(:placeholder-shown) ~ span::before {
  background: var(--color-primary-2);
}

form button[type="submit"] {
  margin-top: 4rem;
  height: auto;
}

@media (max-width: 768px) {
  form button[type="submit"] {
    width: 100%;
  }
}

/*
* Glob
*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/*
* Blur images
*/

.blur-image,
.blur-background {
  filter: blur(10px);
  transition: 1s filter ease-in-out;
}

.no-blur-image,
.no-blur-background {
  transition: 1s filter ease-in-out;
}

/*
* Fade in selection
*/

.fade-in-selection {
  transform: translateY(10vh);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 1.2s ease-out;
  will-change: opacity, visibility;
}

.fade-in-selection.visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.fade-in-selection.d-1 {
  transition-delay: 0.2s;
}
.fade-in-selection.d-2 {
  transition-delay: 0.4s;
}
.fade-in-selection.d-3 {
  transition-delay: 0.6s;
}
.fade-in-selection.d-4 {
  transition-delay: 0.8s;
}
.fade-in-selection.d-5 {
  transition-delay: 1s;
}
.fade-in-selection.d-6 {
  transition-delay: 1.2s;
}
