* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  
  .banner {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url("../pictures/unnamed.jpg");
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    align-items: center;
    align-self: center;
    align-content: center;
    padding: 10px 60px;
  }
  
  .banner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }
  
  .banner-cont {
    position: absolute;
    align-items: center;
    align-self: center;
    align-content: center;
    text-align: left;
    color: #fff;
    margin: 0px;
    margin-top: -100px;
    padding: 0px;
    z-index: 2;
  }
  
  .box {
    width: 100%;
    height: 20rem;
    border-radius: 50px;
    display: flex;
    position: relative;
    overflow: hidden;
    border: 2px dotted #85ca03;
  }
  
  .text-box {
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    align-self: center;
    align-content: center;
  }
  
  .text-box i {
    color: #096c56;
    font-size: 60px;
  }
  
  .descrip-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 23rem;
    left: 0px;
    text-align: justify;
    align-content: center;
    color: #fff;
    transition: all 0.5s;
    z-index: 2;
  }
  
  .descrip-cont {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .text-desc {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 20px 40px;
    z-index: 2;
  }
  
  .descrip-cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .descrip-cont ::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
  }
  
  .box:hover .descrip-box {
    top: 0px;
    transition: all 0.5s;
  }
  
  @media (max-width: 800px) {
    .nav_container::before {
      width: 50vw;
      height: 60vh;
      top: -40px;
      left: 0px;
    }
  }
  
  @media (max-width: 799px) {
    .nav_container::before {
      width: 65vw;
      height: 25vh;
      top: -20px;
      left: 0px;
    }
    .banner {
      padding: 0px;
    }
  
    .banner-cont {
      padding: 15px;
    }
  }
  