@import url('https://fonts.googleapis.com/css2?family=Arizonia&display=swap');


.tab_title {
  font-family:'GmarketSansMedium','OneMobileTitle';
  font-size: 2.7rem;
  text-align: left;
  margin: 4rem 0 2rem 0;
}
@media (max-width: 767.98px) {
  .tab_title {
    padding: 0 5%;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.8rem;
  }
}

.sub_cont{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width:1200px;
  margin:0px auto; 
  padding: 6rem 1rem 10rem 1rem;
}
@media (max-width: 767.98px) {
  .sub_cont{
    padding:2rem 1rem 4rem 1rem;
  }
}


.blockmat_wrap{
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.blockmat_wrap .items{
  width: 100%;
  display: flex;
  justify-content:space-between;
  align-items: flex-end;
  gap: 6rem;
  padding: 0;
  margin: 0;
}
.blockmat_wrap .items .pic{
  width: 60%;
  max-width: 60%;
  overflow: hidden;
}
.blockmat_wrap .items .pic img {
  width: 100%;
  transition: all 0.3s;
}
.blockmat_wrap .items .pic img:hover {
  transform: scale(1.05);
}
.blockmat_wrap .items .text{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 40%;
  max-width: 40%;
  padding: 0;
  margin: 0;
}
.blockmat_wrap .items .text .title{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.blockmat_wrap .items .text .tt {
  position: relative;  
  font-family: "Arizonia", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: var(--color-point);
  letter-spacing: 2px;
  line-height: 0.9;
  padding: 0;
  margin: 0;
}
.blockmat_wrap .items .text .title .summary {
  font-family:'GmarketSansMedium','OneMobileTitle';
  /* font-weight: 600; */
  font-size: 1.1rem;
  color: rgba(var(--color-point-rgb),0.7);
  line-height: 1.4;
	word-break:keep-all;
	word-wrap:break-word;
}
.blockmat_wrap .items .text  .txt {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--bs-gray-600);
  letter-spacing: -0.5px;
  line-height: 1.6;
	word-break:keep-all;
	word-wrap:break-word;
}

@media (max-width: 991.98px) { 
  .blockmat_wrap .items{
    flex-direction: column;
    gap: 3rem;
    padding: 0 5%;
  }
  .blockmat_wrap .items .pic{
    width: 100%;
    max-width: 100%;
    order: 1;
  }
  .blockmat_wrap .items .text{
    width: 100%;
    max-width: 100%;
    order: 2;
  }
  .blockmat_wrap .items .text .title .tt {
    font-size: 3rem;
  }
  .blockmat_wrap .items .text .txt {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 767.98px) {
  .blockmat_wrap .items .text .title .tt {
    font-size: 2.5rem;
  }
}



.bg1 {
  position: relative;
  background-color: #f5f5f5 !important;
  margin: 0;
  padding: 0;
}
.bg2 {
  position: relative;
  background-color: #e6ecec !important;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .bg1 {
    margin: 0 !important;
  }
}

.top_tt{
  width: 100%;
  font-size: 3rem;
  font-family: "Arizonia", cursive;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 1rem 0 0 0;
  margin: auto;
}
.top_tt span{
  color: var(--color-point);
  font-weight: 600;
  padding-right: 1rem;
}
@media (max-width: 767.98px) {
  .top_tt{
    font-size: 2.5rem;
    padding: 2rem 0 0 0;
  }
}


/* point */
.blockmat_wrap .point_items{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 0.5rem;
  padding: 0;
  margin: 0;
}
.blockmat_wrap .point_items .item{
  width: calc(16.66% - 1rem);
  padding: 0;
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.1),
    0 5px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.3ss;
}
.blockmat_wrap .point_items .pic{
  width: 100%;
  aspect-ratio: 1 / 0.8;
  padding: 1.5rem;
  margin: 0;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3ss;
}
.blockmat_wrap .point_items .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
/* .blockmat_wrap .point_items .pic img:hover {
  transform: scale(1.05);
} */
.blockmat_wrap .point_items .title{  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  /* background-color: rgba(var(--color-point-rgb),1); */
  background-color: rgb(56, 56, 56);
}
.blockmat_wrap .point_items .title span{
  /* font-size: 0.95rem; */
  font-weight: 600;
  color: rgb(255, 96, 33);
}
.blockmat_wrap .point_items .item:hover img{
  transform: scale(1.1);
}
.blockmat_wrap .point_items .item:hover .title{
  background-color: var(--color-point);
}
@media (max-width: 991.98px) { 
  .blockmat_wrap .point_items .item{
    width: calc(33.33% - 1rem);
  }
}
@media (max-width: 767.98px) {
  .blockmat_wrap .point_items{
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0rem 5%;
  }
  .blockmat_wrap .point_items .item{
    width: calc(50% - 1rem);
  }
}





.sub_cont2{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 7rem;
  width: 100%;
  max-width:1200px;
  margin: 0px auto; 
  padding: 8rem 1rem;
}
.sub_cont2 .tt_wrap{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0;
  margin: 0;
  width: 40%;
}
.sub_cont2 .tt_wrap img{
  width: 100px;
}
.sub_cont2 .tt_wrap .tt{
  display: flex;
  flex-direction: column;
  font-family:'GmarketSansMedium','OneMobileTitle';
  font-size: 2.3rem;
}
.sub_cont2 .tt_wrap .tt>span{
  font-size: 1.5rem !important;
  font-family: 'Jost', system-ui, -apple-system, "Noto Sans",  sans-serif  !important;
  font-weight: 400;
  color: var(--bs-gray-500);
  line-height: 1.1 !important;
}
.sub_cont2 .con_wrap{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0;
  margin: 0;
  width: 60%;
}
.sub_cont2 .pic_cert{
  display: flex;
  justify-content: center;
  width: 100%;
}
.sub_cont2 .pic_cert img{
  width: 40%;
}
.sub_cont2 .con_wrap p{
  padding: 0;
  margin: 0;
  font-weight: 600;
	word-break:keep-all;
	word-wrap:break-word;
}
.sub_cont2 .list_t{
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0;
  font-family:'GmarketSansMedium','OneMobileTitle';
  /* font-weight: 500; */
  font-size: 1.1rem !important;
  border-bottom: 2px solid #111;
}
.sub_cont2 .list_t span{
  font-family:'Jost', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 0.85rem;
  color: var(--bs-gray-600);
}
.sub_cont2 ul{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0 0;
}
.sub_cont2 ul li{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bs-gray-600);
}
.sub_cont2 ul li span{
  color: var(--color-point);
}
@media (max-width: 991.98px) { 
  .sub_cont2{
    padding:5rem 5%;
  }
  .sub_cont2 .list_t{
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .sub_cont2{
    flex-direction: column;
    gap: 4rem;
    padding:3rem 5% 5rem 5%;
  }
  .sub_cont2 .tt_wrap{
    gap: 0;
    width: 100%;
    order: 1;
  }
  .sub_cont2 .tt_wrap .pic{
    text-align: right;
    order: 1;
  }
  .sub_cont2 .tt_wrap img{
    width: 80px;
  }
  .sub_cont2 .tt_wrap .tt{
    font-family:'GmarketSansMedium','OneMobileTitle';
    font-size: 2.1rem;
    order: 2;
  }
  .sub_cont2 .tt_wrap .tt_mt{
    margin-top: -2rem !important;
  }
  .sub_cont2 .tt_wrap .tt>span{
    font-size: 1.1rem !important;
  }
  .sub_cont2 .tt_wrap ul{
    order: 3;
  }
  .sub_cont2 .con_wrap{
    gap: 3rem;
    width: 100%;
    order: 2;
  }
  .sub_cont2 .pic_cert img{
    width: 80%;
  }
  .sub_cont2 .list_t{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 1.2rem;
  }
  .sub_cont2 ul li{
    font-size: 0.95rem;
  }
}





.sub_cont3{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
  max-width:1200px;
  margin: 0px auto; 
  padding: 6rem 1rem;
}
.sub_cont3 .tt_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0 auto;
}
.sub_cont3 .tt_wrap img{
  width: 80px;
}
.sub_cont3 .tt_wrap .tt{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family:'GmarketSansMedium','OneMobileTitle';
  font-size: 2.3rem;
}
.sub_cont3 .tt_wrap .tt>span{
  font-size: 1.2rem !important;
  font-family: 'Jost', system-ui, -apple-system, "Noto Sans",  sans-serif  !important;
  font-weight: 400;
  color: var(--bs-gray-500);
  line-height: 1.1 !important;
}
.sub_cont3 .con_wrap{
  display: flex;
  gap: 4rem;
  padding: 0;
  margin: 0;
  width: 100%;
}
.sub_cont3 .con_wrap>div{
  width: 33.33%;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  border: 6px solid #fff;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.1),
    0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
}
.sub_cont3 .con_wrap>div:hover{
  border: 6px inset var(--color-point);
}
.sub_cont3 .pic_cert{
  display: flex;
  justify-content: center;
  width: 100%;
}
.sub_cont3 .pic_cert img{
  width: 50%;
}
.sub_cont3 .con_wrap p{
  padding: 0;
  margin: 0;
  font-weight: 600;
	word-break:keep-all;
	word-wrap:break-word;
}
.sub_cont3 .list_t{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  font-family:'GmarketSansMedium','OneMobileTitle';
  /* font-weight: 500; */
  font-size: 1.2rem !important;
  border-bottom: 1px solid #e4e4e4;
}
.sub_cont3 .list_t span{
  font-family:'Jost', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 0.85rem;
  color: var(--bs-gray-600);
}
.sub_cont3 ul{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 2rem 0 0 0;
}
.sub_cont3 ul li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0 0 0 1rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bs-gray-600);
	word-break:keep-all;
	word-wrap:break-word;
}
.sub_cont3 ul li span{
  position: absolute;
  top: 7px;
  left: 0px;
  color: #e48787;
  font-size: 0.3rem;
  font-weight: 300;
}
@media (max-width: 991.98px) { 
  .sub_cont3{
    padding:5rem 5%;
  }
  .sub_cont3 .con_wrap{
    gap: 1.5rem;
  }
  .sub_cont3 .list_t{
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .sub_cont3{
    flex-direction: column;
    gap: 3rem;
    padding:3rem 5% 5rem 5%;
  }
  .sub_cont3 .tt_wrap{
    gap: 1rem;
    width: 100%;
    order: 1;
  }
  .sub_cont3 .tt_wrap .pic{
    text-align: right;
    order: 1;
  }
  .sub_cont3 .tt_wrap img{
    width: 80px;
  }
  .sub_cont3 .tt_wrap .tt{
    font-family:'GmarketSansMedium','OneMobileTitle';
    font-size: 2.1rem;
    order: 2;
  }
  .sub_cont3 .tt_wrap .tt>span{
    font-size: 1.1rem !important;
  }
  .sub_cont3 .tt_wrap ul{
    order: 3;
  }
  .sub_cont3 .con_wrap{
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    order: 2;
  }
  .sub_cont3 .con_wrap>div{
    width: 100%;
  }
  .sub_cont3 .pic_cert img{
    width: 80%;
  }
  .sub_cont3 .list_t{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 1.2rem;
  }
  .sub_cont3 ul li{
    font-size: 0.95rem;
  }
}






.sub_cont4{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  width: 100%;
  max-width:1200px;
  margin: 0px auto; 
  padding: 8rem 1rem;
}
.sub_cont4>div{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
}
.sub_cont4 .tt{
  display: flex;
  flex-direction: column;
  font-family:'GmarketSansMedium','OneMobileTitle';
  font-size: 2.3rem;
}
.sub_cont4 .tt>span{
  font-size: 1.5rem !important;
  font-family: 'Jost', system-ui, -apple-system, "Noto Sans",  sans-serif  !important;
  font-weight: 400;
  color: var(--bs-gray-500);
  line-height: 1.1 !important;
}
.sub_cont4 .cert_con{
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.sub_cont4 .cert_con .pic_cert{
  width: 50%;
}
.sub_cont4 .cert_con .pic_cert img{
  width: 100%;
}
.sub_cont4 ul{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.sub_cont4 ul li{
  display: flex;  
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bs-gray-600);
	word-break:keep-all;
	word-wrap:break-word;
}
.sub_cont4 ul li span{
  color: var(--color-point);
}
@media (max-width: 991.98px) { 
  .sub_cont4{
    flex-direction: column;
    gap: 3rem;
    padding:4rem 5%;
  }
  .sub_cont4>div{
    width: 100%;
  }
  .sub_cont4 .cert_con .pic_cert{
    width: 30%;
  }
}
@media (max-width: 767.98px) {
  .sub_cont4{
    gap: 5rem;
  }
  .sub_cont4 .cert_con{
    flex-direction: column;    
  }
  .sub_cont4 .cert_con .pic_cert{
    width: 100%;
    padding: 0 10%;
  }
}

.vs_contain{
  display: flex;
  justify-content:space-between;
  gap: 7rem;
  width: 100%;
  max-width:1200px;
  margin: 0px auto; 
  padding: 8rem 1rem;
}
.vs_contain .tt_wrap{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vs_contain .tt{
  display: flex;
  flex-direction: column;
  font-family:'GmarketSansMedium','OneMobileTitle';
  font-size: 2.3rem;
}
.vs_contain .tt span{
  font-family: 'Jost','OneMobileTitle', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 1rem;
  color: var(--bs-gray-600);
}
.vs_contain .txt{
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--bs-gray-700);
  letter-spacing: -0.5px;
  line-height: 1.6;
	word-break:keep-all;
	word-wrap:break-word;
}
.vs_wrap{
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 0px auto; 
  padding: 0;
}
.vs_wrap .opt{
  padding: 0;
  margin: 0;
  background-color: #f5f5f5;
}
.vs_wrap .common{
  padding: 0;
  margin: 0;
  background-color: #fff;
}
.vs_wrap .jd{
  position: relative;
  padding: 0;
  margin: 0;
  background-color: #fffde2;
}
.vs_wrap .jd::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid var(--color-point);
}
.vs_wrap .t{
  width: 100%;
  font-family:'GmarketSansMedium','OneMobileTitle';
  font-size: 1rem;
  text-align: center;
  color: #fff;
  padding: 1rem 4rem;
  background-color: #a1a1a1;
}
.vs_wrap .jd .t{
  background-color: #3d3d3d;
}
.vs_wrap ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.vs_wrap ul li{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 2rem;
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #e4e4e4;
}
.vs_wrap .jd ul li{
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 991.98px) { 
  .vs_contain{
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 5%;
  }
  .vs_contain .tt_wrap{
    padding-left: 2rem;
  }
  .vs_contain .txt br{
    /* display: none; */
  }
  .vs_wrap{
    width: 100%;
  }
  .vs_wrap .opt{
    width: 20%;
  }
  .vs_wrap .common{
    width: 40%;
  }
  .vs_wrap .jd{
    width: 40%;
  }
  .vs_wrap .t{
    padding: 1rem 0.5rem ;
  }
}
@media (max-width: 767.98px) {
  .vs_contain{
    padding: 4rem 0.5rem;
  }
  .vs_wrap{
    padding: 0;
  }
  .vs_wrap .opt{
    width: 20%;
  }
  .vs_wrap .common{
    width: 40%;
  }
  .vs_wrap .jd{
    width: 40%;
  }
  .vs_wrap .t{
    font-size: 0.75rem;
    padding: 1rem 0.5rem ;
  }
  .vs_wrap ul li{
    padding: 0 5px;
    font-size: 0.8rem;
  }
}


table{
  border-top: 1px solid var(--bs-gray-600);
}
table tr{
  border-bottom: 1px solid var(--bs-gray-200);
}
table th{
  padding: 0.7rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: var(--bs-gray-100);
}
table td{
  padding: 0.7rem 0.5rem;
  font-size: 0.9rem;
}


.vod_cont{
  display: flex;
  align-items: flex-end;
  gap: 10%;
  width: 100%;
  max-width:1200px;
  margin:0px auto; 
  padding: 6rem 1rem;
}
.vod_cont .text{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 40%;
}
.vod_cont .text .tt{
  font-family: 'Jost','OneMobileTitle', system-ui, -apple-system, "Noto Sans",  sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
}
.vod_cont .text .tt span{
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-point);
}
.vod_cont .text p{
  padding: 2rem 0 0 0;
  margin: 0;
  font-weight: 600;
	word-break:keep-all;
	word-wrap:break-word;
}
.vod_cont .text ul{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.vod_cont .text ul li{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bs-gray-600);
}
.vod_cont .text ul li span{
  color: var(--color-point);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 비율 유지 */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 화면 꽉 채우기 */
}
@media (max-width: 767.98px) {
  .vod_cont{
    flex-direction: column;
    gap: 2rem;
    padding:0;
  }
  .vod_cont .text{
    min-width: 100%;
    gap: 1rem; 
    order: 0;
    padding: 4rem 8% 1rem 8%;
  }
  .vod_cont .text .tt{
    font-size: 2rem;
  }
  .vod_cont .text .tt span{
    font-size: 3rem;
  }
  .vod_cont .text p{
    padding: 1rem 0 0 0;
  }
}


/* products */
.prod_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.prod_wrap .pic{
  width: calc(33.33% - 1rem);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.1),
    0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3ss;
}
.prod_wrap .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.prod_wrap .pic:hover img{
  transform: scale(1.1);
}
@media (max-width: 991.98px) { 
  .prod_wrap .pic{
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 767.98px) {
  .prod_wrap{
    flex-direction: column;
    padding: 0rem 5%;
  }
  .prod_wrap .pic{
    width: 100%;
  }
}




.cert_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.cert_wrap .pic{
  width: calc(20% - 1rem);
  aspect-ratio: 1 / 1.6;
  margin: 0;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.1),
    0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3ss;
}
.cert_wrap .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.cert_wrap .pic:hover img{
  transform: scale(1.1);
}
@media (max-width: 991.98px) { 
  .cert_wrap .pic{
    width: calc(33.33% - 1rem);
  }
}
@media (max-width: 767.98px) {
  .cert_wrap{
    flex-direction: column;
    padding: 0rem 5%;
  }
  .cert_wrap .pic{
    width: calc(50% - 0.5rem);
  }
}





.mt5{
  margin-top: 5rem !important;
}
.pb2{
  padding-bottom: 2rem;
}

.wave-top,
.wave-bottom {
  position: absolute;
  fill: #ffffff;
}

.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
