.pg_box {
  background: rgba(63, 165, 191, .16);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.pg_box_title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
.pg_box_info {
  display: flex;
  gap: 10px;
}
.pg_box_img {
 flex: 1;
  margin-bottom: 40px;
  margin-top: 10px;
  text-align: center;
}
.pg_box_img img {
  max-height: 150px;
  width: auto;
}
.pg_box_content {
  flex: 2;
}
.pg_box_btns {
  margin-bottom: 10px;
}
.pg_try.btn {
  padding: 0 !important;
  border-radius: 0 !important;
  transition: all ease .3s;
}
.btn.pg_info {
  transition: all ease .3s;
}
.pg_try a {
  background-color: #002738;
  color: #fff;
  border-radius: 20px;
  padding: 10px 30px 10px 20px !important;
  border: 2px solid #002738;
  margin: 10px 5px 0 0;
  position: relative;
}
.pg_try a:before {
  position: absolute;
  right: 12px;
  top: 13px;
  content: '';
  width: 10px;
  height: 10px;
  background: url('https://139603579.fs1.hubspotusercontent-eu1.net/hubfs/139603579/try-arrow.svg');
  background-repeat: no-repeat;
}
.pg_try a {
  color: #fff;
}
.pg_try a:hover {
  text-decoration: none;
}
.pg_info {
  border: #002738 2px solid;
  padding: 10px 30px 10px 20px !important;
  color: #002738;
  margin: 10px 0 0 0;
  border-radius: 20px;
  position: relative;
}
.pg_info:before {
  position: absolute;
  right: 12px;
  content: '';
  width: 10px;
  height: 10px;
  background: url('https://139603579.fs1.hubspotusercontent-eu1.net/hubfs/139603579/more-plus.svg');
  background-repeat: no-repeat;
}
.pg_info a:hover {
  text-decoration: none;
}
.popup-lg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
.popup-content-lg {
  max-width: 800px;
  width: 75vw;
  height: 80vh;
  max-height: 500px;
  overflow: hidden;
  padding: 20px 40px;
  background: #cee9ef;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
.popup-content-lg h3 {
  font-size: 22px;
}
.popup-content-lg p {
  padding: 0;
  margin-bottom: 10px;
}
     
.popup-close-lg {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  padding: 20px 20px 0px 0px;
  display: block;
  transition: transform ease .3s;
  color: #002738;
}
.popup-close-lg:hover {
   transform: scale(.9);
}
.popup-close-lg span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #002738;
}
.popup-close-lg span:nth-child(1) {
    transform: rotate(45deg);
}
.popup-close-lg span:nth-child(2) {
    transform: rotate(135deg);
}
.popup-desc-lg {
  display: flex;
  gap: 20px;
  height: 100%;
}
.popup-info-lg {
  width: 50%;
  text-align: left;
}
.popup-txt-btn-lg {
  margin-left: auto;
  position: absolute;
  right: 20px;
  bottom: 32px;
}
.popup-txt-btn-lg a {
  background-color: #002738;
  position: relative;
  color: #fff;
  border-radius: 20px;
  padding: 4px 35px 5px 20px;
  border: 2px solid #002738;
  display: block;
  width: fit-content;
  transition: all ease .3s;
}
.popup-txt-btn-lg a:after {
  position: absolute;
  right: 12px;
  top: 13px;
  content: '';
  width: 10px;
  height: 10px;
  background: url('https://139603579.fs1.hubspotusercontent-eu1.net/hubfs/139603579/try-arrow.svg');
  background-repeat: no-repeat;
}
.popup-txt-btn-lg a:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.popup-img-btn-lg {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  margin-bottom: 100px;
}
.popup-desc-img {
  display: flex;
  align-items: center; 
  justify-content: center;
}
.popup-desc-img img {
  width: auto;
  max-width: 100%;
  max-height: 100%; 
  max-height: 300px;
  border-radius: 10px;
  padding: 20px;
}

//scroll bar
.popup-txt-lg::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: transparent;
  border: 3px solid transparent;
  margin-top: 10px;
  margin-bottom: 10px; 
  margin-right: 10px;
}

.popup-txt-lg::-webkit-scrollbar
{
  width: 3px;
  background-color: #F5F5F5;
  border-radius: 10px;
  margin: 10px 10px 10px 0;
}

.popup-txt-lg::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #cee9ef;
}

@-moz-document url-prefix() {
  .popup-txt-lg {
    scrollbar-width: thin;
    scrollbar-color: #cee9ef transparent;
  } 
}

.popup-txt-lg {
  max-height: 400px;
  height: calc(100% - 65px);
  overflow-y: auto;
  background: #fff;
  margin-left: -40px;
  padding: 15px;
  border-radius: 0 20px 20px 0;
  border: 15px solid #fff;
}
.popup-txt-lg ul, 
.popup-txt-lg ol {
  padding: 0;
  margin: 10px 0 10px 17px;
  font-weight: normal;
}
.popup-txt-lg a {
  color: #008fac;
  transition: color linear .3s;
}
.popup-txt-lg a:hover {
  color: #002738;
  text-decoration: none;
}

 /*media queries */
@media screen and (max-width: 500px) {
  .pg_box {
    margin-bottom: 10px;
  }
  .popup-content-lg {
    overflow: scroll;
    padding: 20px;
  }
  .popup-desc-lg {
    flex-wrap: wrap;
  }
  .popup-info-lg, .popup-img-btn-lg {
    width: 100%;
  }
  .popup-txt-lg {
    max-height: 240px;
    height: auto;
    margin-left: 0;
    border-radius: 20px;
  }
  .popup-img-btn-lg {
    margin-bottom: 0;
    justify-content: unset;
  }
}

@media only screen and (max-width: 1100px) and (min-width: 768px)  {
  .pg_box_info {
    flex-direction: column;
  }
  .pg_box_content {
    text-align: center;
  }
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
