@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;600;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Yuji+Boku&display=swap");
.flex_around {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_between, footer .max-width, header .max-width {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_center, .schools_list .filter .f_group .f_item, .work_in_list .filter .f_group .f_item, .values_page .value_item .title .num, .page_banner, .about .about_link, .contact .contact_block, .testimonials .t_group, .deals .deal_group, .school_group, .slick-arrow, .work_group, .six_value .values_group .value_item .value_top .info, .six_value .values_group, .banner .banner_item, .btn, footer .social .s_group {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_start, .schools_list .filter .f_group, .schools_list .filter, .content h2, .work_in_page .title, .work_in_page .p_top, .work_in_list .filter .f_group, .work_in_list .filter, .values_page .value_item .desc, .values_page .value_item .title .text, .values_page .value_item .title, .deals .deal_group .deal_item, .work_group .work_item .cover .cover_info, .six_value .values_group .value_item .value_top, .breadcrumb a, .breadcrumb .max-width, footer .f_menu, header .main-menu ul li {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.flex_end {
  display: flex;
  display: -webkit-flex;
  /*for safari*/
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  align-items: center;
}

.background_template, .content h2, .page_banner, .deals .deal_group .deal_item .cover, .school_group .school_item .cover, .work_group .work_item .cover, .banner .banner_item, .banner, .breadcrumb, footer {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*scroll*/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar:horizontal {
  /* 只改水平捲軸 */
  height: 5px;
  /* ← 水平捲軸的「高度」 */
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #DEF752;
  border-radius: 5px;
}

/*scroll end*/
[id] {
  scroll-margin-top: 50px;
}

html {
  scroll-behavior: smooth;
}

body,
div,
section {
  clear: both;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

:focus {
  outline: 3px dashed #2F4840 !important;
  outline-offset: 2px !important;
  /* 與元素間距 */
}

p {
  margin: 10px 0;
}

figure {
  margin: 0;
}
figure a {
  display: contents;
  pointer-events: none;
  text-decoration: none;
}
figure a img {
  margin: 0 !important;
}
figure figcaption {
  display: none !important;
}

html {
  font-size: 1rem;
}
@media (max-width: 768px) {
  html {
    font-size: 14px !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  clear: both;
  text-align: center;
  font-family: "Newsreader", "Noto Sans TC", sans-serif, FontAwesome;
  font-size: 14px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
  letter-spacing: 1px;
  line-height: 2;
  transition: 0.25s;
  height: auto;
  background: #ECF1F5;
  color: #000;
}

.max-width {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #2F4840;
  border-bottom: 1px solid #DEF752;
  height: 80px;
}
header .max-width {
  height: 100%;
}
header .logo {
  height: 45px;
  cursor: pointer;
  z-index: 1;
}
header .logo img {
  height: 100%;
  width: auto;
}
header .menu {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
header .menu img {
  width: 50px;
}
header .main-menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(47, 72, 64, 0.9);
  color: #fff;
  padding: 0 15px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .main-menu.open {
  opacity: 1;
  visibility: visible;
}
header .main-menu.open ul li {
  opacity: 1;
  transform: translateY(0);
}
header .main-menu.open ul li:nth-child(1) {
  transition-delay: 0.1s;
}
header .main-menu.open ul li:nth-child(2) {
  transition-delay: 0.2s;
}
header .main-menu.open ul li:nth-child(3) {
  transition-delay: 0.3s;
}
header .main-menu.open ul li:nth-child(4) {
  transition-delay: 0.4s;
}
header .main-menu.open ul li:nth-child(5) {
  transition-delay: 0.5s;
}
header .main-menu .menu-content-wrapper {
  width: 100%;
  max-width: 1200px;
  position: relative;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 40px;
}
header .main-menu .menu-content-wrapper .menu-logo {
  height: 45px;
  margin-bottom: 20px;
}
header .main-menu .menu-content-wrapper .menu-logo img {
  height: 100%;
  width: auto;
}
header .main-menu .close-menu-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}
header .main-menu .close-menu-btn img {
  width: 50px;
}
header .main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header .main-menu ul li {
  position: relative;
  margin: 20px;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-20px);
}
header .main-menu ul li i {
  font-size: 20px;
  margin-right: 10px;
  color: #DEF752;
}
header .main-menu ul li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #DEF752;
  transition: width 0.3s ease;
}
header .main-menu ul li:hover {
  color: #DEF752;
}
header .main-menu ul li:hover::after {
  width: 100%;
}

footer {
  padding: 50px 20px;
  background-image: url("/images/footer_bg.png");
  background-repeat: repeat;
}
footer .footer_logo {
  width: 150px;
  height: auto;
}
footer .f_menu {
  align-items: flex-start;
}
footer .f_menu .menu_item {
  width: fit-content;
  min-width: 150px;
  text-align: left;
  padding: 0 20px;
}
footer .f_menu .menu_item .title {
  font-size: 20px;
  font-weight: bold;
  color: #2F4840;
}
footer .f_menu .menu_item ul {
  font-family: "Noto Sans TC";
  padding-left: 20px;
  text-align: left;
  border-right: 1px solid #fff;
  padding-right: 20px;
  min-width: 150px;
}
footer .social .s_group i {
  font-size: 50px;
  font-weight: 400;
  color: #2F4840;
  margin: 10px;
  transition: 0.3s;
  cursor: pointer;
}
footer .social .s_group i:hover {
  color: #476E62;
  transform: scale(1.1);
}
footer .social .copyright {
  margin-top: 20px;
  font-family: "Noto Sans TC";
  font-size: 12px;
  color: #2F4840;
}
@media (max-width: 1050px) {
  footer .max-width {
    flex-direction: column;
  }
  footer .max-width .f_menu {
    width: 100%;
    margin: 20px auto;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  footer .max-width .f_menu {
    flex-direction: column;
    align-items: center;
  }
  footer .max-width .f_menu .menu_item ul {
    border-right: none;
  }
}

.main {
  margin-top: 80px;
  overflow: hidden;
}
.main.white {
  background-color: #fff;
}

.breadcrumb {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px;
  background-image: url("/images/footer_bg.png");
}
.breadcrumb a {
  color: #2F4840;
  transition: 0.3s;
}
.breadcrumb a::after {
  content: "／";
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  color: #476E62;
}
.breadcrumb .target {
  color: #808080;
  white-space: nowrap;
  /* 不換行 */
  overflow: hidden;
  /* 隱藏超出部分 */
  text-overflow: ellipsis;
  /* 超過顯示 ... */
  max-width: 20ch;
  /* 限制最多 20 個字元寬度 */
}

.btn {
  width: 100%;
  position: relative;
  max-width: 300px;
  height: 60px;
  border: 2px solid #2F4840;
  border-radius: 60px;
  margin: 20px auto;
  background: transparent;
  color: #2F4840;
  cursor: pointer;
  transition: 0.3s;
}
.btn.white {
  border-color: #fff;
  color: #fff;
}
.btn i {
  position: absolute;
  font-size: 18px;
  right: 20px;
  transition: 0.3s;
}
.btn:hover {
  background: #2F4840;
  color: #fff;
  border-color: #DEF752;
  box-shadow: 0 0 20px #2F4840;
}
.btn:hover i {
  right: 10px;
}
.btn:hover.white {
  background: #fff;
  color: #2F4840;
  border-color: #2F4840;
  box-shadow: 0 0 20px #DEF752;
}

.banner {
  width: 100%;
  height: 1000px;
  margin: 0;
}
.banner .banner_item {
  height: 100%;
  width: 100%;
  padding: 20px;
}
.banner .banner_item img {
  width: 100%;
  max-width: 600px;
}

section {
  margin: 100px 0;
}
section .values_img {
  height: 100%;
  width: auto;
  max-height: 75px;
}
section .title {
  font-size: 18px;
}

.icon {
  width: 150px;
  position: absolute;
  animation-name: float;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.icon:nth-of-type(3n) {
  animation-duration: 5s;
}
.icon:nth-of-type(3n+1) {
  animation-duration: 7s;
  animation-delay: 1s;
}
.icon:nth-of-type(3n+2) {
  animation-duration: 3s;
  animation-delay: 0.5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(5px, 10px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.six_value {
  width: 100%;
  background: #2F4840;
  color: #fff;
  padding: 50px 0;
}
.six_value .icon_2 {
  left: -100px;
  top: -7%;
}
.six_value .icon_3 {
  right: -150px;
  top: 15%;
  width: 200px;
}
.six_value .icon_5 {
  right: -350px;
  bottom: -450px;
  width: 400px;
}
.six_value .values_group {
  margin: 50px auto;
}
.six_value .values_group .value_item {
  width: calc(50% - 100px);
  margin: 50px;
  text-align: left;
  min-height: 250px;
  border-bottom: 1px solid #E5E9E8;
}
.six_value .values_group .value_item .value_top {
  text-align: left;
}
.six_value .values_group .value_item .value_top img {
  height: 100%;
  width: auto;
  max-height: 120px;
}
.six_value .values_group .value_item .value_top .info {
  height: 100%;
  width: calc(50% - 20px);
  margin-left: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.six_value .values_group .value_item .value_top .info .no {
  font-family: "Newsreader";
  margin-bottom: 10px;
}
.six_value .values_group .value_item .value_top .info .title {
  font-size: 16px;
  font-weight: bold;
}
.six_value .values_group .value_item .desc {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .six_value .values_group .value_item {
    width: 100%;
  }
}

.work_in {
  width: 100%;
  background: #fff;
  color: #2F4840;
  padding: 50px 0;
}
.work_in .icon_4 {
  left: -350px;
  top: -300px;
  height: 300px;
  width: auto;
}
.work_in .icon_6 {
  left: -350px;
  top: 50%;
  height: 400px;
  width: auto;
}
.work_in .icon_7 {
  right: -150px;
  top: 75%;
}
.work_in .icon_8 {
  left: -150px;
  bottom: -10%;
  height: 75px;
  width: auto;
}

.work_group {
  margin: 50px auto;
}
.work_group .work_item {
  width: calc(33.33% - 40px);
  text-align: left;
  color: #2F4840;
  margin: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.work_group .work_item .cover {
  position: relative;
  width: 100%;
  height: 250px;
}
.work_group .work_item .cover .cover_info {
  position: absolute;
  left: 0;
  bottom: -10px;
  padding: 10px 20px;
  padding-left: 5px;
  width: fit-content;
  background: #fff;
}
.work_group .work_item .cover .cover_info .date {
  font-family: "Newsreader";
}
.work_group .work_item .cover .cover_info .tag {
  border: 1px solid #2F4840;
  padding: 5px 10px;
  height: 30px;
  line-height: 20px;
  margin-left: 10px;
  font-size: 12px;
}
.work_group .work_item .title {
  margin-top: 20px;
  font-weight: bold;
  display: -webkit-box;
  /* 仍保留做相容 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 新版標準屬性（支援度漸廣） */
  line-clamp: 1;
  /* 舊版前綴，確保 Chrome/Safari/Edge 都 OK */
  -webkit-line-clamp: 1;
}
.work_group .work_item .desc {
  color: #000;
  display: -webkit-box;
  /* 仍保留做相容 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 新版標準屬性（支援度漸廣） */
  line-clamp: 3;
  /* 舊版前綴，確保 Chrome/Safari/Edge 都 OK */
  -webkit-line-clamp: 3;
}
.work_group .work_item:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .work_group .work_item {
    width: calc(50% - 40px);
  }
}
@media (max-width: 600px) {
  .work_group .work_item {
    width: 100%;
  }
}

.slick-list {
  width: 100%;
}

.slick-track {
  display: flex;
}

.slick-arrow {
  background: #2F4840;
  border: 1px solid #2F4840;
  border-radius: 50%;
}
.slick-arrow:before {
  font-size: 21px;
}
.slick-arrow:hover {
  background: #2F4840;
}

.slick-prev {
  left: -25px;
}

.slick-next {
  right: -25px;
}

.slick-dots {
  bottom: -30px;
  margin: 20px auto;
}

.schools {
  width: 100%;
  background: #2F4840;
  color: #fff;
  padding: 50px 0;
}
.schools .icon_9 {
  right: -50px;
  top: 0;
}

.school_group {
  margin: 50px auto;
  width: 100%;
  text-align: left;
  color: #fff;
}
.school_group .school_item {
  width: calc(33.33% - 40px);
  margin: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.school_group .school_item .cover {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
}
.school_group .school_item .location {
  font-size: 12px;
}
.school_group .school_item .location i {
  font-size: 20px;
}
.school_group .school_item .title {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
.school_group .school_item .desc {
  display: -webkit-box;
  /* 仍保留做相容 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 新版標準屬性（支援度漸廣） */
  line-clamp: 3;
  /* 舊版前綴，確保 Chrome/Safari/Edge 都 OK */
  -webkit-line-clamp: 3;
}
.school_group .school_item:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .school_group .school_item {
    width: calc(50% - 40px);
  }
}
@media (max-width: 600px) {
  .school_group .school_item {
    width: 100%;
  }
}

.deals {
  width: 100%;
  padding: 50px 0;
  color: #2F4840;
}
.deals .deal_group {
  margin: 50px auto;
}
.deals .deal_group .deal_item {
  width: calc(50% - 40px);
  margin: 20px;
  align-items: stretch;
}
.deals .deal_group .deal_item .cover {
  width: 50%;
  height: 200px;
  width: 50%;
}
.deals .deal_group .deal_item .info {
  padding: 20px;
  width: 50%;
  text-align: left;
  background: #fff;
  height: 100%;
  min-height: 200px;
}
.deals .deal_group .deal_item .info .tag {
  background: #F19149;
  color: #fff;
  width: fit-content;
  padding: 0 10px;
  height: 25px;
  border-radius: 25px;
  margin-bottom: 10px;
}
.deals .deal_group .deal_item .info .title {
  font-size: 20px;
  font-weight: bold;
  color: #2F4840;
}
.deals .deal_group .deal_item .info .desc {
  color: #000;
  display: -webkit-box;
  /* 仍保留做相容 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 新版標準屬性（支援度漸廣） */
  line-clamp: 3;
  /* 舊版前綴，確保 Chrome/Safari/Edge 都 OK */
  -webkit-line-clamp: 3;
}
@media (max-width: 1000px) {
  .deals .deal_group .deal_item {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .deals .deal_group .deal_item {
    flex-direction: column;
  }
  .deals .deal_group .deal_item .cover,
  .deals .deal_group .deal_item .info {
    width: 100%;
  }
}

.testimonials {
  width: 100%;
  padding: 50px 0;
  color: #2F4840;
}
.testimonials .t_group .t_item {
  width: 300px;
  height: auto;
  padding: 50px 20px;
  background: #2F4840;
  color: #fff;
  margin: 20px;
  text-align: left;
}
.testimonials .t_group .t_item .name {
  font-size: 18px;
  font-weight: bold;
}
.testimonials .t_group .t_item .from {
  font-size: 14px;
  font-weight: bold;
}
.testimonials .t_group .t_item .desc {
  border-top: 1px solid #DEF752;
  margin-top: 20px;
  padding-top: 20px;
}

.contact {
  position: relative;
  background: #2F4840;
  color: #fff;
  padding: 50px 0;
  height: 250px;
  margin-top: 0;
}
.contact .contact_block {
  position: absolute;
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
  background: #DEF752;
  color: #2F4840;
  height: 100px;
  flex-direction: column;
  bottom: -50px;
  left: 0;
  right: 0;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.contact .contact_block .c_top {
  width: 100%;
  font-size: 24px;
}
.contact .contact_block:hover {
  transition: 0.3s;
  background: #476E62;
  color: #fff;
}

.about {
  color: #2F4840;
  padding: 50px 0;
}
.about .max-width {
  background: #fff;
  padding: 50px 20px;
}
.about .desc {
  color: #000;
  margin-top: 50px;
}
.about .about_link {
  position: relative;
  margin: 20px auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #2F4840;
  color: #2F4840;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* hover 效果 */
}
.about .about_link:hover {
  background: #2F4840;
  color: #fff;
  border-color: #DEF752;
  box-shadow: 0 0 10px #2F4840;
}
.about .about_link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.page_banner {
  position: relative;
  flex-direction: column;
  min-height: 350px;
}
.page_banner:before {
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(47, 72, 64, 0.5);
  pointer-events: none;
  /* 不影響互動 */
}
.page_banner .title,
.page_banner .desc {
  color: #fff;
  z-index: 1;
  text-shadow: 1px 1px 5px rgba(47, 72, 64, 0.75);
}
.page_banner .desc {
  font-size: 18px;
}

.values_page {
  max-width: 1000px;
  margin: 50px auto;
}
.values_page .value_item {
  margin: 50px auto;
}
.values_page .value_item .title {
  position: relative;
  background: #2F4840;
  color: #fff;
  min-height: 80px;
  padding-left: 100px;
}
.values_page .value_item .title .num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  background: #DEF752;
  color: #2F4840;
  font-size: 40px;
  font-weight: bold;
}
.values_page .value_item .title .text {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}
.values_page .value_item .desc {
  padding: 20px;
}
.values_page .value_item .desc .desc_text {
  width: calc(100% - 200px);
  text-align: left;
  margin-right: 20px;
  font-weight: 500;
}
.values_page .value_item .desc .desc_img {
  width: 180px;
}
@media (max-width: 768px) {
  .values_page .value_item .desc .desc_text {
    width: 100%;
    margin-right: 0;
  }
  .values_page .value_item .desc .desc_img {
    margin: 20px auto;
  }
}

.work_in_list {
  background: #fff;
  padding: 50px 20px;
}
.work_in_list .filter {
  margin: 20px 0;
}
.work_in_list .filter .f_title {
  font-weight: bold;
  margin-right: 20px;
  color: #2F4840;
}
.work_in_list .filter .f_group .f_item {
  width: fit-content;
  min-width: 100px;
  padding: 5px 10px 0px 10px;
  border: 1px solid #2F4840;
  color: #2F4840;
  margin: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.work_in_list .filter .f_group .f_item:hover, .work_in_list .filter .f_group .f_item.active {
  background: #2F4840;
  color: #fff;
}

.content_banner {
  width: 100%;
  background: transparent;
  margin-top: 20px;
}
.content_banner img {
  width: 100%;
  height: auto;
}

.work_in_page {
  background: #fff;
  padding: 50px 20px;
}
.work_in_page .max-width {
  max-width: 1000px;
}
.work_in_page .p_top {
  color: #2F4840;
}
.work_in_page .p_top .category {
  background: #DEF752;
  margin-left: 20px;
  padding: 5px 10px 0px 10px;
  font-weight: bold;
}
.work_in_page .title {
  background: #2F4840;
  color: #fff;
  min-height: 80px;
  font-size: 24px;
  font-weight: bold;
  padding: 0 20px;
  margin: 20px 0;
}
.work_in_page .info {
  padding: 20px;
  background: #ECF1F5;
  font-family: "Noto Sans TC";
  text-align: left;
}
.work_in_page .img_group {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  margin: 20px 0;
}
.work_in_page .img_group a {
  width: 100%;
  height: auto;
  object-fit: cover;
  grid-column: span 2;
  display: block;
}
.work_in_page .img_group a:nth-child(5n+4),
.work_in_page .img_group a:nth-child(5n+5) {
  grid-column: span 3;
}
@media (max-width: 768px) {
  .work_in_page .img_group {
    grid-template-columns: repeat(2, 1fr);
  }
  .work_in_page .img_group a {
    grid-column: span 1;
  }
}

.content {
  text-align: left;
  font-weight: 500;
  color: #000;
}
.content h2 {
  background-image: url("/images/h2_bg.png");
  background-size: 100%;
  background-repeat: repeat;
  padding: 5px 10px 0px 10px;
  height: 60px;
  color: #2F4840;
}
.content h3 {
  color: #2F4840;
  padding: 0 20px;
  position: relative;
}
.content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 0;
  width: 8px;
  height: 20px;
  background-color: #DEF752;
  vertical-align: middle;
}
.content img {
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.schools_list {
  background: #2F4840;
  padding: 50px 20px;
}
.schools_list .filter {
  margin: 20px 0;
}
.schools_list .filter .f_title {
  font-weight: bold;
  margin-right: 20px;
  color: #fff;
}
.schools_list .filter .f_group .f_item {
  width: fit-content;
  min-width: 100px;
  padding: 5px 10px 0px 10px;
  border: 1px solid #fff;
  color: #fff;
  margin: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.schools_list .filter .f_group .f_item:hover, .schools_list .filter .f_group .f_item.active {
  background: #DEF752;
  color: #2F4840;
}

/* Page Loader Overlay */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2F4840;
  /* $main color */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutOverlay 1.5s ease-out forwards;
  animation-delay: 0.3s;
  /* Optional delay before fading out */
}

@keyframes fadeOutOverlay {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    /* Make sure it's not clickable after fade */
  }
}
.no-scroll {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */