* {
  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;
}

body {
  background-color: #eef2e3;
}

.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;
}

/* .logo {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    padding-left: 1rem;
    transition: 0.5s ease;
  } */

.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;
}

.sect_equipments {
  min-height: 90vh;
  width: 100%;
  padding: 5.7rem 0% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sect_equipments h2 {
  width: 80vw;
  font-size: 3.3rem;
  font-weight: 800;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #005e5d;
  text-align: center;
}

.box_container {
  width: 105rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.box_container .box {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
}

.box {
  cursor: pointer;
  width: 100%;
  flex-direction: column;
  background-color: #fff;
  transition: 0.5s ease;
}

.box img {
  width: 100%;
  height: 19rem;
}

.box h5 {
  color: #000636;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 1rem 0;
}

.box:hover {
  box-shadow: 0 0 1rem #000636;
  transform: scale(1.02);
}

.container_details_equipment {
  width: 90vw;
}

.row_container {
  display: flex;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.column_container {
  width: 33.3%;
  display: flex;
}

.column_container:nth-child(1),
.column_container:nth-child(2) {
  align-items: center;
  justify-content: center;
}

.column_container:nth-child(2) {
  border-right: 1px solid #b1adad;
  border-left: 1px solid #b1adad;
}

.column_container:nth-child(3) {
  flex-direction: column;
}

.column_container:nth-child(1) > h3 {
  font-size: 3rem;
  font-weight: bold;
  color: #000636;
}

.column_container:nth-child(2) > img {
  width: 90%;
}

.column_container:nth-child(3) > h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.list_characteristics {
  cursor: pointer;
  list-style: none;
}

.list_characteristics li {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.container_return_back {
  display: flex;
  justify-content: center;
}

.container_return_back i {
  font-size: 4rem;
  color: #005e5d;
  cursor: pointer;
  margin-bottom: 3rem;
}

.container_modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(144, 148, 150, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.content_modal {
  width: 100%;
  max-width: 62rem;
  padding: 20px;
  background-color: #fff;
  border-radius: 4px;
  height: auto;
  max-height: 85vh;
  overflow-y: auto;
}
.content_modal h3 {
  font-size: 2.3rem;
  color: #005e5d;
  margin-bottom: 15px;
  text-align: center;
}

.content_modal p {
  font-size: 1.6rem;
  padding: 15px 0px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  font-family: "Inter", sans-serif;
}

.container_btn_cerrar {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.cerrar_modal {
  padding: 10px 35px;
  background-color: #000636;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 1.6rem;
}
.cerrar_modal:hover {
  background-color: #26328a;
}

.withoutPointer {
  cursor: auto;
}
.text_center {
  display: flex;
  justify-content: center;
}

.btn_see_more {
  width: fit-content;
  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;
}

.list_characteristics_manuals {
  list-style: none;
  margin-left: 2rem;
}

.list_characteristics_manuals li {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.list_characteristics_manuals li i {
  color: #c90808;
  font-size: 3rem;
  margin-right: 1rem;
  cursor: pointer;
}

.text_description {
  justify-content: center;
  padding: 0rem 2rem;
}

.text_description p {
  font-size: 1.6rem;
}

.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: 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;
    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;
  }

  @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;
  }

  .box_container {
    width: 85vw;
    grid-template-columns: repeat(2, 1fr);
  }

  .row_container {
    flex-direction: column;
  }

  .column_container {
    width: 100%;
  }

  .column_container:nth-child(1) {
    margin: 2rem 0rem;
  }

  .column_container:nth-child(3) {
    margin: 1rem 0rem;
  }

  .column_container:nth-child(2) {
    border: none;
    border-bottom: 1px solid #b1adad;
    border-top: 1px solid #b1adad;
  }

  .column_container:nth-child(2) > img {
    width: 25rem;
  }
}

@media (max-width: 644px) {
  .box_container {
    width: 80vw;
    grid-template-columns: repeat(1, 1fr);
  }

  .box_container {
    margin-bottom: 2rem;
  }

  .sect_equipments h2 {
    font-size: 2rem;
    padding: 1.5rem 0rem;
  }

  .box img {
    height: auto;
  }

  .box h5 {
    font-size: 1.6rem;
  }

  .container_return_back i {
    margin-bottom: 1rem;
  }

  .content_modal {
    max-width: 90vw;
  }

  .content_modal h3 {
    font-size: 1.8rem;
  }

  .content_modal p {
    font-size: 1.4rem;
  }

  .column_container:nth-child(1) > h3 {
    font-size: 2.2rem;
  }

  .list_characteristics li {
    font-size: 1.4rem;
  }
}

@media (max-width: 425px) {
  .box_container {
    width: 90vw;
  }

  .box_container {
    margin-bottom: 1rem;
  }

  .container_return_back i {
    font-size: 3rem;
  }

  .content_modal {
    max-width: 94vw;
  }

  .column_container:nth-child(1) > h3 {
    font-size: 1.9rem;
  }

  .column_container:nth-child(1) {
    margin: 1.3rem 0rem;
  }

  .column_container:nth-child(3) > h4 {
    font-size: 1.6rem;
  }

  .list_characteristics li {
    font-size: 1.3rem;
  }
}

@media (min-width: 1660px) {
  .box_container {
    width: 137rem;
    grid-template-columns: repeat(5, 1fr);
  }
}
