.divider{
    /* min-height: 100vh; */
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: -1;
}

.divider-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}

.divider-bkg{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: scale(.9);
    transform-origin: center;
}

.divider-bkg img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.divider-content{
    width: 100%;
    padding-top: 25vh;
    padding-bottom: 15vh;
    color: var(--white);
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.divider-content p {
    width: 100%;
    max-width: 50vw;
}

.divider-left .divider-bkg{
    width: 200%;
}

.divider-right .divider-bkg{
    width: 200%;
    left: auto;
    right: 0;
}

.divider-left,
.divider-right{
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.divider-btn{
    position: absolute;
    bottom: 15%;
    z-index: 10;
}

.divider-left .divider-content{
  padding-left: 15vw;
  padding-right: 5vw;
}
.divider-right .divider-content{
  padding-left: 5vw;
  padding-right: 15vw;
}

.single-btn-divider{
  position: relative;
  bottom: 0;
}



/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {



}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

  .divider-content p{
    max-width: 60vw;
  }

}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

  .divider-content p{
    max-width: 60vw;
  }

}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

  .divider-content p{
    max-width: 60vw;
  }

}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {


}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

   .divider-container{
       flex-direction: column;
   }

   .divider-left, .divider-right,
   .divider-left .divider-bkg,
   .divider-right .divider-bkg{
       width: 100%;
   }

   .divider-left .divider-content,
   .divider-right .divider-content{
    padding-left: 15px;
    padding-right: 15px;
    margin: 15px 0;
   }

   .divider-content {
    padding: 0px 15px;
    min-height: auto;
  }

   .divider-btn{
     bottom: -5em;
   }
}
