#BOTTOM {
  width: 120vh;
  height: 10vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.line {
  position: relative;
  width: 110vh;
  height: 3px;
  background-color: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.line p {
  width: max-content;
  padding: 10px;
  height: max-content;
  text-align: center;
  background-color:  var(--bcg-color);
  font-family: "poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
}

/* MEDIA QUERIES  */

/* LARGE DISPLAYS  */
@media screen and (min-width: 2570px) {
}
/*......................... LAPTOP DISPLAYS ...............  */
@media screen and (min-width: 930px) and (max-width: 1440px) {
  #BOTTOM {
    width: max-content;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .line {
    position: relative;
    width: max-content;
    padding: 0px 250px 0px 250px;
    height: 3px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .line p {
    width: max-content;
    padding: 10px;
    height: max-content;
    text-align: center;
    
    font-family: "poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
  }
}
/* MOBILE PHONES  DISPLAYS  */
@media screen and (min-width: 770px) and (max-width: 929px) {
  #BOTTOM {
    width: max-content;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .line {
    position: relative;
    width: max-content;
    padding: 0px 170px 0px 170px;
    height: 2px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .line p {
    width: max-content;
    padding: 10px;
    height: max-content;
    text-align: center;
    font-family: "poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
  }
}

/* MOBILE PHONES  DISPLAYS  */
@media screen and (min-width: 320px) and (max-width: 769px) {
  #BOTTOM {
    width: max-content;
    height: max-content;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .line {
    position: relative;
    width: max-content;
    padding: 0px 40px 0px 40px;
    height: 4px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .line p {
    width: max-content;
    padding: 10px;
    height: max-content;
    text-align: center;
    font-family: "poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
  }
}
