
/* Popup Window Styles */
 .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: none;
    z-index: 99999999;
  }

  /* Overlay Styles */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }

.blog-section {
    padding-bottom: 1.5rem;
}


.human-body-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding: 0 5%;
    margin-bottom: 3rem;
    position: relative;
}

.human-body {
    width: 20%;
    height: 100%;
    position: relative;
    display: block;
}

.human-body svg:hover {
    cursor: pointer;
}

.human-body svg:hover path {
    fill: #7f2274;
}

.human-body svg {
    position: absolute;
    left: 50%;
    fill: #46c0f0;
}

.human-body svg#head {
    margin-left: -28.5px;
    top: 16px;
}

.human-body svg#left-shoulder {
    margin-left: -53.5px;
    top: 99px;
  }
  
 

.human-body svg#right-shoulder {
    margin-left: 13.5px;
    top: 99px;
}

.human-body svg#left-arm {
    margin-left: -78px;
    top: 142px;
}

.human-body svg#right-arm {
    margin-left: 38px;
    top: 142px;
    /* z-index: 10001; */
}

.human-body svg#chest {
    margin-left: -43.5px;
    top: 118px;
    animation: flashing 1s infinite;
}
@keyframes flashing {
    0% {
      fill: #7f2274;
    }
    50% {
        fill: #46c0f0; /* Change to your desired second color */
    }
    100% {
      fill: #7f2274;
    }
  }

.human-body svg#stomach {
    margin-left: -37.5px;
    top: 160px;
}

.human-body svg#left-leg {
    margin-left: -46.5px;
    top: 235px;
    /* z-index: 9999; */
}

.human-body svg#right-leg {
    margin-left: 1.5px;
    top: 235px;
    /* z-index: 9999; */
}

.human-body svg#left-hand {
    margin-left: -102.5px;
    top: 254px;
}

.human-body svg#right-hand {
    margin-left: 66.5px;
    top: 254px;
    /* z-index: 10000; */
}

.human-body svg#left-foot {
    margin-left: -35.5px;
    top: 485px;
}

.human-body svg#right-foot {
    margin-left: 5.5px;
    top: 485px;
}

/* #area {
    display: block;
    width: 80%;
    clear: both;
    padding: 10px;
    text-align: center;
    font-size: 25px;
    font-family: Courier New;
    color: #a5a5a5;
} */
#area {
    display: block;
    width: 20%;
    clear: both;
    padding: 10px;
    text-align: -webkit-right;
    font-size: 25px;
    font-family: Courier New;
    color: #a5a5a5;
}

#area #data {
    color: black;
}

#area a {
    flex-direction: column;
    padding: 0 2rem;
    max-width: unset;
}

/* #area a .icon {
    width: 100%;
    height: 20rem;
    margin: 2rem 0;
    box-shadow: 5px 5px 10px 3px #ddd;
} */

#area a .icon {
    width: 100%;
    /* height: 20rem; */
    margin: 2rem 0;
    /* box-shadow: 5px 5px 10px 3px #ddd; */
text-align: -webkit-center;
}


#area a .icon img {
    width: 30%;
}

/* #area .content {
    width: 100%;
    padding-bottom: 2rem;
} */
#area .content {
    width: 100%;
    padding-bottom: 2rem;
}

.btn-container {
    display: none;
    text-align: center;
    margin: 1rem auto;
}

.btn-close {
    width: 100%;
    padding: 1rem;
    background-color: #57c9d5;
    color: #fff;
    transition: .3s;
}

.btn-close:hover {
    background-color: #7f2274;
    color: #fff;
    transition: .3s;
}


@media (max-width: 1000px) {
    /* .human-body-container {
        min-height: 100vh;
    } */

    #area {
        display: none;
        position: absolute;
        z-index: 10005;
        background-color: #fff;
    }

    #area .icon img {
        height: 100%;
    }

    .btn-container {
        display: block;
    }

    
 /* .popup {
    
    display: none;
    
  }

 
  .overlay {
    
    display: none;
  } */
}

.blog-item .content .title {
    font-size: 21px;
    text-transform: capitalize;
    color: #25aae1;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    background-color: aliceblue;
    border-radius: 60px;
    padding: 50px 0 30px 0px;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
  /* color: #fff; */
  font-family: 'Rubik', sans-serif;
  }
  
  .section-borders span {
    height: 5px;
    background: #46c0f0;
    width: 40px;
    display: inline-block;
    border-radius: 2px;
  }
  
  .section-borders span.black-border {
    background: #7f2274;
    width: 30px;
    margin: 0 6px;
  
  }
  
  .blog-section {
    padding: 150px 0;
   /* min-height: 100vh;*/
  }
  
  .blog-section img {
      width: 100%;
      vertical-align: middle;
    
  }
  
  .blog-item img {
    display: block;
  }
  
  .blog-item a {
      display: flex;
      padding: 50px;
      overflow: hidden;
      align-items: center;
      max-width: 1000px;
      margin: auto;
      color: #333;
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      border-radius: 6px;
      margin-bottom: 50px;
      text-decoration: none;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      text-align: right;
  }
  
  .blog-item a:hover {
      box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.2);
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
  }
  
  .blog-item .icon {
      width: 35%;
      object-fit: cover;
      margin-right: 50px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 15px 26px rgba(0, 0, 0, 0.4);
  }
  
  .blog-item .content {
      width: 65%;
  }
  
  .blog-item .content .title {
      font-size: 21px;
      text-transform: capitalize;
      color: #25aae1;
      font-weight: 600;
      font-family: 'Lato', sans-serif;
  }
  
  
  
  .blog-item .content .title .blog-date {
      font-size: 12px;
      margin-left: 20px;
      color: #333;
      font-family: 'Lato', sans-serif;
  }
  
  .blog-item .content .title .blog-date:before {
      content: '/';
      color: #2bb673;
      font-size: 25px;
      top: auto;
      position: relative;
      margin-right: 10px;
  }
  
  .blog-item .content .rounded {
      margin-left: 0;
      margin-top: 10px;
      margin-bottom: 10px;
  }
  
  .blog-item .item-arrow {
      height: 20px;
      width: 15%;
      position: relative;
      text-align: center;
      font-size: 35px;
      left: 0;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
  }
  
  .blog-item a:hover > .item-arrow {
      /*padding-left: 40px;*/
      color: #25aae1;
      left: 30px;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
  }
  
  .rounded {
      width: 70px;
      height: 5px;
      border-radius: 6px;
      background-image: linear-gradient(to right, #46c0f0, #7f2274);
      /* background: #2bb769; */
      margin-left: 0;
      margin-top: 10px;
      margin-bottom: 10px;
  }
  
  @media screen and (max-width: 768px){
  
      .blog-item .content {
          width: 100%;
          margin-top: 35px;
      }
  
      .blog-item .content .title {
          font-size: 18px;
      }
  
      .blog-item .item-arrow {
          margin: auto;
      }
  
      .blog-item .icon {
          width: 100%;
      }
  
      .blog-item .icon img {
          width: 100%;
          height: 150px;
          object-fit: cover;
      }
  
      .blog-item {
          width: 92%;
          margin: auto;
      }
  
      .blog-item a {
          display: block;
          padding: 30px;
      }
  
  }
  