@charset "utf-8";

.w1520 {
  width: 1520px;
  position: relative;
  margin: 0 auto;
}
.pc_on {
  display: block;
}
.mob_on {
  display: none;
}
:root {
	--main-color:#022461;
	--sub-color:#0f65ff;
}


/*scroll 공용스타일*/
.on_opacity {
  opacity: 1 !important;
  transition: 0.5s;
}
.on_bottom {
  bottom: 0 !important;
  transition: 0.5s;
}
.design-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.design-element.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-item-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-item-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.anim-item-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-item-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.anim-item-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-item-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-opacity {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-opacity.visible {
  opacity: 1;
}


/*header*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 0 80px;
  box-sizing: border-box;
}
header nav {
  display: flex;
  width: 100%;
  align-items: center;
}
header nav .logo_box {
  margin-right: auto;
}
/* 기본 메뉴 스타일 */
nav .pc_gnb {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}
nav .pc_gnb li a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
  font-size: 17px;
  
}

/* 현재 섹션일 때 바뀔 색상 */
nav .pc_gnb li a:hover,
nav .pc_gnb li a:active,
nav .pc_gnb li a:focus,
nav .pc_gnb li a.active {
  color: var(--main-color); /* 강조하고 싶은 색상 */
  font-weight: bold;
  border-bottom: 2px solid var(--main-color);
}

nav .tel_box {
  margin-left: 80px; 
}
nav .tel_box a {
  display: block;
  background: var(--main-color);
  padding: 12px 24px;
  box-sizing: border-box;
  border-radius: 40px;
  text-align: center;
  transition: all 0.2s;
}
nav .tel_box a:hover,
nav .tel_box a:active,
nav .tel_box a:focus {
  background: var(--sub-color);
}
nav .tel_box a span {
  color:#fff;
  font-size: 15px;
  margin-right: 8px;
}


.quick-menu {
  position: fixed;
  right: 80px;
  bottom: 20px;
  background: var(--sub-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 22px;
  box-sizing: border-box;
  /* display: none; */
  z-index: 9;
}
.quick-menu.on {
  display: block !important;
}
.quick-menu ul {
  display: flex;
  gap: 14px;
}

/* 퀵메뉴 버튼 기본 스타일 (작은 원형 등) */
.quick-menu ul li a {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #618aed;
  border-radius: 100%;
  transition: all 0.3s;
  position: relative;
  padding: 11px;
  box-sizing: border-box;
}
.quick-menu ul li a:hover,
.quick-menu ul li a:active,
.quick-menu ul li a:focus {
  background: var(--main-color);
}
.quick-menu ul li a img {
  display: block;
  width: 100%;
  height: -webkit-fill-available;
  object-fit: contain;
}

/* 마우스를 올렸을 때나 활성화(active) 되었을 때 */
.quick-menu ul li a.active {
  background-color: var(--main-color); /* 강조 색상 */
  transform: scale(1.3);
}

/*평소엔 안보임*/
.quick-menu ul li a span {
  position: absolute;
  left: 50%;
  top: -30px;
  white-space: nowrap;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0%);
  transition: 0.3s;
}
/*마우스오버옵션*/
.quick-menu ul li a:hover span {
  opacity: 1;
  visibility: visible;
}

.quick-menu .text_box p {
  display: inline-block;
  margin-right: 8px;
  font-size: 17px;
  color:#fff;
}
.quick-menu .text_box span {
  font-size: 17px;
  color:#fff;
  font-weight: 300;
}




main {
  margin-top: 100px;
}

.slider_item {
  position: relative;
}
.slide_box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.slide_box .txt_hidden {
  overflow: hidden;
}
.slide_box h3 {
  color:#fff;
  font-size: 60px;
  position: relative;
  top: 400px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
}
.slide_box h3 span {
  font-weight: 900;
}
.slide_box h4 {
  color:#fff;
  font-size: 17px;
  position: relative;
  top: 400px;
  background: rgba(2,36,97,0.6);
  text-align: center;
  border-radius: 42px;
  padding: 16px 44px;
  box-sizing: border-box;
  margin-top: 70px;
  line-height: 1.8;
  opacity: 0;
}
.slide_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 68px;
  width: 240px;
  font-size: 16px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #eee;
  overflow: hidden;
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.slide_box a .btn-txt {
  z-index: 1;
  font-weight: 800;
  letter-spacing: 4px;
}
.slide_box a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  background-color: rgba(0,0,0,0.7);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.slide_box a:hover {
  box-shadow: 1px 1px 10px #252525;
  color: #fff;
  border: none;
}
.slide_box a:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
} 
.slick-slide .image {
  width: 100%;
  overflow: hidden;
}
.slick-slide .image img {
  display: block;
  object-fit: cover;
  height: 100dvh;
  width: 100%;
}




.main-dots {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%,0);
  display: flex;
  text-align: center;
  gap: 8px;
}
.main-dots li {
  z-index: 1;
  opacity: 0.5;
  font-size: 0;
  width: 32px;
  height: 2px;
  background: #fff;
  cursor: pointer;
}
.main-dots > li.slick-active {
  opacity: 1;
}
.main-dots li button {
  font-size: 0;
  visibility: hidden;
}


.about_wrap {
  background: var(--main-color);
  padding: 40px 0;
  box-sizing: border-box;
  width: 100%;
}
.about_wrap ul {
  display: flex;
  justify-content: center;
  gap: 200px;
}
.about_wrap ul li {
  position: relative;
}
.about_wrap ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 80px;
  background: #fff;
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translate(0px, -50%);
}
.about_wrap ul li:last-child:after {
  display: none;
}
.about_wrap ul li p {
  color:#fff;
  padding-top: 18px;
  text-align: center;
}


.business_top {
  background:url(../images/Business_bg.png)no-repeat center/cover;
  padding: 80px 0;
  box-sizing: border-box;
  text-align: center;
}
.business_top span {
  color:#fff;
}
.business_top h3 {
  color:#fff;
  font-size: 40px;
  padding-top: 20px;
}

.business_wrap {
  width: 100%;
  background: #f7f7f7;
  padding: 80px 0 150px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: 140px;
}

.business_wrap .img_box .box{
  width: 220px;
  height: 220px;
  background: #326bb8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -70px;
  right: -50px;
}
.business_wrap .img_box .box p {
  font-family: 'GangwonEducationTteontteon';
  font-weight: bold;
  font-size: 30px;
  color:#fff;
}
.business_wrap .text_box {
  position: relative;
  top: 60px;
}
.business_wrap .text_box .title h3 {
  display: inline-block;
  margin-left: 30px;
  font-size: 52px;
  color:#2c4b8b;
  font-weight: 300;
  line-height: 1.1;
}
.business_wrap .text_box .title h3 span.small {
  font-size: 42px;
}
.business_wrap .text_box .title h3 span.bold {
  font-weight: 600;
}
.business_wrap .text_box > p {
  padding: 50px 0;
  line-height: 1.8;
}
.business_wrap .text_box .ceo {
  text-align: right;
}
.business_wrap .text_box .ceo span {
  font-size: 15px;
  display: inline-block;
  margin-right: 22px;
}
.business_wrap .text_box .ceo b {
  font-size: 25px;
}

.business_History {
    background: #f7f7f7;
    padding-bottom: 120px;
}
.business_History .title {
    text-align: center;
}
.business_History .title p {
  font-size: 17px;
  color:var(--main-color);
  font-weight: 900;
}
.business_History .title h3 {
    font-size: 30px;
    font-weight: 900;
    padding: 10px 0 60px 0;
    box-sizing: border-box;
}
.business_History .title h3 span {
    font-weight: 500;
}
.business_History .ul_History {
    display: flex;
    gap: 100px;
    justify-content: center;
    text-align: center;
    padding-top: 30px;
}
.business_History .ul_History::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #bebebe;
    position: absolute;
    top: 0;
}
.business_History .ul_History li {
    position: relative;
}
.business_History .ul_History li span {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: #fff;
    border: 5px solid #022461;
    box-sizing: border-box;
    position: absolute;
    top: -43px;
    left: 50%;
    transform: translate(-50%, 0px);
}
.business_History .ul_History li b {
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}






.product_wrap {
  margin: 80px auto 120px auto;
}

.product_wrap .title p {
  font-size: 17px;
  color:var(--main-color);
  font-weight: 900;
  padding-bottom: 37px;
}
.product_wrap .title h3 {
  font-size: 42px;
  padding-bottom: 57px;
}
.product_wrap .title h3 span {
  font-weight: 900;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.product-item {
  width: calc(33.333% - 20px);
  height: auto;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-item .img_box img {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid #ddd;
}
.product-item > p {
  padding: 14px 0;
  box-sizing: border-box;
  font-size: 20px;
}
.product-item > span {
  font-size: 17px;
  color:#777;
}
#load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 60px auto 0px auto;
}
#load-more .img_box {
  border-radius: 100%;
  border: 1px solid #ddd;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#load-more span {
  display: inline-block;
  font-size: 17px;
  color:#6a6a6a;
}
#load-more:hover .img_box {
  background: var(--main-color);
}
#load-more:hover .img_box img {
  filter: invert(1);
}


.contact_wrap {
  display: flex;
  justify-content: space-between;
}
.contact_wrap .form_wrap,
.contact_wrap .text_wrap {
  width: calc(100% / 2 - 30px)
}
.contact_wrap .form_wrap ul {
  display: flex;
  gap: 24px 28px;
  flex-wrap: wrap;
}
.contact_wrap .form_wrap ul li {
  width: 100%;
}
.contact_wrap .form_wrap ul li:nth-child(1),
.contact_wrap .form_wrap ul li:nth-child(2) {
  width: calc(100% / 2 - 14px);
}
.contact_wrap .form_wrap ul li:last-child {
  text-align: right;
  margin-top: 20px;
}
.contact_wrap .form_wrap ul li:last-child span {
  margin: 0 14px 14px 0;
}
.contact_wrap .form_wrap ul li span.head {
  font-size: 20px;
  color:var(--main-color);
  display: inline-block;
  margin-bottom: 14px;
}
.contact_wrap .form_wrap ul li .box input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px;
  box-sizing: border-box;
  width: 100%;
}
.contact_wrap .form_wrap ul li .box input:focus {
  border: 1px solid var(--main-color);
}


.file-upload-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* input 숨기기 */
.hidden-input {
  display: none;
}

/* 버튼 디자인 */
.custom-file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  min-height: 50px;
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 17px;
  width: 220px;
  transition: 0.2s;
}
.custom-file-btn:hover,
.custom-file-btn:active,
.custom-file-btn:focus {
  background: #fff;
  border: 1px solid var(--main-color);
  color:var(--main-color);
}

/* 파일 리스트 박스 디자인 */
.file-list-container {
  width: 100%;
  max-width: 480px;
  min-height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.file-list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.file-list-container li {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.file-list-container li:last-child {
  border-bottom: none;
}

.form_wrap input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;;
    border:1px solid #bbbbbb;
    border-radius: 0%;
    width: 20px;
    height: 20px;
}
.form_wrap input[type="checkbox"]:checked {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--main-color) url(../images/check.png)no-repeat center;
}
.form_wrap ul li textarea {
  resize: none;
  border: 1px solid #ddd;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  padding: 14px;
  box-sizing: border-box;
}

.form_wrap .form_wrap_submit {
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color:#fff;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
  width: 100%;
  border-radius: 8px;
  margin-top: 50px;
  font-weight: 900;
}
.form_wrap .form_wrap_submit:hover,
.form_wrap .form_wrap_submit:active,
.form_wrap .form_wrap_submit:focus {
  background: #fff;
  color:var(--main-color);
}




.contact_wrap .text_wrap > h3 {
  color: #2c4b8b;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
}
.contact_wrap .text_wrap > h3 span {
  font-size: 32px;
  font-weight: 400;
}
.contact_wrap .text_wrap > p {
  padding: 44px 0;
  box-sizing: border-box;
  font-size: 22px;
}
.contact_wrap .text_wrap .link_box {
  display: flex;
  gap: 18px;
}
.contact_wrap .text_wrap .link_box li {
  width: calc(100% / 4 - 9px);
}
.contact_wrap .text_wrap .link_box li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--main-color);
  color:#fff;
  padding: 24px 0;
  box-sizing: border-box;
  border-radius: 8px;
  min-height: 176px;
}
.contact_wrap .text_wrap .info_box {
  padding: 35px 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--main-color);
}
.contact_wrap .text_wrap .info_box li p {
  display: inline-block;
  font-size: 22px;
  color:var(--main-color);
}
.contact_wrap .text_wrap .info_box li span {
  font-size: 22px;
}
.contact_wrap .text_wrap .contact_info {
  margin-top: 35px;
}
.contact_wrap .text_wrap .contact_info .box {
  background: #f7f7f7;
  padding: 35px;
  box-sizing: border-box;
}
.contact_wrap .text_wrap .contact_info .box b {
  color:var(--main-color);
  font-size: 22px;
}
.contact_wrap .text_wrap .contact_info .box p {
  font-size: 17px;
  margin-top: 8px;
}



footer {
  background: #000;
  padding: 80px 0;
  box-sizing: border-box;
  margin-top: 80px;
}
.footer_top {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding-bottom: 27px;
}
.footer_top ul li a {
  color:#fff;
  font-size: 13px;
}
.footer-info {
  padding-top: 27px;
}
.footer-info p {
  padding-bottom: 16px;
  color:#fff;
  font-size: 13px;
}
.footer-info span {
  font-size: 13px;
  color:#fff;
  opacity: 0.3;
}

header nav .mob_box {
    display: none;
}

/*햄버거메뉴*/
.mob_box {
    display: block;
}
.gnb_mob_btn {
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}
.gnb_mob_btn .burger {
    position: relative;
    width: 28px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    display: block;
}
.gnb_mob_btn .burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.gnb_mob_btn .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}
.gnb_mob_btn .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}
.gnb_mob_btn .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}
.gnb_mob_btn .burger.on span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}
.gnb_mob_btn .burger.on span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}
.gnb_mob_btn .burger.on span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 20px;
    left: 5px;
}
.mob_box .mob_gnb {
    position: fixed;
    top: 0;
    right: 0;
    background: #0000005e;
    width: 100%;
    height: 100dvh;
    z-index: 1;
    box-sizing: border-box;
    transform: translateX(100%);
}
.mob_box .mob_gnb .gnb_wrap_mob {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    width: 80%;
    height: 100dvh;
    z-index: 1;
    padding: 50px 20px 0 20px;
    box-sizing: border-box;
}
.mob_box .mob_gnb.on {
  transform: translateX(0);
}
.mob_box .mob_gnb .gnb_wrap_mob > li > a {
  display: block;
  font-size: 16px;
  color:#000;
  font-weight: 900;
  padding: 20px 0 8px 0;
  border-bottom: 1px solid #ddd;
}
.mob_box .mob_gnb .gnb_wrap_mob .mon_tel_box {
  background: var(--main-color);
  color:#fff;
  display: flex;
  justify-content: center;
  border-radius: 50px;
  width: 100%;
  padding: 8px 0;
  box-sizing: border-box;
  margin-top: 20px;
}
.mob_box .mob_gnb .gnb_wrap_mob .mon_tel_box a {
  border: none;
  color:#fff;
  padding: 0;
}

@media (max-width: 1520px) {
.w1520 {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
header {
  padding: 0 20px;
}
nav .pc_gnb {
  gap: 40px;
}
nav .tel_box {
  margin-left: 40px;
}
header nav .logo_box img {
  display: block;
  width: 180px;
}
.quick-menu {
  right: 20px;
}

.business_wrap {
  padding: 80px 20px 120px 20px;
  gap: 40px;
}
.business_wrap .img_box {
    display: flex;
    align-items: end;
}
.business_wrap .img_box > img {
    display: block;
    width: 100%;
    object-fit: contain;
}
.business_wrap .img_box .box {
  width: 160px;
  height: 160px;
  bottom: -20px;
  right: -20px;
}
.business_wrap .img_box .box p {
  font-size: 24px;
}

.file-list-container {
  max-width: 60%;
}

}


@media (max-width: 1070px) {
.about_wrap ul {
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
}
.about_wrap ul li::after {
  display: none;
}

.business_wrap {
  flex-direction: column;
}
.business_wrap > .img_box  {
  margin: 0 auto;
}


}


@media (max-width: 870px) {
header {
  height: 70px;
}
header nav .mob_box {
  position: absolute;
  top: 24px;
  right: 20px;
  display: block;
}

header nav .pc_gnb,
header nav .tel_box {
  display: none;
}

main {
  margin-top: 70px;
}

.slide_box {
  width: 90%;
}
.slide_box h3 {
  font-size: 30px;
}
.slide_box h4 {
  font-size: 15px;
  padding: 16px 14px;
}
.slick-slide .image img {
  height: 90dvh;
}
.main-dots {
  bottom: 20%;
}

.product_wrap .title h3 {
  font-size: 26px;
  padding-bottom: 30px;
}
.product_wrap .title p {
  font-size: 15px;
  padding-bottom: 16px;
}

.contact_wrap {
  flex-direction: column-reverse;
  gap: 40px;
}
.contact_wrap .form_wrap, 
.contact_wrap .text_wrap {
  width: 100%;
}

.contact_wrap .text_wrap > h3,
.contact_wrap .text_wrap > h3 span {
  font-size: 26px;
}
.contact_wrap .text_wrap > p {
  font-size: 16px;
  padding: 24px 0;
}
.contact_wrap .text_wrap .info_box li p,
.contact_wrap .text_wrap .info_box li span {
  font-size: 16px;
}

.business_History .ul_History {
    flex-direction: column;
    gap: 30px;
}
.business_History .ul_History::before {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translate(-50%,0px);
}
.business_History .ul_History li {
    width: 50%;
    text-align: right;
    padding-right: 20px;
    box-sizing: border-box;
}
.business_History .ul_History li span {
    top: 0;
    left: 100%;
}
.business_History .ul_History li:nth-child(even) {
    text-align: left;
    position: relative;
    left: 50%;
    padding-left: 20px;
}
.business_History .ul_History li:nth-child(even) span {
    left: 0;
}






}








@media (max-width: 560px) {

.quick-menu .text_box {
  display: none;
}


.about_wrap ul {
  justify-content: center;
}
.about_wrap ul li {
  width: calc(100% / 4 - -20px);
  text-align: center;
}
.about_wrap ul li p {
  font-size: 15px;
}

.business_top {
  padding: 40px 0;
}
.business_top h3 {
  font-size: 30px;
}
.business_wrap .text_box .title > img {
  display: inline-block;
  width: 22px;
}
.business_wrap .text_box .title h3 {
  margin-left: 10px;
}

.business_wrap .text_box .title h3 span.small,
.business_wrap .text_box .title h3 {
  font-size: 28px;
}

.business_wrap > .img_box > img {
  width: 90%;
}
.business_wrap .img_box .box {
  width: 120px;
  height: 120px;
  bottom: -20px;
  right: 0;
}
.business_wrap .img_box .box p {
  font-size: 18px;
}

.product-container {
  gap: 30px 20px;
}
.product-item {
  width: calc(50% - 20px);
}
.product-item > p {
  font-size: 16px;
}
.product-item > span {
  font-size: 14px;
}

#load-more .img_box {
  width: 32px;
  height: 32px;
}
#load-more .img_box img {
  width: 15px;
}

.contact_wrap .text_wrap .link_box {
  flex-wrap: wrap;
}
.contact_wrap .text_wrap .link_box li {
  width: calc(100% / 2 - 9px);
}
.contact_wrap .text_wrap .link_box li a {
  min-height: auto;
}
.contact_wrap .text_wrap .link_box li a .img_box img {
  height: 56px;
}

.contact_wrap .text_wrap .contact_info .box {
  padding: 25px;
}

.contact_wrap .text_wrap .contact_info .box b {
  font-size: 18px;
}
.contact_wrap .text_wrap .contact_info .box p {
  font-size: 14px;
}

.contact_wrap .form_wrap ul li:nth-child(1), 
.contact_wrap .form_wrap ul li:nth-child(2) {
  width: 100%;
}


.contact_wrap .form_wrap ul li span.head {
  font-size: 16px;
  margin-bottom: 6px;
}
.form_wrap .form_wrap_submit {
  padding: 16px 0;
  margin-top: 30px;
}


.quick-menu {
  padding: 8px 16px;
}
.quick-menu ul li a {
  width: 38px;
  height: 38px;
  padding: 8px;
}

.business_History .title p,
.business_History .ul_History li p {
    font-size: 14px;
}
.business_History .title h3 {
    font-size: 20px;
}
.business_History .ul_History li span {
    width: 20px;
    height: 20px;
}
.business_History .ul_History li b {
    font-size: 17px;
}




}








@media (max-width: 380px) {













}