@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  /*box-sizing: border-box;*/
  font-family: "Montserrat", sans-serif;
}
.MainCover
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /*background-image:  linear-gradient(to right, #151618, #778399);*/
    
    z-index: 13;

    color: #DBDADA;
  padding: 20px 30px;
  cursor: pointer;
  text-align: center;
  font-size: 0.85rem;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);

}

.MainCover .slide-title
{
    color: aliceblue;
    position: absolute;
    top:200px;
    
    font-size: 1.5rem;
  font-weight: 700;
  margin-top: 5px;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(60%);
  z-index: 100000; 

}

.CoverImg
{
    content: "";
  position: relative;
  display: flex;
  left: 0;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%);  
  background-size: cover;
  background-position: center;
  z-index: -1;
 
}

.MainSec
{
    margin-top: 0;   
    overflow: hidden;
    padding: 10 10 10 10;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  
}

.MainSec div
{
  padding: 30px 30px 30px 30px;
  min-width: 50%;
}



.ContentDiv
{
    background-color:transparent;
    max-width: 50%;
    overflow: auto;
    padding: auto;
}

.ImgDiv
{
    background-color: transparent;
    max-width: 50%;
    overflow: auto;
    padding: auto;
   
}

@media (min-width: 350px) {
  .MainSec {
    flex-direction: column; /* Aligns items horizontally side-by-side */
  }

  .MainSec div {
    max-width: 100%;
}

.ContentDiv {
    max-width: 100%;
}
}

@media (min-width: 700px) {
  .MainSec {
    flex-direction: row; /* Aligns items horizontally side-by-side */
  }

  .MainSec div {
    max-width: 50%;
}

.ContentDiv {
    max-width: 50%;
}
}




.MainSec div img {
    width: 100%;
    height: auto;
    text-align: center;
    border-radius: 10px;  
    
}

.MainSec div h2{
    font-family: "Montserrat", sans-serif;
	font-size: 1.7rem;
    font-style:bold;
    color:#031736;
    ;
}

.MainSec div p{
    padding-top: 20px;
}