.pg_faq_row {
    display: flex;
    justify-content: left;
	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
	.pg_faq_row {
		justify-content: center;
	}
}


.pg_faq {
  margin: 120px 0;
}
@media screen and (max-width: 992px) {
  .pg_faq {
    margin: 40px 0;
  }
}

.pg_faq_row .item {
  margin: 0 23px 0 0;
  border: 1px solid #000000;
  border-radius: 22px;
  padding: 36px 42px;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 100px 30px 1fr;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
/*  max-width: 754px;*/
  max-width: 48%;
}
@media screen and (max-width: 992px) {
  .pg_faq_row .item {
    max-width: 280px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px 13px;
    gap: 20px;
    margin: 0 5px;
  }
}
.pg_faq_row .item.slick-center {
  border: 1px solid #3EC5D9;
}
.pg_faq_row .img {
  border-radius: 50%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .pg_faq_row .img {
    margin: 0 auto;
  }
}
.pg_faq_row .faq_name {
  color: #3EC5D9;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px;
}
@media screen and (max-width: 992px) {
  .pg_faq_row .faq_name {
    font-size: 18px;
    text-align: center;
    margin: 0 0 20px;
  }
  .pg_faq_row .faq_name br {
    display: none;
  }
}
.pg_faq_row .faq_title {
  margin: 0 0 18px;
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  .pg_faq_row .faq_title {
    font-size: 16px;
    margin: 0 0 20px;
  }
}
.pg_faq_row .faq_text {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  .pg_faq_row .faq_text {
    font-size: 14px;
  }
}


.pg_faq .slick-slide img {
  width: 100px;
}

.pg_faq .slick-arrow {
 /* display:none !important;*/
    top: 50%;
}
.pg_faq .slick-prev.slick-arrow {
	left:-55px;
}
.pg_faq .slick-next.slick-arrow {
	right:-35px;
}

@media screen and (max-width: 768px) {
  .pg_faq .slick-next.slick-arrow {
    display: inline-block !important;
    top: 50%;
    right: 0;
  }
  .pg_faq .slick-prev.slick-arrow {
    display: inline-block !important;
    top: 50%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .pg_faq_row .item {
    /*  max-width: 100%;*/
	margin-bottom:15px;
  }



  .pg_faq_row .item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
  }

  .pg_faq_row .item.active {
    opacity: 1;
    visibility: visible;
	}

  .pg_faq_row .item.slick-active {
    visibility: visible;
    opacity: 1;    
  }
}