.contentcntnr {
    display: flex;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
  }
  .main-content {
    flex: 2;
    padding-right: 20px;
    width: 100%;

  }


  .main-content p {
    line-height: 22px;
    font-size: 18px;
    word-spacing: 5px;
  }

  .sidebar {
    flex: 1;
    width: 20%;
    border-radius: 25px;
    
    height: max-content;


  }

  .sidebar section .image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
  }

  .sidebar section img {
    display: block;
    width: 100%;
    height: auto;
  }

  .sidebar section h1 {

    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 5px;


  }


  .main-content .section {
    border: 1px #4444 solid;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    margin-bottom: 30px;
  }

  .logohere {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 220px;
    padding: 20px 0;
  }

  .logohere img {
    max-width: 100px;
    height: auto;
  }

  .logohere a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
  }

  .logohere a:hover {
    text-decoration: underline;
  }

  .visitbtn {
    margin-top: 35px;
    background-color: #2f3157;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
  }


  .texthere {
    flex: 1;
  }




  @media (max-width: 768px) {
    /* * {
      overflow-x: hidden;
    } */

    .contentcntnr {
      flex-direction: column;
      width: 90%;
      padding: 10px;
    }

    .main-content {
      padding-right: 0;
    }

    .sidebar {
      width: 95%;
      margin-top: 20px;
    }

    .main-content .section {
      flex-direction: column;

    }

    .logohere {
      min-height: auto;

    }

    .visitbtn {
      margin-top: 20px;
      text-align: center;

    }

    .main-content p {
      font-size: 16px;
      line-height: 1.6;
    }
  }