/* Float two columns side by side */
.jc-listing {
    list-style: none;
    margin: 2em;
    display: grid;
    gap: 20px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    text-align: justify;
    margin-left: -37%;
  }
  .jc-listing li {
    display: flex;
    flex-direction: column;
  }
  .jc-listing .jc-cta {
    margin-block-start: auto;
    border-block-start: 1px solid #c0c0bf;
    padding: 10px;
    text-align: center;
  }
  .jc-listing .jc-body {
    padding: 10px;
  }
  .jc-listing .jc-wide {
    grid-column-end: span 2;
    align-content:space-between;
  }
  
/* Fit content(1000px) */
  .grid {
    display: grid;
    grid-template-columns: fit-content(1000px);
    place-content: center;
    font-size: 15px;
    text-align: justify;
    color: rgb(78, 77, 77);
  }
  .grid h4{
    padding-top: 20px;
    padding-bottom: 20px;
  } 

/* Set content(Center) */
  .containerjc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
  }

  /* Wrap Image with text */
  div.wrapper-1{
    float:right; /* important */
    position:relative; /* important(so we can absolutely position the description div */
  }
  div.description-1{
    position:absolute; /* absolute position (so we can position it where we want)*/
    bottom:45px; /* position will be on bottom */
    left:30px;
    right: 30px; ;
    width:auto;
    /* styling bellow */
    opacity:0.9; /* transparency */
    background-color: rgba(0, 0, 0, 0.486);
    color:rgb(255, 255, 255);
    filter:alpha(opacity=50); /* IE transparency */
    border-radius: 10px 10px 10px 10px;
  }
  p.description-1_content{
    padding:10px;
    margin:0px;
    font-size: 12px;
  }

  /* Top Centent with text */
  .top-bck {
    box-sizing: inherit; 
    border-radius: 10px; 
    margin-bottom: 100px; 
    margin-left: -100px; 
    margin-right: -100px; 
    padding: 50px 100px; 
    background: rgb(245, 246, 246); 
    color: rgba(28, 9, 80, 0.75); 
    font-size: 20px;
  }

  /* Top Centent black backgroung with text */
  .top-bck-b {
    box-sizing: inherit; 
    border-radius: 10px; 
    margin-bottom: 100px; 
    margin-left: -100px; 
    margin-right: -100px; 
    padding: 50px 100px; 
    background: rgb(58, 58, 58); 
    color: rgba(255, 255, 255, 0.75); 
    font-size: 20px;
  }
  .top-bck-b-text-dec {
    display: grid;
    grid-template-columns: fit-content(800px);
    place-content: center;
    font-size: 12px;
    text-align: justify;
    margin-left: 10px;
    color: rgb(255, 255, 255)
  }
  .top-bck-b-h-bck {
    box-sizing: inherit; 
    margin-right: 0px; 
    margin-bottom: 30px; 
    margin-left: 0px; 
    padding: 0px; 
    border: 0px; 
    text-align: center;
    font-size: 35px; 
    font-style: inherit; 
    font-weight: 700; 
    outline: 0px; 
    vertical-align: baseline; 
    color: rgb(255, 255, 255); 
    line-height: 40px; 
  }

/* Link with no underline */
  a {
    text-decoration: none;
  }

  /* Caption text */
  .row:after {
    content: "";
    display: table;
    clear: both
  }
  .caption-text {
    display: block;
  }
  div.text-under {
    vertical-align: top;
    display: inline-block;
    text-align: justify;
    padding-left: 10px;
    width: auto;
  }
  .text-dec {
    display: grid;
    grid-template-columns: fit-content(800px);
    place-content: center;
    font-size: 12px;
    text-align: justify;
    margin-left: 10px;
    color: rgb(78, 77, 77);
  }
  .text-dec-jc {
    font-size: 12px;
    text-align: justify;
  }
  
  /* Table */
  table {
    border-collapse: collapse;
    border-spacing: 0px;
    width: 100%;
    border: 1px solid #ddd;
  }
  th, td {
    text-align: right;
    padding: 8px;
  }


  /* begin of two equal columns */
  .container-two-columns {
    padding: 15px;
  }

  /* Responsive content */
  @media screen and (max-width: 1000px) {
    div.wrapper-1{
      float:right; /* important */
      position:relative; /* important(so we can absolutely position the description div */
    }
    div.description-1 {
      position:static;
      opacity:0.9; /* transparency */
      background-color:transparent;
      color:rgb(0, 0, 0);
    }
    img {
      margin: auto;
    }

    .jc-listing .jc-wide{
      padding-left: 10%;
    }
    
  }