.skiptranslate {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0px;
  padding: 0px;
  padding-top: 82px;
  top: 0 !important;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 69px;
  }
}
body.active {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  transition: 0.5s linear 0s;
}

@font-face {
  font-family: mon-regular;
  src: url("../font/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: mon-bold;
  src: url("../font/Montserrat-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: mon-extrabold;
  src: url("../font/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: mon-black;
  src: url("../font/Montserrat-Black.ttf");
  font-display: swap;
}
@font-face {
  font-family: mon-light;
  src: url("../font/Montserrat-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: mon-medi;
  src: url("../font/Montserrat-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: mon-semi;
  src: url("../font/Montserrat-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: gil-bold;
  src: url("../font/SVN-Gilroy-Bold.otf");
}
a {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  font-family: mon-regular;
  cursor: pointer;
}

p,
div {
  margin: 0;
  padding: 0;
}

p {
  font-family: mon-regular;
}

h1,
h2,
h3 {
  margin: 0px;
  padding: 0px;
  color: #333333;
}

input, textarea {
  outline: none;
  padding-left: 15px;
}

strong {
  font-family: mon-bold;
}

ul {
  padding: 0;
}

* {
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
    margin: 0px auto;
  }
}
@media (min-width: 767px) {
  .container {
    max-width: 720px;
    margin: 0px auto;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin: 0px auto;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: 0px auto;
  }
  .container-2 {
    max-width: 1330px;
  }
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

header {
  padding: 11.5px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.35) 0 0 10px -5px;
}
@media screen and (max-width: 767px) {
  header {
    height: 70px;
  }
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  header .container {
    justify-content: center;
  }
}
header .container .logo {
  width: 100px;
}
header .container .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: initial;
  height: initial;
}
@media screen and (max-width: 767px) {
  header .container .logo {
    width: 78px;
    display: flex;
    align-items: center;
  }
}
header .container .right-header {
  display: flex;
  gap: 15px;
  align-items: center;
}
header .container .menu {
  gap: 35px;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-between;
}
header .container .menu > li {
  position: relative;
}
header .container .menu > li > a {
  font-size: 15px;
  font-family: mon-bold;
  color: #333;
  text-transform: uppercase;
}
header .container .menu > li.hotline > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-family: mon-bold;
  color: #fff;
  background: #bc1f29;
  border: 1px solid #bc1f29;
  padding: 5px 15px;
  border-radius: 15px;
}
header .container .menu > li:hover > a, header .container .menu > li.active > a {
  color: #bc1f29;
  border-bottom: 2px solid #bc1f29;
}
header .container .menu > li:hover.hotline a, header .container .menu > li.active.hotline a {
  background: #fff;
  border-bottom: 1px solid #bc1f29;
}
header .container .menu > li:hover.hotline a svg path, header .container .menu > li.active.hotline a svg path {
  fill: #bc1f29;
}
header .container .menu > li .submenu {
  list-style: none;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: -15px;
  top: calc(100% + 10px);
  min-width: 200px;
  z-index: 28;
  padding-top: 35px;
  transition: top 0.4s linear;
}
header .container .menu > li .submenu .submenu {
  left: calc(100% + 15px);
  top: 0;
  padding-top: 0;
  transition: left 0.5s ease;
}
header .container .menu > li .submenu > li {
  padding: 8px 0 8px 15px;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
}
header .container .menu > li .submenu > li > a {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
header .container .menu > li .submenu > li:hover > a, header .container .menu > li .submenu > li.active > a {
  color: #ff0000;
}
header .container .menu > li .submenu > li:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 1025px) {
  header .container .menu > li .submenu {
    padding-top: 10px;
  }
}
header .container .menu > li:hover > .submenu {
  opacity: 0.9;
  pointer-events: all;
  top: calc(100% + 2px);
}
header .container .menu > li:hover > .submenu > li:hover .submenu {
  left: 100%;
  opacity: 0.9;
  pointer-events: all;
}
@media screen and (max-width: 1025px) {
  header .container .menu > li {
    padding: 10px;
  }
}
header .container .search {
  position: relative;
  padding: 0 20px;
  margin-right: 20px;
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  cursor: pointer;
}
@media screen and (max-width: 1025px) {
  header .container .search {
    padding: 0;
    margin: 0;
    border: none;
  }
  header .container .search > img {
    display: none;
  }
}
header .container .search .input-sr input {
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  left: -10px;
  width: 300px;
  height: 0;
  opacity: 0;
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  transition: height 0.4s linear, opacity 0.4s linear;
  pointer-events: none;
}
@media screen and (max-width: 1025px) {
  header .container .search .input-sr input {
    height: 40px;
    opacity: 1;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    pointer-events: all;
  }
}
@media screen and (min-width: 1025px) {
  header .container .search .input-sr button {
    display: none;
  }
}
@media screen and (max-width: 1025px) {
  header .container .search .input-sr button {
    height: 36px;
    width: 36px;
    border-radius: 5px;
    position: absolute;
    top: 2px;
    right: 2px;
    background: transparent;
    border: 0;
  }
}
header .container .search.active .input-sr input {
  height: 40px;
  opacity: 1;
  pointer-events: all;
}
header .container .lang {
  cursor: pointer;
}
@media screen and (max-width: 1025px) {
  header .container .lang {
    position: absolute;
    right: 15px;
  }
}
@media screen and (min-width: 1025px) {
  header .container .touch-menu, header .container .bg-black, header .container .show-sub {
    display: none;
  }
}
@media screen and (max-width: 1025px) {
  header .container .hotline {
    display: none;
  }
  header .container .menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 320px;
    display: block;
    background: #fff;
    padding: 20px;
    transition: left 0.5s linear;
    z-index: 999;
    margin: 0;
  }
  header .container .menu.active {
    left: 0;
  }
  header .container .menu > li {
    position: relative;
  }
  header .container .menu > li .submenu {
    position: initial;
    opacity: 1;
    box-shadow: initial;
    display: none;
  }
  header .container .menu > li .show-sub {
    position: absolute;
    right: 0;
    top: 10px;
  }
}
@media screen and (max-width: 1025px) and (max-width: 567px) {
  header .container .menu {
    width: 100%;
    left: -100%;
  }
}
@media screen and (max-width: 1025px) {
  header .container .touch-menu {
    height: 35px;
    width: 35px;
    background: transparent;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    z-index: 999;
  }
  header .container .touch-menu span {
    display: block;
    width: 27px;
    height: 3px;
    background: #bc1f29;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
  }
  header .container .touch-menu span::before, header .container .touch-menu span::after {
    content: "";
    height: 3px;
    width: 27px;
    background: #bc1f29;
    position: absolute;
    left: 0;
    top: -6px;
    transition: transform 0.4s linear;
  }
  header .container .touch-menu span::after {
    top: initial;
    bottom: -6px;
  }
  header .container .touch-menu.active {
    left: unset;
    right: 15px;
  }
  header .container .touch-menu.active span {
    transform: rotate(45deg);
  }
  header .container .touch-menu.active span::before, header .container .touch-menu.active span::after {
    transform: rotate(-90deg);
    top: 0;
  }
  header .container .bg-black {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: #333333;
    opacity: 0;
    visibility: hidden;
  }
  header .container .bg-black.active {
    opacity: 0.9;
    visibility: visible;
  }
}

.social-fix {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 998;
}
.social-fix .it {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .social-fix {
    top: initial;
    bottom: 15px;
    right: 15px;
    transform: initial;
  }
  .social-fix .it {
    width: 35px;
    height: 35px;
  }
  .social-fix .it:nth-child(1) {
    position: fixed;
    left: 15px;
  }
  .social-fix .it:nth-child(2) {
    position: fixed;
    left: 15px;
    bottom: 15px;
  }
}

.video-index iframe {
  width: 100%;
  height: 100%;
}

.slider .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slider .owl-dots {
  margin-top: -24px !important;
  z-index: 10;
  position: relative;
  transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .slider .owl-dots {
    margin-top: -20px !important;
  }
}
.slider .owl-dots .owl-dot.active span {
  background: #bc1f29 !important;
}

.title {
  font-size: 32px;
  font-family: mon-extrabold;
  color: #bc1f29;
  text-transform: uppercase;
}
.title a {
  font-size: 32px;
  font-family: mon-extrabold;
  color: #bc1f29;
}
.title span {
  font-size: 20px;
  font-family: mon-bold;
  color: #bc1f29;
  display: block;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 18px;
  }
  .title a {
    font-size: 18px;
  }
  .title span {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.see-more {
  height: 42px;
  width: 145px;
  border-radius: 6px;
  border: 1px solid #bc1f29;
  font-size: 13px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s linear;
  background: #fff;
}
.see-more:hover {
  background: #bc1f29;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .see-more {
    height: 35px;
    width: 135px;
    margin: auto;
    font-size: 12px;
    font-family: mon-semi;
    color: #bc1f29;
  }
}
.about {
  padding: 108px 0;
  margin-bottom: 30px;
  position: relative;
}
.about:after {
  content: "";
  aspect-ratio: 957/600;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../image/bg-about.png) no-repeat rgba(212, 213, 213, 0.5);
  background-position: bottom left;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .about:after {
    position: initial;
  }
}
.about .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}
.about .ab-cnt {
  width: 415px;
}
@media screen and (max-width: 767px) {
  .about .ab-cnt {
    width: 100%;
  }
}
.about .title {
  margin-bottom: 30px;
}
.about .desc {
  margin-bottom: 30px;
}
.about .desc p {
  text-align: justify;
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about .desc p {
    font-size: 14px;
  }
}
.about .desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 30px 0 15px;
    margin-bottom: 0;
    background: #f0f8fd;
  }
  .about .title {
    margin-bottom: 15px;
    text-align: center;
  }
  .about .desc {
    margin-bottom: 15px;
  }
}

.service {
  margin-bottom: 55px;
}
.service .ser-cnt {
  padding-top: 35px;
  background: url("../image/bgr-service.png") no-repeat;
  background-position: center top;
}
.service .title {
  text-align: center;
  margin-bottom: 40px;
}
.service .ser-flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.service .ser-flex .item {
  width: calc((100% - 120px) / 5);
}
.service .ser-flex .item .img {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.service .ser-flex .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
.service .ser-flex .item .img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 30%;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}
.service .ser-flex .item .img:hover img {
  transform: scale(1.05);
}
.service .ser-flex .item .txt {
  margin-top: -70px;
  z-index: 10;
  position: relative;
}
.service .ser-flex .item .txt .num {
  font-size: 35px;
  font-family: mon-bold;
  color: #ff0000;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .service .ser-flex .item .txt .num {
    font-size: 20px;
  }
}
.service .ser-flex .item .txt .name {
  font-size: 18px;
  font-family: mon-bold;
  color: #333;
  text-transform: uppercase;
  display: block;
  padding: 65px 0 0 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service .ser-flex .item .txt .name {
    font-size: 14px;
    padding: 55px 0 0 40px;
  }
}
.service .ser-flex .item .txt .name:hover {
  color: #bc1f29;
}
.service .ser-flex .item .txt .name::after {
  content: "";
  position: absolute;
  left: 35px;
  bottom: 0;
  height: 90%;
  width: 1px;
  background: #ff0000;
}
@media screen and (max-width: 768px) {
  .service .ser-flex .item .txt .name::after {
    left: 21px;
  }
}
.service .ser-flex .item:nth-of-type(2n) {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .service .ser-flex .item:nth-of-type(2n) {
    margin: 0;
  }
}
@media screen and (max-width: 1025px) {
  .service .ser-flex .item {
    width: calc((100% - 60px) / 5);
  }
}
@media screen and (max-width: 1025px) {
  .service .ser-flex {
    gap: 15px;
  }
}
@media screen and (max-width: 992px) {
  .service {
    margin-bottom: 15px;
  }
  .service .ser-cnt {
    padding-top: 15px;
    background-size: 100%;
  }
  .service .title {
    margin-bottom: 15px;
  }
  .service .ser-flex {
    flex-wrap: wrap;
  }
  .service .ser-flex .item {
    width: calc((100% - 15px) / 2);
  }
}

.project {
  padding: 60px 0 70px;
  background: url("../image/bgr-project.png") no-repeat;
  background-position: top;
  background-size: 100%;
}
.project .title {
  text-align: center;
  margin-bottom: 45px;
}
.project .pro-slide {
  position: relative;
}
.project .pro-slide .owl-dots {
  margin-top: 35px;
}
.project .pro-slide .owl-dots .owl-dot span {
  border: 2px solid #bc1f29;
  background: #bc1f29;
}
.project .pro-slide .owl-dots .owl-dot.active span {
  background: #fff;
}
.project .pro-slide .owl-next, .project .pro-slide .owl-prev {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  .project .pro-slide .owl-next, .project .pro-slide .owl-prev {
    bottom: 3px;
  }
}
.project .pro-slide .owl-next:hover, .project .pro-slide .owl-prev:hover {
  background: transparent;
}
.project .pro-slide .owl-next {
  right: calc(50% - 70px);
}
.project .pro-slide .owl-prev {
  left: calc(50% - 70px);
}
@media screen and (max-width: 767px) {
  .project {
    padding: 15px 0;
  }
  .project .title {
    margin-bottom: 15px;
  }
  .project .pro-slide .owl-dots {
    margin-top: 15px;
  }
  .project .pro-slide .owl-next {
    bottom: 3px;
    right: calc(50% - 120px);
  }
  .project .pro-slide .owl-prev {
    bottom: 3px;
    left: calc(50% - 120px);
  }
}

.pro-item {
  margin-bottom: 25px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.pro-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.pro-item .txt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #bc1f29;
  text-align: center;
  padding-top: 30px;
  opacity: 0;
  transition: opacity 0.4s linear;
}
@media screen and (max-width: 1025px) {
  .pro-item .txt {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pro-item .txt {
    top: initial;
    opacity: 0.9;
    padding-top: 10px;
  }
}
.pro-item .txt .name {
  font-size: 19px;
  font-family: gil-bold;
  color: #fff;
  text-transform: uppercase;
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: 30px;
}
@media screen and (max-width: 1025px) {
  .pro-item .txt .name {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .pro-item .txt .name {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .pro-item .txt .name {
    font-size: 14px;
    font-family: mon-semi;
    color: #fff;
    margin-bottom: 10px;
  }
}
.pro-item .txt .tit {
  font-size: 15px;
  font-family: mon-bold;
  color: #fff;
  margin-bottom: 10px;
}
.pro-item .txt p {
  font-size: 15px;
  font-family: mon-regular;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pro-item .txt p {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .pro-item .txt p {
    display: none;
  }
}
.pro-item .txt ul li, .pro-item .txt ol li {
  font-size: 15px;
  font-family: mon-regular;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .pro-item .txt ul li, .pro-item .txt ol li {
    font-size: 14px;
  }
}
.pro-item .txt .see-more {
  height: 32px;
  width: 110px;
  border-radius: 16px;
  border: 1px solid #fff;
  color: #fff;
  margin: 20px auto 0;
  font-size: 11px;
  transition: background 0.4s linear;
  color: #bc1f29;
}
@media screen and (max-width: 1025px) {
  .pro-item .txt .see-more {
    margin-top: 10px;
  }
}
.pro-item .txt .see-more:hover {
  background: #fff;
  color: #bc1f29;
}
.pro-item .txt::after {
  content: "";
  width: 65px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1025px) {
  .pro-item .txt::after {
    top: 40px;
  }
}
.pro-item:hover .txt {
  opacity: 0.9;
}
.pro-item:last-of-type {
  margin-bottom: 0;
}

.reason {
  padding-top: 7%;
  background: url("../image/bgr-reason.jpg") no-repeat;
  background-size: 100%;
  margin-bottom: 55px;
}
@media screen and (min-width: 992px) {
  .reason {
    height: 40.9224011713vw;
  }
}
@media screen and (min-width: 767px) and (max-width: 991px) {
  .reason {
    height: 56.25vw;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 768px) {
  .reason {
    background: url("../image/bg-reason1.jpg") no-repeat;
  }
}
.reason .container {
  display: flex;
  justify-content: end;
}
.reason .reason-cnt {
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .reason .reason-cnt {
    padding-left: 0;
  }
}
.reason .reason-cnt .title {
  margin-bottom: 15px;
}
.reason .reason-cnt > p {
  font-size: 16px;
  font-family: mon-bold;
  color: #333;
  margin-bottom: 40px;
}
.reason .reason-cnt .rs-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reason .reason-cnt .rs-flex .item {
  width: 155px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.reason .reason-cnt .rs-flex .item .img {
  margin: 14px 0;
}
.reason .reason-cnt .rs-flex .item > p {
  font-size: 16px;
  font-family: mon-semi;
  color: #333;
  text-align: center;
  padding: 0 20px;
}
.reason .reason-cnt .rs-flex .item > p strong {
  font-size: 16px;
  font-family: mon-semi;
  color: #bc1f29;
}
@media screen and (max-width: 767px) {
  .reason .reason-cnt .rs-flex .item > p {
    font-size: 14px;
    font-family: mon-semi;
    color: #333;
  }
  .reason .reason-cnt .rs-flex .item > p strong {
    font-size: 14px;
    font-family: mon-semi;
    color: #bc1f29;
  }
}
@media screen and (max-width: 1025px) {
  .reason .reason-cnt .rs-flex .item {
    width: calc((100% - 40px) / 5);
  }
}
@media screen and (max-width: 992px) {
  .reason .reason-cnt .rs-flex .item .img {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .reason .reason-cnt .rs-flex .item {
    width: calc((100% - 20px) / 3);
  }
  .reason .reason-cnt .rs-flex .item .img {
    margin-bottom: 10px;
  }
  .reason .reason-cnt .rs-flex .item > p {
    padding: 0 15px;
  }
}
@media screen and (max-width: 567px) {
  .reason .reason-cnt .rs-flex .item {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 1025px) {
  .reason .reason-cnt .rs-flex {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 15px 0;
    background-size: cover;
    margin-bottom: 15px;
    background-position: bottom right;
  }
  .reason .reason-cnt > p {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.news {
  padding-top: 15px;
}
.news .title {
  text-align: center;
  margin-bottom: 30px;
}
.news .news-cnt {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
}
.news .news-cnt .news-slide h3, .news .news-cnt .right h3 {
  font-size: 17px;
  font-family: mon-bold;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.news .news-cnt .news-slide h3:hover, .news .news-cnt .right h3:hover {
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  .news .news-cnt .news-slide h3, .news .news-cnt .right h3 {
    -webkit-line-clamp: 2;
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .news .news-cnt .news-slide h3, .news .news-cnt .right h3 {
    font-size: 14px;
    font-family: mon-regular;
    margin-bottom: 5px;
  }
}
.news .news-cnt .news-slide .date, .news .news-cnt .right .date {
  font-size: 15px;
  font-family: mon-regular;
}
@media screen and (max-width: 767px) {
  .news .news-cnt .news-slide .date, .news .news-cnt .right .date {
    font-size: 14px;
  }
}
.news .news-cnt .news-slide {
  position: relative;
  width: 50%;
}
.news .news-cnt .news-slide .owl-nav {
  margin: 0;
}
@media screen and (max-width: 992px) {
  .news .news-cnt .news-slide .owl-nav {
    margin-top: 5px;
  }
}
.news .news-cnt .news-slide .item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.news .news-cnt .news-slide .item .img {
  border-radius: 5px;
  overflow: hidden;
}
.news .news-cnt .news-slide .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
.news .news-cnt .news-slide .item .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 75px 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (min-width: 1025px) {
  .news .news-cnt .news-slide .item .txt {
    height: 30%;
  }
}
@media screen and (max-width: 767px) {
  .news .news-cnt .news-slide .item .txt {
    padding: 15px;
    height: 45%;
  }
}
.news .news-cnt .news-slide .item .txt h3, .news .news-cnt .news-slide .item .txt p {
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.news .news-cnt .news-slide .item .txt h3:hover, .news .news-cnt .news-slide .item .txt p:hover {
  color: #ff0000;
}
.news .news-cnt .news-slide .item:hover .img img {
  transform: scale(1.05);
}
.news .news-cnt .news-slide .owl-next, .news .news-cnt .news-slide .owl-prev {
  height: 33px;
  width: 33px;
  border-radius: 5px;
  position: absolute;
  right: 15px;
  background: #bc1f29;
}
@media screen and (max-width: 991px) {
  .news .news-cnt .news-slide .owl-next, .news .news-cnt .news-slide .owl-prev {
    height: 30px;
    width: 30px;
    right: 10px;
  }
}
.news .news-cnt .news-slide .owl-next i, .news .news-cnt .news-slide .owl-prev i {
  color: #fff;
}
.news .news-cnt .news-slide .owl-next.disabled, .news .news-cnt .news-slide .owl-prev.disabled {
  background: #fff;
  opacity: 1;
}
.news .news-cnt .news-slide .owl-next.disabled i, .news .news-cnt .news-slide .owl-prev.disabled i {
  color: #5a5a5a;
}
.news .news-cnt .news-slide .owl-prev {
  bottom: 50%;
  left: 0;
}
.news .news-cnt .news-slide .owl-next {
  bottom: 50%;
}
.news .news-cnt .right {
  width: calc(50% - 25px);
}
.news .news-cnt .right .item {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1025px) {
  .news .news-cnt .right .item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .news .news-cnt .right .item {
    gap: 10px;
  }
  .news .news-cnt .right .item:last-child {
    margin-bottom: 0;
  }
}
.news .news-cnt .right .item .img {
  width: 30%;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s linear;
}
.news .news-cnt .right .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news .news-cnt .right .item .img:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .news .news-cnt .right .item .img {
    width: 115px;
  }
}
.news .news-cnt .right .item .txt {
  width: calc(70% - 20px);
}
@media screen and (max-width: 767px) {
  .news .news-cnt .right .item .txt {
    width: calc(100% - 115px);
  }
  .news .news-cnt .right .item .txt h3 {
    font-family: mon-regular;
  }
}
.news .news-cnt .right .date {
  color: #333;
}
.news .see-more {
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news {
    margin-bottom: 15px;
  }
  .news .title {
    margin-bottom: 15px;
  }
  .news .news-cnt {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .news .news-cnt .news-slide, .news .news-cnt .right {
    width: 100%;
  }
}

.customer {
  padding: 70px 0 70px;
  background-position: center top;
  margin-top: -110px;
}
.customer .title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .customer {
    padding: 15px 0;
    margin-top: 0px;
    background-size: auto 100%;
    background-position: center;
  }
  .customer .title {
    margin-bottom: 15px;
  }
}
.customer .ct-slide {
  padding: 22px 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .customer .ct-slide {
    padding: 10px 0;
  }
}
.customer .ct-slide .img {
  aspect-ratio: 291/90;
  border: 5px;
}
.customer .ct-slide .img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.customer .ct-slide .owl-next, .customer .ct-slide .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.customer .ct-slide .owl-next:hover, .customer .ct-slide .owl-prev:hover {
  background: transparent;
}
.customer .ct-slide .owl-nav {
  margin: 0;
}
.customer .ct-slide .owl-next {
  right: 15px;
}
.customer .ct-slide .owl-prev {
  left: 15px;
}

.banner {
  margin-bottom: 20px;
}
.banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.lst-tab {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lst-tab {
    margin-bottom: 15px;
  }
}
.lst-tab ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.lst-tab ul li {
  margin-right: 3px;
}
.lst-tab ul li a, .lst-tab ul li span {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .lst-tab ul li a, .lst-tab ul li span {
    font-size: 14px;
  }
}
.lst-tab ul li:last-of-type a, .lst-tab ul li:last-of-type span {
  font-family: mon-bold;
}

.letter {
  margin-bottom: 70px;
}
.letter .container {
  display: flex;
}
.letter .container .img {
  width: 40%;
  border-radius: 5px;
  overflow: hidden;
}
.letter .container .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.letter .txt {
  width: 60%;
  padding-left: 70px;
}
.letter .txt h2 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 25px;
}
.letter .txt h2::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
.letter .txt h2 a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  .letter .txt h2 {
    font-size: 18px;
  }
  .letter .txt h2 a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .letter .txt h2 {
    font-size: 16px;
  }
  .letter .txt h2 a {
    font-size: 16px;
  }
}
.letter .txt p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .letter .txt p {
    font-size: 14px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1199px) {
  .letter .container {
    display: block;
  }
  .letter .container .img {
    width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .letter .txt {
    width: 100%;
    padding-left: 0;
  }
  .letter .txt h2:before {
    left: 52%;
  }
}
@media screen and (max-width: 767px) {
  .letter {
    margin-bottom: 15px;
  }
  .letter .container {
    flex-direction: column-reverse;
  }
  .letter .container .img {
    width: 100%;
  }
  .letter .txt {
    width: 100%;
    padding-left: 0;
  }
  .letter .txt h2 {
    margin-bottom: 15px;
  }
}

.introduce {
  padding: 65px 0;
  background: url("../image/bgr-ab.jpg") no-repeat;
  background-position: bottom right;
  background-color: #f7f7f7;
}
.introduce h2 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 25px;
}
.introduce h2::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
.introduce h2 a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  .introduce h2 {
    font-size: 18px;
  }
  .introduce h2 a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .introduce h2 {
    font-size: 16px;
  }
  .introduce h2 a {
    font-size: 16px;
  }
}
.introduce p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .introduce p {
    font-size: 14px;
  }
}
.introduce strong {
  display: block;
}
@media screen and (max-width: 767px) {
  .introduce {
    padding: 15px 0;
    background-position: left bottom;
  }
  .introduce h2 {
    margin-bottom: 15px;
  }
  .introduce p {
    margin-bottom: 15px;
  }
  .introduce p:last-child {
    margin-bottom: 0;
  }
}

.field {
  padding: 0px 0 70px;
  background: url("../image/bgr-service.png") no-repeat;
  background-position: center;
  background-size: auto 100%;
}
.field .field-cnt {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}
.field .field-cnt:last-child {
  margin-bottom: 0;
}
.field .field-cnt .txt {
  width: 50%;
}
.field .field-cnt .txt h2 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 35px;
}
.field .field-cnt .txt h2::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
.field .field-cnt .txt h2 a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  .field .field-cnt .txt h2 {
    font-size: 18px;
  }
  .field .field-cnt .txt h2 a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .field .field-cnt .txt h2 {
    font-size: 16px;
  }
  .field .field-cnt .txt h2 a {
    font-size: 16px;
  }
}
.field .field-cnt .img {
  width: 50%;
  margin-right: 20px;
}
@media screen and (max-width: 676px) {
  .field .field-cnt .img {
    margin-right: 0;
  }
}
.field .container > p {
  text-align: center;
  font-size: 16px;
  font-family: mon-bold;
  color: #bc1f29;
  padding: 0 55px;
  line-height: 1.5;
}
@media screen and (min-width: 767px) and (max-width: 1025px) {
  .field .field-cnt {
    display: block;
  }
  .field .field-cnt .img {
    width: 50%;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .field .field-cnt .txt {
    width: 100%;
    padding-left: 0;
  }
  .field .field-cnt .txt h2:before {
    left: 51%;
  }
}
@media screen and (max-width: 767px) {
  .field {
    padding: 15px 0;
  }
  .field .field-cnt {
    flex-direction: column-reverse;
    margin-bottom: 15px;
  }
  .field .field-cnt .img, .field .field-cnt .txt {
    width: 100%;
  }
  .field .field-cnt .img img {
    width: 100%;
  }
  .field .field-cnt .txt h2 {
    margin-bottom: 15px;
  }
  .field .container > p {
    padding: 0;
    font-size: 14px;
  }
}

.level {
  padding: 0 0 70px 0;
}
.level .level-cnt {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.level .level-cnt .img, .level .level-cnt .txt {
  width: 50%;
}
.level .level-cnt .img {
  border-radius: 5px;
  overflow: hidden;
}
.level .level-cnt .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
.level .level-cnt .img:hover img {
  transform: scale(1.05);
}
.level .level-cnt .txt {
  padding-right: 70px;
}
@media screen and (max-width: 1025px) {
  .level .level-cnt .txt {
    padding-right: 50px;
  }
}
@media screen and (max-width: 991px) {
  .level .level-cnt .txt {
    padding-right: 30px;
  }
}
.level .level-cnt .txt h2 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 30px;
}
.level .level-cnt .txt h2::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
.level .level-cnt .txt h2 a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  .level .level-cnt .txt h2 {
    font-size: 18px;
  }
  .level .level-cnt .txt h2 a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .level .level-cnt .txt h2 {
    font-size: 16px;
  }
  .level .level-cnt .txt h2 a {
    font-size: 16px;
  }
}
.level .level-cnt .txt .desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .level .level-cnt .txt .desc p {
    font-size: 14px;
  }
}
.level .level-cnt .txt .desc ul {
  padding-left: 20px;
}
.level .level-cnt .txt .desc ul li {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .level .level-cnt .txt .desc ul li {
    font-size: 14px;
  }
}
.level .vision-cnt {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 70px;
}
@media screen and (max-width: 1600px) {
  .level .vision-cnt {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1025px) {
  .level .vision-cnt {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .level .vision-cnt {
    gap: 20px;
  }
  .level .vision-cnt .item {
    width: calc((100% - 40px) / 3);
  }
  .level .vision-cnt .item .tit h3 {
    font-size: 16px;
  }
}
.level .vision-cnt .item {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 1025px) {
  .level .vision-cnt .item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 991px) {
  .level .vision-cnt .item {
    width: calc((100% - 40px) / 3);
  }
}
.level .vision-cnt .item .tit {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 20px;
}
.level .vision-cnt .item .tit h3 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .level .vision-cnt .item .tit h3 {
    font-size: 16px;
  }
}
.level .vision-cnt .item .desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .level .vision-cnt .item .desc p {
    font-size: 14px;
  }
}
.level .vision-cnt .item .desc ul {
  padding-left: 20px;
}
.level .vision-cnt .item .desc ul li {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .level .vision-cnt .item .desc ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .level {
    padding: 15px 0;
    margin: 0;
  }
  .level .level-cnt {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .level .level-cnt .txt, .level .level-cnt .img {
    width: 100%;
  }
  .level .level-cnt .txt {
    padding-right: 0;
  }
  .level .level-cnt .txt h2 {
    margin-bottom: 15px;
  }
  .level .level-cnt .txt .desc {
    margin-bottom: 15px;
  }
  .level .vision-cnt {
    flex-direction: column;
    gap: 15px;
  }
  .level .vision-cnt .item {
    width: 100%;
  }
  .level .vision-cnt .item .tit {
    margin-bottom: 15px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
  .level .vision-cnt .item .desc p {
    margin-bottom: 15px;
  }
  .level .vision-cnt .item .desc p:last-child {
    margin-bottom: 0;
  }
  .level .vision-cnt .item .desc ul {
    padding-left: 15px;
  }
}

._service ._ser-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 70px;
  gap: 70px;
}
._service ._ser-item .img {
  width: 52.5%;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}
._service ._ser-item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
._service ._ser-item .img:hover img {
  transform: scale(1.05);
}
._service ._ser-item .txt {
  width: calc(47.5% - 70px);
}
._service ._ser-item .txt h2 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 25px;
}
._service ._ser-item .txt h2::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
._service ._ser-item .txt h2 a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  ._service ._ser-item .txt h2 {
    font-size: 18px;
  }
  ._service ._ser-item .txt h2 a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  ._service ._ser-item .txt h2 {
    font-size: 16px;
  }
  ._service ._ser-item .txt h2 a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  ._service ._ser-item .txt h2 {
    margin-bottom: 15px;
  }
}
._service ._ser-item .txt .desc {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  ._service ._ser-item .txt .desc {
    margin-bottom: 5px;
  }
}
._service ._ser-item .txt .desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  text-align: justify;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  ._service ._ser-item .txt .desc p {
    font-size: 14px;
  }
}
._service ._ser-item:nth-of-type(2n) .img {
  order: 2;
}
._service ._ser-item:nth-of-type(2n) .txt {
  order: 1;
}
@media screen and (max-width: 992px) {
  ._service ._ser-item {
    gap: 20px;
  }
  ._service ._ser-item .txt {
    width: calc(47.5% - 20px);
  }
}
@media screen and (max-width: 767px) {
  ._service ._ser-item {
    flex-direction: column-reverse;
    margin-bottom: 15px;
    gap: 15px;
  }
  ._service ._ser-item .img, ._service ._ser-item .txt {
    width: 100%;
  }
  ._service ._ser-item:nth-of-type(2n) .img {
    order: 1;
  }
  ._service ._ser-item:nth-of-type(2n) .txt {
    order: 2;
  }
}

.detail-ser {
  margin-bottom: 40px;
}
.detail-ser h1 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  margin-bottom: 20px;
}
.detail-ser h1::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
.detail-ser h1 a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  .detail-ser h1 {
    font-size: 18px;
  }
  .detail-ser h1 a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .detail-ser h1 {
    font-size: 16px;
  }
  .detail-ser h1 a {
    font-size: 16px;
  }
}
.detail-ser .desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .detail-ser .desc p {
    font-size: 14px;
  }
}
.detail-ser .desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .detail-ser .desc p {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .detail-ser {
    margin-bottom: 15px;
  }
  .detail-ser h1 {
    margin-bottom: 15px;
  }
}

.tipical-pro {
  margin-bottom: 50px;
}
.tipical-pro .title {
  text-align: center;
  margin-bottom: 35px;
}
.tipical-pro .pro-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}
.tipical-pro .pro-flex .pro-item {
  width: calc((100% - 50px) / 3);
  margin-bottom: 0;
}
.tipical-pro .pro-flex > p {
  text-align: center;
  width: 100%;
}
.tipical-pro .see-more {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .tipical-pro {
    margin-bottom: 15px;
  }
  .tipical-pro .title {
    margin-bottom: 15px;
  }
  .tipical-pro .pro-flex {
    gap: 15px;
  }
  .tipical-pro .pro-flex .pro-item {
    width: 100%;
  }
}

footer {
  padding: 15px 0 25px;
  background: #000;
}
footer .ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #bc1f29;
}
footer .ft-top .logo, footer .ft-top .hotline {
  display: flex;
  align-items: center;
}
footer .ft-top .logo .img {
  width: 100px;
  margin-right: 25px;
}
footer .ft-top .logo > p {
  font-size: 23px;
  font-family: mon-regular;
  color: #fff;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  footer .ft-top .logo > p {
    font-size: 14px;
  }
}
footer .ft-top .hotline {
  background: #bc1f29;
  padding: 10px 15px;
  border-radius: 25px;
}
footer .ft-top .hotline .img {
  margin-right: 10px;
}
footer .ft-top .hotline .img svg {
  margin-bottom: -5px;
}
footer .ft-top .hotline > p, footer .ft-top .hotline a {
  font-size: 17px;
  font-family: mon-regular;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .ft-top .hotline > p, footer .ft-top .hotline a {
    font-size: 14px;
    font-size: 14px;
  }
}
footer .ft-top .hotline strong {
  font-size: 15px;
  font-family: mon-bold;
  color: #fff;
  margin-right: 10px;
}
footer .ft-top .hotline:hover {
  background: #fff;
}
footer .ft-top .hotline:hover .img svg path {
  fill: #bc1f29;
}
footer .ft-top .hotline:hover strong {
  color: #bc1f29;
}
footer .ft-top .hotline:hover > p, footer .ft-top .hotline:hover a {
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  footer .ft-top .logo > p {
    font-size: 16px;
  }
  footer .ft-top .hotline > p, footer .ft-top .hotline a, footer .ft-top .hotline strong {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  footer .ft-top {
    flex-direction: column;
    gap: 15px;
  }
}
footer .info-com {
  display: flex;
  align-items: flex-start;
  padding: 25px 0 0;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  footer .info-com {
    gap: 40px;
  }
}
@media screen and (max-width: 992px) {
  footer .info-com {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  footer .info-com {
    flex-direction: column;
    padding: 15px 0;
  }
}
footer .info-com p {
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}
footer .info-com p:last-child {
  margin-bottom: 0;
}
footer .info-com p a {
  color: #fff;
}
footer .info-com .it {
  width: calc((100% - 210px) / 4);
}
@media screen and (max-width: 1025px) {
  footer .info-com .it {
    width: calc((100% - 120px) / 4);
  }
}
@media screen and (max-width: 992px) {
  footer .info-com .it {
    width: calc((100% - 45px) / 4);
  }
}
@media screen and (max-width: 767px) {
  footer .info-com .it {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 568px) {
  footer .info-com .it {
    width: 100%;
  }
}
footer .info-com .it > p {
  font-size: 15px;
  font-family: mon-regular;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .info-com .it > p {
    font-size: 14px;
  }
}
footer .info-com .it > p strong {
  font-family: mon-bold;
}
footer .info-com .name-com {
  font-size: 17px;
  font-family: mon-bold;
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  footer .info-com .name-com {
    font-size: 14px;
  }
}
footer .info-com .name-com a {
  font-size: 17px;
  font-family: mon-bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .info-com .name-com a {
    font-size: 14px;
  }
}
footer .info-com .contact-footer {
  width: 40%;
}
@media screen and (max-width: 767px) {
  footer .info-com .contact-footer {
    width: 100%;
  }
}
footer .info-com .contact-footer > p {
  position: relative;
  padding-left: 30px;
}
footer .info-com .contact-footer > p svg {
  position: absolute;
  left: 0;
  top: 4px;
}
footer .info-com .contact-footer .name-com {
  padding-left: 0;
}
footer .info-com .menu-footer a:hover {
  color: #ff0000;
}
footer .info-com .add strong, footer .info-com .workshop strong {
  display: block;
  margin-bottom: 10px;
}
footer .info-com .info > p {
  margin-bottom: 10px;
}
footer .info-com .info > p:last-of-type {
  margin-bottom: 0;
}
footer .info-com .info a {
  font-size: 15px;
  font-family: mon-regular;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .info-com .info a {
    font-size: 14px;
  }
}
footer .info-com .info a:hover {
  color: #ff0000;
}
@media screen and (max-width: 992px) {
  footer .info-com .name-com {
    font-size: 16px;
  }
  footer .info-com .it a, footer .info-com .it p {
    font-size: 14px;
  }
  footer .info-com .info a {
    font-size: 14px;
  }
}
footer .ft-bot {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}
@media screen and (max-width: 767px) {
  footer .ft-bot {
    justify-content: start;
    align-items: start;
  }
}
footer .ft-bot > p {
  font-size: 15px;
  font-family: mon-regular;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .ft-bot > p {
    font-size: 14px;
  }
}
footer .ft-bot > p a {
  font-size: 15px;
  font-family: mon-regular;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .ft-bot > p a {
    font-size: 14px;
  }
}
footer .ft-bot > p a:hover {
  color: #ff0000;
}
@media screen and (max-width: 992px) {
  footer .ft-bot > p {
    font-size: 14px;
  }
  footer .ft-bot > p a {
    font-size: 14px;
  }
}
footer .ft-bot .social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
footer .ft-bot .social .it {
  transition: background 0.5s ease, border-color 0.5s ease;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .ft-bot .social .fb:hover {
  background: #1877F2;
  border-color: #1877F2;
}
footer .ft-bot .social .yt:hover {
  background: #CD201F;
  border-color: #CD201F;
}
footer .ft-bot .social .in:hover {
  background: #410093;
  border-color: #410093;
}
footer .ft-bot .social .tt:hover {
  background: #410093;
  border-color: #410093;
}

._project {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  ._project {
    margin-bottom: 15px;
  }
}
._project .title {
  text-align: center;
  margin-bottom: 15px;
}
._project .detail-content {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  ._project .detail-content {
    margin: 15px 0;
  }
}
._project .container > p {
  font-size: 15px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  ._project .container > p {
    font-size: 14px;
  }
}
._project p.title {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  color: #333;
}
._project p.title::before {
  content: "";
  display: block;
  height: 100%;
  width: 5px;
  background: #bc1f29;
  position: absolute;
  left: 0;
  bottom: 0;
}
._project p.title a {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
}
@media screen and (max-width: 992px) {
  ._project p.title {
    font-size: 18px;
  }
  ._project p.title a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  ._project p.title {
    font-size: 16px;
  }
  ._project p.title a {
    font-size: 16px;
  }
}
._project p.title:before {
  display: none;
}
@media screen and (max-width: 767px) {
  ._project p.title {
    margin-bottom: 15px;
  }
}
._project ._pro-flex {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
._project ._pro-flex .pro-item {
  width: calc((100% - 50px) / 3);
  margin-bottom: 0;
}
._project ._pro-flex > p {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 765px) {
  ._project ._pro-flex {
    gap: 15px;
    margin-bottom: 15px;
  }
  ._project ._pro-flex .pro-item {
    width: 100%;
  }
}
._project ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
._project ul::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1200px) {
  ._project ul {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  ._project ul {
    margin-bottom: 15px;
  }
}
._project ul li {
  padding: 0 15px;
  border-right: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  ._project ul li:first-child {
    padding-left: 0;
  }
}
._project ul li a {
  font-size: 16px;
  font-family: mon-bold;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  ._project ul li a {
    font-size: 13px;
    font-family: mon-semi;
    color: #333;
  }
}
._project ul li:last-of-type {
  border: none;
}
._project ul li:hover a, ._project ul li.active a {
  color: #bc1f29;
  border-bottom: 2px solid #ff0000;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page a, .page span {
  height: 33px;
  width: 33px;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: mon-semi;
  color: #333;
}
.page a:hover, .page a.active-page, .page span:hover, .page span.active-page {
  background: #bc1f29;
  border: 1px solid #bc1f29;
  color: #fff;
}
.page a.hidden, .page span.hidden {
  display: none;
}

._pro-detail {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  ._pro-detail {
    margin-bottom: 15px;
  }
}
._pro-detail .container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
._pro-detail .container .left, ._pro-detail .container .right {
  width: calc((100% - 50px) / 2);
}
._pro-detail .container .left .preview img {
  width: 100%;
}
._pro-detail .container .left .slidetop {
  position: relative;
  margin-bottom: 10px;
}
._pro-detail .container .left .slidetop .item {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
._pro-detail .container .left .slidetop .owl-item.current .item {
  border: 1px solid #ff0000;
}
._pro-detail .container .left .slidetop .owl-prev, ._pro-detail .container .left .slidetop .owl-next {
  height: 55px;
  width: 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
}
._pro-detail .container .left .slidetop .owl-prev:hover i, ._pro-detail .container .left .slidetop .owl-next:hover i {
  color: #ff0000;
}
._pro-detail .container .left .slidetop .owl-prev {
  left: 0;
  border-radius: 0 5px 5px 0;
}
._pro-detail .container .left .slidetop .owl-next {
  right: 0;
  border-radius: 5px 0 0 5px;
}
._pro-detail .container .left .slidebot .item {
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
._pro-detail .container .right .tit {
  font-size: 30px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-bottom: 20px;
  color: #333;
}
@media screen and (max-width: 992px) {
  ._pro-detail .container .right .tit {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
._pro-detail .container .right .detail-content {
  margin-bottom: 30px;
}
._pro-detail .container .right p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  ._pro-detail .container .right p {
    font-size: 14px;
  }
}
._pro-detail .container .right p strong {
  font-size: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  ._pro-detail .container .right p strong {
    font-size: 14px;
  }
}
._pro-detail .container .right .add {
  margin-bottom: 25px;
}
._pro-detail .container .right ul {
  margin-top: 0;
  padding-left: 20px;
  margin-bottom: 10px;
}
._pro-detail .container .right ul li {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  ._pro-detail .container .right ul li {
    font-size: 14px;
  }
}
._pro-detail .container .right ul li::marker {
  color: #858585;
}
._pro-detail .container .right .see-more {
  height: 42px;
  width: 210px;
}
@media screen and (max-width: 767px) {
  ._pro-detail .container {
    flex-direction: column;
    gap: 15px;
  }
  ._pro-detail .container .left, ._pro-detail .container .right {
    width: 100%;
  }
  ._pro-detail .container .right .tit {
    font-size: 18px;
    margin-bottom: 15px;
  }
  ._pro-detail .container .right .detail-content {
    margin-bottom: 15px;
  }
  ._pro-detail .container .right .see-more {
    height: 38px;
  }
}

.project-other {
  padding: 55px 0;
  background: #f6f6f6;
}
.project-other .container > p {
  font-size: 30px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.project-other .pro-ot {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: wrap;
}
.project-other .pro-ot .it {
  width: calc((100% - 50px) / 3);
  border-radius: 5px;
  overflow: hidden;
}
.project-other .pro-ot .it img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
.project-other .pro-ot .it:hover img {
  transform: scale(1.05);
}

.contact {
  margin-bottom: 40px;
}
.contact .title {
  text-align: center;
  margin-bottom: 40px;
}
.contact .title span {
  color: #333;
}
.contact .info-com {
  display: grid;
  grid-template-columns: repeat(3, 33.3333333333%);
  margin: 0 -15px;
}
.contact .info-com .item {
  margin: 0 15px;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.contact .info-com .item .ic {
  margin-bottom: 20px;
}
.contact .info-com .item .tit {
  font-size: 19px;
  font-family: mon-bold;
  color: #333;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.contact .info-com .item .tit::before {
  content: "";
  height: 2px;
  width: 60px;
  background: #ff0000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.contact .info-com .item p {
  font-size: 15px;
  font-family: mon-regular;
  color: #333;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact .info-com .item p {
    font-size: 14px;
  }
}
.contact .info-com .item p.add {
  padding: 0 40px;
}
.contact .info-com .item p a {
  font-size: 15px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .contact .info-com .item p a {
    font-size: 14px;
  }
}
.contact .info-com .item p a:hover {
  color: #ff0000;
}
.contact .info-com .item .see-more {
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .contact {
    margin-bottom: 20px;
  }
  .contact .title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .contact .title span {
    font-size: 16px;
  }
  .contact .info-com .item {
    min-height: 297px;
    padding: 15px 20px;
  }
  .contact .info-com .item p.add {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact .title {
    margin-bottom: 15px;
  }
  .contact .info-com {
    display: block;
    margin: 0;
  }
  .contact .info-com .item {
    width: 100%;
    min-height: unset;
    margin: 0 0 15px 0;
    padding: 15px;
  }
  .contact .info-com .item .ic {
    margin-bottom: 10px;
  }
  .contact .info-com .item .tit {
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .contact .info-com .item .see-more {
    margin-top: 10px;
  }
}

.form {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .form {
    margin-bottom: 15px;
  }
}
.form .title {
  text-align: center;
  margin-bottom: 40px;
}
.form .title span {
  color: #333;
}
@media screen and (max-width: 767px) {
  .form .title {
    margin-bottom: 15px;
  }
}
.form .form-flex {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  background: #f6f6f6;
  border-radius: 5px;
  overflow: hidden;
}
.form .form-flex .img, .form .form-flex form {
  width: 100%;
}
.form .form-flex .img {
  height: 100%;
}
.form .form-flex .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.form .form-flex label.error {
  color: red !important;
}
.form .form-flex form {
  padding: 40px;
}
.form .form-flex form .grid-input {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.form .form-flex form .grid-input .w-50 {
  width: calc((100% - 15px) / 2);
}
.form .form-flex form .grid-input .w-50 input {
  width: 100%;
  height: 45px;
  border: 1px solid #b2b2b2;
  padding-left: 15px;
  background: transparent;
  border-radius: 6px;
}
.form .form-flex form .grid-input .w-50 input:focus {
  outline: none;
}
.form .form-flex form .grid-input .w-50 input::placeholder {
  font-size: 14px;
  font-family: mon-regular;
  color: #b2b2b2;
}
@media screen and (max-width: 767px) {
  .form .form-flex form .grid-input .w-50 input::placeholder {
    font-size: 14px;
  }
}
.form .form-flex form .grid-input .w-100 {
  width: 100%;
}
.form .form-flex form .grid-input .w-100 textarea {
  width: 100%;
  height: 100px;
  resize: none;
  border: 1px solid #b2b2b2;
  padding: 15px 0 0 15px;
  background: transparent;
  border-radius: 6px;
}
.form .form-flex form .grid-input .w-100 textarea:focus {
  outline: none;
}
.form .form-flex form .grid-input .w-100 textarea::placeholder {
  font-size: 14px;
  font-family: mon-regular;
  color: #b2b2b2;
}
@media screen and (max-width: 767px) {
  .form .form-flex form .grid-input .w-100 textarea::placeholder {
    font-size: 14px;
  }
}
.form .form-flex form .grid-input label {
  display: block;
  font-size: 14px;
  font-family: mon-bold;
  color: #333;
  margin-bottom: 10px;
}
.form .form-flex form .grid-input label.error {
  color: red;
  font-size: 12px;
}
.form .form-flex form .recaptcha .g-recaptcha {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .form .form-flex form .recaptcha .g-recaptcha {
    justify-content: center;
  }
}
.form .form-flex form button {
  height: 45px;
  width: 145px;
  border-radius: 6px;
  border: 1px solid #bc1f29;
  background: #bc1f29;
  font-size: 13px;
  font-family: mon-bold;
  color: #fff;
  text-transform: uppercase;
  margin-left: calc(100% - 145px);
  transition: background 0.3s linear;
  margin-top: 15px;
}
.form .form-flex form button:hover {
  background: transparent;
  color: #bc1f29;
}
@media screen and (max-width: 767px) {
  .form .form-flex form button {
    margin-left: calc((100% - 145px) / 2);
    height: 35px;
  }
}
.form .form-flex form.form-cs > p {
  display: none;
}
.form .form-flex form.form-cs .load.text-center {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}
.form .form-flex form.form-cs .load.text-center.show {
  display: flex !important;
}
.form .form-flex form.form-cs .load.text-center:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.form .form-flex form.form-cs .load.text-center p {
  color: #fff;
  z-index: 2;
}
.form .form-flex form.form-cs .load.text-center img {
  z-index: 2;
  width: 100px;
}
@media screen and (max-width: 992px) {
  .form .form-flex {
    padding-left: 0;
    grid-template-columns: 100%;
  }
  .form .form-flex .img {
    display: none;
  }
  .form .form-flex form {
    width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .form .form-flex {
    grid-template-columns: auto;
  }
  .form .form-flex form {
    padding: 15px;
  }
}
@media screen and (max-width: 568px) {
  .form .form-flex form .grid-input .w-50 {
    width: 100%;
  }
}

.recruit {
  margin-bottom: 50px;
}
.recruit h1 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.recruit .rec-cnt {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.recruit .rec-cnt .item {
  width: calc((100% - 80px) / 3);
  background: #f6f6f6;
  border-radius: 5px;
  overflow: hidden;
}
.recruit .rec-cnt .item .img {
  overflow: hidden;
}
.recruit .rec-cnt .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
.recruit .rec-cnt .item .img:hover img {
  transform: scale(1.05);
}
.recruit .rec-cnt .item .txt {
  padding: 20px;
}
.recruit .rec-cnt .item .txt .date {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .recruit .rec-cnt .item .txt .date {
    font-size: 14px;
  }
}
.recruit .rec-cnt .item .txt .name {
  font-size: 17px;
  font-family: mon-bold;
  color: #333;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recruit .rec-cnt .item .txt .name {
    font-size: 14px;
  }
}
.recruit .rec-cnt .item .txt .name:hover {
  color: #bc1f29;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-bottom: 15px;
  }
  .recruit h1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .recruit .rec-cnt {
    gap: 15px;
    margin-bottom: 15px;
  }
  .recruit .rec-cnt .item {
    width: 100%;
  }
  .recruit .rec-cnt .item .txt {
    padding: 15px;
  }
  .recruit .rec-cnt .item .txt .date {
    margin-bottom: 10px;
  }
}

.recruit-detail {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .recruit-detail {
    margin-bottom: 15px;
  }
}
.recruit-detail .job-detail h1 {
  font-size: 25px;
  font-family: gil-bold;
  color: #ff0000;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.recruit-detail .job-detail .job {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 30px;
}
.recruit-detail .job-detail .job > .img {
  width: 40%;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}
.recruit-detail .job-detail .job > .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.recruit-detail .job-detail .job .txt {
  width: calc(60% - 35px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.recruit-detail .job-detail .job .txt table {
  width: 100%;
  margin-bottom: 30px;
}
.recruit-detail .job-detail .job .txt table td {
  width: 50%;
  font-size: 16px;
  color: #333333;
  font-family: gil-regu;
  padding-bottom: 10px;
}
.recruit-detail .job-detail .job .txt table td strong {
  font-family: gil-bold;
}
.recruit-detail .job-detail .job .txt table tr:last-child td {
  padding-bottom: 0;
}
.recruit-detail .job-detail .job .txt .apply {
  display: inline-block;
  width: 155px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #bc1f29;
  background: #bc1f29;
  font-size: 15px;
  font-family: gil-bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-right: 25px;
  transition: background 0.5s linear;
}
.recruit-detail .job-detail .job .txt .apply:hover {
  background: transparent;
  color: #bc1f29;
}
.recruit-detail .job-detail .job .txt .apply i {
  margin-left: 10px;
}
.recruit-detail .job-detail .job .txt .share {
  display: flex;
  color: #333;
  gap: 10px;
  align-items: center;
}
.recruit-detail .job-detail .job .txt .img {
  display: inline-block;
  font-size: 15px;
  color: #333333;
}
.recruit-detail .job-detail .job .txt .img img {
  display: inline-block;
  margin-right: 10px;
}
.recruit-detail .right .item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: block;
  border-bottom: 1px solid #d3d3d3;
}
.recruit-detail .right .item .date {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-detail .right .item .date {
    font-size: 14px;
  }
}
.recruit-detail .right .item .name {
  font-size: 15px;
  font-family: mon-bold;
  color: #333;
}
.recruit-detail .right .item .name:hover {
  color: #bc1f29;
}
@media screen and (max-width: 767px) {
  .recruit-detail .right .item .name {
    font-size: 14px;
  }
}
.recruit-detail .right .item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.recruit-detail .right .detail-job h2 {
  font-size: 20px;
  font-family: gil-bold;
  color: #ff0000;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.recruit-detail .right .detail-job ul {
  margin-bottom: 25px;
}
.recruit-detail .right .detail-job .load.text-center {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}
.recruit-detail .right .detail-job .load.text-center.show {
  display: flex !important;
}
.recruit-detail .right .detail-job .load.text-center:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.recruit-detail .right .detail-job .load.text-center p {
  color: #fff;
  z-index: 2;
}
.recruit-detail .right .detail-job .load.text-center img {
  z-index: 2;
  width: 100px;
}
.recruit-detail .right .detail-job .form_contact .group {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.recruit-detail .right .detail-job .form_contact .group > label, .recruit-detail .right .detail-job .form_contact .group > h3 {
  display: flex;
  width: 150px;
  gap: 5px;
  font-family: mon-regular;
}
.recruit-detail .right .detail-job .form_contact .group > label span, .recruit-detail .right .detail-job .form_contact .group > h3 span {
  color: red;
}
.recruit-detail .right .detail-job .form_contact .group > input {
  height: 40px;
  width: calc(100% - 150px);
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding-left: 15px;
  background: #f3f3f3;
}
.recruit-detail .right .detail-job .form_contact .group > input:focus {
  outline: none;
  background: #f6e5e5;
}
.recruit-detail .right .detail-job .form_contact .group label.error {
  color: red;
  font-size: 14px;
  margin-left: 150px;
  width: calc(100% - 150px);
}
.recruit-detail .right .detail-job .form_contact .group.form_file {
  flex-wrap: wrap;
}
.recruit-detail .right .detail-job .form_contact .group.form_file span {
  display: block;
  width: 100%;
}
.recruit-detail .right .detail-job .form_contact .group.form_file .file {
  width: calc(100% - 150px);
}
.recruit-detail .right .detail-job .form_contact .group.form_file .file input {
  position: absolute;
  left: -99999px;
}
.recruit-detail .right .detail-job .form_contact .group.form_file .file label {
  color: #898989;
  z-index: 1;
  padding-left: 10px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  width: 100%;
  height: 40px;
  border-radius: 5px;
}
.recruit-detail .right .detail-job .form_contact .group.form_file .file label .icon {
  width: initial;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #bc1f29;
  border: 1px solid #bc1f29;
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  padding: 2.5px 10px;
  margin-right: 2.5px;
}
.recruit-detail .right .detail-job .form_contact .group.form_file > span {
  font-size: 14px;
  padding-top: 5px;
  margin-left: 150px;
}
.recruit-detail .right .detail-job .recaptcha {
  margin-left: 150px;
}
.recruit-detail .right .detail-job .btn {
  margin-left: 150px;
}
.recruit-detail .right .detail-job .btn button {
  height: 40px;
  width: auto;
  padding: 0 25px;
  border-radius: 20px;
  border: 1px solid #f36f21;
  background: #f36f21;
  color: #fff;
  font-size: 15px;
  font-family: gil-semi;
  text-transform: uppercase;
  transition: background 0.5s linear;
  margin-top: 16px;
  cursor: pointer;
}
.recruit-detail .left .job-desc {
  margin-bottom: 35px;
}
.recruit-detail .left .job-desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recruit-detail .left .job-desc p {
    font-size: 14px;
  }
}
.recruit-detail .left .job-desc p strong {
  font-size: 17px;
  font-family: mon-bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  .recruit-detail .left .job-desc p strong {
    font-size: 14px;
  }
}
.recruit-detail .left .see-more {
  background: #bc1f29;
  color: #fff;
  transition: background 0.3s linear;
}
.recruit-detail .left .see-more:hover {
  background: #fff;
  color: #bc1f29;
}

.recruit-detail {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.recruit-detail .job-detail h1 {
  font-size: 25px;
  font-family: gil-bold;
  color: #bc1f29;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.recruit-detail .job-detail .job {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 30px;
}
.recruit-detail .job-detail .job > .img {
  width: 40%;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}
.recruit-detail .job-detail .job > .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.recruit-detail .job-detail .job .txt {
  width: calc(60% - 35px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.recruit-detail .job-detail .job .txt table {
  width: 100%;
  margin-bottom: 30px;
}
.recruit-detail .job-detail .job .txt table td {
  width: 50%;
  font-size: 16px;
  color: #333333;
  font-family: gil-regu;
  padding-bottom: 10px;
}
.recruit-detail .job-detail .job .txt table td strong {
  font-family: gil-bold;
}
.recruit-detail .job-detail .job .txt table tr:last-child td {
  padding-bottom: 0;
}
.recruit-detail .job-detail .job .txt .apply {
  display: inline-block;
  width: 155px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #bc1f29;
  background: #bc1f29;
  font-size: 15px;
  font-family: gil-bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-right: 25px;
  transition: background 0.5s linear;
}
.recruit-detail .job-detail .job .txt .apply:hover {
  background: transparent;
  color: #bc1f29;
}
.recruit-detail .job-detail .job .txt .apply i {
  margin-left: 10px;
}
.recruit-detail .job-detail .job .txt .share {
  display: flex;
  color: #333;
  gap: 10px;
  align-items: center;
}
.recruit-detail .job-detail .job .txt .img {
  display: inline-block;
  font-size: 15px;
  color: #333333;
}
.recruit-detail .job-detail .job .txt .img img {
  display: inline-block;
  margin-right: 10px;
}
.recruit-detail .right {
  border: 1px solid #d3d3d3;
}
.recruit-detail .right .tit {
  border: initial;
  border-radius: 0;
  margin-bottom: 0;
  background: #f7f6f6;
  padding: 11px 20px;
  border-bottom: 1px solid #d3d3d3;
}
.recruit-detail .right .tit h2, .recruit-detail .right .tit p {
  font-size: 20px;
  font-family: mon-bold;
  color: #ff0000;
  text-align: left;
  line-height: 1;
}
.recruit-detail .right .lst-newsest {
  background: transparent;
}
.recruit-detail .right .item .img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-detail .right .item .img img {
  height: initial;
  width: initial;
}

._news {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  ._news {
    margin-bottom: 15px;
  }
}
._news h1 {
  font-size: 32px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  ._news h1 {
    font-size: 20px;
    font-family: mon-bold;
    color: #bc1f29;
    margin-bottom: 15px;
  }
}
._news ._news-item {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  background: #f6f6f6;
}
._news ._news-item .img {
  width: 50%;
  overflow: hidden;
}
._news ._news-item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
._news ._news-item .img:hover img {
  transform: scale(1.05);
}
._news ._news-item .txt {
  width: 50%;
  padding: 45px;
}
._news ._news-item .txt .name {
  font-size: 21px;
  font-family: mon-bold;
  color: #333;
  margin-bottom: 15px;
}
._news ._news-item .txt .name a {
  font-size: 21px;
  font-family: mon-bold;
  color: #333;
  display: block;
  line-height: 1.5;
}
@media screen and (max-width: 992px) {
  ._news ._news-item .txt .name a {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 18px;
  }
}
._news ._news-item .txt .name a:hover {
  color: #bc1f29;
}
@media screen and (max-width: 767px) {
  ._news ._news-item .txt .name {
    font-size: 14px;
    font-family: mon-bold;
    color: #333;
    margin-bottom: 10px;
    min-height: 42px;
  }
  ._news ._news-item .txt .name a {
    font-size: 14px;
    font-family: mon-bold;
    color: #333;
  }
}
@media screen and (max-width: 992px) {
  ._news ._news-item .txt {
    padding: 20px 15px 30px;
  }
}
@media screen and (max-width: 767px) {
  ._news ._news-item .txt {
    padding: 15px 15px 40px 15px;
  }
}
._news ._news-item .txt .date {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  ._news ._news-item .txt .date {
    font-size: 14px;
  }
}
._news ._news-item .txt .date::before {
  content: "";
  height: 2px;
  width: 37px;
  background: #bc1f29;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  ._news ._news-item .txt .date {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
._news ._news-item .txt .desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media screen and (max-width: 767px) {
  ._news ._news-item .txt .desc p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  ._news ._news-item {
    flex-direction: column;
  }
  ._news ._news-item .img, ._news ._news-item .txt {
    width: 100%;
  }
}
._news ._news-slide {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  ._news ._news-slide {
    margin-bottom: 15px;
  }
}
._news ._news-slide .owl-dots {
  position: absolute;
  bottom: 40px;
  right: calc(50% - 40px);
  transform: translateX(100%);
}
._news ._news-slide .owl-dots .owl-dot span {
  border: 2px solid #ff0000;
  background: #ff0000;
}
._news ._news-slide .owl-dots .owl-dot.active span {
  background: #fff;
}
@media screen and (max-width: 1200px) {
  ._news ._news-slide .owl-dots {
    bottom: 10px;
  }
}
@media screen and (max-width: 992px) {
  ._news ._news-slide .owl-dots {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  ._news ._news-slide .owl-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 5px;
  }
}
._news ._news-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  ._news ._news-flex {
    margin-bottom: 15px;
  }
}
._news ._news-flex ._news-item {
  flex-direction: column;
  width: calc((100% - 80px) / 3);
}
._news ._news-flex ._news-item .img, ._news ._news-flex ._news-item .txt {
  width: 100%;
}
._news ._news-flex ._news-item .txt {
  padding: 30px 20px 30px;
}
@media screen and (max-width: 767px) {
  ._news ._news-flex ._news-item .txt {
    padding: 15px;
  }
}
._news ._news-flex ._news-item .txt .name {
  margin-bottom: 15px;
  font-size: 17px;
}
._news ._news-flex ._news-item .txt .name a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-size: 17px;
  line-height: 1.5;
}
._news ._news-flex ._news-item .txt .name a:hover {
  color: #bc1f29;
}
@media screen and (max-width: 767px) {
  ._news ._news-flex ._news-item .txt .name {
    margin-bottom: 10px;
    font-size: 14px;
  }
  ._news ._news-flex ._news-item .txt .name a {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
._news ._news-flex ._news-item .txt .desc p {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media screen and (max-width: 767px) {
  ._news ._news-flex {
    flex-direction: column;
    gap: 15px;
  }
  ._news ._news-flex ._news-item {
    width: 100%;
  }
}

._news-detail {
  margin-bottom: 15px;
}
._news-detail .right .title-right {
  font-size: 21px;
  font-family: mon-bold;
  color: #bc1f29;
}
._news-detail .right .item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
}
._news-detail .right .item .img {
  width: 115px;
  overflow: hidden;
  border-radius: 5px;
}
._news-detail .right .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
._news-detail .right .item .img:hover img {
  transform: scale(1.05);
}
._news-detail .right .item .txt {
  width: calc(100% - 115px);
  padding-left: 15px;
}
._news-detail .right .item .txt p {
  font-size: 15px;
  font-family: mon-regular;
  color: #333;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  ._news-detail .right .item .txt p {
    font-size: 14px;
  }
}
._news-detail .right .item .txt p:hover {
  color: #bc1f29;
}
._news-detail .right .item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
._news-detail .left .desc {
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
  margin-bottom: 15px;
}
._news-detail .left .desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  ._news-detail .left .desc p {
    font-size: 14px;
  }
}
._news-detail .left .desc .figcaption {
  text-align: center;
  margin-bottom: 45px;
}
._news-detail .left .news-related > p {
  font-size: 21px;
  font-family: mon-bold;
  color: #bc1f29;
  margin-bottom: 15px;
  text-transform: uppercase;
}
._news-detail .left .news-related .newsr-slide {
  position: relative;
}
._news-detail .left .news-related .newsr-slide .item {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  background: #f6f6f6;
}
._news-detail .left .news-related .newsr-slide .item .img {
  overflow: hidden;
}
._news-detail .left .news-related .newsr-slide .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}
._news-detail .left .news-related .newsr-slide .item .img:hover img {
  transform: scale(1.05);
}
._news-detail .left .news-related .newsr-slide .item .txt {
  padding: 25px 15px;
}
@media screen and (max-width: 767px) {
  ._news-detail .left .news-related .newsr-slide .item .txt {
    padding: 15px;
  }
}
._news-detail .left .news-related .newsr-slide .item .txt .name {
  font-size: 15px;
  font-family: mon-bold;
  color: #333;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: 15px;
}
._news-detail .left .news-related .newsr-slide .item .txt .name:hover {
  color: #bc1f29;
}
._news-detail .left .news-related .newsr-slide .item .txt .date {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  ._news-detail .left .news-related .newsr-slide .item .txt .date {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  ._news-detail .left .news-related .newsr-slide .item .txt {
    padding: 15px;
  }
  ._news-detail .left .news-related .newsr-slide .item .txt .name {
    font-size: 14px;
    font-family: mon-bold;
    color: #333;
    margin-bottom: 10px;
    min-height: 54px;
  }
}
._news-detail .left .news-related .newsr-slide .owl-nav {
  position: absolute;
  right: 0;
  top: -50px;
}
._news-detail .left .news-related .newsr-slide .owl-nav i {
  font-size: 20px;
  color: #5d5d5d;
}
._news-detail .left .news-related .newsr-slide .owl-nav .owl-next:hover, ._news-detail .left .news-related .newsr-slide .owl-nav .owl-prev:hover {
  background: transparent;
}

.detail-content h2, .detail-content h3, .detail-content h4, .detail-content h5, .detail-content h6 {
  font-family: mon-regular;
}
.detail-content ul li {
  font-family: mon-regular;
}

.detail-cnt {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.detail-cnt .left {
  width: calc(100% - 390px);
}
.detail-cnt .left .tit {
  margin-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 15px;
}
.detail-cnt .left .tit .name {
  font-size: 21px;
  font-family: mon-bold;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.detail-cnt .left .tit .date-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-cnt .left .tit .date {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .detail-cnt .left .tit .date {
    font-size: 14px;
  }
}
.detail-cnt .left .tit .share {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .detail-cnt .left .tit .share {
    font-size: 14px;
  }
}
.detail-cnt .left .tit .share a {
  display: flex;
}
.detail-cnt .left .detail-job h2 {
  font-size: 20px;
  font-family: mon-bold;
  color: #bc1f29;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.detail-cnt .left .detail-job ul {
  margin-bottom: 25px;
}
.detail-cnt .left .detail-job .load.text-center {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
}
.detail-cnt .left .detail-job .load.text-center.show {
  display: flex !important;
}
.detail-cnt .left .detail-job .load.text-center:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.detail-cnt .left .detail-job .load.text-center p {
  color: #fff;
  z-index: 2;
}
.detail-cnt .left .detail-job .load.text-center img {
  z-index: 2;
  width: 100px;
}
.detail-cnt .left .detail-job .form_contact .group {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.detail-cnt .left .detail-job .form_contact .group > label, .detail-cnt .left .detail-job .form_contact .group > h3 {
  display: flex;
  width: 150px;
  gap: 5px;
  font-family: mon-regular;
}
.detail-cnt .left .detail-job .form_contact .group > label span, .detail-cnt .left .detail-job .form_contact .group > h3 span {
  color: #ff0000;
}
.detail-cnt .left .detail-job .form_contact .group > input {
  height: 40px;
  width: calc(100% - 150px);
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding-left: 15px;
  background: #f3f3f3;
}
.detail-cnt .left .detail-job .form_contact .group > input:focus {
  outline: none;
  background: #f6e5e5;
}
.detail-cnt .left .detail-job .form_contact .group label.error {
  color: #ff0000;
  font-size: 14px;
  margin-left: 150px;
  width: calc(100% - 150px);
}
.detail-cnt .left .detail-job .form_contact .group.form_file {
  flex-wrap: wrap;
}
.detail-cnt .left .detail-job .form_contact .group.form_file span {
  display: block;
  width: 100%;
  font-family: mon-regular;
}
.detail-cnt .left .detail-job .form_contact .group.form_file .file {
  width: calc(100% - 150px);
}
.detail-cnt .left .detail-job .form_contact .group.form_file .file input {
  position: absolute;
  left: -99999px;
}
.detail-cnt .left .detail-job .form_contact .group.form_file .file label {
  color: #898989;
  z-index: 1;
  padding-left: 10px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  width: 100%;
  height: 40px;
  border-radius: 5px;
}
.detail-cnt .left .detail-job .form_contact .group.form_file .file label .icon {
  width: initial;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #bc1f29;
  border: 1px solid #bc1f29;
  color: #fff;
  border-radius: 5px;
  white-space: nowrap;
  padding: 2.5px 10px;
  margin-right: 2.5px;
}
.detail-cnt .left .detail-job .form_contact .group.form_file > span {
  font-size: 14px;
  padding-top: 5px;
  margin-left: 150px;
}
@media screen and (max-width: 568px) {
  .detail-cnt .left .detail-job .form_contact .group {
    flex-direction: column;
    align-items: flex-start;
  }
  .detail-cnt .left .detail-job .form_contact .group > label {
    margin-bottom: 10px;
  }
  .detail-cnt .left .detail-job .form_contact .group > input {
    width: 100%;
  }
  .detail-cnt .left .detail-job .form_contact .group.form_file span {
    margin-left: 0;
  }
  .detail-cnt .left .detail-job .form_contact .group.form_file .file {
    width: 100%;
  }
}
.detail-cnt .left .detail-job .recaptcha {
  margin-left: 150px;
}
.detail-cnt .left .detail-job .btn {
  margin-left: 150px;
}
.detail-cnt .left .detail-job .btn button {
  height: 40px;
  width: auto;
  padding: 0 25px;
  border-radius: 20px;
  border: 1px solid #bc1f29;
  background: #bc1f29;
  color: #fff;
  font-size: 15px;
  font-family: mon-bold;
  text-transform: uppercase;
  transition: background 0.5s linear;
  margin-top: 16px;
  cursor: pointer;
}
@media screen and (max-width: 568px) {
  .detail-cnt .left .detail-job .btn {
    margin-left: 0;
  }
}
.detail-cnt .right {
  padding: 20px;
  width: 350px;
  background: #f6f6f6;
  border-radius: 5px;
}
.detail-cnt .right > p {
  font-size: 21px;
  font-family: mon-bold;
  color: #bc1f29;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .detail-cnt {
    flex-direction: column;
    gap: 20px;
  }
  .detail-cnt .left, .detail-cnt .right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .detail-cnt {
    gap: 15px;
  }
  .detail-cnt .left .job-desc {
    margin-bottom: 15px;
  }
  .detail-cnt .left .tit .name {
    font-size: 18px;
  }
  .detail-cnt .left .detail-job h2 {
    font-size: 16px;
  }
  .detail-cnt .left .detail-job .form_contact .group > h3 {
    font-size: 14px;
  }
  .detail-cnt .left .detail-job .form_contact .group > label {
    font-size: 14px;
  }
  .detail-cnt .left .detail-job .form_contact .group label.error {
    margin-left: 0;
  }
  .detail-cnt .left .detail-job .form_contact .group input {
    height: 38px;
  }
  .detail-cnt .left .detail-job .form_contact .group.form_file span {
    font-size: 14px;
  }
  .detail-cnt .left .detail-job .btn button {
    font-size: 14px;
  }
  .detail-cnt .left .detail-job .recaptcha {
    margin-left: 0;
  }
  .detail-cnt .right {
    padding: 15px;
  }
  .detail-cnt .right .item .date {
    margin-bottom: 5px;
  }
  .detail-cnt .right > p {
    font-size: 16px;
  }
}

.detail-content h2, .detail-content h3, .detail-content h4, .detail-content h5, .detail-content h6 {
  margin-bottom: 10px;
  line-height: 1.5;
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-family: mon-bold;
}
.detail-content h2 {
  font-size: 18px;
}
.detail-content h3 {
  font-size: 15px;
}
.detail-content h4 {
  font-size: 15px;
}
.detail-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .detail-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.detail-content strong {
  font-family: mon-bold;
}
.detail-content ul,
.detail-content ol {
  margin-bottom: 10px;
  padding-left: 25px;
}
.detail-content ul li,
.detail-content ol li {
  font-size: 15px;
  padding-bottom: 5px;
  line-height: 1.5;
}
.detail-content ul li:last-child,
.detail-content ol li:last-child {
  padding-bottom: 0;
}
.detail-content ul li::marker,
.detail-content ol li::marker {
  color: #333;
}
.detail-content ul {
  list-style-type: disc;
}
.detail-content ul li {
  list-style-type: disc;
}
.detail-content ol {
  list-style-type: decimal;
}
.detail-content ol li {
  list-style-type: decimal;
}
.detail-content .image-center {
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.detail-content .image-center figcaption {
  background: #f1f1f1;
  padding: 5px 0;
  font-style: italic;
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .detail-content .image-center figcaption {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .detail-content .image-center {
    float: right;
  }
}
@media screen and (max-width: 767px) {
  .detail-content .image-center figure {
    margin: 0;
    width: 100%;
  }
  .detail-content .image-center figure figcaption {
    padding: 10px;
  }
}
.detail-content .image-right {
  margin: 0;
  margin-bottom: 15px;
  margin-left: 15px;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  float: right;
}
.detail-content .image-right figcaption {
  background: #f1f1f1;
  padding: 5px 0;
  font-style: italic;
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .detail-content .image-right figcaption {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .detail-content .image-right {
    margin-left: 0;
  }
  .detail-content .image-right figure {
    margin: 0;
    width: 100%;
  }
  .detail-content .image-right figure figcaption {
    padding: 10px;
  }
}
.detail-content .image-left {
  margin: 0;
  margin-bottom: 15px;
  margin-right: 15px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.detail-content .image-left figcaption {
  background: #f1f1f1;
  padding: 5px 0;
  font-style: italic;
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .detail-content .image-left figcaption {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .detail-content .image-left {
    margin-left: 0;
  }
  .detail-content .image-left figure {
    margin: 0;
    width: 100%;
  }
  .detail-content .image-left figure figcaption {
    padding: 10px;
    float: unset;
  }
}
.detail-content a {
  text-decoration: underline;
}
.detail-content a:hover {
  color: #ff0000;
}
.detail-content img {
  max-width: 100%;
  height: initial !important;
}
.detail-content table {
  margin-bottom: 10px;
}
.detail-content table tr th,
.detail-content table tr td {
  font-size: 15px;
  line-height: 1.5;
  padding: 5px;
}
.detail-content table.table {
  border: none;
}
.detail-content table.table td,
.detail-content table.table th {
  border: 1px solid #d7d7d7;
  padding: 10px;
  font-size: 14px;
}
.detail-content table.table tr:first-child td {
  border: none;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  font-weight: 700;
}
.detail-content table.table tr:nth-of-type(odd) {
  background: #fff;
}
.detail-content table.table-image {
  border: 1px solid #d3d3d3;
  border-collapse: collapse;
}
.detail-content table.table-image tr td {
  border-collapse: collapse;
  border: 1px solid #d7d7d7;
  vertical-align: top;
}
.detail-content table.table-image tr td img {
  margin-top: 15px;
}
.detail-content iframe {
  max-width: 100%;
}
.detail-content .iframe_video {
  margin-bottom: 15px;
}
.detail-content .iframe_video iframe,
.detail-content .iframe_video video {
  width: 100%;
  height: 100%;
}

.alrt-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1000;
  top: 0;
  left: 0;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
}
.alrt-popup.show {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}
.alrt-popup .wapper {
  background: #fff;
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
}
.alrt-popup .wapper .main {
  padding: 15px;
  text-align: center;
}
.alrt-popup .wapper .title {
  background: #bf2929;
  color: #fff;
  text-align: center;
  font-weight: 400;
  padding: 15px 10px;
  margin-bottom: 0;
}
.alrt-popup .wapper .close-alrt {
  text-align: center;
  margin: 0 auto 10px auto;
  border: 2px solid #bf2929;
  padding: 5px 15px;
  cursor: pointer;
  width: 205px;
  height: 38px;
  border-radius: 20px;
  color: #bf2929;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alrt-popup.success .wapper .title {
  background: #09e493;
}
.alrt-popup.success .wapper .close-alrt {
  display: none;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}

.result-search .iten {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
}
.result-search .iten:last-child {
  border-bottom: none;
}
.result-search .iten > p {
  margin-bottom: 5px;
  line-height: 1.5;
  color: #ff0000;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
.result-search .iten > p span {
  display: flex;
  font-size: 12px;
  background: #ff7d01;
  line-height: 1;
  align-items: center;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
}
.result-search .iten h3 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1;
}
.result-search .iten h3 a {
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
}
@media screen and (max-width: 767px) {
  .result-search .iten h3 a {
    font-size: 14px;
  }
}
.result-search .iten .time {
  line-height: 1;
  font-size: 14px;
  font-family: mon-regular;
  color: #333;
  margin-bottom: 5px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .result-search .iten .time {
    font-size: 14px;
  }
}
.result-search .iten .time i {
  color: red;
  margin-right: 5px;
}
.result-search .iten ._desc {
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.result-search .iten ._desc p {
  font-size: 14px;
  font-family: mon-regular;
  color: #8f8f8f;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .result-search .iten ._desc p {
    font-size: 14px;
  }
}
.result-search .iten ._desc p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
