/* ================= section01 ================= */
.home_section01 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home_section01 .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 16, 53, 0.4) 0%, rgba(5, 16, 53, 0) 55%);
  pointer-events: none;
  z-index: 1;
}

.home_section01::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10.98rem;
  background: linear-gradient(to bottom, rgba(5, 16, 53, 0.54), rgba(5, 16, 53, 0));
  pointer-events: none;
  z-index: 1;
}

.home_section01 .head {
  min-height: 89.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end !important;
  padding-bottom: 10rem;
  align-items: flex-start;
  width: 100%;
}

.home_section01 .content {
  position: relative;
  z-index: 9;
}

.home_section01 .syedittext .title {
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 2.8rem;
  max-width: 70rem;
}

.home_section01 .syedittext .desc {
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 4.5rem;
  max-width: 60rem;
}

.home_section01 .discover_btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5rem;
  padding: 1.8rem 4.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}

.home_section01 .discover_btn:hover {
  opacity: 0.9;
}

.home_section01 .pagination {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  max-width: 136rem;
  margin: 0 auto;
  display: flex;
  gap: 1.2rem;
  z-index: 5;
  bottom: 5rem !important;
}

.home_section01 .pagination span {
  display: block;
  width: 7rem;
  height: 0.3rem;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}

.home_section01 .pagination span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
  transition: none;
}

.home_section01 .pagination span.active::after {
  width: 100%;
  animation: paginationProgress 5s linear forwards;
}

@keyframes paginationProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* ================= section02 ================= */
.home_section02 {
  padding: 6rem 0 4rem;
  font-family: 'Manrope', sans-serif;
  background: #fff;
}

.home_section02 .content {
  max-width: 156rem;
  margin: 0 auto;
  padding: 0 4rem;
}

.home_section02 .stats {
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 4rem;
}

.home_section02 .stat_item {
  flex: 1;
  text-align: center;
  min-width: 22rem;
}

.home_section02 .stat_icon {
  height: 4rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home_section02 .stat_icon img {
  height: 100%;
  width: auto;
}

.home_section02 .stat_icon svg {
  width: 3.6rem;
  height: 3.6rem;
  fill: var(--primary);
}

.home_section02 .stat_number {
  display: flex;
  justify-content: center;
  align-items: baseline;
  color: var(--title);
  line-height: 1;
  margin-bottom: 1.6rem;
}

.home_section02 .stat_number .num {
  font-size: 5.4rem;
  font-weight: 600;
}

.home_section02 .stat_number .plus {
  font-size: 4.7rem;
  font-weight: 700;
  margin-left: 0.4rem;
}

.home_section02 .stat_desc {
  font-size: 1.7rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

/* ================= section04 ================= */
.home_section04 {
  padding: 7.2rem 0 7rem;
  background: #fff;
}

.home_section04 .head {
  text-align: center;
  margin-bottom: 5rem;
}

.home_section04 .head h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.35;
  max-width: 80rem;
  margin: 0 auto;
}

.home_section04 .head h2 span {
  display: block;
  color: rgba(15, 15, 15, .5);
}

.home_section04 .cards {
  gap: 0.9rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.home_section04 .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home_section04 .card .thumb {
  width: 100%;
  aspect-ratio: 265/223;
  border-radius: 1.6rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
  background: var(--secondary);
}

.home_section04 .card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s;
}

.home_section04 .card h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.home_section04 .card:hover img {
  transform: scale(1.1);
}

.home_section04 .card p {
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.55;
  padding: 0 1rem;
  font-weight: 500;
}

/* ================= section05 ================= */
.home_section05 {
  position: relative;
  width: 100%;
  height: 89rem;
  background: url('../img/home_nums_bg.jpg') no-repeat top/cover;
  overflow: hidden;
}

.home_section05:before {
  content: "";
  width: 100%;
  height: 50rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 100%);
}

.home_section05 .content {
  position: relative;
  max-width: 160rem;
  margin: 0 auto;
  padding: 0 3rem;
  height: 100%;
}

.home_section05 .stats_card {
  position: absolute;
  top: 10rem;
  left: 58.5%;
  z-index: 9;
  width: 54.2rem;
  height: 38.4rem;
  border-radius: 3rem;
  border-bottom-left-radius: 0;
  padding: 6.5rem 6.5rem;
  background: url('../img/home_nums_box.svg') no-repeat 20%/cover;
  box-sizing: border-box;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7rem), 0 calc(100% - 1rem));
}

.home_section05 .stats_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 191, 240, 0) 0%, rgba(0, 64, 152, 0.35) 100%);
  pointer-events: none;
}

.home_section05 .stats_grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  width: 100%;
  row-gap: 6rem;
}

.home_section05 .stat_item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home_section05 .stat_value {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.2rem;
}

.home_section05 .stat_value .num {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}

.home_section05 .stat_value .unit {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.4rem;
  margin-top: 0.4rem;
}

.home_section05 .stat_value .unit sup {
  font-size: 1.4rem;
  vertical-align: super;
}

.home_section05 .stat_label {
  font-size: 1.7rem;
  color: #fff;
  opacity: 0.7;
  font-weight: 400;
}

.home_section05 .stats_divider {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.53) 50%, rgba(255, 255, 255, 0) 100%);
}

/* ================= section06 ================= */
.home_section06 {
  font-family: 'Manrope', sans-serif;
  padding: 13rem 0 10.5rem;
  background: #fff;
}

.home_section06 .content {
  width: 135.6rem;
  max-width: 90%;
  margin: 0 auto;
}

.home_section06 .head {
  margin-bottom: 5rem;
}

.home_section06 h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  max-width: 60rem;
}

.home_section06 .main {
  gap: 2.5rem;
  align-items: stretch;
}

.home_section06 .left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 2.74rem;
  overflow: hidden;
  min-height: 44rem;
  background: #f5f8fb;
}

.home_section06 .left .home_section06_swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home_section06 .left .swiper-slide img.img_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home_section06 .left .pagination {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  padding-bottom: 3.8rem;
}

.home_section06 .left .pagination span {
  width: 6.3rem;
  height: 0.3rem;
  background: rgba(255, 255, 255, 0.29);
  border-radius: 0.3rem;
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.home_section06 .left .pagination span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #fff;
}

.home_section06 .left .pagination span.active::after {
  width: 100%;
  animation: section06PaginationProgress 5s linear forwards;
}

@keyframes section06PaginationProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.home_section06 .right {
  width: 62.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.home_section06 .row_top {
  gap: 2.2rem;
}

.home_section06 .stat_card {
  flex: 1;
  background: #eff5f9;
  border-radius: 2.74rem;
  padding: 3rem 3.4rem;
  min-height: 21.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.home_section06 .stat_card.light {
  background: #d1e6f4;
}

.home_section06 .stat_card .label {
  font-size: 2rem;
  color: #6d6d6d;
  font-weight: 500;
  margin: 0;
  padding-right: 3rem;
}

.home_section06 .stat_card .value {
  font-size: 4.8rem;
  font-weight: 600;
  color: var(--title);
  margin: 0;
  line-height: 1;
}

.home_section06 .stat_card .value .plus {
  font-weight: 700;
  font-size: 3.2rem;
  vertical-align: bottom;
}

.home_section06 .stat_card .icon_tr {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  height: 4.5rem;
}

.home_section06 .cert_card {
  background: var(--primary);
  border-radius: 2.74rem;
  padding: 3.4rem 3.4rem 3rem;
  position: relative;
  overflow: hidden;
  min-height: 21.3rem;
}

.home_section06 .cert_card:after {
  content: "";
  width: 8.7rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(to right, #0758bc00, #0759bc);
  z-index: 9;
}

.home_section06 .cert_card .label {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  margin: 0 0 3.5rem;
}

.home_section06 .cert_card .logos {
  width: 100%;
  overflow: visible;
}

.home_section06 .cert_card .logos .home_section06_cert_swiper {
  width: 100%;
  overflow: visible;

  pointer-events: none;
}
.home_section06_cert_swiper .swiper-wrapper{
  /* transition-timing-function: linear !important;
  transition: linear !important; */
}
.home_section06 .cert_card .logos .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  height: auto;
  width: auto !important;
  flex-shrink: 0;
}

.home_section06 .cert_card .logos img {
  max-height: 7rem;
  max-width: 6.5rem;
  object-fit: contain;
}

.home_section06 .cert_card .as3000 {
  margin-left: auto;
  margin-right: 6rem;
}

/* ================= section07 ================= */
.home_section07 {
  padding: 10.5rem 0 8rem;
  font-family: 'Manrope', sans-serif;
  background: #fff;
}

.home_section07 .head {
  margin-bottom: 6rem;
  gap: 4rem;
}

.home_section07 .head h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.home_section07 .tabs {
  background: #f7f8f9;
  border-radius: 5rem;
  padding: 0;
  gap: 0.4rem;
  width: 61.98%;
}

.home_section07 .tab {
  padding: 2rem 1.5rem;
  border-radius: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #383845;
  text-align: center;
  line-height: 2.1rem;
  cursor: pointer;
  transition: all .3s;
  min-width: 14rem;
  max-width: 22.2rem;
}

.home_section07 .tab.active {
  background: var(--primary);
  color: #fff;
  font-weight: 400;
}

.home_section07 .body {
  gap: 9rem;
}

.home_section07 .image_wrap {
  flex: 0 0 73.4rem;
  height: 39.6rem;
  border-radius: 20rem;
  position: relative;
  background: url('../img/home_product_bg.png') no-repeat center/cover;
}

.home_section07 .image_wrap .img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 120%;
  height: 120%;
  object-fit: cover;
}

.home_section07 .info {
  flex: 1;
}

.home_section07 .info h3 {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 3.8rem;
  max-width: 50rem;
}

.home_section07 .info .underline {
  width: 7.6rem;
  height: 1rem;
  margin-bottom: 2.8rem;
}

.home_section07 .info p {
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 56rem;
  margin-bottom: 3.5rem;
}

.home_section07 .btn_discover {
  display: inline-block;
  padding: 1.7rem 4rem;
  border: 0.1rem solid var(--primary);
  border-radius: 5rem;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.home_section07 .btn_discover:hover {
  background: var(--primary);
  color: #fff;
}


/* ================= section09 ================= */
.home_section09 {
  padding: 8rem 0 7.7rem;
  background: #fff;
}

.home_section09 .head {
  margin-bottom: 4rem;
}

.home_section09 .head h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}

.home_section09 .tabs {
  gap: 1rem;
}

.home_section09 .tab {
  padding: 1.2rem 3.2rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #c4c4c4;
  background: #fff;
  color: var(--text);
  transition: all .3s;
}

.home_section09 .tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.home_section09 .news_grid {
  gap: 9.5rem;
}

.home_section09 .col_left,
.home_section09 .col_right {
  flex: 1;
}

.home_section09 .big_card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  height: 43rem;
  display: block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.home_section09 .big_card .img_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_section09 .big_card .card_body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 3rem 3.5rem;
  border-top-left-radius: 0;
  border-top-right-radius: 2rem;
  z-index: 9;
  max-width: calc(100% - 12rem);
}

.home_section09 .meta {
  gap: .8rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  opacity: .85;
}

.home_section09 .meta .cat {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .05em;
}

.home_section09 .meta .date {
  color: #3f3f3f;
  font-size: 1.5rem;
  font-weight: 500;
}

.home_section09 .big_card .card_title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.5;
  text-underline-offset: .4rem;
  max-width: 35rem;
  min-height: 6rem;
}

.home_section09 .news_item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(15, 15, 15, .18);
  margin-bottom: 2.5rem;
  position: relative;
  cursor: pointer;
}

.home_section09 .news_item .info {
  padding-top: 2rem;
  max-width: 25.5rem;
}

.home_section09 .news_item:last-child {
  margin-bottom: 0;
}

.home_section09 .news_item .img {
  aspect-ratio: 246/170;
  border-radius: 2.5rem;
  max-width: 24.7rem;
}

.home_section09 .news_item:hover .img img {
  transform: scale(1.1);
}

.home_section09 .news_item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}

.home_section09 .news_item.active::after {
  width: 80%;
}

.home_section09 .news_item .card_title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.5;
  margin: 1rem 0 2rem;
  max-width: 42rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.home_section09 .read_article {
  gap: 1.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--title);
  cursor: pointer;
  text-decoration: none;
}

.home_section09 .read_article .arrow {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home_section09 .read_article .arrow svg {
  width: 1.4rem;
  height: 1.4rem;
}

.home_section09 .more_wrap {
  margin-top: 5rem;
}

.home_section09 .btn_more {
  padding: 1.6rem 4rem;
  border: 1px solid var(--primary);
  border-radius: 5rem;
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
  transition: all .3s;
}

.home_section09 .btn_more:hover {
  background: var(--primary);
  color: #fff;
}

/* ================= section10 ================= */
.home_section10 {
  padding: 8rem 0 4rem;
  font-family: 'Manrope', sans-serif;
  background: #fff;
  overflow: hidden;
}

.home_section10 .head {
  text-align: center;
  margin-bottom: 5rem;
}

.home_section10 .head h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 1.8rem;
}

.home_section10 .head .desc {
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 70rem;
  margin: 0 auto;
}

.home_section10_swiper {
  overflow: hidden;
  padding-top: 5.3rem;
}

.home_section10_swiper .card .comment_content {
  padding-top: 3.6rem;
  text-align: center;
  max-width: 42.7rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 500;
  color: #60686d;
}

.home_section10 .swiper-wrapper {
  padding: 0;
  margin: 0;
  list-style: none;
}

.home_section10 .swiper-slide {
  box-sizing: border-box;
  height: auto;
}

.home_section10 .card {
  position: relative;
  background: #eff5f9;
  border-radius: 2.3rem;
  padding: 4.5rem 4rem 4rem;
  min-height: 35.2rem;
  box-sizing: border-box;
  height: auto;
  height: 100%;
}

.home_section10 .avatar {
  position: absolute;
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  border: 0.26rem solid #29aeff;
  background: #fff;
  overflow: hidden;
}

.home_section10 .avatar .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.home_section10 .quote_open,
.home_section10 .quote_close {
  color: var(--primary);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  width: 2.6rem;
  height: 2.6rem;
  background: url('../img/quote1.svg') no-repeat center/contain;
}

.home_section10 .quote_open {
  position: absolute;
  top: 8rem;
  left: 5rem;
}

.home_section10 .quote_close {
  position: absolute;
  bottom: 10.7rem;
  right: 5rem;
  width: 2.6rem;
  height: 2.6rem;
  background: url('../img/quote2.svg') no-repeat center/contain;
}

.home_section10 .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4rem;
  text-align: center;
  position: unset !important;
  margin-top: 1rem;
}

.home_section10 .info .name {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 0.6rem;
  
}

.home_section10 .info .role {
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 0;
}

.home_section10 .swiper-pagination {
  position: relative;
  margin-top: 3.3rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.home_section10 .swiper-pagination .swiper-pagination-bullet {
  width: 6.8rem;
  height: 0.3rem;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
  transition: background .3s;
}

.home_section10 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
header .btn_menu{
  filter: brightness(100);
}

.home_section06 .cert_card .logos .cert_text{
  -webkit-text-stroke: unset !important; 
  font-weight: 700 !important;
  color: white !important;
  background: unset !important;
  -webkit-text-fill-color: unset !important;
}
.about_section04 .left p{
  color: #333;
  font-size: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.about_section06 .tabs{
  margin-top: 0 !important;
}
/* ================= iPad Pro (max-width: 1220px) ================= */
@media screen and (min-width: 769px) and (max-width: 1220px) {

  /* section01 */
  .home_section01 .content {
    padding: 0 3rem;
  }

  .home_section01 .pagination {
    padding: 0 3rem;
  }

  /* section02 */
  .home_section02 {
    padding: 5rem 0 3rem;
  }

  .home_section02 .stat_number .num {
    font-size: 4.8rem;
  }

  .home_section02 .stat_number .plus {
    font-size: 4rem;
  }

  /* section03 */
  .home_section03 .content {
    max-width: 92%;
  }

  .home_section03 .btn_prev {
    left: -3rem;
  }

  .home_section03 .btn_next {
    right: -3rem;
  }

  /* section04 */
  .home_section04 .card .thumb {
    width: 22rem;
    height: 18.5rem;
  }

  /* section05 */
  .home_section05 .stats_card {
    left: 50%;
    width: 50rem;
  }

  /* section06 */
  .home_section06 .right {
    width: 50rem;
  }

  .home_section06 .stat_card .value {
    font-size: 4rem;
  }

  .home_section06 .cert_card .logos {
    gap: 4rem;
  }

  .home_section06 .cert_card .as3000 {
    margin-right: 3rem;
  }

  /* section07 */
  .home_section07 .image_wrap {
    flex: 0 0 55rem;
    height: 34rem;
  }

  .home_section07 .tab {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    min-width: 12rem;
  }

  .home_section07 .head h2 {
    font-size: 3rem;
  }

 

  /* section09 */
  .home_section09 .news_grid {
    gap: 4rem;
  }

  .home_section09 .big_card {
    height: 40rem;
  }

  /* section10 */
  .home_section10 {
    padding: 7rem 0 3rem;
  }

  .home_section10 .card {
    padding: 4rem 3.5rem 3.5rem;
    min-height: 32rem;
  }

  /* footer */
  footer .top,
  footer .middle {
    gap: 3rem;
  }

  footer .top_left {
    flex: 0 0 40rem;
  }

  footer .newsletter {
    flex: 0 0 40rem;
  }
}

/* ================= iPad (max-width: 1024px) ================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {

  /* section01 */
  .home_section01 .syedittext h2 {
    font-size: 5rem;
  }

  /* section02 */
  .home_section02 .stat_item {
    min-width: 20rem;
  }

  .home_section02 .stat_number .num {
    font-size: 4.2rem;
  }

  .home_section02 .stat_number .plus {
    font-size: 3.4rem;
  }

  /* section03 */
  .home_section03 {
    padding: 8rem 0 0;
  }

  .home_section03 .nav_btn {
    width: 5.5rem;
    height: 5.5rem;
  }

  .home_section03 .card_body {
    height: auto;
    min-height: 16rem;
    padding: 2.2rem 2.4rem;
  }

  /* section04 */
  .home_section04 .cards {
    flex-wrap: wrap;
    gap: 3rem 1rem;
    justify-content: center;
  }

  .home_section04 .card {
    flex: 0 0 calc(33.333% - 1rem);
  }

  /* section05 */
  .home_section05 {
    height: 45rem;
  }

  .home_section05 .stats_card {
    left: 45%;
    width: 46rem;
    padding: 4rem 5rem;
  }

  /* section06 */
  .home_section06 .right {
    width: 42rem;
  }

  .home_section06 .cert_card .logos {
    gap: 3rem;
  }

  .home_section06 .cert_card .as3000 {
    margin-right: 2rem;
  }

  /* section07 */
  .home_section07 .head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home_section07 .image_wrap {
    flex: 0 0 42rem;
    height: 30rem;
  }

  .home_section07 .body {
    gap: 4rem;
  }

  

  /* section09 */
  .home_section09 .big_card {
    height: 36rem;
  }

  .home_section09 .head h2 {
    font-size: 3.2rem;
  }

  /* section10 */
  .home_section10 .card {
    padding: 4rem 3rem 3.5rem;
    min-height: 30rem;
  }

  .home_section10 .head h2 {
    font-size: 3.4rem;
  }

  /* footer */
  footer .top {
    flex-direction: column;
  }

  footer .top_left {
    flex: 1;
    align-items: flex-start;
  }
  .home_section04 .cards{
    grid-template-columns: repeat(3,1fr) !important;
  }
}

/* ================= iPad Mini (max-width: 896px) ================= */
@media screen and (min-width: 769px) and (max-width: 896px) {

  /* section01 */
  .home_section01 {
    height: 70rem;
  }

  .header nav {
    gap: 1.8rem;
  }

  /* section02 */
  .home_section02 .stats {
    gap: 3rem 2rem;
  }

  .home_section02 .stat_item {
    flex: 0 0 calc(50% - 1rem);
  }

  /* section03 */
  .home_section03 .head h2 {
    font-size: 3.2rem;
  }

  .home_section03 .card_img {
    height: 24rem;
  }

  /* section04 */
  .home_section04 .head h2 {
    font-size: 3.2rem;
  }

  /* section05 */
  .home_section05 .stats_card {
    left: 40%;
  }

  /* section06 */
  .home_section06 h2 {
    font-size: 3.2rem;
  }

  .home_section06 .right {
    width: 36rem;
  }

  /* section07 */
  .home_section07 .body {
    flex-direction: column;
  }

  .home_section07 .image_wrap {
    flex: none;
    width: 100%;
    height: 32rem;
  }

  

  /* section09 */
  .home_section09 .news_grid {
    gap: 3rem;
  }

  .home_section09 .big_card {
    height: 32rem;
  }

  /* section10 */
  .home_section10 .card {
    padding: 3.5rem 2.5rem 3rem;
    min-height: 28rem;
  }

  .home_section10 .quote_open {
    top: 3rem;
    left: 2.5rem;
  }

  .home_section10 .quote_close {
    right: 2.5rem;
  }

  /* footer */
  footer {
    padding: 8rem 0 3rem;
  }

  footer .middle {
    flex-wrap: wrap;
  }

  footer .newsletter {
    flex: 1 1 100%;
  }

  
  .home_section09 .big_card{
    height: 100%;
  }
  .home_section09 .news_grid{
    align-items: unset;
  }
  .home_section10 .info{
    position: unset !important;
  }
}

/* ================= Mobile (max-width: 768px) ================= */
@media screen and (max-width: 768px) {
  
  /* section01 */
  .home_section01 {
    height: auto;
    min-height: unset;
    padding: 0;
  }

  .home_section01 .content {
    padding: 0 2rem;
  }

  .home_section01 .syedittext h2 {
    font-size: 4.4rem;
    max-width: 100%;
  }

  .home_section01 .syedittext .desc {
    font-size: 1.8rem;
  }

  .home_section01 .pagination {
    padding: 0 2rem;
    bottom: 3rem;
  }

  .home_section01 .pagination span {
    width: 5rem;
  }
  .home_section01 .syedittext .title{
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .home_section01 .syedittext .desc{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .home_section01 .discover_btn{
    padding: 10px 20px;
    font-size: 14px;
  }
  .home_section01 .head{
    min-height: unset;
    padding: 15rem 0 10rem;
  }
  /* section02 */
  .home_section02 {
    padding: 4rem 0 2rem;
  }

  .home_section02 .content {
    padding: 0 2rem;
  }

  .home_section02 .stats {
    gap: 20px;
    padding: 0;
    flex-flow: nowrap;
    overflow-y: hidden;
  }
  .home_section02 .stat_icon{
    margin-bottom: 15px;
  }
  .home_section02 .stat_item {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 0;
  }

  .home_section02 .stat_number .num {
    font-size: 2.5rem;
  }

  .home_section02 .stat_number .plus {
    font-size: 2.5rem;
  }

  .home_section02 .stat_desc {
    font-size: 1.5rem;
  }


  /* section04 */
  .home_section04 {
    padding: 4rem 0 ;
  }

  .home_section04 .head{
    margin-bottom: 20px;
  }
  .home_section04 .head h2 {
    font-size: 22px;
  }
  
  .home_section04 .cards {
    gap: 3rem;
    align-items: flex-start;
  }

  .home_section04 .card .thumb {
    width: 230px;
    height: 150px;
  }

  /* section05 */
  .home_section05 {
    height: auto;
    padding: 4rem 0;
  }

  .home_section05 .stats_card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 54rem;
    margin: 0 auto;
    height: auto;
    padding: 20px;
    clip-path:unset
  }

  .home_section05 .stats_grid {
    gap: 3rem 2rem;
  }

  .home_section05 .stat_value .num{
    font-size: 25px;
  }
  .home_section05 .stat_value .unit{
    font-size: 20px;
  }
  .home_section05 .stat_label{
    font-size: 14px;
  }
  .home_section06{
    padding: 40px 0;
  }
  .home_section06 .content{
    margin: 0;
    max-width: 100%;
  }
  .home_section06 .head{
    margin-bottom: 25px;
  }
  .home_section06 .main{
    flex-direction: column;
  }
  .home_section06 .left{
    width: 100%;
    max-width: unset;
  }
  .home_section06 .left{
    min-height: unset;
  }
  .home_section06 .swiper-slide{
    aspect-ratio: 1/0.6;
    border-radius: 20px;
    overflow: hidden;
  }
  .home_section06 .left .home_section06_swiper{
    position: unset;
  }
  .home_section06 .left .pagination{
    display: none;
  }
  .home_section06 .stat_card, .home_section06 .cert_card{
    width: 100%;
    padding: 20px;
    min-height: unset;
  }
  .home_section06 .right{
    width: auto;
  }
  .home_section06 .stat_card .label{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .home_section06 .stat_card .icon_tr{
    width: 30px;
    height: 30px;
  }
  .home_section06 .stat_card .value{
    font-size: 25px;
  }

  .home_section07{
    padding: 40px 0;
  }
  .home_section07 .head{
    flex-direction: column;
    align-items: unset;
    gap: 20px;
  }
  .home_section07 .tabs{
    overflow: auto;
    width: 100%;
  }
  .home_section07 .body{
    flex-direction: column;
    gap: 30px;
  }
  .home_section07 .head{
    margin-bottom: 20px;
  }
  .home_section07 .image_wrap{
    height: auto;
    flex: unset;
    width: 100%;
    height: 200px;
    border-radius: none;
  }
  .home_section07 .info h3{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .home_section07 .info .underline{
    margin-bottom: 15px;
  }
  .home_section07 .info p{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .home_section07 .btn_discover{
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .home_section09{
    padding: 30px 0;
  }
  .home_section09 .head h2{
    font-size: 22px;
  }
  .home_section09 .head{
    flex-direction: column;
    gap: 20px;
  }
  .home_section09 .tab{
    padding: 10px 20px;
    font-size: 14px;
  }
  .home_section09 .head{
    margin-bottom: 40px;
  }
  .home_section09 .news_grid{
    gap: 20px;
    flex-direction: column;
  }
  .home_section09 .col_left, .home_section09 .col_right{
    width: 100%;
    flex: unset;
  }
  .home_section09 .big_card .card_body{
    max-width: 100%;
  }
  .home_section09 .meta .cat, .home_section09 .meta .date{
    font-size: 13px;
  }
  .home_section09 .big_card .card_title{
    font-size: 16px;
    line-height: 1.5;
  }
  .home_section09 .news_item .card_title{
    font-size: 16px;
    line-height: 1.5;
  }
  .home_section09 .read_article{
    font-size: 12px;
  }
  .home_section09 .read_article .arrow{
    width: 25px;
    height: 25px;
  }
  .home_section09 .news_item .img{
    aspect-ratio: 1;
  }
  .home_section09 .news_item>.flex{
    gap: 0px;
    flex-direction: column;
  }
  .home_section09 .news_item .info{
    max-width: 100%;
    order: 9;
  }
  .home_section09 .news_item .img{
    max-width: 100%;
    aspect-ratio: 1/0.5;
  }
  .home_section09 .btn_more{
    font-size: 14px;
    padding: 10px 20px;
  }
  .home_section10{
    padding: 30px 0;
  }
  .home_section10 .head h2{
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  .home_section10 .head .desc{
    font-size: 14px;
    line-height: 1.6;
  }
  .home_section10 .head{
    margin-bottom: 20px;
  }
  .home_section10 .avatar{
    width: 60px;
    height: 60px;
    top: -30px;
  }
  .home_section10_swiper .card .comment_content{
    font-size: 14px;
    line-height: 1.6;
  }
  .home_section10 .info{
    position: unset;
    margin-top: 20px;
  }
  .home_section10 .info .name{
    font-size: 18px;
  }
  .home_section10 .info .role{
    font-size: 14px;
  }

  .img_bg > picture{
    position: unset;
    width: 100%;
    height: auto;
  }
  .img_bg > picture img{
    width: 100%;
    height: auto;
  }
}

/* ================= Small Mobile (max-width: 576px) ================= */
@media screen and (max-width: 576px) {

  /* section02 */
  .home_section02 .stat_number .num {
    font-size: 2.5rem;
  }

  .home_section02 .stat_number .plus {
    font-size: 2.8rem;
  }

  .home_section02 .stat_desc {
    font-size: 14px;
  }



  /* section04 */
  .home_section04 .head h2 {
    font-size: 22px;
  }

  .home_section04 .card .thumb {
    width: 100%;
  }
  .home_section04 .card h3{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .home_section04 .card p{
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .home_section04 .cards{
    gap: 20px;
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
    flex-direction: unset;
  }
  .home_section04 .card{
    flex: unset;
  }
  /* section05 */
  
  .about_section04 .left p{
    color: #333;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
  }

  /* section06 */
  .home_section06 .row_top {
    flex-direction: column;
  }

  .home_section06 .cert_card .logos {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .home_section06 .cert_card .as3000 {
    margin-right: 0;
    margin-left: 0;
  }

  /* section07 */
  .home_section07 .tab {
    font-size: 14px;
    padding: 10px 20px;
    min-width: 200px;
  }
  
  .home_section07 .head h2 {
    font-size: 2.8rem;
  }

 

  /* section09 */
  
  .home_section09 .big_card{
    height: 44rem;
  }

  .home_section09 .big_card .card_body {
    padding: 2rem;
  }



  /* section10 */
  .home_section10 .card {
    min-height: 28rem;
    padding: 4rem 2.5rem 3rem;
  }

  .home_section10 .quote_open {
    top: 2.5rem;
    left: 2rem;
    font-size: 4rem;
  }

  .home_section10 .quote_close {
    right: 2rem;
    font-size: 4rem;
    bottom: 7rem;
  }

  .home_section10 .info {
    bottom: 3rem;
  }

  /* footer */
  footer .middle>div {
    flex: 1 1 100%;
  }

  footer .product_list li {
    gap: 2rem;
  }

  footer .form {
    width: 100%;
  }
}