main section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  main section {
    padding: 60px 0;
  }
}

.main_con_header {
  padding: 0 0 50px;
  text-align: center;
}

.main_con_header h2 {
  padding: 0 0 20px;
  font-size: 40px;
  font-weight: 700;
  color: #333;
}

.products .main_con_header h2 {
  color: #fff;
}

.main_con_header p {
  word-break: keep-all;
  line-height: 1.4;
}

.products .main_con_header p {
  color: #fff;
}

@media (max-width: 768px) {
  .main_con_header {
    padding: 0 0 40px;
  }
  .main_con_header h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .main_con_header h2 {
    font-size: 32px;
  }
}

.about__con ul {
  gap: 30px;
}

.about__con ul li {
  flex: 1;
}

.about__con ul li a {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: 370px;
  border: 1px solid #bbbbbb;
  background: no-repeat center / cover;
}

.about__con ul li a .box {
  position: absolute;
  left: 0;
  bottom: -73px;
  padding: 20px 30px;
  width: 100%;
  height: 163px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

.about__con ul li a .box .tit {
  line-height: 1;
}

.about__con ul li a .box .tit h3 {
  font-size: 25px;
  font-weight: 500;
}

.about__con ul li a .box .tit p {
  padding: 10px 0 30px;
  font-size: 15px;
}

.about__con ul li a .box .tail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about__con ul li a .box .tail span {
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
}

.about__con ul li a .box .tail i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: #0e4fa1;
  border-radius: 50%;
}

.about__con ul li a:hover .box {
  bottom: 0;
}

.about__con ul li:nth-of-type(1) a {
  background-image: url(/img/yg/m_about1.png);
}

.about__con ul li:nth-of-type(2) a {
  background-image: url(/img/yg/m_about2.png);
}

.about__con ul li:nth-of-type(3) a {
  background-image: url(/img/yg/m_about3.png);
}

@media (max-width: 991px) {
  .about__con ul {
    gap: 10px;
  }
  .about__con ul li a .box {
    bottom: 0;
    height: auto;
  }
  .about__con ul li a .box .tit p {
    padding-bottom: 0;
  }
  .about__con ul li a .box .tail {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .about__con ul li a {
    height: 300px;
  }
  .about__con ul li a .box {
    padding: 24px 20px;
  }
  .about__con ul li a .box .tit h3 {
    font-size: 22px;
  }
  .about__con ul li a .box .tit p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .about__con ul {
    gap: 5px;
  }
  .about__con ul li a {
    height: 270px;
  }
  .about__con ul li a .box {
    padding: 24px 10px;
  }
  .about__con ul li a .box .tit {
    text-align: center;
  }
  .about__con ul li a .box .tit h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .about__con ul {
    flex-direction: column;
    gap: 10px;
  }
  .about__con ul li a {
    height: 220px;
  }
  .about__con ul li a .box {
    padding: 25px 10px;
  }
}

.products {
  background: url("/img/yg/m_product_bg.png") no-repeat center/cover;
}

.products__con ul {
  padding-top: 50px;
}

.products__con ul li {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.products__con ul li a {
  display: block;
  padding: 110px 0 25px;
  width: 100%;
  height: 100%;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  background: no-repeat center top 22px;
}

.products__con ul li:last-of-type {
  border-right: 0;
}

.products__con ul li:nth-of-type(1) a {
  background-image: url(/img/yg/ico_main_product1.png);
}

.products__con ul li:nth-of-type(2) a {
  background-image: url(/img/yg/ico_main_product2.png);
}

.products__con ul li:nth-of-type(3) a {
  background-image: url(/img/yg/ico_main_product3.png);
}

.products__con ul li:nth-of-type(4) a {
  background-image: url(/img/yg/ico_main_product4.png);
}

.products__con ul li:nth-of-type(5) a {
  background-image: url(/img/yg/ico_main_product5.png);
}

.products__con ul li:nth-of-type(6) a {
  background-image: url(/img/yg/ico_main_product6.png);
}

@media (max-width: 991px) {
  .products__con ul {
    padding-top: 30px;
  }
  .products__con ul li a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .products__con ul {
    flex-wrap: wrap;
  }
  .products__con ul li {
    flex: auto;
    width: calc(100% / 3);
  }
  .products__con ul li:nth-of-type(3n) {
    border-right: 0;
  }
  .products__con ul li:nth-of-type(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 576px) {
  .products__con ul {
    margin-top: 20px;
  }
  .products__con ul li a {
    font-size: 13px;
  }
}

.products__con .products__more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 0;
  width: 180px;
  height: 45px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 23px;
  border: 1px solid #fff;
}

@media (max-width: 576px) {
  .products__con .products__more {
    width: 150px;
    height: 42px;
    font-size: 15px;
    border-radius: 21px;
  }
}

.contact__con .contact__map {
  flex: 1;
}

.contact__con .contact__info {
  padding: 80px 0 0 50px;
  width: 550px;
  height: 475px;
  background: #f9f9f9 url(/img/yg/bg_location.png) no-repeat right bottom;
}

.contact__con .contact__info ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: left;
  padding-left: 64px;
  height: 50px;
  font-size: 35px;
  font-weight: 700;
  background: no-repeat center left / contain;
}

.contact__con .contact__info ul li:nth-of-type(1) {
  color: #0e4fa1;
  background-image: url(/img/yg/ico_tel.png);
}

.contact__con .contact__info ul li:nth-of-type(2) {
  color: #555;
  background-image: url(/img/yg/ico_fax.png);
}

.contact__con .contact__info ul li + li {
  margin-top: 18px;
}

.contact__con .contact__info p {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.contact__con .contact__info p:first-of-type {
  padding: 35px 0 25px;
}

@media (max-width: 991px) {
  .contact__con .contact__info {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .contact__con .flex {
    flex-direction: column;
  }
  .contact__con .contact__map {
    overflow: hidden;
    flex: auto;
    position: relative;
    height: 250px;
  }
  .contact__con .contact__map .root_daum_roughmap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .contact__con .contact__info {
    background-size: 180px auto;
    padding: 50px 20px;
    width: 100%;
    height: auto;
  }
  .contact__con .contact__info ul li {
    padding-left: 60px;
    height: 42px;
    font-size: 30px;
  }
  .contact__con .contact__info p {
    font-size: 18px;
  }
  .contact__con .contact__info p:first-of-type {
    padding: 30px 0 20px;
  }
}

@media (max-width: 576px) {
  .contact__con .contact__info {
    background-size: 100px auto;
    padding: 40px 20px;
    width: 100%;
    height: auto;
  }
  .contact__con .contact__info ul li {
    padding-left: 52px;
    height: 36px;
    font-size: 26px;
  }
  .contact__con .contact__info ul li + li {
    margin-top: 15px;
  }
  .contact__con .contact__info p {
    font-size: 15px;
  }
  .contact__con .contact__info p:first-of-type {
    padding: 20px 0 10px;
  }
}

.map_border {
  display: none;
}
/*# sourceMappingURL=main.css.map */