* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-family: "Graphik Web", sans-serif;
  color: #333;
  line-height: 1.5;
  letter-spacing: 1px;
  box-sizing: border-box;
  /* #005bac */
}

ul,
li {
  margin-top: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* navigation - start */
header {
  position: relative;
}

#logo2 {
  display: none;
}

nav {
  position: relative;
}

.nav_area {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: transparent;
  transition: all 0.3s ease;
}

.nav_area .nav_wrap {
  width: 1440px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_area .nav_wrap > a {
  font-size: 0;
}

.nav_area .nav_wrap > a > img {
  max-width: 186px;
  filter: brightness(2.2);
  padding-left: 20px;
}

.nav_area .nav_wrap ul {
  display: flex;
}

.nav_area .nav_wrap ul li {
  margin: 0 10px;
}

.nav_area .nav_wrap ul li a {
  padding: 12px 10px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

.nav_area .nav_wrap ul li a.active::after {
  content: "";
  width: calc(100% - 20px);
  height: 2px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  background-color: #ffb907;
  /* background-color: #00206b; */
  transform: translate(-50%, 0);
}

.nav_area .nav_wrap ul li a:hover::after {
  content: "";
  width: calc(100% - 20px);
  height: 2px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  background-color: #ffb907;
  /* background-color: #00206b; */
  transform: translate(-50%, 0);
}

.nav_area .nav_wrap ul li a:hover {
  /* color: #00206b; */
  color: #ffb907;
}

.menu-toggle {
  display: none;
  padding-right: 20px;
}
/* navigation - end */

/* carousel - start */
.carousel-container {
  width: 100%;
  height: 960px;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-item {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(37, 49, 61, 0.4);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-button {
  display: none;
  position: absolute;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  padding: 16px;
  margin: 5px;
  background: transparent;
  cursor: pointer;
  top: 50%;
  transform: translate(0, -50%);
}

.carousel-button.prev {
  left: 40px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.carousel-button.next {
  right: 40px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.carousel-container:hover .carousel-button {
  display: inline-block;
}

.carousel-container .carousel-button:hover {
  display: inline-block;
  opacity: 0.8;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicator.active {
  background-color: rgba(255, 255, 255, 0.8);
}

/* carousel - end */

.banner_txt {
  width: 1200px;
  height: 400px;
  position: absolute;
  top: 60%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.banner_txt .txt_title {
  width: 100%;
  line-height: 1.2;
  font-size: 75px;
  font-weight: bold;
  color: #fff;
  font-family: Cambria;
}

/* read more - start */
button.read_more {
  display: inline-block;
  border-radius: 4px;
  background-color: #ffb907;
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  padding: 10px 20px;
  width: 168px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 40px 0;
}

button.read_more span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  color: #000;
}

button.read_more span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

button.read_more:hover span {
  padding-right: 15px;
}

button.read_more:hover span:after {
  opacity: 1;
  right: 0;
}

/* read more - end */

/* learn more - start */
button.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.learn-more {
  width: 12rem;
  height: auto;
}

button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button.learn-more:hover .circle {
  width: 100%;
}

button.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button.learn-more:hover .button-text {
  color: #ffb907;
}
/* learn more - end */

/* main_about - start */

#main {
}

#main .news_area {
  width: 1440px;
  margin: 12px auto;
}

#main .news_area .news_item {
  margin: 0px 0 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

#main .news_area a:last-child .news_item {
  margin-bottom: 0;
}

#main .news_area .news_flag {
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005bac;
}

#main .news_area .news_detail {
  width: calc(100% - 116px);
}

#main .news_area .news_date {
  font-size: 20px;
  font-weight: 400;
  color: rgb(102, 102, 102);
}

#main .news_area .news_title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

#main .news_area .news_desc {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

#main .news_area .news_date,
#main .news_area .news_title,
#main .news_area .news_desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

#main .news_area .news_detail:hover .news_date,
#main .news_area .news_detail:hover .news_title,
#main .news_area .news_detail:hover .news_desc strong,
#main .news_area .news_detail:hover .news_desc div,
#main .news_area .news_detail:hover .news_desc p {
  /* color: #ffb907; */
  /* color: #00206b; */
  color: #005bac;
}

#main .main_about .about_area,
#main .main_service .service_area,
#main .main_join .join_area,
#main .main_contact .contact_area,
#main .main_online .online_area {
  width: 100%;
  margin: 0 auto;
  /* #00206B */
  background-color: #005bac;
}

#main .main_about .about_title,
#main .main_service .service_title,
#main .main_join .join_title,
#main .main_contact .contact_title,
#main .main_online .online_title {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px;
}

#main .main_about .about_title h2,
#main .main_service .service_title h2,
#main .main_join .join_title h2,
#main .main_contact .contact_title h2,
#main .main_online .online_title h2 {
  font-size: 36px;
  margin: 0 0 10px;
  color: #fff;
}

#main .main_about .about_title {
  align-items: flex-start;
  gap: 20px;
}

#main .main_about .about_title p {
  font-size: 20px;
  font-family: "DM Serif Text", serif;
  color: #fff;
}

#main .main_about .about_content {
  width: 100%;
  height: 660px;
  position: relative;
  background-color: #f6f6f6;
  background-image: url(../images/home_about.jpg);
  background-position: 50% 40%;
  background-size: cover;
  background-repeat: no-repeat;
}

#main .main_about .about_txt {
  width: 800px;
  position: absolute;
  top: 50%;
  left: 24%;
  z-index: 3;
  transform: translate(0%, -50%);
}

#main .main_about .txt_box {
  font-size: 20px;
  color: #fff;
}

#main .main_about .about_txt .first {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
}

#main .main_about .about_txt .second {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
}

#main .main_service .service_title {
  margin: 0 30%;
  padding: 40px 0;
  flex-direction: column;
  align-items: flex-end;
}

#main .main_service .service_title .title_wrap {
  position: relative;
}

#main .main_service .service_title svg {
  position: absolute;
  top: 0;
  left: -76px;
}

#main .main_service .service_title p {
  font-size: 20px;
  font-family: "DM Serif Text", serif;
  color: #fff;
}

#main .main_service .service_content {
  width: 100%;
  height: 660px;
  position: relative;
  background-color: #fff;
  background-image: url(../images/home_service.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#main .main_service .service_content .more_box {
  width: 1000px;
  margin: 0px 40%;
  position: relative;
  z-index: 3;
}

#main .main_service .service_content .more_box .read_more {
  margin-top: 0;
}

#main .main_service .service_desc {
  width: 1000px;
  margin: 0px 40%;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

#main .main_service .service_item {
  width: 50%;
  height: 160px;
  padding: 20px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.6);
}

#main .main_service .item_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

#main .main_service .service_item svg {
  width: 92px;
  flex: 0 0 92px;
}

#main .main_service .service_item p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease;
}

#main .main_service .service_item:hover .item_title p {
  color: #ffb907;
}

#main .main_join .join_title {
  align-items: flex-start;
  gap: 20px;
}

#main .main_join .join_title p {
  font-size: 20px;
  font-family: "DM Serif Text", serif;
  color: #fff;
}

#main .main_join .join_content {
  width: 100%;
  height: 660px;
  padding-top: 74px;
  position: relative;
  background-color: #f6f6f6;
  background-image: url(../images/home_join.jpg);
  background-position: 50% 72%;
  background-size: cover;
  background-repeat: no-repeat;
}

#main .main_join .join_wrap {
  width: 1000px;
  margin: 0 25%;
  padding: 50px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.6);
}

#main .main_join .join_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin-bottom: 100px;
}

#main .main_join .join_item:last-child {
  margin-bottom: 0;
}

#main .main_join .join_item svg {
  width: 100px;
}

#main .main_join .item_desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#main .main_join .item_desc p {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

#main .main_contact {
  width: 100%;

  background-color: rgb(0, 32, 107);
  position: relative;
  background-color: #fff;
}

#main .main_contact .contact_area {
  position: relative;
  background-image: url(../images/contact_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#main .main_contact .contact_title {
  margin: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: transparent;
  position: relative;
  z-index: 3;
  position: relative;
}

#main .main_contact .contact_title .title_wrap {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}

#main .main_contact .contact_title .title_desc {
  font-size: 20px;
  font-family: "DM Serif Text", serif;
  color: #fff;
  margin-left: 76px;
}

#main .main_contact .contact_midea {
  display: flex;
  margin: 40px 76px 0;
}

/* social - media - start*/
.social-media-btn {
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: 30px;
}

.facebook {
  /* background: #1877f2; */
  background: #537bbc;
}

.linkedin {
  background-color: #0077b5;
}

.twitter {
  background-color: #1da1f2;
  /* background-color: #55acee; */
}

.whatsapp {
  background-color: #25d366;
}

.telegram {
  background-color: #32a8de;
}

.instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.youtube {
  background-color: #ff0000;
}

.email {
  background-color: #3784ff;
}

.social-media-btn:hover {
  width: 148px;
  transition-duration: 0.4s;
  border-radius: 30px;
}

.social-media-btn:hover .social-media-text {
  opacity: 1;
  transition-duration: 0.4s;
}

.social-media-btn:hover .svgIcon,
.social-media-btn:hover .icon {
  opacity: 0;
  transition-duration: 0.3s;
}

.social-media-text {
  position: absolute;
  color: rgb(255, 255, 255);
  width: 120px;
  font-weight: 600;
  opacity: 0;
  transition-duration: 0.4s;
}
/* social - media - end*/
#main .main_online .online_title {
  flex-direction: column;
  align-items: flex-start;
}

#main .main_online .online_title .online_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

#main .main_online .online_title .title_desc {
  font-size: 20px;
  font-family: "DM Serif Text", serif;
  color: #fff;
  margin-left: 76px;
}

#main .main_online .online_content {
  padding: 40px 0;
  background-color: #fff;
}

#main .main_online .online_content h2 {
  padding-bottom: 40px;
  color: #172a3a;
  font-family: "Gotham A", "Gotham B", Arial, "Nimbus Sans L", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
}

#main .main_online .online_content .email_address {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

#main .main_online .online_content .email_address ul {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

#main .main_online .online_content .email_address ul li {
  width: 50%;
  height: 48px;
  line-height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#main .main_online .online_content .email_address ul li a {
  font-size: 20px;
  transition: all 0.3s ease;
}

#main .main_online .online_content .email_address ul li:hover a {
  color: #ffb907;
}

#main .main_online .online_content h2::after {
  border-bottom: 3px solid #407ca7;
  content: "";
  display: block;
  padding-top: 10px;
}

.h2_box {
  width: 1000px;
  margin: 0 auto;
}

/* form-start */
.contact_form {
  width: 1000px;
  padding: 0 0 60px;
  margin: 0 auto;
}

#contactForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-group {
  margin-bottom: 20px;
  width: 49%;
}

#contactForm .last-form-group {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 18px;
}

.required {
  color: red;
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
}

.form-submit button {
  padding: 12px 40px;
  background-color: #005bac;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-submit button:hover {
  opacity: 0.9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #063289;
  box-shadow: 0 0 5px rgba(103, 88, 236, 0.2);
}

.error-message {
  display: none;
  color: #ec0008;
  font-size: 12px;
  margin-top: 5px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ec0008;
}

.form-group.error .error-message {
  display: block;
}
/* form-end */

/* main_about - end */
.module_bg_cover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  /* background-color: rgba(0, 32, 107, 0.34); */
  background-color: rgb(0 91 172 / 0.3);
}

.main_service .module_bg_cover {
  background-color: rgba(0, 71, 109, 0.39);
}

.main_join .module_bg_cover {
  background-color: rgba(0, 52, 86, 0.29);
}

.contact_area .module_bg_cover {
  background-color: rgba(0, 0, 0, 0.69);
}

#lang_change {
  background-color: rgb(0, 91, 172);
  border-radius: 4px;
  padding: 2px;
}

.nav_area .nav_wrap ul li#lang_change a:hover {
  color: #ffb907;
}

.nav_area .nav_wrap ul li#lang_change a:hover::after {
  background-color: transparent;
}

/* h5 */
nav {
  padding: 20px 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    left: 0px;
    top: calc(100% + 20px);
    width: 100%;
  }

  nav.show {
    display: block;
  }

  .nav_area .nav_wrap {
    width: 100%;
    position: relative;
  }

  .nav_area .nav_wrap ul {
    flex-direction: column;
  }

  .nav_area .nav_wrap ul li {
    padding: 4px 0;
    margin: 6px 0;
    text-align: center;
  }

  .nav_area .nav_wrap ul li a {
    font-size: 16px;
    padding: 0;
  }

  .banner_txt {
    width: 80%;
  }

  .banner_txt .txt_title {
    font-size: 32px;
    width: 100% !important;
  }

  #main .news_area {
    width: 100%;
    padding: 0 10px;
  }

  #main .news_area .news_title {
    font-size: 18px;
  }

  #main .news_area .news_desc {
    font-size: 16px;
  }

  #main .news_area .news_date {
    font-size: 14px;
  }

  #main .main_about .about_title,
  #main .main_service .service_title,
  #main .main_join .join_title,
  #main .main_contact .contact_title,
  #main .main_online .online_title {
    width: 100%;
  }

  #main .main_about .about_title svg,
  #main .main_service .service_title .title_wrap svg,
  #main .main_contact .contact_title .title_wrap svg,
  #main .main_join .join_title svg,
  #main .main_online .online_title .online_wrap svg {
    width: 48px !important;
    height: 48px !important;
  }

  #main .main_about .about_title h2,
  #main .main_service .service_title h2,
  #main .main_join .join_title h2,
  #main .main_contact .contact_title h2,
  #main .main_online .online_title h2 {
    font-size: 24px;
  }

  #main .main_about .about_title p,
  #main .main_about .about_txt .first,
  #main .main_about .about_txt .second,
  #main .main_service .service_title p,
  #main .main_join .join_title p,
  #main .main_contact .contact_title .title_desc,
  #main .main_online .online_title .title_desc {
    font-size: 18px;
  }

  #main .main_about .about_txt {
    width: 80%;
  }

  #main .main_about .txt_box {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #main .main_about .about_txt {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #main .main_service .service_title,
  #main .main_service .service_desc,
  #main .main_join .join_wrap {
    margin: 0 auto;
    width: 80%;
  }

  #main .main_service .service_title svg {
    left: -66px;
  }

  #main .main_service .item_title {
    gap: 10px;
  }

  #main .main_service .service_item p {
    display: none;
  }

  #main .main_join .join_wrap {
    padding: 20px;
  }

  #main .main_join .join_item svg {
    display: none;
  }

  #main .main_join .item_desc p {
    font-size: 20px;
  }

  #main .main_join .join_content {
    padding-top: 120px;
  }

  #main .main_contact .contact_midea {
    margin: 30px 30px 0 0;
  }

  .social-media-btn {
    width: 36px;
    height: 36px;
  }

  #main .main_online .online_content {
    padding: 40px 10px;
  }

  .h2_box {
    width: 100%;
    margin: 0 auto;
  }

  #main .main_online .online_content .email_address {
    width: 100%;
    margin: auto;
  }

  #main .main_online .online_content .email_address ul {
    flex-direction: column;
  }

  #main .main_online .online_content .email_address ul li a {
    font-size: 16px;
  }

  #main .main_online .online_content .email_address ul li {
    width: 100%;
    height: auto;
  }

  #main .main_online .online_content h2 {
    font-size: 18px;
  }

  .form-group label {
    font-size: 14px;
  }

  .contact_form,
  #main .main_service .service_content .more_box {
    width: 100%;
  }

  .about_content,
  .services_content,
  .join_location,
  .join_content .content_title,
  .join_content .content_box,
  .services_content .service_item,
  .contact_content .content_box,
  .contact_container .content_box,
  .contact_container .content_title,
  .online_container .content_title {
    width: 100% !important;
    padding: 10px !important;
    flex-direction: column;
  }

  .content_txt {
    flex-direction: column;
  }

  .service_item img,
  .item_box img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .item_left,
  .item_right {
    flex-direction: column !important;
  }

  .contact_container .content_title h2,
  .content_title h2 {
    margin: 0 auto !important;
  }

  .online_content {
    padding: 0 10px !important;
  }

  .h2_box,
  .contact_form,
  .online_content .email_address {
    width: 100% !important;
  }

  .online_content .email_address ul li {
    width: 100% !important;
    height: 32px !important;
  }

  .online_content .email_address ul li a {
    font-size: 14px !important;
  }

  .news_container .content_title,
  .news_container .news_content {
    width: 100% !important;
  }

  .news_container .news_content {
    padding: 0 10px;
  }

  .news_content > a {
    width: 48% !important;
  }

  .news_content .news_item .pic_wrap {
    height: 240px !important;
  }

  .news_content .news_title {
    font-size: 18px !important;
    height: 84px !important;
  }

  .news_content .news_detail {
    font-size: 16px !important;
  }

  .news_content .news_date {
    font-size: 14px !important;
  }
}
