@charset "utf-8";

/* Direction */
h2 {
    font-size: var(--font-size-18);
    font-weight: 700;
}	
.sub-h-txt {
    background-color: #f6fafd;
    margin-top: var(--margin-80);
    font-size: var(--font-size-18);
    line-height: var(--line-height-30);
    font-weight: 500;
    padding: 20px 20px;
    max-width: var(--max-width-sub);
    margin-right: auto;
    margin-left: auto;
}
.sub-h-txt span dd {
    font-weight: 600;
    color: var(--sub-color-0);
}
.subcont-area.full .sub-cont.full {
    width: 100%;
    max-width: 100%;
}
.subcont-area.full .sub-cont-area {
    padding-left: var(--padding-20-15);
    padding-right: var(--padding-20-15);
}
.subcont-area.full .sub-cont {
    width: 100%;
}
.subtit-area h1 {
	padding-left: var(--padding-20-15);
    padding-right: var(--padding-20-15);
}
.sub-h-txt-area {
    padding-left: var(--padding-20-15);
    padding-right: var(--padding-20-15);
}
.factory-name {
    color: var(--sub-color-0);
    font-size: var(--font-size-20);
    margin-top: var(--margin-80);
	margin-bottom: var(--margin-40);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 그리드 컨테이너 설정 */
.logo-grid {  
  display: grid;
  /* 화면 너비에 맞춰 최소 200px 크기의 아이템을 자동으로 배치 */
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-20); /* 아이템 사이의 간격 (테두리처럼 보임) */
}

/* 개별 로고 아이템 스타일 */
.logo-item {
    background-color: #fff;
    /* height: 120px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: solid 1px #cecece;
}

/* 로고 이미지 크기 최적화 */
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 마우스를 올렸을 때 효과 */
.logo-item:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 이미지의 INNOMOTICS처럼 어두운 배경 스타일 */
.logo-item.highlighted {
  background-color: #0f171e;
}
.logo-item.highlighted img {
  filter: brightness(0) invert(1); /* 이미지를 흰색으로 반전 (필요 시) */
}


.office-area {
    margin-top: var(--margin-60);
    margin-bottom: var(--margin-60);
    width: 100%;
    height: auto;
    background-size: contain;
    background: radial-gradient(circle, #ffffff 0%, #eee 50%, #ddd 100%);
    background-repeat: repeat-x;
    background-position: center;
}
.office-in {
    width: 100%;
    max-width: var(--max-width-sub);
    margin: 0 auto;
}
.office-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc(750/1440 * 50%);
    padding-bottom: calc(750/1440 * 50%);
    background-size: cover;
    background-image: url('./img/Main-clients-01.svg');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maker-01 .maker-txt, .maker-05 .maker-txt {
    background: rgba(2,148,230, 0.8);
    color: #ffffff;
    font-size: var(--font-size-16-10);
    padding: var(--padding-10) var(--padding-30);
    border-radius: 10px;
    margin-bottom: var(--margin-20-5);
	white-space: nowrap;
}
.maker-02 .maker-txt {
    background: rgba(2,148,230, 0.8);
    color: #ffffff;
    font-size: var(--font-size-16-10);
    padding: var(--padding-10) var(--padding-30);
    border-radius: 10px;
    margin-top: var(--margin-20-5);
	white-space: nowrap;
}
.maker-03 .maker-txt {
    background: rgba(4,65,191, 0.9);
    color: #ffffff;
    font-size: var(--font-size-16-10);
    padding: var(--padding-10) var(--padding-30);
    border-radius: 10px;
    margin-bottom: var(--margin-20-5);
	white-space: nowrap;
}
.maker-04 .maker-txt {
    background: rgba(2,148,230, 0.8);
    color: #ffffff;
    font-size: var(--font-size-16-10);
    padding: var(--padding-10) var(--padding-30);
    border-radius: 10px;
    margin-top: var(--margin-20-5);
	white-space: nowrap;
}
.pin-line {
    background: #ffbb00;
    width: var(--width-2);
    height: var(--height-70-10);
}
.maker-01 .pin-line {
    background: #0294e6;
    width: var(--width-2);
    height: var(--height-70-10);
}
.maker-02 .pin-line {
    background: #ffbb00;
    width: var(--width-2);
    height: var(--height-70-10);
}
.maker-03 .pin-line {
    background: #CC0000;
    width: var(--width-2);
    height: var(--height-150-25);
}
.maker-04 .pin-line {
    background: #ff3399;
    width: var(--width-2);
    height: var(--height-130-35);
}
.maker-05 .pin-line {
    background: rgba(34,139,34);
    width: var(--width-2);
    height: var(--height-70-10);
}
.icon-maker {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    padding: 0;
	width: 0;
    height: 0;
}
.icon-maker .maker-03 {
	display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}
.icon-maker li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon-maker li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.icon-maker .maker-01 {
    FONT-WEIGHT: 500;
    margin-top: -7%;
    left: 15%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.icon-maker .maker-02 {
    margin-top: 0%;
    left: 38%;
    position: absolute;
    transform: translate(-50%, 50%);
}
.icon-maker .maker-03 {
    FONT-WEIGHT: 500;
    margin-top: -1%;
    left: 44.4%;
    position: absolute;
    transform: translate(-50%, -50%);
}
.icon-maker .maker-04 {
    margin-top: -2%;
    left: 47.5%;
    position: absolute;
    transform: translate(-50%, 50%);
}
.icon-maker .maker-05 {
    margin-top: -5%;
    left: 77.5%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.maker-01 .pin {
    width: var(--min-width-30);
    height: var(--min-width-30);
    border-radius: 50% 50% 50% 0;
    background: #0294e6;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.maker-02 .pin {
    width: var(--min-width-30);
    height: var(--min-width-30);
	border-radius : 50% 50% 50% 0;
	background: #ffbb00;
	position : relative;
	transform : rotate(135deg);
	margin : 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
 } 
.maker-03 .pin {
    width: var(--min-width-30);
    height: var(--min-width-30);
    border-radius: 50% 50% 50% 0;
    background: #CC0000;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.maker-04 .pin {
    width: var(--min-width-30);
    height: var(--min-width-30);
	border-radius : 50% 50% 50% 0;
	background: #ff3399;
	position : relative;
	transform : rotate(135deg);
	margin : 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
 } 
.maker-05 .pin {
    width: var(--min-width-30);
    height: var(--min-width-30);
	border-radius : 50% 50% 50% 0;
	background: rgba(34,139,34);
	position : relative;
	transform : rotate(-45deg);
	margin : 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
 } 
.office-map .pin:after {
    content: "";
    width: var(--min-width-14);
    height: var(--min-width-14);
    background: #ffffff;
    position: absolute;
    border-radius: 50%;
}
.maker-01 .pin-pulse {
  position: relative;
  margin: 0 0 0 0;
  width: var(--min-width-10);
  height: var(--min-width-10);
  background: #0294e6;
  border-radius: 999px;
}
.maker-02 .pin-pulse {
  position: relative;
  margin: 0 0 0 0;
  width: var(--min-width-10);
  height: var(--min-width-10);
  background: #ffbb00;
  border-radius: 999px;
}
.maker-03 .pin-pulse {
  position: relative;
  margin: 0 0 0 0;
  width: var(--min-width-10);
  height: var(--min-width-10);
  background: #CC0000;
  border-radius: 999px;
}
.maker-04 .pin-pulse {
  position: relative;
  margin: 0 0 0 0;
  width: var(--min-width-10);
  height: var(--min-width-10);
  background: #ff3399;
  border-radius: 999px;
}
.maker-05 .pin-pulse {
  position: relative;
  margin: 0 0 0 0;
  width: var(--min-width-10);
  height: var(--min-width-10);
  background: rgba(34, 139, 34, 0.5);
  border-radius: 999px;
}
.maker-01 .pin-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--min-width-10);
    height: var(--min-width-10);
    margin: -5px 0 0 -5px;
    background: rgba(61, 193, 221, 0.2);
    opacity: 0;
    border-radius: 999px;
    -webkit-animation: animation-pulse 800ms linear infinite;
    -moz-animation: animation-pulse 800ms linear infinite;
    -o-animation: animation-pulse 800ms linear infinite;
    animation: animation-pulse 800ms linear infinite;
}
.maker-02 .pin-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--min-width-10);
    height: var(--min-width-10);
    margin: -5px 0 0 -5px;
    background: rgba(61, 193, 221, 0.2);
    opacity: 0;
    border-radius: 999px;
    -webkit-animation: animation-pulse 800ms linear infinite;
    -moz-animation: animation-pulse 800ms linear infinite;
    -o-animation: animation-pulse 800ms linear infinite;
    animation: animation-pulse 800ms linear infinite;
}
.maker-03 .pin-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--min-width-10);
    height: var(--min-width-10);
    margin: -5px 0 0 -5px;
    background: rgba(61, 193, 221, 0.2);
    opacity: 0;
    border-radius: 999px;
    -webkit-animation: animation-pulse 800ms linear infinite;
    -moz-animation: animation-pulse 800ms linear infinite;
    -o-animation: animation-pulse 800ms linear infinite;
    animation: animation-pulse 800ms linear infinite;
}
.maker-04 .pin-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--min-width-10);
    height: var(--min-width-10);
    margin: -5px 0 0 -5px;
    background: rgba(61, 193, 221, 0.2);
    opacity: 0;
    border-radius: 999px;
    -webkit-animation: animation-pulse 800ms linear infinite;
    -moz-animation: animation-pulse 800ms linear infinite;
    -o-animation: animation-pulse 800ms linear infinite;
    animation: animation-pulse 800ms linear infinite;
}
.maker-05 .pin-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--min-width-10);
    height: var(--min-width-10);
    margin: -5px 0 0 -5px;
    background: rgba(61, 193, 221, 0.2);
    opacity: 0;
    border-radius: 999px;
    -webkit-animation: animation-pulse 800ms linear infinite;
    -moz-animation: animation-pulse 800ms linear infinite;
    -o-animation: animation-pulse 800ms linear infinite;
    animation: animation-pulse 800ms linear infinite;
}

@-webkit-keyframes animation-pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(5, 5);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(10, 10);
  }
}

@-moz-keyframes animation-pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-transform: scale(5, 5);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(10, 10);
  }
}

@keyframes animation-pulse {
   0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(5, 5);
  }
  100% {
    opacity: 0;
    transform: scale(10, 10);
  }
}
.office-korea {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #fff;
}
.office-korea:last-child {
    padding-top: 0px;
    padding-bottom: 0px;
    background: #fff;
}
.office-korea-area-group {
    display: flex;
	flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.office-korea-area-tit {
    display: flex;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
	letter-spacing: -0.6px;
}
.office-korea-area {
    width: calc(50% - 20px);
    max-width: 1280px;
    margin: 0 auto;
    border: solid 1px #cccccc;
}
.office-overseas-area {
    width: calc(50% - 20px);
    max-width: 1280px;
    margin: 0 auto;
    border: solid 1px #cccccc;
}
.office-korea-area:nth-child(1) {
    margin-right: 20px;
}
.office-korea-area:nth-child(2) {
    margin-left: 20px;
}
.office-overseas-area:nth-child(1) {
    margin-right: 20px;
}
.office-overseas-area:nth-child(2) {    
    margin-left: 20px;
}
.office-overseas-area:nth-child(3) {
    margin-left: 20px;
}
.office-korea-title-01 {
    display: flex;
    border-bottom: solid 1px #cccccc;
    flex-direction: row;
    padding: 30px 30px;
}
.office-korea-img {
    width: 64px;
    border: solid 0px #dddddd;
    margin: -8px;
}
.office-korea-txt-area {
    padding: 0 0 0 20px;
}
.office-korea-tit {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.office-korea-txt {
    font-size: 16px;
    font-weight: 500;
}
.office-cont-area {
    padding: 30px 30px;
}
.office-cont-addr {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
	line-height: 160%;
}
.office-cont-addr i {
    font-size: 20px;
    padding-right: 10px;
    color: #555;
    margin-top: 2px;
}
.office-cont-tel {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}
.office-cont-tel i {
    font-size: 18px;
    padding-right: 10px;
	color: #555;
}
.office-cont-img {
}
.office-cont-map {
    width: fit-content;
    background: #555;
    padding: 8px 80px;
    margin: 30px auto 0;
}
.office-cont-map a {
    color: #ffffff;
    white-space: nowrap;
    font-size: 14px;
}


/* Large Devices, Wide Screens : ~ 1200px */
@media only screen and (max-width : 1200px) {

}


/* Medium Devices, Desktops : ~ 992px */
@media only screen and (max-width : 992px) {

}


/* Small Devices, Tablets : ~ 768px */
@media only screen and (max-width : 768px) {
	.logo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* Extra Small Devices, Phones : ~ 480px */
@media only screen and (max-width : 480px) {

}


/* Custom, iPhone Retina : ~ 320px */
@media only screen and (max-width : 320px) {

}