:root {
  --main-color: #606f53;
  --main-color-darker: #49583c;
  --secondary-color: #f07d1f;
  --secondary-color-lighter: #ff8301;
  --font-color-white: #fff;
  --font-color-darker: #444444;
  --font-color: #797979;
  --header-size: 100px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent scroll on narrow devices */
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* HEADER */
header {
  height: var(--header-size);
}

header .navbar {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: var(--header-size);

  transition: all 0.3s ease;
}

header .navbar ul {
  height: 50px;
}

header ul li a {
  transition: all 0.3s ease;
}

header ul li a:hover {
  /* display: inline-block; */
  font-weight: bold;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.nav-link:focus,
.nav-link:hover {
  color: var(--main-color);
}
.dropdown-toggle img {
  filter: invert(40%) sepia(22%) saturate(401%) hue-rotate(49deg) brightness(96%) contrast(93%);
}
.dropdown-toggle .show img {
  transform: rotate(180deg);
}

.dropdown-menu.show {
  position: fixed !important;
  z-index: 3;

  max-width: 1140px;
  width: 75vw;

  border: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;

  margin: auto;
  left: 0;
  right: 0;
  height: 65px;
  top: var(--header-size);

  display: flex;
}
.dropdown-menu.show::before {
  width: 95%;
  content: "";
  position: absolute;
  z-index: -1;
  left: 2.5%;
  right: 2.5%;
  top: 0;
  height: 0;
  border: 1px solid var(--secondary-color);
  /* border-radius: 10px; */
}
.dropdown-menu li {
  font-family: "Inter", sans-serif;
  flex: 1;
  font-size: 0.8rem;
  margin: 15px;
  display: inline;
  width: auto;
}
.dropdown-item {
  width: auto;
  display: contents;
  padding: 0 15px;
  /* margin-left: 15px; */
}
.dropdown-item:hover {
  color: var(--secondary-color);
  background-color: transparent;
}

.dropdown-toggle::after {
  border: 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--main-color);
  font-weight: bold;
}

.contact-menu {
  display: none;
}

header ul li a:not("dropdown-item"):hover::after,
header .nav-link:hover::after {
  content: "";
  height: 4px;
  background: var(--secondary-color);
  border-radius: 10px;
  display: block;
  color: var(--main-color);
}

.btn-green {
  font-family: "Inter", sans-serif;;
  border-radius: 10px;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  transition: all 0.3s ease;
  flex: auto;
}

.btn-green:hover {
  background-color: var(--secondary-color);
  font-weight: bold;
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.underline {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-weight: 900;
  color: var(--secondary-color);
}
/* .underline::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 0;
  border: 4px solid var(--secondary-color);
  border-radius: 10px;
} */

/* Menu Mobile */
.navbar-toggler {
  &:focus {
    color: white;
    background: transparent;
    border-color: transparent;
  }

  &:active {
    top: 0.08em;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-collapse {
    max-height: 100vh;
    position: fixed;
    height: 100vh;
    top: var(--header-size); /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: scroll;
    visibility: hidden;
    background-color: #fff;
    z-index: 9;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }

  .navbar-nav .dropdown-menu {
    position: static;
  }

  .dropdown-menu {
    display: none;
    position: initial;
    z-index: initial;
    width: initial;
    border: 0;
    border-radius: 0;
    margin: initial;
    left: initial;
    right: initial;
    height: initial;
    top: initial;
  }
  .dropdown-menu.show {
    position: static !important;
    display: list-item;
    position: initial;
    z-index: initial;
    width: initial;
    border: 0;
    border-radius: 0;
    margin: initial;
    left: initial;
    right: initial;
    height: initial;
    top: initial;
    padding: 0;
  }

  .dropdown-menu.show::before {
    all: unset;
  }
  .dropdown-item:hover {
    color: var(--main-color);
  }

  .dropdown-menu.show li {
    display: block;
    margin: 0;
  }

  header .navbar ul {
    height: auto;
  }
  header .navbar ul li {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-align: start;
    border-bottom: 1px solid var(--secondary-color);
    /* padding: 24px 0; */
    padding: 12px 0 12px;
    margin: 0;
  }
  .dropdown-menu.show li {
    border: 0;
    font-size: 0.8rem;
  }
  header .navbar ul li:last-of-type {
    border: 0;
  }

  .contact-menu {
    /* visibility: visible; */
    text-align: left;
    margin: 30px 0 150px;
    display: block;
    border-radius: 16px;
    display: block;
    background-color: #f9f9f9;
    padding: 16px;
  }
  .contact-menu h3 {
    padding-top: 16px;
    padding-bottom: 10px;
    border-bottom: #e3e3e3;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
  }
  .contact-menu ul {
    list-style: none;
    padding: 0;
  }
  .contact-menu ul li {
    border-bottom: 0 !important;
    list-style: none;
    list-style-position: unset;
    display: block;
    margin: 0;
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .contact-menu a {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-decoration: none;
    color: var(--font-color-darker);
  }

  .contact-menu i {
    color: var(--secondary-color-lighter);
    font-size: 20px;
    margin-right: 8px;
  }

  .contact-menu a:hover {
    color: var(--secondary-color-lighter);
  }
  .dropdown-toggle img{
    filter: none;
    position: relative;
    float: right;
    margin-top: 10px;
  }

  .btn-green {
    display: none;
  }
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6c757d;
}

/* SECTIONS */
.mouse-scroll {
  width: 75px;
}

/* Allocation */
.video-container {
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.video-container video {
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  height: 60vw;
}
#mobile-indicator {
  display: none;
}

.carousel-item {
  min-height: 500px;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--secondary-color);
  border-radius: 10px !important;
  border: 1px;
  width: 16px;
  height: 4px;
}
.carousel-caption {
  top: 0;
  bottom: auto;
  margin-top: 50px;
}
.carousel-caption h1 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  letter-spacing: 3px;
}
#slide-4 .carousel-caption h1 {
  font-size: 2rem;
}
#myCarousel h5 {
  font-size: 1.5rem;
}
#slide-5 {
  height: 60vw;
}

.carousel-control-next, .carousel-control-prev {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 1;
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: var(--secondary-color-lighter);
}

.carousel-item {
  background-size: cover;
  background-position: right;
  min-height: 50vw;
  width: 100%;
}

.carousel-item h5 {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
}

#slide-1 {
  background-image: url("../../assets/img/bg-1.png");
}
#slide-2 {
  background-image: url("../../assets/img/bg-5.png");
}
#slide-3 {
  background-image: url("../../assets/img/bg-6.png");
}
#slide-4 {
  background-image: url("../../assets/img/bg-7.png");
}

.card-line {
  justify-content: center;
}

.services .card {
  overflow: hidden;
  border-radius: 20px;
  border: 0;
  background-color: #181F19;
}

.services .card img {
  margin: -1px;
  transform: scale(1.1);
  max-width: 100%;
  object-fit: contain;
  height: auto;
  transition: 0.5s;
}

/* .services .card img::after {
  position: absolute;
  border-radius: 20px;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgb(96, 111, 83, 0) 0%,
    rgb(55, 63, 48, 0.8) 100%
  );
} */

.services .card .intro {
  height: 70px;
  bottom: -18px;
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  position: absolute;
  background: transparent;
  color: var(--font-color-white);
  transition: 0.5s;
}

.services .card .intro h3 {
  height: 70px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  white-space: nowrap;
}
.services .card .big-title h3 {
  margin-bottom: 20px;
}
.services .card:hover .intro h3 {
  height: 25px;
}

.services .card h3 span {
  color: var(--secondary-color);
}
.services .card a {
  color: var(--font-color-white);
  position: relative;
  display: block;
  margin-right: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
.services .card a img {
  margin-left: 8px;
  background-color: transparent;
}

.services .card:hover .intro-70 {
  height: 70%!important;
}

.services .card p {
  text-align: center;
  visibility: hidden;
  opacity: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  padding: 0px 15px;
  margin-bottom: 0px;
  text-align: left;
}
.services .card ul {
  margin-top: 0px;
}

.services .card ul li {
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  list-style-image: url("../../assets/img/bullet.svg");
}

.services .card:hover {
  cursor: pointer;
}
.services .card:hover h3 {
  color: var(--main-color);
}
.services .card:hover .intro::after {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 6px;
  top: -4px;
  left: 0;
  background: #c66513;
  border-radius: 10px;
}
.services .card:hover .intro {
  height: 230px;
  bottom: 0px;
  background: rgba(255, 255, 255, 1);
  color: var(--font-color-darker);
}

.services .card:hover p {
  opacity: 1;
  visibility: visible;
}
.services .card:hover img {
  transform: translateY(-90px);
}




.tasks-wrapper h5{
  margin-bottom: 30px;
}

.tasks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  margin: 0 auto;
}
#slide-3 .tasks {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

#slide-4 .tasks {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.task {
  text-align: center;

  max-width: 80px;
  max-height: 160px;
  width: 5vw;
  height: 10vw;

  margin: auto;
}


.next-task {
  width: 100%;
  height: 100%;
}

.arrow {
  width: 3vw;
  height: 2px;
  background-color: #fff;
  position: relative;
  margin: 2.5vw auto;
}

.arrow::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  right: 0;
  top: -4px;
}

.next-task:last-child {
  display: none;
  visibility: hidden;
}

.icon-container {
  max-width: 80px;
  max-height: 80px;
  width: 5vw;
  height: 5vw;
  background-color: #F07D1F;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px auto;
}

.icon-container img {
  aspect-ratio: 1/1;
  object-fit: cover ;
  max-width: 60%;
  max-height: 60%;
}

.icon-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: #FFF;
  text-align: center;
  /* margin-left: -20px; */
  /* width: 100px; */
}

.task:hover .icon-container {
  outline: 1px solid #858C81;
  outline-offset: 2px;
}

.task:hover .icon-container img {
  transform: scale(1.1);
}




/* ABOUT US */
#about-us {
  min-height: 600px;
  padding-top: 100px;
  padding-bottom: 40px;
  height: auto;
  width: 100%;
  background: url("../../assets/img/bg-2.png"), url("../../assets/img/bg2-2.jpeg");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 150%;
  background-position: center, left;
  transition: background-size 0.5s ease-in-out;
}
#about-us:hover {
  background-size: cover, 155%;
  background-position: center, left;
}
#about-us h1 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}
#about-us p {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  color: var(--font-color);
  padding: 0 10px;
}

/* PHYLOSOPHY */
#philosophy {
  color: var(--font-color-white);
  /* background-image: url("../../assets/img/bg-3.png"); */
  background-image: url("../../assets/img/bg-animated.gif");
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* #philosophy video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}
#philosophy .content-with-video {
  z-index: 1;
  position: relative;
} */

#philosophy h1 {
  text-align: center;
  padding-top: 80px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 75px;
}
#philosophy h1 span {
  /* font-weight: 700; */
}


#methodology {
  align-items: center;
  margin: 0 auto;
  display: flex;
  padding-bottom: 100px;
  justify-content: center;
}

#methodology .owl-stage {
  margin: 0 auto;
}

#methodology .card {
  /* max-width: 500px; */
  width: 350px;
  margin-top: 60px;
  background-color: #FFF;
  border-radius: 24px;
  border: 0;
  min-width: 300px;
  filter:drop-shadow(0px 4px 10px rgba(0,0,0,0.25));
  transition: 0.2s;
  transform: scale(1);
  background-color: #415034;
}
#methodology .card .header {
  padding-top: 60px;
  text-align: center;
  justify-content: center;
  background-color: var(--font-color-white);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
}


#methodology .card .header img {
  position: absolute;
  display: block;
  width: 90px;
  margin: 0 auto;
  background-color: #415034;
  /* left: 50%; */
  /* right: 50%; */
  /* margin-left: -30px; */
  top: -40px;
  border-radius: 16px;
}


#methodology .card .card-body {
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}


#methodology .card .header h3{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 25px;
}

#methodology .card .card-body {
  padding: 0;
  width: 100%;
  height: 350px;
  transition: 0.2s;
}

#methodology .card .card-body .card-text {
  text-align: center;
  display: none;
  margin-bottom: 15px;
  transition: 0.5s;
}

#methodology .card .card-body .card-text p{
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  padding: 0 12px;
}

#methodology .card:hover {
  transform: scale(1.01);
}

#methodology .card:hover .card-body .card-text{
  display: block;
  background-color: #FFF;
  opacity: 1;
  visibility: visible;
  animation: fadein .3s;
  -moz-animation: fadein .3s; /* Firefox */
  -webkit-animation: fadein .3s; /* Safari and Chrome */
  -o-animation: fadein .3s; /* Opera */
}

#methodology .card:hover .card-body .card-text::after {
  content: "";
  display: block;
  position: relative;
  width: 60%;
  height: 10px;
  bottom: -5px;
  left: 0;
  background: var(--secondary-color);
  border-radius: 10px;
}



#methodology .card .card-footer {
  text-align: right;
  background-color: transparent;
  border-top: 0;
}

#methodology .card .card-body a {
  position: absolute;
  right: 0;
  bottom: 0;
  
  margin: 0 25px 25px 0;

  text-decoration: none;
}
#methodology .card:hover .card-body a {
  display: none;
}
#methodology .card .card-body a span{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--font-color-white);
}
#methodology .card .card-body a img {
  display: inline-block;
  width: 18px;
  height: 18px;
}

#methodology .owl-dots .owl-dot.active span {
  background: var(--secondary-color) !important;
}

/* PROCESS */
#processes {
  margin: 0px 0 100px;
  padding-top: 100px;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  color: var(--font-color);
}
#processes h1,
#processes h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--font-color-darker);
}

#processes .process {
  width: 100%;
  display: flex;
  margin-bottom: 70px;
  padding-top: 10px;
}

#processes .process .icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 10px 20px;
  padding: 10px;
  border-radius: 15px;
  background-color: #f07d1f;
}

#processes .process .icon img {
  width: 30px;
  display: block;
  margin: 5px auto;
}

#processes .process .process-text {
  margin-top: 10px;
  padding: 0 20px;
  flex: 1;
}

#processes .process:hover .icon {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}
#processes .process:hover {
  border-radius: 16px;
  box-shadow: 0px 4px 30px #cdcdcd;
}

/* KEEP UP */
#keep-up {
  min-height: 50vh;
  margin: 0px 0 100px;
  padding-top: 100px;
  background-image: url("../../assets/img/bg-4.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#keep-up h1 {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--font-color-white);
}
#keep-up .underline::after {
  /* border: 4px solid var(--main-color-darker); */
}

#blog {
  align-items: center;
  margin: 0 auto;
  display: flex;
  padding-bottom: 100px;
  justify-content: center;
}

#blog .owl-stage {
  margin: 0 auto;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--main-color-darker) !important;
}

#blog .card-news {
  flex: 1;
  max-width: 500px;
  background-color: #f9f9f9;
  border-radius: 20px;
  border: 0;
  padding: 24px;
}
#blog .card-news .header {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
}
#blog .card-news .header img {
  border-radius: 16px;
  transition: 0.25s ease;
}
#blog .card-news .header .pills {
  position: relative;
  margin-left: 20px;
  top: -50px;
}
#blog .card-news .header .pills span {
  background-color: #ced4c8;
  padding: 1% 2%;
  border-radius: 39px;
}

#blog .card-news .card-body .card-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;

  min-height: 50px;
  margin-bottom: 15px;
  display: block;
}

#blog .card-news .card-body .card-text {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;

  display: block;
  margin-bottom: 15px;
}
#blog .card-news .card-footer {
  text-align: right;
}
#blog .card-news .card-footer a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--main-color);
  text-decoration: none;
}
#blog .card-news .card-footer a img {
  display: inline-block;
  width: 18px;
  height: 18px;
}

#blog .card-news:hover {
  border: 2px solid var(--main-color);
  background-color: #e3e7e1;
}
#blog .card-news:hover .header img {
  transform: scale(1.1);
}

.modal-content {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
}

.modal-dialog {
  border: 0px !important;
}

.modal-content .btn-close {
  position: absolute;
  right: 0;
  background-color: var(--main-color-darker);
  opacity: 1;
  color: var(--font-color-white);
  background-image: url("../../assets/img/modal-close.svg");
  padding: 15px 20px;
  border-top-right-radius: 09px;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.modal-content .btn-close:hover {
  background-color: var(--secondary-color);
  color: var(--font-color-white);
}
.modal-header {
  padding: 50px 45px 0 45px;
  border: 0;
  flex-direction: column;
}
.modal-header img {
  flex: 1;
  border-radius: 15px;
}
.modal-header h1 {
  width: 100%;
  margin-top: 10px;
  flex: 1;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  text-align: left;
  font-size: 1.5rem;
}
.modal-header .pills {
  width: 100%;
  position: relative;
  margin-left: 20px;
  top: -90px;
}
.modal-header .pills span {
  background-color: #ced4c8;
  padding: 1% 2%;
  border-radius: 39px;
}
.modal-body {
  height: 400px;
  padding: 0px 45px 30px;
  overflow-y: auto;

  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--font-color);
}

/* Works on Firefox */
.modal-body {
  scrollbar-width: thin;
  scrollbar-color: #ced4c8 transparent;
}

/* Works on Chrome, Edge, and Safari */
.modal-body::-webkit-scrollbar {
  width: 12px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #ced4c8;
  border-radius: 20px;
  border: 3px solid transparent;
}






/* TALENTS */
.swal2-popup {
  border-radius: 12px;
}

#talents {
  min-height: 50vh;
  margin: 0px 0 100px;
  /* padding-top: 100px; */
}

#talents h1 {
  color: var(--font-color-darker);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 2.1rem;
}
#talents h3 {
  color: var(--font-color-darker);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  font-size: 2.1rem;
}
#talents .best-companies {
  font-size: 2.2rem;
}

#talents .image-wrapper {
  background-image: url("../../assets/img/bg-8.png");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  width: 100%;
  height: 500px;
  color: white;
  padding: 20px;
}
#talents .box {
  position: relative;
  top: -100px;
  padding: 30px 60px;
  background-color: #f9f9f9;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
#talents p {
  flex: 1;
  padding-top: 10px;
  width: 400px;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--main-color-darker);
  vertical-align: middle;
}

#talents button,
#talents a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  display: flex;
  background-color: var(--secondary-color);
  border-radius: 10px;
  border: 0;
  color: var(--font-color-white);
  padding: 15px 20px;
}
#talents button span,
#talents a span{
  position: relative;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url('../../assets/img/right-arrow-orange.png');
  background-size: 20px;
  background-repeat: no-repeat;
  margin-left: 10px;
}

#talents button:hover,
#talents a:hover {
  background-color: var(--main-color);
}
#talents button:hover span,
#talents a:hover span{
  background-image: url('../../assets/img/right-arrow-green.png');
}







/* CONTACT */
#contact {
  min-height: 50vh;
  margin: 0px 0 00px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../../assets/img/bg-9.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
#contact h1 {
  color: var(--font-color-white);

  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 900;
  font-size: 2.1rem;
}

#contact p {
  color: var(--font-color-white);
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5rem;
}

#contact label {
  color: var(--font-color-white);
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.5;
  margin-bottom: 5px;
}
#contact input,
#contact textarea {
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0))
}

#contact textarea {
  resize: none;
}
#contact button {
  margin-top: 40px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  display: flex;
  background-color: var(--secondary-color);
  border-radius: 10px;
  border: 0;
  color: var(--font-color-white);
  padding: 10px 15px;
}
#contact button span{
  position: relative;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url('../../assets/img/right-arrow-orange.png');
  background-size: 20px;
  background-repeat: no-repeat;
  margin-left: 10px;
}

#contact button:hover {
  background-color: var(--main-color);
}
#contact button:hover span{
  background-image: url('../../assets/img/right-arrow-green.png');
}

/* FOOTER */
footer {
  background-color: #fff;
}
footer .row {
  padding-top: 50px;
  padding-bottom: 45px;
  border-bottom: 1px solid #e3e3e3;
}

footer .row:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  padding-top: 35px;
}

footer h3 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  text-decoration: underline;
  text-decoration-color: #e3e3e3;
  text-underline-offset: 35px;
  padding-bottom: 35px;
  font-weight: bold;
}

footer ul {
  padding-left: 0;
  margin-top: 30px;
}

footer ul li {
  list-style: none;
  list-style-position: unset;
  display: block;
  margin: 0;
  margin-bottom: 24px;
  font-size: 1rem;
}

footer .contact {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

footer .contact a {
  text-decoration: none;
  color: var(--font-color-darker);
}

footer .contact i {
  color: var(--secondary-color-lighter);
  font-size: 20px;
  margin-right: 8px;
}

footer a:hover,
footer .nav-link:hover {
  color: var(--secondary-color-lighter);
}

#google-maps {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.social-links a {
  text-decoration: none;
  padding-right: 25px;
  font-size: 18px;
  color: var(--main-color);
}

/* Mobile */
@media (min-width: 0px) and (max-width: 576px) {
  #mobile-indicator {
    display: block;
  }
  #allocation {
    /* height: 100%; */
  }
  .video-container video{
    height: 270vw;
  }

  .carousel-control-next, .carousel-control-prev {
    bottom: 10px;
    align-items: flex-end;
  }
  
  .task-wrapper {
    display: block;
  }
  .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #slide-3 .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #slide-4 .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .task {
    width: auto;
    min-height: 120px;
    height: 140px;
  }

  .icon-container {
    width: 50px;
    height: 50px;
  }

  .icon-container img {
    max-width: 50%;
    max-height: 50%;
  }


  .arrow {
    width: 1rem;
    margin-top: 30px;
  }

  .tasks .icon-label{

    text-align: center;
    position: relative;
    width: 70px;
    left: -2px;
    font-size: 0.6rem;
  }


  .carousel-caption {
    position: absolute;
    right: 10px;
    left: 10px;
    bottom: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    margin-top: 20px;
  }
  .carousel-caption h1,
  #slide-4 .carousel-caption h1 {
    font-size: 1rem;
  }
  .carousel-caption p {
    font-size: 0.8rem;
  }
  .carousel-caption h1 .underline::after {
    /* border: 2px solid var(--secondary-color); */
    color: var(--secondary-color);
  }
  .carousel-item {
    min-height: 270vw;
  }

  #slide-1 {
    background-position: right;
    font-size: 1rem;
    min-height: 270vw;
    /* padding-bottom: 200px; */
  }
  #slide-2 {
    background-position: right;
    font-size: 1rem;
    min-height: 270vw;
  }
  #slide-3 {
    background-position: right;
    font-size: 1rem;
    min-height: 275vw;
  }
  #slide-4 {
    background-position: right;
    font-size: 1rem;
    min-height: 275vw;
  }
  #slide-4 .services {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #slide-1 h5,
  #slide-2 h5,
  #slide-3 h5,
  #slide-4 h5 {
    font-size: 1rem;
  }
  .services .card {
    margin-bottom: 10px;
  }

  .services .card .intro {
    height: 50px;
    
  }
  .services .card .big-title {
    height: 70px;
  }
  .services .card .big-title a {
    top: -40px!important;
  }

  .services .card .intro h3 {
    font-size: 0.8rem;
    height: 70px;
  }
  .services .card:hover .intro h3 {
    height: 15px;
  }
  .services .card:hover .big-title h3 {
    height: 20px;
  }
  .services .card .intro a {
    top: -60px
  }
  
  .services .card a {
    font-size: 0.5rem;
    margin-bottom: 0;
  }
  .services .card .intro {
    bottom: 2px !important;
  }  

  .services .card:hover .intro {
    height: 160px;
  }
  .services .card:hover img {
    transform: translateY(-40px);
  }
  .services .card:hover .intro a,
  .services .card:hover .intro img {
    display: none;
    visibility: hidden;
  }
  .services .card ul {
    margin-top: 5px;
    padding-left: 1.5rem;
  }
  .services .card ul li,
  .services .card .intro p {
    font-size: 0.58rem;
  }

  .services .card .big-text p,
  .services .card .big-text ul li{
    font-size: 0.47rem;
  }


  .services .card:hover .intro-90 {
    height: 90%!important;
  }



  #about-us p {
    padding: 0;
  }

  #philosophy {
    padding-bottom: 0px;
  }


  #philosophy h1 {
    text-align: center;
    padding-top: 80px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  #methodology .card {
    width: 90vw;
  }


  #processes .process .icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 10px 20px;
    padding: 10px 10px;
    border-radius: 15px;
    background-color: #f07d1f;
  }

  #processes .process .icon img {
    width: 20px;
    display: block;
    margin: 0 auto;
  }
  #processes .process .process-text {
    padding: 0 10px 0 5px;
  }

  #keep-up {
    background-position: right;
  }
  #keep-up .container-fluid {
    margin: 0;
    padding: 0;
  }
  .owl-carousel {
    width: 100vw !important;
    max-width: 100vw;
  }

  #blog .card-news .card-body .card-title {
    font-size: 1rem;
  }
  #blog .card-news .card-body .card-text {
    font-size: 0.8rem;
  }

  #blog .card-news .header .pills {
    font-size: 1rem;
    top: -40px;
  }
  #blog .card-news .header .pills span {
    font-size: 1rem;
  }

  #blog .card-news:hover {
    border: 1px solid var(--main-color);
  }

  #blog .card-news:hover .header img {
    transform: scale(1);
  }

  .modal-header .pills {
    width: 100%;
    top: -160px;
  }
  .modal-header .pills span {
    font-size: 0.5rem;
    padding: 1% 2%;
    border-radius: 39px;
  }

  #talents h1,
  #talents h3 {
    font-size: 1.2rem;
  }
  #talents .best-companies {
    font-size: 1.6rem;
  }
  #talents .image-wrapper {
    background-image: url("../../assets/img/bg-8-mobile.png");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    width: 100%;
    height: 900px;
    color: white;
    padding: 20px;
  }

  #talents .box {
    
    position: relative;
    top: -100px;
    padding: 15px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }
  #talents p {
    text-align: center;
    flex: 1;
    padding-top: 10px;
    width: 100%;
    font-size: 1rem;
    vertical-align: middle;
  }


  #contact {
    background-size: cover;
    background-position: 70%;
    /* padding-bottom: 50px; */
  }



  footer ul li {
    font-size: 0.75rem;
  }
  footer h3 {
    font-size: 1.2rem;
  }

  
  #google-maps {
    height: 300px;
  }
}

/* iPad & HD laptop */
@media (min-width: 576px) and (max-width: 899px) {

  .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #slide-3 .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #slide-4 .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .task {
    width: auto;
    min-height: 120px;
  }

  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container img {
    max-width: 50%;
    max-height: 50%;
  }


  .arrow {
    width: 1.3rem;
    margin-top: 30px;
  }

  .tasks  .icon-label {
    text-align: center;
    font-size: 0.6rem;
  }

  #slide-1,
  #slide-2,
  #slide-3{
    min-height: 160vw!important;
  }
  #slide-4 {
    min-height: 170vw!important;
  }
  
  #slide-4 .services {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .services .card .intro {
    height: 70px;
    bottom: 10px;
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    background: transparent;
    color: var(--font-color-white);
    transition: 0.5s;
  }

  .services .card .intro h3 {
    height: 70px;
  }

  .services .card .intro a {
    top: -40px
  }

  .services .card:hover .intro a,
  .services .card:hover .intro img {
    display: none;
    visibility: hidden;
  }
  
  .services .card .big-text p,
  .services .card .big-text ul li{
    font-size: 0.7rem;
  }


  .services .card:hover .intro-90 {
    height: 90%!important;
  }

  #about-us {
    min-height: 600px;
    background-size: cover, 160%;
    background-position: center, left;
    transition: background-size 0.5s ease-in-out;
  }
  #about-us:hover {
    background-size: cover, 200%;
    background-position: top, left;
  }


  #keep-up {
    background-position: right;
  }
  #keep-up .container-fluid {
    margin: 0;
    padding: 0;
  }

  #blog .card-news .header .pills {
    font-size: 1rem;
    top: -110px;
  }
  #blog .card-news .header .pills span {
    font-size: 1rem;
  }

  .modal-header .pills {
    top: -100px;
  }
  .modal-header .pills span {
    font-size: 0.5rem;
  }

  .owl-carousel {
    width: 100vw !important;
  }


  #talents .image-wrapper {
    background-image: url("../../assets/img/bg-8-mobile.png");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    width: 100%;
    height: 1000px;
    color: white;
    padding: 20px;
  }


  #contact {
    background-size: cover;
    background-position: 70%;
  }


}

@media (min-width: 900px) and (max-width: 990px) {

  .tasks {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .task {
    width: auto;
    min-height: 120px;
  }

  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container img {
    max-width: 50%;
    max-height: 50%;
  }


  .arrow {
    width: 1.3rem;
    margin-top: 30px;
  }

  .tasks .icon-label {
    font-size: 0.6rem;
  }
  .carousel-item {
    min-height: auto;
  }

  #slide-1,
  #slide-2,
  #slide-3,
  #slide-4 {
    min-height: 150vw!important;
  }

  #slide-4 .services {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #about-us {
    min-height: 800px;
    background-size: cover, 140%;
    background-position: center, left;
    transition: background-size 0.5s ease-in-out;
  }
  #about-us:hover {
    background-size: cover, 160%;
    background-position: center, left;
  }

  .services .card:hover .intro a,
  .services .card:hover .intro img {
    display: none;
    visibility: hidden;
  }
  .services .card:hover .intro-90 {
    height: 75%!important;
  }

  #keep-up {
    background-position: right;
  }
  #keep-up .container-fluid {
    margin: 0;
    padding: 0;
  }

  #blog .card-news .header .pills {
    font-size: 1rem;
    top: -110px;
  }
  #blog .card-news .header .pills span {
    font-size: 1rem;
  }

  .owl-carousel {
    width: 100vw !important;
    max-width: 100vw;
  }

  .modal-header .pills {
    top: -100px;
  }
  .modal-header .pills span {
    font-size: 0.5rem;
  }



  #talents .image-wrapper {
    background-image: url("../../assets/img/bg-8-mobile.png");
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    width: 100%;
    height: 1000px;
    color: white;
    padding: 20px;
  }



  #contact {
    background-size: cover;
    background-position: 70%;
  }
}

@media (min-width: 1110px) and (max-width: 1300px) and (min-height: 700px) and (max-height: 750px) {
  .services .card .intro p,
  .services .card .intro ul li {
    font-size: 9px !important;
  }
  .mouse-scroll {
    display: none;
  }
}

/* Large */
@media (min-width: 991px) and (max-width: 1919px) {
  .carousel-item {
    min-height: 60vw;
    width: 100%;
  }
  .services .card .intro {
    height: 50px;
    bottom: 0px;
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    background: transparent;
    color: var(--font-color-white);
    transition: 0.5s;
  }
  .services .card .big-text p,
  .services .card .big-text ul li{
    font-size: 0.7rem;
  }


  .services .card:hover .intro {
    height: 200px;
    bottom: 0px;
    background: rgba(255, 255, 255, 1);
    color: var(--font-color-darker);
  }
  .services .card:hover .intro-90 {
    height: 90%!important;
  }
  .services .card:hover img {
    transform: translateY(-50px);
  }
  .services .card ul {
    padding-left: 1.2rem;
  }
}



@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



@keyframes fade {
  0% {
    opacity: 0;
    transform: translate(0, 3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .in-view {
    animation: fade 0.5s 1s both;
  }

  .not-in-view {
    opacity: 0;
  }
}
