

#area{
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  #area.bg::before{
    content: ""; 
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300%;
    height: 100%;
    background-image: url('../images/path.png'); 
    background-size: cover;
    transform: rotate(180deg);
    background-repeat: no-repeat;
    z-index: -1;
}

#area.bg::after{
  content: ""; 
  position: absolute;
  top: -20%;
  left: -50%;
  width: 250%;
  height: 150%;
  background-image: url('../images/path.png'); 
  background-size: cover;
  transform: rotate(10deg);
  background-repeat: no-repeat;
  z-index: -1;
}




  #area .header{
    text-align: center;
    position: relative;
  }

  #area  .header h1{
    color: #192D5F;
    font-size: 40px;
    font-family: Montserrat;
  }

  #area .header::before{
    content: ""; 
    position: absolute;
    top: -80px;
    left: -100px;
    width: 800px;
    height: 150%;
    background-image: url('../images/titlehightlight.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    margin-bottom: 20px;
}

#area .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  #area  .image {
    text-align: center;
  }
  
  #area  .image img {
    max-width: 100%;
    height: 300px;
  }
  
  #area .image h2 {
    margin: 10px 0;
  }


  .desc{
    max-width: 800px;
    margin-top: 50px;
    text-align: center;
    font-weight: bold;
    padding: 0px 30px;
  }


  .flex-row {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    gap: 5;
  }
  .flex-col {
    display: flex;
    flex-direction: column;
    gap: 5;
  }
  .row-1,
  .row-2 {
    width: 280px;
    margin: 25px;
  }
  .row-1 {
    height: 250px;
  }
  .row-2 {
    height: 200px;
  }
  .image {
    border-radius: 20px;
    width: 100%;
    height: 100%;
  }
  .content {
    text-align: center;
    padding: 20px 0;
  }
  .text {
    border: 1px dotted black;
    padding: 20px;
    width: 80%;
    font-weight: bold;
    height: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    margin-top: -13px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .col-2 .row-1 {
    height: 150px;
  }
  
  .col-2 .row-2 {
    height: 300px;
  }


  @media screen and (max-width:1024px) {
    #area.bg::before{
     display: none;
  }
  
  #area.bg::after{
    display: none;
  }

  #area{
    overflow-x: hidden;
  }

  #area .header::before{
    content: ""; 
    display: none;
    position: absolute;
    top: -80px;
    left: -20px;
    width: 300px;
    height: 150%;
    background-image: url('../images/titlehightlight.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    margin-bottom: 20px;
}


.bg .header::before{
  content: ""; 
  display: none;
  position: absolute;
  top: -80px;
  left: -30% !important;
  width: 300px;
  height: 150%;
  background-image: url('../images/titlehightlight.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  margin-bottom: 20px;
}


    }