:root {
  --color-main: #255CA7;
  --color-sub: #1EB9EE;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: 'Pretendard', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --gradient: linear-gradient(90deg, #255CA7 0%, #154595 100%);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

#sv {
  width: 100%;
  height: 460px;
  position: relative;
  overflow: hidden;
}

#sv.sv01 .bg {
  background-image: url("/hudaters-n/img/sub/subVisual1.jpg");
}

#sv.sv02 .bg {
  background-image: url("/hudaters-n/img/sub/subVisual2.jpg");
}

#sv.sv03 .bg {
  background-image: url("/hudaters-n/img/sub/subVisual3.jpg");
}

#sv .bg,
#sv .flexBox {
  width: 100%;
  height: 100%;
}

#sv .bg {
  z-index: -1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#sv .flexBox {
  gap: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

#sv .flexBox * {
  color: var(--color-white);
}

#sv .flexBox h2 {
  font-weight: 700;
  line-height: 1.3;
}

#sv .flexBox p {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
}

#sv.on .bg {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#sv.on .flexBox {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}


.subContents #lnb {
  /* height: 100px; */
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin: 80px 0 100px;
}

.subContents #lnb li {
  position: relative;
  width: 100%;
  height: 100%;
}

.subContents #lnb li::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #09357f;
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.subContents #lnb li a {
  color: #666;
  font-size: 1.7rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subContents #lnb li:hover::after, .subContents #lnb li.on::after {
  width: 100%;
}

.subContents #lnb li:hover a, .subContents #lnb li.on a {
  color: #09357f;
  font-weight: 600;
}

.subTitle {
  text-align: center;
  margin: 100px 0;
}

.subTitle h3 {
  color: #222;
  font-weight: 700;
  margin: 35px 0 25px;
}

.subTitle p {
  color: #444;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.75;
}

.topImg {
  text-align: center;
}

.subText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px 0;
  background: #EEF0F7;
  padding: 100px 90px;
  margin: 100px 0;
}

.subText > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subText > div > * {
  width: 100%;
}

.subText > div h3 {
  max-width: 24.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #222;
  font-weight: 700;
}

.subText .number {
  background: var(--color-white);
  padding: 50px 40px;
}

.subText .number.grid2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  gap: 0 40px;
}

.subText ol {
  width: 100%;
}

.subText ol li {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subText ol li:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.subText ol b {
  display: block;
  width: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #B8BED1;
  font-size: 13px;
}

.subText ol p {
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--font-pretendard);
}

.subText ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}

.subText ul li {
  width: 100%;
  max-width: 235px;
  height: 125px;
  background: var(--color-white);
  color: #333;
  font-size: 1.9rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.road .videoBox video {
  min-width: 100%;
  max-width: 100%;
}

.distribution .itemBox,
.distribution .itemBox > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.distribution .itemBox > .arrow {
  margin: 0 -12px;
  position: relative;
  z-index: 1;
}

.distribution .circle {
  border-radius: 50%;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.distribution .circle span,
.distribution .circle p {
  width: 100%;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.distribution .circle span {
  color: #444;
  font-size: 2.0rem;
  line-height: 1.5;
}

.distribution .circle p {
  color: #222;
  font-size: 3.0rem;
  line-height: 1.4;
}

.distribution .leftBox {
  width: 40.625%;
}

.distribution .list {
  width: 64%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
  margin-right: -26%;
}

.distribution .list .circle {
  width: 54%;
  border-width: 1px;
  border-style: solid;
  padding: 27% 0;
}

.distribution .list .circle:first-child {
  margin-bottom: -60px;
}

.distribution .list .circle:last-child {
  margin-top: -60px;
}

.distribution .list .borderM {
  border-color: #8A9FC2;
}

.distribution .list .borderS {
  border-color: #A6E3F8;
}

.distribution .list .positionR {
  margin-left: auto;
}

.distribution .rightBox {
  width: 54.6875%;
  gap: 0 5.2%;
  background: #EEF0F7;
  border-radius: 200px;
  padding: 55px;
}

.distribution .rightBox .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.distribution .rightBox .circle {
  width: 38.20%;
  padding: 19.10% 0;
  background: var(--color-white);
}

.distribution .rightBox .circle::before {
  content: "";
  display: block;
  -webkit-box-shadow: 0px 4px 50px 0px rgba(9, 53, 127, 0.1);
          box-shadow: 0px 4px 50px 0px rgba(9, 53, 127, 0.1);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.consulting .itemBox {
  width: 100%;
  max-width: 720px;
  gap: 120px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consulting .itemBox .item {
  position: relative;
}

.consulting .itemBox h6 {
  width: 100%;
  color: var(--color-white);
  font-size: 2.0rem;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.consulting .itemBox .circle {
  width: 66.65%;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cars .itemBox {
  width: 100%;
  max-width: 396px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cars .itemBox .text {
  position: absolute;
}

.cars .itemBox .text img {
  max-width: inherit;
}

.cars .itemBox .text1 {
  top: 7.5%;
  right: 40%;
}

.cars .itemBox .text2 {
  top: 16%;
  left: 64%;
}

.cars .itemBox .text3 {
  right: 50%;
  bottom: 30%;
}

.boxes .topImg {
  border: 1px solid #e5e5e5;
  padding: 50px;
}

.vision .subTitle {
  margin: 0;
}

.vision .subTitle h3 {
  line-height: 1.3;
}

.vision .subTitle p {
  font-size: 2.0rem;
}

.vision .topImg {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

.vision .topImg figure {
  position: relative;
}

.vision .topImg figure::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.vision .topImg h3 {
  width: 100%;
  color: var(--color-white);
  line-height: 1.3;
  position: absolute;
  top: 150%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

.vision .topImg.on {
  max-width: 100%;
}

.vision .topImg.on figure::after {
  opacity: 1;
}

.vision .topImg.on h3 {
  top: 50%;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.vision .itemBox {
  padding: 100px 0 150px;
  position: relative;
}

.vision .itemBox::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url("/hudaters-n/img/sub/visionBg.jpg") no-repeat center/cover;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
