/* 
Keyframes
*/
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateX(-10%); }
  100% {
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/*
MEDIA @QUERY MANAGER

Main breakpoints argument choices:

0px - 600px       :   Phone and Small Phones
600px - 900px     :   Tablet Portrait
900px - 1200px    :   Tablet Landscape
[1200px - 1800px  :   Built]
1800px - ++       :   Big Desktop
*/
html {
  scroll-behavior: smooth; }

body {
  background-color: #F1F1F1;
  color: #282828; }

* {
  box-sizing: border-box;
  margin: 0;
  border: none; }

.section {
  position: relative;
  height: 90vh;
  padding: 5rem; }
  @media (max-width: 60em) {
    .section {
      padding: 3rem; } }
  @media (max-width: 60em) {
    .section {
      padding: 2rem; } }

body {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  color: #282828; }
  @media (max-width: 60em) {
    body {
      font-size: 14.5px; } }
  @media (max-width: 40em) {
    body {
      font-size: 14px; } }

ul {
  list-style: none; }

a {
  text-decoration: none;
  color: #282828; }

.span--black {
  font-weight: 800; }

.route {
  font-size: .9rem;
  color: #2d6a4f;
  font-weight: 600;
  transition: transform 150ms ease; }
  .route:hover {
    transform: translate(3px, -2px); }
  .route--text {
    color: #1CD281;
    text-decoration: underline; }

.heading {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 1rem; }
  @media (max-width: 80em) {
    .heading {
      font-size: 1.9rem; } }
  .heading--1 {
    font-size: 2rem; }
    @media (max-width: 40em) {
      .heading--1 {
        font-size: 1.8rem; } }
  .heading--2 {
    line-height: 2.2rem;
    font-size: 2rem; }
    @media (max-width: 80em) {
      .heading--2 {
        font-size: 2rem; } }
    @media (max-width: 60em) {
      .heading--2 {
        font-size: 1.8rem; } }
    @media (max-width: 40em) {
      .heading--2 {
        font-size: 1.6rem; } }
  .heading--3 {
    font-size: 1.6rem; }
    @media (max-width: 60em) {
      .heading--3 {
        font-size: 1.7rem; } }
    @media (max-width: 40em) {
      .heading--3 {
        font-size: 1.4rem; } }
  .heading--4 {
    font-size: 1.2rem; }
  .heading--5 {
    font-size: .9rem;
    margin-bottom: .7rem;
    font-weight: 600; }

.list {
  margin: 0;
  padding: 0;
  text-align: justify; }
  .list--normal {
    max-width: 70%; }
    @media (max-width: 60em) {
      .list--normal {
        max-width: 100%; } }
    .list--normal__lst {
      margin-bottom: 4rem; }
    .list--normal__els {
      margin: 1rem 0;
      padding-left: 1rem;
      border-left: 2px solid #2d6a4f; }

/*__________________________________

----------Main navigation bar---------- 
___________________________________*/
#nav--main {
  height: 16vh;
  width: 100%;
  position: fixed;
  top: 0;
  padding: 1.5rem 5rem;
  background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1, #f1f1f1, rgba(241, 241, 241, 0.85));
  z-index: 100; }
  @media (max-width: 60em) {
    #nav--main {
      height: 12vh;
      padding: 1rem 2rem; } }

.nav-bar {
  height: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /*...............
    //LOGO
    ..................*/
  /*...............

    //NAV DESKTOP DISPLAY
    ..................*/
  /*...............
    //NAV MOBILE DISPLAY
    ..................*/
  /*...............
    //NAV LINKS MAIN STYLE
    ..................*/ }
  .nav-bar__logo {
    height: 100%;
    width: 100%; }
    .nav-bar__logo--box {
      height: 90%;
      width: auto; }
      @media (max-width: 80em) {
        .nav-bar__logo--box {
          height: 70%; } }
      @media (max-width: 60em) {
        .nav-bar__logo--box {
          height: 60%; } }
      @media (max-width: 40em) {
        .nav-bar__logo--box {
          height: 70%; } }
  .nav-bar__routes--lg {
    height: 100%;
    display: flex;
    align-items: center; }
  .nav-bar__routes__list {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0; }
    @media (max-width: 60em) {
      .nav-bar__routes__list {
        font-size: .8rem; } }
  .nav-bar__routes__el {
    transition: all 50ms; }
    .nav-bar__routes__el:not(:last-child) {
      margin-right: 2rem; }
      @media (max-width: 60em) {
        .nav-bar__routes__el:not(:last-child) {
          margin-right: 1rem; } }

/*__________________________________________

----------Services navigation bar----------
__________________________________________*/
#nav--services {
  grid-column: 1 / 2;
  align-self: center; }
  @media (max-width: 60em) {
    #nav--services {
      grid-column: 1 / -1;
      grid-row: 2 / 3;
      margin-bottom: 2rem; } }

.nav--services__list--main {
  padding: 0;
  opacity: .90rem; }
  @media (max-width: 60em) {
    .nav--services__list--main {
      font-size: .8rem;
      width: 45%; } }

.nav--services__list--sub {
  height: 0;
  display: none;
  visibility: none;
  padding: .5rem 0 0 0;
  margin: 0 0 .5rem 1rem;
  opacity: .85;
  transition: height 3000ms ease;
  overflow: hidden;
  border-radius: 5px; }
  .nav--services__list--sub--active {
    display: block;
    visibility: visible;
    height: auto; }
  @media (max-width: 60em) {
    .nav--services__list--sub {
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%; } }

.nav--services__item {
  width: auto;
  padding: .85rem;
  position: relative;
  transition: height 3000ms ease; }
  @media (max-width: 60em) {
    .nav--services__item--main {
      margin-right: 1rem; } }
  .nav--services__item--sub {
    font-size: .85rem;
    margin: 0;
    border-bottom: 2px solid #CDB699; }
  @media (max-width: 60em) {
    .nav--services__item {
      font-size: .75rem;
      padding: .5rem; } }

.nav--services__route {
  transition: font-size 250ms ease; }
  .nav--services__route::after {
    opacity: 0;
    transition: background-color 250ms ease; }
  .nav--services__route:hover {
    font-size: .90rem; }
    @media (max-width: 60em) {
      .nav--services__route:hover {
        font-size: .85rem; } }
  .nav--services__route--active::after {
    content: " ";
    display: block;
    opacity: 1;
    font-weight: 600;
    height: 3px;
    width: 20%;
    background-color: #2C4132; }
  @media (max-width: 60em) {
    .nav--services__route--active {
      font-size: .85rem; } }

.grid {
  display: grid;
  grid-gap: 4rem; }
  .grid--31 {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr; }
    @media (max-width: 60em) {
      .grid--31 {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto; } }

#us__content {
  margin-top: 20vh;
  height: auto; }

.us__heading--main {
  margin-bottom: 2rem;
  animation: fade-in 750ms ease-in-out both; }
  @media (max-width: 60em) {
    .us__heading--main {
      margin-bottom: 4rem; } }

.us__slogan {
  margin-bottom: 4rem;
  font-style: italic;
  font-size: 1rem;
  max-width: 30%;
  animation: fade-in 750ms ease-in-out both; }
  @media (max-width: 60em) {
    .us__slogan {
      max-width: 100%;
      font-size: .8rem;
      text-align: justify; } }

.us__company-description {
  line-height: 2;
  margin-bottom: 2rem;
  padding: 0 4rem;
  text-align: justify;
  animation: fade 1000ms ease-in-out both; }
  @media (max-width: 60em) {
    .us__company-description {
      padding: 0; } }
  .us__company-description__list {
    margin-left: 6rem; }
    @media (max-width: 60em) {
      .us__company-description__list {
        margin-left: 1rem; } }

.us__descriptions {
  padding: 0 8rem; }
  @media (max-width: 60em) {
    .us__descriptions {
      padding: 0; } }

.us__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 5rem; }
  @media (max-width: 60em) {
    .us__info {
      flex-direction: column;
      padding: 2rem; } }
  .us__info__heading {
    max-width: 10%;
    border-top: 1px solid #2d6a4f;
    padding-top: 2rem; }
    @media (max-width: 60em) {
      .us__info__heading {
        max-width: 100%;
        padding: 1rem 0;
        border: none;
        border-bottom: 1px solid #2d6a4f;
        margin-bottom: 2rem; } }
  .us__info__description {
    line-height: 2;
    max-width: 70%;
    border-top: 1px solid #2C4132;
    padding-top: 2rem;
    text-align: justify; }
    @media (max-width: 60em) {
      .us__info__description {
        max-width: 100%;
        padding-top: 0;
        border: none; } }
  .us__info__list {
    padding: 0;
    padding-top: 2rem;
    margin: 0;
    list-style: none; }
  .us__info__item {
    margin-bottom: 1rem; }

/*__________________________________
------------SECTIONS----------------
___________________________________*/
/*........................
//SECTION WELCOME GENERAL
.............*/
.section--welcome {
  margin-top: 16vh;
  padding: 2rem 0;
  width: 100%;
  max-height: 100vh;
  box-sizing: border-box;
  position: relative;
  background-color: black; }
  @media (max-width: 60em) {
    .section--welcome {
      height: 80vh;
      padding: 0; } }

/*.............................
//SECTION WELCOME MAIN CONTENT
..................*/
.welcome__img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-25%);
  border-radius: 4px;
  object-fit: contain;
  object-position: center;
  background-repeat: no-repeat;
  animation: fade 1500ms ease-in-out both; }
  @media (max-width: 40em) {
    .welcome__img {
      width: 100%;
      height: 100%;
      position: relative;
      background-size: cover;
      left: 0;
      transform: translateX(0);
      border-radius: 0; } }

.welcome__message__container {
  position: absolute;
  max-width: 45%;
  bottom: 20%;
  left: 5rem;
  color: #F1F1F1; }
  @media (max-width: 60em) {
    .welcome__message__container {
      left: 2rem; } }
  @media (max-width: 40em) {
    .welcome__message__container {
      left: 2rem;
      max-width: 90%;
      bottom: 10%; } }

.welcome__heading {
  width: 50%;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 3px;
  animation: fade-in 1000ms ease-in-out both; }
  @media (max-width: 60em) {
    .welcome__heading {
      background-image: none;
      padding: 0; } }

.welcome__text {
  width: 80%;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 3px;
  animation: fade-in 1000ms ease-in-out both; }
  @media (max-width: 60em) {
    .welcome__text {
      background-image: none;
      margin-bottom: 4rem;
      padding: 0; } }

.welcome__route {
  margin-top: 1rem;
  padding: 1rem;
  color: #1CD281;
  animation: fade 2000ms ease-in-out both; }
  @media (max-width: 60em) {
    .welcome__route {
      color: #F1F1F1;
      border: solid 2px #1CD281;
      padding: 1rem;
      border-radius: 3px; } }

/*...........................
//SECTION SERVICES CONTAINER
..................*/
.section--services {
  position: relative;
  max-width: 100vw;
  height: auto; }
  @media (max-width: 60em) {
    .section--services {
      margin-top: 2rem;
      box-sizing: border-box; } }

/*..............................
//SECTION SERVICES MAIN CONTENT
..................*/
.services__section-heading {
  margin-bottom: 6rem; }
  @media (max-width: 60em) {
    .services__section-heading {
      margin-top: 4rem;
      margin-bottom: 4rem; } }
  @media (max-width: 40em) {
    .services__section-heading {
      margin-top: 0; } }

.services__information {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: end; }
  @media (max-width: 60em) {
    .services__information {
      grid-column: 1 / -1;
      grid-row: 3 / 4; } }

.services__images {
  grid-column: 3  / 4;
  grid-row: 1  / -1;
  height: 100%;
  width: 100%; }
  @media (max-width: 60em) {
    .services__images {
      grid-column: 1 / -1;
      grid-row: 1 / 2;
      max-height: 20vh;
      max-width: 100%; } }

.services__heading {
  align-self: end;
  margin: 0; }
  .services__heading--main {
    display: none;
    animation: fade 1000ms ease-in-out both; }
    @media (max-width: 60em) {
      .services__heading--main {
        margin-top: 1rem; } }
    .services__heading--main--active {
      display: block; }
  .services__heading--sub {
    font-size: .85rem;
    display: none;
    animation: fade 1000ms ease-in-out both; }
    .services__heading--sub--active {
      display: block; }

.services__description {
  display: none;
  opacity: 0;
  transition: opacity 1000ms ease;
  animation: fade 1000ms ease-in-out both; }
  .services__description--active {
    display: block;
    opacity: 1; }

.services__img {
  height: 100%;
  width: 100%;
  display: none;
  border: 3px;
  box-shadow: 2px 1px 20px black;
  animation: fade 1000ms ease-in-out both; }
  .services__img--active {
    display: block;
    object-fit: cover;
    object-position: bottom; }

.section--contact {
  background-image: linear-gradient(to right, rgba(241, 241, 241, 0.9) 15%, rgba(241, 241, 241, 0)), url(/assets/images/map-1080.jpg);
  background-repeat: none;
  background-size: cover;
  position: relative;
  width: 100%; }
  @media (max-width: 60em) {
    .section--contact {
      background-image: linear-gradient(to right, rgba(241, 241, 241, 0.9) 15%, rgba(241, 241, 241, 0)), url(/assets/images/map-land.jpg); } }
  @media (max-width: 40em) {
    .section--contact {
      background-image: linear-gradient(to right, rgba(241, 241, 241, 0.9) 15%, rgba(241, 241, 241, 0)), url(/assets/images/map-phone.jpg); } }

.contact__heading {
  margin-bottom: 4rem; }

.contact__left {
  display: inline-block;
  position: absolute;
  width: 50%;
  height: 60%;
  left: 0;
  padding: 5rem; }
  @media (max-width: 60em) {
    .contact__left {
      position: relative;
      display: block;
      width: 100%;
      height: 50%;
      padding: 0; } }

.contact__right {
  display: inline-block;
  position: absolute;
  width: 50%;
  height: 60%;
  margin: 0;
  right: 0;
  padding: 5rem; }
  @media (max-width: 60em) {
    .contact__right {
      position: relative;
      display: block;
      width: 100%;
      height: 30%;
      margin-top: 2rem;
      padding: 0; } }
  .contact__right__routes {
    position: absolute; }

.contact__form {
  display: none; }

.contact__info__route {
  display: block;
  margin-bottom: 1rem; }

.contact__info__heading {
  margin: 2rem 0; }

#footer {
  width: 100%;
  padding: 2rem;
  background-color: #282828; }
  @media (max-width: 60em) {
    #footer {
      height: 25vh;
      padding: 2rem .5rem; } }

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  color: #ced4da;
  font-weight: 300;
  font-size: .8rem; }
  .footer__info {
    width: 30%; }
    @media (max-width: 60em) {
      .footer__info {
        display: none; } }
    .footer__info__route {
      display: block;
      color: #ced4da;
      margin-bottom: 1rem; }
      .footer__info__route__span {
        color: #1CD281; }
  .footer__links {
    width: 30%;
    position: relative; }
    @media (max-width: 60em) {
      .footer__links {
        width: 45%; } }
    .footer__links__logo {
      width: 5rem;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%); }
      @media (max-width: 60em) {
        .footer__links__logo {
          width: 2.5rem; } }
    .footer__links__social {
      position: absolute;
      text-align: center;
      width: 100%;
      bottom: 0%;
      left: 50%;
      transform: translateX(-50%); }
    .footer__links__linkedin {
      margin-right: 1rem; }
      @media (max-width: 60em) {
        .footer__links__linkedin {
          height: 1rem; } }
    .footer__links__whatsapp {
      margin-right: 1rem; }
      @media (max-width: 60em) {
        .footer__links__whatsapp {
          height: 1rem; } }
    .footer__links__mail {
      margin-right: 1rem; }
      @media (max-width: 60em) {
        .footer__links__mail {
          height: 1rem; } }
    @media (max-width: 60em) {
      .footer__links__phone {
        height: 1rem; } }
  .footer__policy {
    position: relative;
    width: 30%; }
    @media (max-width: 60em) {
      .footer__policy {
        width: 50%; } }
    .footer__policy__copywrite {
      position: absolute;
      bottom: 0%;
      left: 50%;
      transform: translateX(-50%); }
      @media (max-width: 60em) {
        .footer__policy__copywrite {
          font-size: .5rem; } }
