.popup_wrap input {
  display: none;
}
.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #2e2e2e;
  opacity: 0.5;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popup_content {
  position: relative;
  align-self: center;
  width: 75%;
  max-width: 80%;
  max-height: 80%;
  box-sizing: border-box;
  background: #fff;
  transition: 0.5s;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(94, 94, 94, 0.7);
  padding: 30px 20px 5px 20px;
  overflow: auto; 
}
.popup_content p{
  padding: 0px 20px 0px 30px;
    font-size: medium;
}
.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
  color:#37beb0;
}
.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.open_btn {
    color: #ffffff;
    cursor: pointer;
    transition: .3s ease;
    font-size: 12px;
}
.open_btn:hover{
    color: #00bce1;
    transition-duration: 0.3s;
}
.modalMain {
  padding: 5px 0px 0px 0px;

}
.group {
  padding: 20px 0px 20px 0px;
}
.group_title {
  text-align: center;
  color: #00bce1;
  font-size: 42px;
  line-height: 62px;
  letter-spacing: 0.25em;
}
.group_sub_title {
  font-weight: 500;
  font-feature-settings: "palt";
  font-size: 20px;
}
.broup_button {
  color: #fff;
  font-size: 18px;
  text-align: center;
  
  background-repeat: no-repeat;
  background-size: auto 25px;
  background-position: left 80px top 26px;
  display: block;
  width: 150px;
  background-color: #00bce1;
  margin-left: auto;
  margin-right: auto;
  border-radius: 300px;
  transition-duration: 0.2s;

}