@import url(../../css/font.css);
@import url(../../css/init.css);
@import url(../../css/vars.css);
@import url(../../css/srgntopbar.css);
@import url(../../css/srgnmenu.css);
@import url(../../css/srgnfooter.css);
@import url(../../css/pageheader.css);

.headerarea{
    background-image: url(../../image/cbgrd.png);
}

.vismiscnt{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}
.a-box {
    display: inline-block;
    flex-basis: 30%;
    min-width: 240px;
    text-align: center;
  }
  
  .img-container {
      height: 230px;
      width: 200px;
      overflow: hidden;
      border-radius: 0px 0px 20px 20px;
      display: inline-block;
  }
  
  .img-container img {
    width: 150px;
margin: 2rem auto;
      transform: skew(0deg, -13deg);    
  }
  
  .inner-skew {
      display: inline-block;
      border-radius: 20px;
      overflow: hidden;
      padding: 0px;
      transform: skew(0deg, 13deg);
      font-size: 0px;
      margin: 30px 0px 0px 0px;
      background: #c8c2c2;
      height: 250px;
      width: 200px;
  }
  
  .text-container {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    padding: 120px 20px 20px 20px;
    border-radius: 20px;
    background: #fff;
    margin: -120px 0px 0px 0px;
    line-height: 1.6rem;
    font-size: 1.5rem;
    text-align: justify;
  }
  
  .text-container h3 {
    font-family: 'Fahkwang-Medium', 'Courier New', Courier, monospace;
    margin: 20px 0px 10px 0px;
    color: #04bcff;
    font-size: 2rem;
  }

  .text-container p {
    font-family: 'Fahkwang-Regular', 'Courier New', Courier, monospace;
    margin: 20px 0px 10px 0px;
    color: rgb(78, 67, 67);
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .backgrd{
    width: 80%;
    margin: 2rem auto;
    background-color: #e8e3e3;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  }

  .backgrd p{
    font-family: 'Fahkwang-Regular', 'Courier New', Courier, monospace;
    font-size: 1rem;
    line-height: 1.2rem;
    width: 100%;
    padding: 2rem;
    columns: 3;
    column-gap: 2rem;
    color: rgb(78, 67, 67);
    text-align: justify;
  }

  @media screen and (max-width:1000px) {
    .a-box{
        flex-basis: 50%;
    }
  }

  @media screen and (max-width:800px) {
    .a-box{
        flex-basis: 80%;
    }
    .backgrd p{
        columns: 2;
    }
  }

  @media screen and (max-width:500px) {
    .a-box{
        flex-basis: 90%;
    }

    .backgrd p{
        columns: 1;
    }
  }