.img-txt {
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  .photo,
  .content {
    display: table-cell;
    vertical-align: middle;
  }
  .photo {
    width: 124px;
    height: 124px;
      }
  .photo img {
    max-width: 100%;
    height: 100%;
  }
  .content {
    width: 80%;
    padding: 40px;
  }
/*  */
  .img-txt2 {
    width: 100%;
    display: table;
    table-layout: fixed;
     margin: 0 -20px;
  }
  .photo2,
  .content2 {
    display: table-cell;
    vertical-align: middle;
     /* margin: 0 -20px; */
     
  }
  .photo2 {
    width: 124px;
    height: 124px;
    padding-bottom: 170px;
    
      }
  .photo img2 {
    max-width: 100%;
    height: 100%;
  }
  .content2 {
    width: 80%;
    padding: 120px;
      /* margin: 0 -50px; */
  }
/*  */
  .center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }

  .bgbbg {
    border: 2px dotted rgb(96, 139, 168);
    width: 500px;
  }
.box2 {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .box2>* {
    flex: 1 1 160px;
  }
/*  */
  .title-line2 {
    position: relative; /* important for absolute child to work */
    font-family: lato;
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 1em;
    text-align: left;
  }
  .title-line2::after {
    content: ''; /* required to display pseudo elements */
    height: 5px; /* this works like a border-width */
    width: 50px; /* you can use a percentage of parent or fixed px value */
    background: #27AE60; /* the color of border */
    position: absolute;
    bottom: 0; /* position it at the bottom of parent */
    margin: 2 auto; left: 0; right: 0; /* horizontal centering */
  }
  .center-img2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }

  .button {
    font-size: 1em;
    padding: 10px;
    color: #fff;
    border: 2px solid #06D85F;
    border-radius: 20px/50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
  }
  .button:hover {
    background: #06D85F;
  }
  /*  */
  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  
  .popup {
    margin: 120px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 5px;
    width: 80%;
    height: 70%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  
  .popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: #06D85F;
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }
  
  @media screen and (max-width: 700px){
    .box{
      width: 70%;
    }
    .popup{
      width: 70%;
    }
  }

  details>summary span.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
    margin-left: auto;
  }
  
  details[open] summary span.icon {
    transform: rotate(180deg);
  }
  
  summary {
    display: flex;
    cursor: pointer;
  }
  
  summary::-webkit-details-marker {
    display: none;
  }
    .accordion2{
      margin: 60px auto;
      width: 600px;
    }
    .accordion2 li{
      list-style: none;
      width: 100%;
      margin: 20px;
      padding: 10px;
      border-radius: 8px;
      background: #e3edf7;
      box-shadow: 6px 6px 10 px -1px rgba(0, 0, 0, 0.15),
                  -6px -6px 10 px -1px rgba(255, 255, 255, 0.7);
                  
    }
    .accordion2 li label{
      display: flex;
      align-items: center;
      padding: 10px;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
    }
    label::before{
      content: '+';
      margin-right: 10px;
      font-size: 24px;
      font-weight: 600;
    }
    input[type="radio"]{
      display: none;
    }
    .accordion2 .content2{
      color: #555;
      padding: 0 10px;
      line-height: 0;
      overflow: hidden;
      transition: max-height 0.5s, padding 0.5s;
    }
  .accordion2 input[type="radio"]:checked + label + .content2{
    max-height: 400px;
    padding: 10px 10px 20px;
  }
  .accordion2 input[type="radio"]:checked + label::before{
    content: '-';
  }