* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Josefin Sans", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000636;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header.sticky {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.logo img {
  width: 19rem;
  cursor: pointer;
}

.menu_icon {
  display: none;
}

.logo:hover,
.logo:active {
  color: #005e5d;
}

.container_menu {
  display: flex;
  align-items: center;
  padding: 2rem 7%;
}

.navbar a {
  font-size: 1.7rem;
  color: #fff;
  margin-left: 4rem;
  transition: 0.3s;
  cursor: pointer;
}

.navbar a:hover,
.navbar a:active {
  color: #005e5d;
  border-bottom: 1px solid #005e5d;
}

.home {
  min-height: 90vh;
  width: 100%;
  padding: 5.7rem 0% 0;
  display: flex;
}

.container_part_a {
  width: 50%;
  height: 91vh;
  background: linear-gradient(rgb(106 105 105 / 8%), rgb(106 105 105 / 8%)),
    url(../img/mountain.jpg);
  background-size: cover;
  background-position: 77%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}

.container_part_a img {
  width: 65rem;
}

.container_part_b {
  width: 50%;
  height: 91vh;
  background-color: #005e5d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}

.animation_scale_pn_b {
  transform: scale(1.06);
}

.animation_logo_less_size {
  animation-name: animation_scale_logo;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes animation_scale_logo {
  from {
    width: 65rem;
  }
  to {
    width: 61rem;
  }
}

.animation_logo_normal_size {
  animation-name: animation_normal_scale_logo;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}

@keyframes animation_normal_scale_logo {
  from {
    width: 61rem;
  }
  to {
    width: 65rem;
  }
}

.container_part_b h1 {
  color: #fff;
  font-size: 7rem;
  text-align: center;
  width: 80%;
}

.who_we_are {
  min-height: 90vh;
  width: 100%;
  display: flex;
}

.container_who_we_are_part_a {
  width: 50%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container_who_we_are_part_a img {
  width: 40rem;
}

.conatainer_description_part_b {
  width: 50%;
  height: 90vh;
  background-color: #005e5d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conatainer_description_part_b h3 {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.container_paragraph {
  width: 80%;
  margin: 0 auto;
}

.container_paragraph p {
  color: white;
  font-size: 3rem;
  text-align: center;
}

.container_title {
  display: flex;
  justify-content: center;
}

.container_title h4 {
  font-size: 2rem;
  padding-top: 1rem;
  color: #005e5d;
}

.calc_desing {
  height: auto;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #eef2e3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_calc_design {
  background-color: #fff;
  padding: 2rem 1rem;
  border-radius: 2rem;
  display: flex;
}

.container_calc_design_images img {
  width: 45rem;
  height: 31rem;
}

.container_calc_desing_description {
  margin-left: 2rem;
}

.container_calc_desing_description h2 {
  color: #005e5d;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.list_what_we_do {
  list-style: none;
}

.list_what_we_do li {
  font-size: 1.5em;
  margin-bottom: 0.6rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.what_we_do {
  height: auto;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #eef2e3;
  display: flex;
  flex-direction: column;
}

.container_cards {
  display: flex;
  justify-content: safe center;
  overflow-x: auto;
}

.container_cards::-webkit-scrollbar {
  width: 0;
}

.custom_car {
  height: auto;
  min-width: 29rem;
  max-width: 29rem;
  margin: 1.5rem 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-box-shadow: 10px 10px 10px -1px rgba(196, 196, 196, 1);
  -moz-box-shadow: 10px 10px 10px -1px rgba(196, 196, 196, 1);
  box-shadow: 10px 10px 10px -1px rgba(196, 196, 196, 1);
}

.custom_car img {
  width: 100%;
  height: 18rem;
}

.custom_car_body {
  padding: 2rem 0.3rem;
}

.custom_car_body h5 {
  font-size: 2rem;
  color: #000636;
  text-align: center;
  margin-bottom: 2rem;
}

.custom_car_body p {
  font-size: 1.4rem;
  color: black;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.btn_see_more {
  width: calc(100% - 20px);
  background-color: #000636; /* Green */
  border: none;
  color: white;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px 10px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.btn_see_more {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* the slides */
.slick-slide {
  margin: 0 2rem;
}

.container_rows {
  cursor: pointer;
  font-size: 3.5rem;
  margin: 0 3rem;
  color: #005e5d;
}

.contact_section {
  display: flex;
  padding: 2rem 2rem;
  flex-direction: column;
}

.container_contact_part_a {
  display: flex;
  height: auto;
  width: 100%;
}

.container_image_logo_contact {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_image_logo_contact img {
  width: 36rem;
  opacity: 0.7;
}

.container_contact_data {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.conatiner_contact_title h4 {
  font-size: 3rem;
  color: #005e5d;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}

.list_data_contact {
  list-style-type: none;
}

.list_data_contact li {
  font-size: 1.7rem;
  font-family: "Inter", sans-serif;
}

.container_qr {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conatiner_whatssap {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}

.conatiner_whatssap i {
  font-size: 5rem;
  color: green;
}

.conatiner_whatssap h3 {
  font-size: 2.7rem;
  font-weight: bold;
}

.container_qr img {
  width: 32rem;
}

.container_contact_part_b {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.list_information_about_me {
  list-style-type: none;
}

.list_information_about_me li {
  font-size: 2.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.list_information_about_me img {
  width: 2.8rem;
}

.float_contact {
  cursor: pointer;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  bottom: 30px;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.float_contact i {
  font-size: 5rem;
  color: green;
}

@media (max-width: 1388px) {
  .container_part_a img {
    width: 56rem;
  }

  .container_part_b h1 {
    font-size: 6rem;
  }
}

@media (max-width: 1152px) {
  .container_part_a img {
    width: 49rem;
  }

  .container_who_we_are_part_a img {
    width: 34rem;
  }

  .conatainer_description_part_b h3 {
    font-size: 4.5rem;
  }

  .container_image_logo_contact img {
    width: 24rem;
  }

  .container_qr img {
    width: 24rem;
  }
}

@media (max-width: 1015px) {
  .header {
    justify-content: normal;
  }

  .navbar {
    display: none;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: #000636;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    display: none;
  }

  .navbar::-webkit-scrollbar {
    width: 0;
  }

  /* .menu_icon {
    display: block;
    color: white;
    font-size: 2.7rem;
    margin-left: auto;
    padding-right: 2rem;
    cursor: pointer;
  } */

  .menu_icon {
    display: block;
    height: 35px;
    width: 30px;
    position: absolute;
    right: 1.3rem;
    cursor: pointer;
  }

  .menu_icon span {
    height: 2.8px;
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
  }

  .menu_icon span:nth-child(1) {
    top: 25%;
  }

  .menu_icon span:nth-child(3) {
    top: 75%;
  }

  .menu_icon.active_menu span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu_icon.active_menu span:nth-child(2) {
    opacity: 0;
  }

  .menu_icon.active_menu span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
    border-bottom: 1px solid #fff;
  }

  .container_menu {
    padding: 0;
  }

  .active {
    display: block;
  }

  .container_part_a img {
    width: 40rem;
  }

  @keyframes animation_menu_height {
    from {
      height: 0rem;
    }
    to {
      height: 30.7rem;
      overflow-y: none;
    }
  }

  /* The element to apply the animation to */
  .animation_menu_bar_max_height {
    overflow-y: auto;
    animation-name: animation_menu_height;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }

  .container_who_we_are_part_a img {
    width: 29rem;
  }

  .conatainer_description_part_b h3 {
    font-size: 4rem;
  }

  .container_paragraph p {
    font-size: 2.2rem;
  }
}

@media (max-width: 830px) {
  .home {
    flex-direction: column;
  }

  .container_part_a {
    width: 100%;
    height: 45.5vh;
  }

  .container_part_b {
    width: 100%;
    height: 45.5vh;
  }

  .container_part_a img {
    width: 54rem;
  }

  .who_we_are {
    flex-direction: column-reverse;
  }

  .container_who_we_are_part_a {
    width: 100%;
    height: 45.5vh;
  }

  .conatainer_description_part_b {
    width: 100%;
    height: 45.5vh;
  }

  .container_who_we_are_part_a img {
    width: 23rem;
  }

  .conatainer_description_part_b h3 {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .container_calc_design {
    flex-direction: column;
    width: 80vw;
  }

  .container_calc_design {
    align-items: center;
    border-radius: 1rem;
  }

  .container_calc_design_images img {
    width: 41rem;
  }

  .container_calc_desing_description h2 {
    margin-top: 2rem;
  }

  .container_qr img {
    width: 14rem;
  }

  .container_image_logo_contact img {
    width: 14rem;
  }

  .conatiner_contact_title h4 {
    font-size: 2rem;
  }

  .list_data_contact li {
    font-size: 1.2rem;
  }

  .conatiner_whatssap i {
    font-size: 3rem;
  }

  .conatiner_whatssap h3 {
    font-size: 1.4rem;
  }

  .list_information_about_me li {
    font-size: 1.5rem;
  }

  .list_information_about_me img {
    width: 1.5rem;
  }

  .contact_section {
    padding: 1rem 0.3rem;
  }
}

@media (max-width: 564px) {
  .container_who_we_are_part_a img {
    width: 19rem;
  }

  .container_part_a img {
    width: 43rem;
  }

  .container_part_b h1 {
    font-size: 5rem;
  }

  .conatainer_description_part_b h3 {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .container_calc_design_images img {
    width: 32rem;
    height: 22rem;
  }

  .container_contact_part_a {
    flex-direction: column;
    align-items: center;
  }

  .container_image_logo_contact {
    width: 90vw;
  }

  .container_contact_data {
    width: 90vw;
    margin: 3rem 0;
  }

  .container_qr {
    width: 90vw;
  }

  .container_image_logo_contact img {
    width: 20rem;
  }

  .conatiner_contact_title h4 {
    font-size: 2.5rem;
    text-align: center;
  }

  .list_data_contact li {
    font-size: 1.8rem;
  }

  .conatiner_whatssap i {
    font-size: 4rem;
  }

  .conatiner_whatssap h3 {
    font-size: 2rem;
  }

  .container_qr img {
    width: 22rem;
  }

  .list_information_about_me li {
    font-size: 2rem;
  }

  .container_contact_part_b {
    width: 90vw;
  }

  .contact_section {
    align-items: center;
  }

  .list_information_about_me img {
    width: 2.3rem;
  }
}

@media (max-width: 452px) {
  .container_part_a img {
    width: 36rem;
  }

  .container_part_b h1 {
    font-size: 4.6rem;
  }

  .conatainer_description_part_b h3 {
    font-size: 3rem;
  }

  .container_paragraph {
    width: 90%;
  }

  .container_paragraph p {
    font-size: 1.7rem;
  }

  .container_calc_design_images img {
    width: 28rem;
  }

  .list_what_we_do li {
    font-size: 1.4rem;
  }

  .container_calc_desing_description {
    margin-left: 0rem;
  }

  .container_calc_design {
    width: 92vw;
  }

  .list_data_contact li {
    font-size: 1.6rem;
  }

  .list_information_about_me li {
    font-size: 1.7rem;
  }
}

@media (max-width: 375px) {
  .container_part_a img {
    width: 31.5rem;
  }

  .container_part_b h1 {
    font-size: 4.3rem;
  }
}
