/**
  Layout
*/
.fixed-container {
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
}
.fixed-container__hr {
  width: 100%;
  height: 1px;
  background-color: #d8d9db;
  margin: 10px 0;
}

.flex-container {
  display: flex;
  position: relative;
}
.flex-container--col2 {
  gap: 100px;
}
.flex-container--col2 > div {
  flex-basis: 50%;
}
.flex-container--col3 {
  gap: 33px;
}

.fluid-container {
  width: 100%;
  position: relative;
}
.fluid-container--gray {
  background-color: #f6f6f6;
}

.full-container {
  display: block;
  clear: both;
}
.full-container.full-content {
  max-width: 1440px;
  margin: 0 auto;
}

@media only screen and (max-width: 1439px) and (min-width: 1081px) {
  .full-container .full-content {
    padding: 0 36px;
  }
}
@media only screen and (max-width: 1080px) {
  .fixed-container {
    width: 100%;
    overflow: hidden;
  }
  .fluid-container {
    overflow: hidden;
  }
  .flex-container--col2 {
    gap: 20px;
  }
  .full-container .full-content {
    padding: 0 0 0 0;
    border-top: 0;
  }
}
@keyframes slider-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.md-hero {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.md-hero__carousel--ready .md-hero__item:not(:first-child) {
  display: block;
}
.md-hero__item {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.md-hero__item:not(:first-child) {
  display: none;
}
.md-hero__item--white .md-hero__textbox {
  color: #fff;
}
.md-hero__item--white .md-hero__watch-anchor {
  color: #fff;
}
.md-hero__item--white .md-hero__media-controller-img-default {
  display: none !important;
}
.md-hero__item--white .md-hero__media-controller-img-white {
  display: block !important;
}
.md-hero__media-wrapper {
  font-size: 0;
}
.md-hero__video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  display: flex;
  padding-bottom: 31.5%;
}
.md-hero__video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 비디오 비율 유지 */
  opacity: 0; /* 초기에는 숨김 */
  transition: opacity 0.3s ease; /* 부드러운 표시 효과 */
}
.md-hero__video--mobile {
  display: none;
}
.md-hero__image {
  width: 100%;
}
.md-hero__image--mobile {
  display: none !important;
}
.md-hero__container {
  max-width: 1440px;
  width: 75vw;
  margin: 0 auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.md-hero__textbox {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 4.1666666667vw;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.md-hero__eyebrow {
  font-size: 1.7708333333vw;
  line-height: 100%;
  font-family: "LG EI Headline";
  font-weight: 600;
  margin-bottom: 0.8333333333vw;
}
.md-hero__title {
  font-size: 3.5416666667vw;
  line-height: 100%;
  font-family: "LG EI Headline";
  font-weight: 700;
}
.md-hero__desc {
  font-size: 1.4583333333vw;
  line-height: 36px;
  margin-top: 1.5625vw;
}
.md-hero__cta {
  margin-top: 1.5625vw;
}
.md-hero__cta-anchor {
  display: inline-block;
  color: #fff;
  background-color: #fd312e;
  font-size: 1.0416666667vw;
  height: 2.4479166667vw;
  line-height: 2.4479166667vw;
  padding: 0 1.1458333333vw;
  border-radius: 999px;
}
.md-hero__cta-anchor:hover {
  color: #fff;
}
.md-hero__watch {
  margin-top: 1.1458333333vw;
}
.md-hero__watch-anchor {
  text-decoration: underline;
  font-weight: 400;
}
.md-hero__media-controller {
  position: absolute;
  left: 50%;
  bottom: 132px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}
.md-hero__media-controller--playing .md-hero__media-controller-stop {
  display: block;
}
.md-hero__media-controller--playing .md-hero__media-controller-play {
  display: none;
}
.md-hero__media-controller-stop {
  display: none;
}
.md-hero__media-controller-play {
  display: block;
}
.md-hero__media-controller-img-default {
  display: block;
}
.md-hero__media-controller-img-white {
  display: none !important;
}
.md-hero__controller-wrapper {
  position: absolute;
  max-width: 1440px;
  width: 75vw;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.md-hero__controller-wrapper.pause .md-hero__pagenation .slick-dots .md-hero__pagenation-progressbar {
  animation-duration: 0s !important;
}
.md-hero__controller-wrapper.play .md-hero__controller-play {
  display: none;
}
.md-hero__controller-wrapper.play .md-hero__controller-pause {
  display: block;
}
.md-hero__controller {
  position: absolute;
  right: 0;
  bottom: 46px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  text-align: center;
  padding: 0 8px;
  z-index: 1;
  display: flex;
}
.md-hero__controller--white {
  background-color: rgba(0, 0, 0, 0.7);
}
.md-hero__controller--white .md-hero__controller-play {
  background-image: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_play_white.png");
}
.md-hero__controller--white .md-hero__controller-pause {
  background-image: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_pause_white.png");
}
.md-hero__controller--white .md-hero__controller-previus {
  background-image: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_prev_white.png");
}
.md-hero__controller--white .md-hero__controller-next {
  background-image: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_next_white.png");
}
.md-hero__controller-play {
  width: 30px;
  height: 100%;
  background: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_play.png") center center no-repeat;
}
.md-hero__controller-pause {
  width: 30px;
  height: 100%;
  display: none;
  background: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_pause.png") center center no-repeat;
}
.md-hero__controller-previus {
  width: 20px;
  height: 100%;
  background: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_prev.png") center center no-repeat;
}
.md-hero__controller-next {
  width: 20px;
  height: 100%;
  background: url("/https/www.lg-informationdisplay.com/theme/rbFront/img/w/main/hero_next.png") center center no-repeat;
}
.md-hero__pagenation {
  position: absolute;
  left: 0;
  bottom: 40px;
}
.md-hero__pagenation .slick-dots {
  margin-top: 0;
  text-align: left;
}
.md-hero__pagenation .slick-dots > li {
  width: 120px;
  height: 13px;
}
.md-hero__pagenation .slick-dots > li.slick-active .md-hero__pagenation-title {
  visibility: visible;
}
.md-hero__pagenation .slick-dots > li.slick-active .md-hero__pagenation-progressbar {
  background-color: #000;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 3px;
  width: 100%;
}
.md-hero__pagenation .slick-dots > li:hover {
  cursor: pointer;
}
.md-hero__pagenation .slick-dots > li:hover .md-hero__pagenation-title {
  visibility: visible;
}
.md-hero__pagenation .slick-dots .md-hero__pagenation-button {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  text-indent: 0;
  border: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: 10px;
}
.md-hero__pagenation .slick-dots .md-hero__pagenation-title {
  position: absolute;
  left: 0;
  bottom: 18px;
  display: flex;
  visibility: hidden;
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  align-items: flex-end;
  justify-content: center;
}
.md-hero__pagenation .slick-dots .md-hero__pagenation-progressbar {
  animation-name: slider-progress;
  animation-duration: 10s;
  animation-timing-function: linear;
}
.md-hero__pagenation--white .slick-dots > li.slick-active .md-hero__pagenation-progressbar {
  background-color: #fff;
}
.md-hero__pagenation--white .slick-dots .md-hero__pagenation-title {
  color: #fff;
}
@media only screen and (min-width: 1921px) {
  .md-hero__container {
    width: 1440px;
  }
  .md-hero__textbox {
    top: 80px;
  }
  .md-hero__eyebrow {
    font-size: 34px;
    margin-bottom: 16px;
  }
  .md-hero__title {
    font-size: 68px;
  }
  .md-hero__desc {
    font-size: 28px;
  }
  .md-hero__cta {
    font-size: 18px;
    margin-top: 30px;
  }
  .md-hero__cta-anchor {
    height: 47px;
    font-size: 18px;
    line-height: 47px;
    padding: 0 22px;
  }
  .md-hero__watch {
    font-size: 18px;
    margin-top: 22px;
  }
}
@media only screen and (max-width: 1080px) {
  .md-hero {
    max-width: 100%;
  }
  .md-hero__container {
    max-width: 100%;
    width: 100%;
  }
  .md-hero__item--bottom .md-hero__textbox {
    top: 165px;
  }
  .md-hero__video-wrapper {
    padding-bottom: 133%;
  }
  .md-hero__video {
    display: none;
  }
  .md-hero__video--mobile {
    display: block;
  }
  .md-hero__image {
    display: none !important;
  }
  .md-hero__image--mobile {
    display: inline !important;
  }
  .md-hero__textbox {
    left: 0;
    top: 44px;
    padding: 0 26px;
  }
  .md-hero__eyebrow {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .md-hero__title {
    font-size: 36px;
  }
  .md-hero__desc {
    font-size: 14px;
    margin-top: 16px;
    line-height: 20px;
  }
  .md-hero__cta {
    margin-top: 18px;
  }
  .md-hero__cta-anchor {
    font-size: 12px;
    height: 33px;
    line-height: 35px;
    padding: 0 15px;
  }
  .md-hero__watch {
    margin-top: 17px;
    font-size: 12px;
  }
  .md-hero__pagenation {
    left: 27.5px;
    bottom: 26px;
  }
  .md-hero__pagenation .slick-dots > li {
    width: 18.5px;
  }
  .md-hero__pagenation .slick-dots > li.slick-active .md-hero__pagenation-title {
    visibility: hidden;
  }
  .md-hero__pagenation .slick-dots > li:hover .md-hero__pagenation-title {
    visibility: hidden;
  }
  .md-hero__controller-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .md-hero__controller {
    right: 27px;
    bottom: 24px;
    height: 23px;
    border-radius: 20px;
    padding: 0 4px;
  }
  .md-hero__controller-play {
    width: 20px;
  }
  .md-hero__controller-pause {
    width: 20px;
  }
  .md-hero__controller-previus {
    width: 20px;
  }
  .md-hero__controller-next {
    width: 20px;
  }
  .md-hero__media-controller {
    bottom: 53px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
  }
  .md-hero__media-controller img {
    width: 30px;
  }
}

.md-gallery__hero {
  overflow: hidden;
  position: relative;
}
.md-gallery__hero--white .md-gallery__hero-title {
  color: #fff;
}
.md-gallery__hero--white .md-gallery__hero-desc {
  color: #fff;
}
.md-gallery__hero-img {
  max-width: 100%;
  border-radius: 40px;
}
.md-gallery__hero-img--mobile {
  display: none;
}
.md-gallery__hero-textbox {
  width: 420px;
  position: absolute;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.md-gallery__hero-title {
  font-family: "LG EI Headline";
  font-size: 52px;
  color: #000;
  font-weight: 400;
}
.md-gallery__hero-desc {
  font-family: "LG EI Headline";
  font-size: 24px;
  font-weight: 200;
}
.md-gallery__hero-cta-anchor {
  background-color: #fd312e;
  color: #fff;
  font-family: "LG EI Headline";
  font-size: 18px;
  font-weight: 300;
  height: 47px;
  display: inline-block;
  line-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
}
.md-gallery__hero-cta-anchor:hover {
  color: #fff;
}
.md-gallery__carousel {
  margin: 22px 46px 0;
}
.md-gallery__carousel--fit .md-gallery__carousel-card {
  padding: 0 0;
  border-radius: 30px;
  overflow: hidden;
}
.md-gallery__carousel--fit .md-gallery__carousel-img {
  width: 100%;
}
.md-gallery__carousel-items {
  width: 100%;
}
.md-gallery__carousel-item {
  width: 310px;
}
.md-gallery__carousel-card {
  padding: 10px 10px;
  background-color: #f0ece4;
  border-radius: 30px;
}
.md-gallery__carousel-img {
  max-width: 100%;
  margin: 0 auto;
}
.md-gallery__carousel-text {
  font-family: "LG EI Headline";
  font-size: 24px;
  font-weight: 200;
  text-align: center;
  margin-top: 18px;
}
.md-gallery .slick-slide {
  margin: 0 11px;
}
.md-gallery .slick-track {
  min-width: 100%;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .md-gallery__hero-textbox {
    width: 29.1666666667vw;
    right: 6.25vw;
    gap: 2.0833333333vw;
  }
  .md-gallery__hero-title {
    font-size: 3.6111111111vw;
  }
  .md-gallery__hero-desc {
    font-size: 1.6666666667vw;
  }
  .md-gallery__hero-cta-anchor {
    font-size: 1.25vw;
    height: 3.2638888889vw;
    line-height: 3.1944444444vw;
    padding: 0 1.5277777778vw;
  }
  .md-gallery__carousel {
    margin: 1.5277777778vw 3.1944444444vw 0;
  }
  .md-gallery__carousel-item {
    width: 21.5277777778vw;
  }
  .md-gallery__carousel-card {
    padding: 0.6944444444vw 0.6944444444vw;
  }
  .md-gallery__carousel-text {
    font-size: 1.6666666667vw;
    margin-top: 1.25vw;
  }
  .md-gallery .slick-slide {
    margin: 0 0.7638888889vw;
  }
}
@media only screen and (max-width: 1080px) {
  .md-gallery__hero-img {
    display: none;
  }
  .md-gallery__hero-img--mobile {
    display: inline;
    width: 100%;
  }
  .md-gallery__hero-textbox {
    width: 100%;
    right: auto;
    top: 25px;
    left: 0;
    padding: 0 26px;
    transform: translateY(0);
    gap: 16px;
    box-sizing: border-box;
  }
  .md-gallery__hero-title {
    font-size: 24px;
  }
  .md-gallery__hero-desc {
    font-size: 14px;
    line-height: 18px;
  }
  .md-gallery__hero-cta-anchor {
    font-size: 12px;
    font-weight: 300;
    height: 33px;
    display: inline-block;
    line-height: 32px;
    padding: 0 15px;
  }
  .md-gallery__carousel {
    margin: 22px 0px 0;
  }
  .md-gallery__carousel-items .slick-list {
    padding: 0 16px 0 16px;
  }
  .md-gallery__carousel-card {
    padding: 10px 10px;
    border-radius: 24px;
  }
  .md-gallery__carousel-text {
    font-size: 14px;
    margin-top: 10px;
  }
  .md-gallery .slick-dots {
    display: flex;
    margin: 14px 26px;
  }
  .md-gallery .slick-dots li {
    flex-basis: 100%;
    height: 2px;
    background-color: #c9caca;
    margin: 0;
    transition: background-color 0.4s;
  }
  .md-gallery .slick-dots li.slick-active {
    background-color: #fd312e;
  }
  .md-gallery .slick-dots button {
    display: none;
  }
}

.md-tabs {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
.md-tabs__anchor {
  padding: 0 24px;
  border-bottom: 3px solid transparent;
  font-family: "LG EI Headline";
  font-size: 24px;
  font-weight: 200;
  padding-bottom: 7px;
}
.md-tabs__anchor:hover {
  font-weight: 200;
}
.md-tabs__item--active .md-tabs__anchor {
  border-bottom: 3px solid #fd312e;
}

@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .md-tabs {
    gap: 0 3.4722222222vw;
  }
  .md-tabs__anchor {
    padding: 0 1.6666666667vw;
    font-size: 1.6666666667vw;
    padding-bottom: 0.4861111111vw;
  }
}
@media only screen and (max-width: 1080px) {
  .md-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 40px;
    padding: 0 26px;
  }
  .md-tabs__anchor {
    padding: 0 0;
    border-bottom-width: 1px;
    font-size: 14px;
    padding-bottom: 4px;
  }
  .md-tabs__item--active .md-tabs__anchor {
    border-bottom-width: 1px;
    font-weight: 200;
  }
}
.md-tab-content {
  visibility: hidden;
  height: 0;
}
.md-tab-content--active {
  visibility: visible;
  height: auto;
}

.md-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.md-cards__item {
  background-color: #f0ece4;
  border-radius: 30px;
  box-sizing: border-box;
  padding-bottom: 68px;
}
.md-cards__box {
  padding: 50px 66px;
  overflow: hidden;
  font-size: 0px;
}
.md-cards__img {
  max-width: 100%;
}
.md-cards__headline {
  text-align: center;
  font-family: "LG EI Headline";
  font-size: 18px;
  font-weight: 200;
}
.md-cards__text {
  text-align: center;
  font-family: "LG EI Headline";
  font-size: 24px;
  font-weight: 200;
  color: #000;
}
.md-cards__cta {
  display: inline-block;
  font-family: "LG EI Headline";
  font-size: 18px;
  font-weight: 400;
  height: 46px;
  line-height: 46px;
  padding: 0 20px;
  border: solid 1px #000;
  border-radius: 999px;
  margin-top: 16px;
}
.md-cards__cta:hover {
  font-weight: 400;
}
.md-cards--fit {
  gap: 34px 0;
}
.md-cards--fit .md-cards__item {
  background-color: transparent;
  border-radius: 0;
  padding-bottom: 0;
}
.md-cards--fit .md-cards__box {
  border-radius: 30px;
  padding: 0;
  margin-bottom: 14px;
}
.md-cards--left .md-cards__text {
  text-align: left;
}
.md-cards--left .md-cards__headline {
  text-align: left;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .md-cards__item {
    padding-bottom: 4.7222222222vw;
  }
  .md-cards__box {
    padding: 3.4722222222vw 4.5833333333vw;
  }
  .md-cards__headline {
    font-size: 1.25vw;
  }
  .md-cards__text {
    font-size: 1.6666666667vw;
  }
  .md-cards__cta {
    font-size: 1.25vw;
    height: 3.1944444444vw;
    line-height: 3.1944444444vw;
    padding: 0 1.3888888889vw;
    margin-top: 1.1111111111vw;
  }
}
@media only screen and (max-width: 1080px) {
  .md-cards {
    display: block;
  }
  .md-cards .slick-list {
    padding: 0 16px 0 16px;
  }
  .md-cards .slick-slide {
    margin: 0 10px;
  }
  .md-cards .slick-dots {
    display: flex;
    margin: 14px 26px;
  }
  .md-cards .slick-dots li {
    flex-basis: 100%;
    height: 2px;
    background-color: #c9caca;
    margin: 0;
    transition: background-color 0.4s;
  }
  .md-cards .slick-dots li.slick-active {
    background-color: #fd312e;
  }
  .md-cards .slick-dots button {
    display: none;
  }
  .md-cards__box {
    padding: 43px 30px;
  }
  .md-cards__item {
    padding-bottom: 28px;
  }
  .md-cards__headline {
    font-size: 12px;
  }
  .md-cards__text {
    font-size: 14px;
  }
  .md-cards__cta {
    font-size: 12px;
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    margin-top: 8px;
  }
  .md-cards--fit .md-cards__box {
    margin-bottom: 10px;
  }
}

.md-secondary-title {
  font-family: "LG EI Headline";
  font-size: 42px;
  text-align: center;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .md-secondary-title {
    font-size: 2.9166666667vw;
  }
}
@media only screen and (max-width: 1080px) {
  .md-secondary-title {
    font-size: 24px;
    padding: 0 26px;
    line-height: 28px;
  }
}

.sec02 {
  margin-top: 100px;
  box-sizing: border-box;
}
.sec02 .md-tabs {
  margin: 50px 0 46px;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .sec02 {
    margin-top: 6.9444444444vw;
  }
  .sec02 .md-tabs {
    margin: 3.4722222222vw 0 3.1944444444vw;
  }
}
@media only screen and (max-width: 1080px) {
  .sec02 {
    margin-top: 20px;
  }
  .sec02 .md-tabs {
    margin: 30px 0 14px;
  }
}

.sec03 {
  margin-top: 120px;
  padding: 0 66px;
  box-sizing: border-box;
}
.sec03 .md-cards {
  margin: 32px 0 120px;
}
.sec03 .md-cards__item {
  width: 310px;
}
.sec03 .md-cards--fit {
  gap: 34px 0;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .sec03 .md-cards {
    margin: 2.2222222222vw 0 8.3333333333vw;
  }
  .sec03 .md-cards__item {
    width: 20.8333333333vw;
  }
  .sec03 .md-cards--fit {
    gap: 2.3611111111vw 0;
  }
}
@media only screen and (max-width: 1080px) {
  .sec03 {
    margin-top: 30px;
    padding: 0;
  }
  .sec03 .md-cards {
    margin-bottom: 0;
  }
}

.sec04 {
  margin-top: 120px;
  padding: 0 66px;
  box-sizing: border-box;
}
.sec04 .md-cards {
  margin: 32px 0 120px;
}
.sec04 .md-cards__item {
  width: 388px;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .sec04 {
    margin-top: 8.3333333333vw;
    padding: 0 4.5833333333vw;
  }
  .sec04 .md-cards {
    margin: 2.2222222222vw 0 8.3333333333vw;
  }
  .sec04 .md-cards__item {
    width: 26.9444444444vw;
  }
}
@media only screen and (max-width: 1080px) {
  .sec04 {
    margin-top: 30px;
    padding: 0;
  }
  .sec04 .md-cards {
    margin-bottom: 0;
  }
}

.sec05 {
  margin-top: 120px;
  padding: 0 66px;
  box-sizing: border-box;
}
.sec05 .md-cards {
  margin: 32px 0 120px;
}
.sec05 .md-cards__item {
  width: 388px;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .sec05 {
    margin-top: 8.3333333333vw;
    padding: 0 4.5833333333vw;
  }
  .sec05 .md-cards {
    margin: 2.2222222222vw 0 8.3333333333vw;
  }
  .sec05 .md-cards__item {
    width: 26.9444444444vw;
  }
}
@media only screen and (max-width: 1080px) {
  .sec05 {
    margin-top: 30px;
    padding: 0;
  }
  .sec05 .md-cards {
    margin-bottom: 0;
  }
}

.sec06 {
  margin-top: 120px;
  padding: 0 66px;
  box-sizing: border-box;
}
.sec06 .md-cards {
  margin: 32px 0 120px;
}
.sec06 .md-cards__item {
  width: 388px;
}
.sec06 .md-cards__text {
  line-height: 32px;
  height: 60px;
}
@media only screen and (min-width: 1081px) and (max-width: 1439px) {
  .sec06 {
    margin-top: 8.3333333333vw;
    padding: 0 4.5833333333vw;
  }
  .sec06 .md-cards {
    margin: 2.2222222222vw 0 8.3333333333vw;
  }
  .sec06 .md-cards__item {
    width: 26.9444444444vw;
  }
  .sec06 .md-cards__text {
    line-height: 2.2222222222vw;
    height: 4.1666666667vw;
  }
}
@media only screen and (max-width: 1080px) {
  .sec06 {
    margin-top: 30px;
    padding: 0;
  }
  .sec06 .md-cards {
    margin-bottom: 80px;
  }
  .sec06 .md-cards__text {
    line-height: 18px;
    height: 40px;
  }
}/*# sourceMappingURL=2023main.css.map */