/*mobile*/  
@media only screen and (max-width: 1024px) {
section#divider {
  /* background-image: url(Images/homepage-background.png); */
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: cover;
  background-position: top center;
  background-position: top;
  
  height: 100%;
   min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  }
    
  .text-holder{
  
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #000;
  /* background-color: #000000; */
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: auto;
  }
    
  button{
    text-decoration: none;
    background-color: red;
    border-radius: 2rem;
    border-style: none;
  
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
    padding: .9rem;
    width: 9rem;
    margin: .5rem;
    text-align: center;
    transition: 0.3s;
    }
    
 }
  @media (min-width: 1025px) {    

  .container-fluid{
    display: flex;
    flex-direction: column;
    height: 100dvh;
    min-height: 100dvh;
    
}
    
    
.text-holder{
  color: #fff;
  max-width: 100%;
  width: 1100px;
  height: 100%;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  margin: auto;
  position: fixed;
  padding-left: 2rem;
  padding-right: 2rem;
  
  

}
      
 .text{ 
 color: #000;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2rem;
  
  }
  
  section#divider {
     width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
 
    }

    .btn-section{  
      display: flex;
      justify-content: center;
      padding-bottom: 2rem;
      flex-direction: column;
      align-items: center;
      margin-top: -2rem;
  }
  

    .btn-container{  
      display: flex;
      justify-content: center;
      padding-bottom: 2rem;
      flex-direction: row;
      align-items: center;
  }
  
      button{
      text-decoration: none;
      background-color: red;
      border-radius: 2rem;
      border-style: none;
    
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1rem;
      line-height: 2rem;
      text-align: left;
      padding: .9rem;
      width: 10rem;
      margin: .5rem;
      text-align: center;
      transition: 0.3s;
      }


  
      button:hover{
          background-color: #333333;
          color:#fff;
          transition: 0.3s;
          transform: scale(0.9);
          box-shadow: 0 12px 16px 0 rgb(0 0 0 /24%), 0 17px 50px 0 rgb(0 0 0 /19%);
          cursor: pointer;
      }

  }