@charset "UTF-8";

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-Sans-KR: 'Noto Sans KR', sans-serif;
  --bs-font-Serif-KR: 'Noto Serif KR', serif;
  --ft-h1: 5em;
  --ft-h2: 4em;
  --ft-h3: 3em;
  --ft-h4: 2em;
  --ft-h5: 1em;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

* {
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--bs-font-Sans-KR);
  /* font-size: 1rem; */
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
  color: inherit;
}

/* <!-- ======= Navbar ======= --> */
@media screen {
  .navHeader {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: sticky;
    top: 0;
    background-color: rgb(255, 255, 255);
    border: 0.1px #f1f1f1;
    border-style: solid none solid none;
    margin-top: 0;
    width: 100%;
    height: 4.8em;
    text-align: center;
    color: var(--bs-dark);
    z-index: 100;
  }
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0.1em auto;
    width: 90%;
  }
  .navbar_log {
    margin-top: 0.7em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .navbar_log img {
    width: 70px;
    height: 70px;
  }
  .navbar_logo_contents {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-top: -9px;
  }
  .navbar_log h2 {
    font-size: 2em;
    font-weight: 800;
  }
  .logo-sm {
    font-size: 0.8em;
    font-weight: 500;
    color: var(--bs-primary);
    margin-top: -8px;
  }
  .navbar_menu {
    display: flex;
    flex-direction: row;
    font-size: 1em;
    margin-top: 0.5em;
    font-weight: 600;
    color: #343a40;
  }
  .navbar_menu li {
    margin: -1em 0.5em 0 1em;
  }
  .navbar_menu a {
    position: relative;
  }
  .navbar_menu a::after {
    content: '';
    position: absolute;
    background-color: var(--bs-primary);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
  }
  .navbar_menu a:hover {
    color: var(--bs-primary);
  }
  .navbar_menu a:hover::after {
    width: 102%;
  }
  .langs {
    display: flex;
    flex-direction: row;
    margin-top: -0.5em;
    font-weight: 600;
    color: #999999;
    font-size: 0.7em;
    letter-spacing: 0.1em;
  }
  .langs a::after {
    content: '/';
    color: var(--bs-primary);
  }
  @media screen and (max-width: 1006px) {
    .navHeader {
      height: 6.5em;
    }
    .navbar {
      flex-direction: column;
      justify-content: center;
      margin: 0.5em auto;
    }
    .navbar_log {
      align-items: center;
      margin-top: 0.1em;
    }
    .navbar_logo_contents {
      margin-top: -1.5em;
    }
    .navbar_menu {
      margin-top: 0.3em;
      font-size: 0.9em;
    }
    .langs {
      position: absolute;
      right: 11%;
      top: 50%;
      font-size: 0.8em;
    }
  }
  @media screen and (max-width: 600px) {
    .navHeader {
      height: 30%;
      width: 100%;
    }
    .navbar {
      margin-top: 0.5em;
      align-items: center;
      justify-content: center;
    }
    .navbar_log {
      margin-left: -5em;
    }
    .navbar_log img {
      width: 50px;
      height: 50px;
    }
    .navbar_logo_contents {
    }
    .navbar_log h2 {
      font-size: 1.7em;
    }
    .logo-sm {
      font-size: 0.7em;
    }
    .navbar_menu {
      margin-top: 0.8em;
      font-size: 3vw;
      font-weight: 400;
      letter-spacing: -0.1em;
    }
    .navbar_menu li {
      margin: -1.5em 0.5em;
    }
    .navbar_menu a:hover::after {
      width: 0%;
    }
    .langs {
      position: absolute;
      font-size: 0.7em;
      top: 2em;
      right: 1em;
      letter-spacing: 0;
    }
  }
}
/* <!-- ======= sticky menu ======= --> */
@media screen {
  .stickyContainer {
    position: sticky;
    top: 15%;
    /* right: 40%; */
    z-index: 1001;
    margin-left: 85%;
  }
  .stickyMenu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255);
    margin: 0.1em 0;
    border: #dfdfdf 0.5px solid;
    text-align: center;
    line-height: 1;
  }
  .circle:nth-last-child(3) {
    line-height: 0.7;
    text-align: center;
  }
  .circle span {
    font-size: 0.7em;
    color: #000;
    margin-top: 0.3em;
  }
  @media screen and (max-width: 1006px) {
    .stickyContainer {
      display: none;
    }
  }
}

/* <!-- ======= Works Section ======= --> */
main {
  background: #fff;
  max-width: 1200px;
  margin: auto;
}
/* <!-- ======= main-header ======= --> */
@media screen {
  .main-header {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    height: 1000px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bs-light);
    margin: 0 auto;
  }
  .main-header-bg {
    width: 100%;
    height: 80%;
    max-width: 1200px;
    background-image: radial-gradient(
      closest-side,
      #fff 1%,
      #005f87 25%,
      #000 65%
    );
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    margin-top: -10em;
  }
  .bgfontBig:nth-child(1) {
    position: absolute;
    font-size: 6em;
    font-weight: 800;
    animation: animate01 2.5s infinite;
  }
  @keyframes animate01 {
    0% {
      top: 45%;
      left: 3%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 44%;
      left: 4%;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 45%;
      left: 3%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .bgfontBig:nth-child(2) {
    position: absolute;
    font-size: 3em;
    font-weight: 800;
    animation: animate02 3.5s infinite;
  }
  @keyframes animate02 {
    0% {
      top: 29%;
      left: 12%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 30%;
      left: 11%;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 29%;
      left: 12%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .bgfontBig:nth-child(3) {
    position: absolute;
    font-size: 4em;
    font-weight: 800;
    animation: animate03 2s infinite;
  }
  @keyframes animate03 {
    0% {
      top: 15%;
      right: 40%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 15.5%;
      right: 40.5%;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 15%;
      right: 40%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .bgfontBig:nth-child(4) {
    position: absolute;
    font-size: 4.5em;
    font-weight: 800;
    animation: animate04 6s infinite;
  }
  @keyframes animate04 {
    0% {
      top: 20%;
      right: 5%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 21%;
      right: 6%;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 20%;
      right: 5%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .bgfontBig:nth-child(5) {
    position: absolute;
    font-size: 2.5em;
    font-weight: 800;
    animation: animate05 4s infinite;
  }
  @keyframes animate05 {
    0% {
      top: 40%;
      right: 1%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 41%;
      right: 0;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 40%;
      right: 1%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .bgfontBig:nth-child(6) {
    position: absolute;
    font-size: 4em;
    font-weight: 800;
    animation: animate06 6s infinite;
  }
  @keyframes animate06 {
    0% {
      top: 50%;
      right: 4%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 51%;
      right: 3%;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 50%;
      right: 4%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .bgfontBig:nth-child(7) {
    position: absolute;
    font-size: 4.5em;
    font-weight: 800;
    animation: animate07 6s infinite;
  }
  @keyframes animate07 {
    0% {
      top: 71%;
      right: 6%;
      filter: blur(3px) opacity(0.5);
    }
    50% {
      top: 72%;
      right: 5%;
      filter: blur(1px) opacity(0.2);
    }
    100% {
      top: 71%;
      right: 6%;
      filter: blur(3px) opacity(0.5);
    }
  }
  .main-header-bg img {
    position: absolute;
  }
  .main-header .img2 {
    width: 100%;
    margin-top: 5em;
    animation: glow 3.5s infinite;
  }
  @keyframes glow {
    0% {
      filter: blur(3px) opacity(0.7);
    }
    50% {
      filter: blur(1px) opacity(0.8);
    }
    100% {
      filter: blur(3px) opacity(0.7);
    }
  }
  .rotateIMG {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25em;
  }
  .main-header-bg .img {
    width: 100%;
    animation: rotate_image 20s ease-in-out infinite;
    transform-origin: 50% 50%;
    filter: drop-shadow(16px 16px 10px rgb(255, 255, 255));
  }

  @keyframes rotate_image {
    100% {
      transform: rotate(360deg);
    }
  }
  .bgfontDatabank {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: -20em;
    text-align: center;
  }
  .bgfontDatabank h1 {
    font-size: 5em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 10px var(--bs-dark), 0 0 20px var(--bs-dark),
      0 0 40px var(--bs-dark);
  }
  .bgfontDatabank h2 {
    font-size: 5em;
    line-height: 1;
    font-weight: 900;
    margin: 0;
    color: #000;
    text-shadow: 0 0 10px rgb(255, 255, 255), 0 0 20px rgb(255, 255, 255),
      0 0 40px rgb(255, 255, 255);
  }
  .bgfontDatabank h3 {
    margin-top: 2em;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 4px #000000, 0 0 10px #00d9ff, 0 0 20px #00d9ff;
  }
  .bgfontM {
    font-size: 1.5em;
    font-weight: 800;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    text-shadow: 0 0 4px #000000, 0 0 10px #00d9ff, 0 0 20px #00d9ff;
  }
  .main-sub {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -10em;
    z-index: 10;
  }
  .main-sub img {
    width: 30%;
    shape-outside: url('/assets/img/kagi.png');
  }
  .main-sub li {
    margin: 0.5em;
    font-size: 1.3em;
    line-height: 1.2;
    font-weight: 600;
  }
  .main-sub li::before {
    content: '●';
    color: var (--bs-primary);
    margin-right: 0.5em;
    z-index: 100000;
  }
  @media screen and (max-width: 1006px) {
    .main-header {
      height: 70vw;
    }
    .main-header-bg {
      height: 100vw;
      margin-top: 0;
    }
    .bgfontBig:nth-child(1) {
      font-size: 8vw;
    }
    .bgfontBig:nth-child(2) {
      font-size: 5vw;
    }
    .bgfontBig:nth-child(3) {
      font-size: 6vw;
    }
    .bgfontBig:nth-child(4) {
      font-size: 5.5vw;
    }
    .bgfontBig:nth-child(5) {
      font-size: 4.5vw;
    }
    .bgfontBig:nth-child(6) {
      font-size: 4vw;
    }
    .gfontBig:nth-child(7) {
      font-size: 5.5vw;
    }
    .bgfontDatabank {
      margin-top: -20vw;
    }
    .bgfontDatabank h1,
    .bgfontDatabank h2 {
      font-size: 10vw;
    }
    .bgfontDatabank h3 {
      font-size: 2vw;
      margin-top: 2vw;
    }
    .main-sub li {
      font-size: 2vw;
      line-height: 1.2;
    }
  }
  @media screen and (max-width: 600px) {
    .main-header {
      height: 60vh;
    }
    .main-header-bg {
      margin-top: 0;
    }
    .main-header .img2 {
      width: 100%;
      margin-top: 5em;
    }
    .rotateIMG {
      margin-top: 7em;
    }
    .bgfontDatabank {
      margin-top: -25vh;
      width: 90%;
    }
    .bgfontDatabank h1,
    .bgfontDatabank h2 {
      font-size: 12vw;
    }
    .bgfontDatabank h3,
    .bgfontDatabank span {
      font-size: 1em;
      font-weight: 500;
      line-height: 1.3;
    }
    .bgfontDatabank h3 {
      margin-top: 1em;
    }
    .main-sub {
      margin-top: -38%;
      line-height: 1;
      flex-direction: column;
      width: 97%;
    }
    .main-sub img {
      display: none;
    }
    .main-sub li {
      font-size: 0.7em;
      line-height: 1.1;
      font-weight: 400;
    }
  }
}
/* <!-- ======= introduction ======= --> */
@media screen {
  .intro-header {
    background-color: #fff;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #000;
    border-radius: 50px;
    margin-bottom: 5em;
  }
  .bigTitleH1::before {
    content: '';
    width: 1.5em;
    height: 7.5em;
    margin-top: 0.8em;
    /* margin-right: 10em; */
    position: absolute;
    background-color: rgb(0, 29, 190);
  }
  .bigTitleH1 {
    position: relative;
    width: 80%;
    margin-top: 6em;
    margin-bottom: 2em;
    line-height: 1.2;
    text-align: left;
  }
  .bigTitleH1 h1 {
    font-size: 3.5em;
    margin-left: 0.7em;
  }
  .bigTitleH1 span {
    color: rgb(0, 29, 190);
  }
  .intro-bg {
    height: 100%;
    background-image: url(/assets/img/bgImg1.png),
      radial-gradient(
        ellipse farthest-corner at 70% 50%,
        rgb(255, 255, 255) 20%,
        #70b8ff 40%,
        rgb(255, 255, 255) 70%
      );
    background-position: right top, right top;
    background-repeat: no-repeat;
    background-size: 60%, 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    border-radius: 50px;
  }
  .mdTitleH3 {
    background: #4d4d4d;
    padding: 0.3em 3em;
    font-size: 1.2em;
    color: rgb(255, 230, 0);
    border-radius: 30px;
  }
  .intro-container {
    display: flex;
    flex-direction: column;
    width: 95%;
    justify-content: center;
    position: relative;
    margin-top: 3em;
  }
  .intro-textBox {
    width: 42%;
    margin: 0.7em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    word-break: break-all;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.8em 1.5em;
    border: solid 0.5px rgb(240, 240, 240);
    border-radius: 20px;
    position: relative;
  }
  .intro-textBox i {
    margin-right: 0.3em;
  }
  .intro-textBox h3 {
    position: relative;
    font-size: 1.5em;
  }
  .intro-textBox h3::after {
    content: '';
    position: absolute;
    background-color: var(--bs-dark);
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -1px;
  }
  .intro-textBox h4 {
    font-size: 0.9em;
    color: rgb(0, 29, 190);
    line-height: 1.2;
    margin: 0.5em 0;
    text-align: center;
    letter-spacing: -0.5px;
  }
  .intro-textBox p {
    font-size: 0.8em;
    line-height: 1.3;
  }
  .box1 {
    left: 30%;
    position: relative;
  }
  .box2 {
    left: 10%;
    position: relative;
  }
  .box3 {
    left: 1%;
    position: relative;
  }
  .box4 {
    left: 10%;
    position: relative;
  }
  @media screen and (max-width: 1006px) {
    .bigTitleH1 {
      font-size: 1.5vh;
    }
    .bigTitleH1::before {
      content: '';
      width: 1.5em;
      height: 12vw;
      margin-top: 0.8em;
      /* margin-right: 10em; */
      position: absolute;
      background-color: rgb(0, 29, 190);
    }
    .intro-bg .mdTitleH3 {
      font-size: 2vw;
      text-align: center;
    }
    .intro-bg {
      height: 70vh;
      background-position: right center, right center;
      background-repeat: no-repeat;
      background-size: 60%, 100%;
    }
    .intro-textBox {
      width: 42%;
    }
    .intro-textBox h3 {
      font-size: 2vw;
    }
    .intro-textBox h4 {
      font-size: 1.5vw;
    }
    .intro-textBox p {
      font-size: 1vw;
    }
  }
  @media screen and (max-width: 600px) {
    .bigTitleH1 {
      font-size: 2vw;
    }
    .bigTitleH1::before {
      height: 20vw;
    }
    .intro-bg {
      height: 100%;
      background-position: center center, center center;
      background-size: 100%, 100%;
    }
    .intro-bg .mdTitleH3 {
      font-size: 3vw;
    }
    .intro-container {
      margin-top: 1vh;
      margin: 0.5em auto;
      align-items: center;
      justify-content: center;
    }
    .intro-textBox {
      width: 90%;
      margin-bottom: 0;
    }
    .intro-textBox h3 {
      font-size: 4.5vw;
    }
    .intro-textBox h4 {
      font-size: 3.5vw;
    }
    .intro-textBox p {
      font-size: 2vw;
    }
    .box1 {
      left: 0;
    }
    .box2 {
      left: 0;
    }
    .box3 {
      left: 0;
    }
    .box4 {
      left: 0;
    }
  }
}

/* <!-- ======= price ======= --> */
.price-header {
  background: rgb(230, 230, 230);
  max-width: 1200px;
  height: 100%;
  margin: auto;
}
/* <!-- ======= server-price ======= --> */
@media screen {
  .serverPrice {
    background-image: url(/assets/img/bgImg2.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 30%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #000;
    border-radius: 50px;
    margin-bottom: 5em;
  }
  .severContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .bigTitle {
    text-align: center;
    margin-top: 13em;
  }
  .bigTitle h1 {
    font-size: 3em;
    color: rgb(0, 29, 190);
    text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 25px #fff, 0 0 40px #fff;
    background: rgb(255, 255, 255, 0.3);
    width: 100;
    margin: auto;
  }
  .serverBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 24%;
    height: 100%;
    margin: 3em 0.5em;
    padding: 1em;
    background: #fff;
    border: 3px solid #d7f7ff;
    border-radius: 2em;
  }
  .serverBox img {
    width: 2.5em;
    height: 2.5em;
  }
  .productName {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0.5em;
    position: relative;
  }
  .productName::before {
    content: '';
    position: absolute;
    background-color: var(--bs-dark);
    height: 1px;
    width: 100%;
    left: 0;
    top: 1px;
  }
  .productName::after {
    content: '';
    position: absolute;
    background-color: var(--bs-dark);
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 1px;
  }
  .procuctEngName {
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #ff0080;
    line-height: 1;
    margin-top: 0.5em;
  }
  .bigPrice {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--bs-blue);
    margin-top: 0.2em;
  }
  .bigPrice::before {
    content: '업계최저';
    font-size: 0.3em;
    font-weight: 100;
    vertical-align: 0.5em;
    background: #1a008f;
    color: #fff;
    padding: 0.1em 0.3em;
    border-radius: 10px;
    margin-right: 0.3em;
  }
  .spec {
    word-break: break-all;
    text-align: left;
    font-size: 0.9em;
    margin: 0.5em auto;
  }
  .spec span {
    font-weight: 700;
  }
  .subscription {
    font-size: 0.8em;
    font-weight: 600;
    color: darkblue;
  }
  .telegramBtn {
    background: rgb(150, 150, 150);
    color: #fff;
    padding: 0.4em;
    border: 0;
    border-radius: 3em;
    margin-top: 0.5em;
  }
  .telegramBtn:hover {
    color: #0d6efd;
    background: rgb(240, 240, 240);
    cursor: pointer;
    border: 0.5px solid #0d6efd;
  }
  @media screen and (max-width: 1000px) {
    .severContainer {
      flex-wrap: wrap;
    }
    .serverBox {
      width: 35%;
      margin: 1.5em 0.5em 0 0.5em;
    }
    .spec {
      font-size: 0.7em;
      margin: 0.5em auto;
    }
  }
  @media screen and (max-width: 600px) {
    .serverPrice .bigTitle h1 {
      font-size: 1.5em;
      letter-spacing: -0.1em;
    }
    .bigTitle {
      margin-top: 5em;
    }
    .severContainer {
      width: 100%;
    }
    .serverBox {
      width: 45%;
      height: 100%;
      margin: 1.5em 0.2em 0 0.2em;
    }
    .serverBox img {
      width: 1.5em;
      height: 1.5em;
    }
    .productName {
      font-size: 1.1em;
    }
    .procuctEngName {
      font-size: 0.8em;
    }
    .bigPrice::before {
      display: none;
    }
    .bigPrice {
      font-size: 1.1em;
      letter-spacing: -1px;
    }
    .spec {
      font-size: 0.7em;
      margin: 0.5em auto;
      letter-spacing: -0.5px;
    }
    .telegramBtn {
      padding: 0.3em;
      font-size: 0.9em;
    }
  }
}

/* <!-- ======= hosting-price ======= --> */
@media screen {
  .hostingPrice {
    background-image: url(/assets/img/bgImg3.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 25%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #000;
    border-radius: 50px;
    margin-bottom: 5em;
  }

  .hosting-bigTitle {
    text-align: center;
    margin-top: 13em;
    width: 100%;
  }
  .hosting-bigTitle h1 {
    font-size: 3em;
    color: rgb(0, 29, 190);
    background: rgb(255, 255, 255, 0.4);
    width: 100%;
    margin: auto;
  }
  .hostingContainer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 95%;
    height: 100%;
    margin: auto;
    margin-bottom: 5em;
  }
  .hostingBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 22%;
    height: 100%;
    margin: 3em 0.5em;
    padding: 1em;
    background: rgb(248, 248, 248);
    border: 4px solid #ffffff;
    border-radius: 2em;
  }
  .hostingBox img {
    width: 2.5em;
    height: 2.5em;
  }
  .hostingBox .bigPrice::before {
    content: '업계최저';
    font-size: 0.5em;
    font-weight: 300;
    vertical-align: 0.5em;
    background: #a200ff;
    color: #fff;
    padding: 0.1em 0.3em;
    border-radius: 15px;
  }
  @media screen and (max-width: 1000px) {
    .hostingContainer {
      flex-wrap: wrap;
    }
    .hostingBox {
      width: 35%;
      margin: 1.5em 0.5em 0 0.5em;
    }
    .hostingBox .spec {
      font-size: 0.7em;
      margin: 0.5em auto;
    }
  }
  @media screen and (max-width: 600px) {
    .hosting-bigTitle h1 {
      font-size: 1.5em;
      letter-spacing: -0.1em;
    }
    .hosting-bigTitle {
      margin-top: 5em;
    }
    .hostingContainer {
      width: 100%;
    }
    .hostingBox {
      width: 45%;
      height: 100%;
      margin: 1.5em 0.2em 0 0.2em;
    }
    .hosting img {
      width: 1.5em;
      height: 1.5em;
    }
    .hostingBox .productName {
      font-size: 1.3em;
    }
    .hostingBox .bigPrice::before {
      display: none;
    }
    .hostingBox .bigPrice {
      font-size: 1.1em;
      letter-spacing: -1px;
    }
    .hostingBox .spec {
      font-size: 0.7em;
      margin: 0.5em auto;
      letter-spacing: -0.5px;
    }
    .hostingBox .telegramBtn {
      padding: 0.3em;
      font-size: 0.9em;
    }
  }
}

/* <!-- ======= service ======= --> */
@media screen {
  .service-header {
    background-color: #fff;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #000;
    border-radius: 50px;
    margin-bottom: 2em;
  }
  .service-bigTitleH1::before {
    content: '';
    width: 1.5em;
    height: 7.5em;
    margin-top: 0.8em;
    position: absolute;
    background-color: rgb(0, 29, 190);
  }
  .service-bigTitleH1 {
    position: relative;
    width: 80%;
    margin-top: 6em;
    line-height: 1.2;
    text-align: left;
  }
  .service-bigTitleH1 h1 {
    font-size: 3.5em;
    margin-left: 0.7em;
  }
  .service-bigTitleH1 span {
    color: rgb(0, 29, 190);
  }
  .service-bg {
    height: 60em;
    background-image: url(/assets/img/bgImg4.png),
      radial-gradient(
        ellipse farthest-corner at 50% 43%,
        rgb(255, 255, 255) 5%,
        rgb(0, 122, 112) 20%,
        rgb(255, 255, 255) 50%
      );
    background-position: 50% 35%, top;
    background-repeat: no-repeat;
    background-size: 40%, 95%;
    width: 100%;
    display: flex;
    flex-direction: unset;
    align-items: unset;
    justify-content: center;
    position: relative;
    border-radius: 50px;
  }
  .service-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 2em;
    align-items: stretch;
    justify-content: center;
  }
  .service-textBox {
    width: 30%;
    margin: 0.6em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5em;
    border: solid 0.5px rgb(0, 29, 190);
    border-radius: 15px;
    color: rgb(0, 29, 190);
    line-height: 1.2;
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff;
    word-break: break-all;
  }
  .service-textBox h3 {
    margin-top: 0.5em;
  }
  .service-textBox:hover {
    background: rgb(0, 29, 190);
    color: #fff;
    text-shadow: none;
  }
  @media screen and (max-width: 896px) {
    .service-bigTitleH1 {
      font-size: 1.3vh;
    }
    .service-textBox {
      font-size: 1em;
    }
  }
  @media screen and (max-width: 736px) {
    .service-bigTitleH1 {
      font-size: 1.8vw;
    }
    .service-bigTitleH1::before {
      width: 1.5em;
      height: 20vw;
      margin-top: 0.8em;
      position: absolute;
      background-color: rgb(0, 29, 190);
    }
    .service-bigTitleH1 {
      margin-top: 1em;
    }
    .service-bg {
      height: 100%;
      background-image: url(/assets/img/bgImg4.png),
        radial-gradient(
          ellipse farthest-corner at 50% 50%,
          rgb(255, 255, 255) 5%,
          rgb(0, 122, 112) 20%,
          rgb(255, 255, 255) 80%
        );
      background-position: 50% 50%, top;
      background-size: 70%, 95%;
    }
    .service-container {
      flex-direction: row;
      width: 100%;
      justify-content: center;
    }
    .service-textBox {
      font-size: 0.8em;
      width: 43%;
      height: 8em;
      margin: 0.3em;
    }
  }
}

/* <!-- ======= suggestion ======= --> */
@media screen {
  .suggestion-header {
    background-color: #000;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #fff;
    border-radius: 50px 50px 0 0;
  }
  .suggestion-bigTitleH1::before {
    content: '';
    width: 1.5em;
    height: 7.5em;
    margin-top: 0.8em;
    /* margin-right: 10em; */
    position: absolute;
    background-color: var(--bs-cyan);
  }
  .suggestion-bigTitleH1 {
    position: relative;
    width: 80%;
    margin-top: 6em;
    margin-bottom: 2em;
    line-height: 1.2;
    text-align: left;
  }
  .suggestion-bigTitleH1 h1 {
    font-size: 3.5em;
    margin-left: 0.7em;
    color: var(--bs-cyan);
  }
  .suggestion-bg {
    height: 50em;
    background-image: url(/assets/img/bgImg5.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  .mdTitleH3 {
    background: var(--bs-cyan);
    padding: 0.3em 3em;
    font-size: 1.2em;
    color: #fff;
    border-radius: 30px;
    text-align: center;
    width: 90%;
  }
  .suggestion-container {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
    margin-top: 3em;
  }
  .suggestion-textBox {
    width: 30%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    word-break: break-all;
    background: rgba(255, 255, 255, 0);
    padding: 0.8em 1em;
    border-radius: 20px;
    position: relative;
    word-break: break-all;
  }
  .suggestion-textBox img {
    width: 35%;
    height: 100%;
    background: #fff;
    border-radius: 15%;
    padding: 0.1em;
    margin-right: 0.5em;
  }
  .suggestion-textBox h4 {
    font-size: 0.9em;
    color: rgb(255, 255, 255);
    line-height: 1.2;
    margin: 0.3em 0;
    text-align: left;
    font-weight: 500;
  }
  @media screen and (max-width: 896px) {
    .suggestion-bigTitleH1 {
      font-size: 1.3vh;
    }
    .suggestion-bigTitleH1::before {
      width: 1.5em;
      margin-top: 0.8em;
      position: absolute;
    }
    .mdTitleH3 {
      font-size: 1em;
      width: 80%;
    }
    .suggestion-container {
      width: 80%;
    }
    .suggestion-textBox {
      width: 45%;
      align-items: flex-start;
      justify-content: center;
      font-size: 1em;
    }
    .suggestion-textBox img {
      width: 100%;
      height: 5em;
    }
  }
  @media screen and (max-width: 600px) {
    .suggestion-bigTitleH1 {
      font-size: 2vw;
    }
    .suggestion-bigTitleH1::before {
      width: 1.5em;
      height: 13vw;
      margin-top: 0.8em;
      position: absolute;
    }
    .suggestion-bg {
      height: 40em;
      flex-direction: column;
    }
    .suggestion-bg .mdTitleH3 {
      font-size: 0.8em;
      color: #fff;
      border-radius: 10px;
      text-align: left;
      word-break: break-all;
      width: 85%;
      padding: 0.5em 1em;
      line-height: 1.2;
    }
    .suggestion-container {
      width: 100%;
      margin-top: 1em;
    }
    .suggestion-textBox {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 45%;
      margin: 1em 0;
      padding: 0 0.5em;
      font-size: 0.8em;
    }
    .suggestion-textBox img {
      width: 5em;
      height: 5em;
      margin-right: 0;
    }
  }
}
/* <!-- ======= contact ======= --> */
@media screen {
  .contact-section {
    background-color: #000;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: -3em auto;
    color: #fff;
    margin-bottom: 5em;
  }

  .contact-bigTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    margin-bottom: 2em;
  }
  .contact-bigTitle h1 {
    font-size: 3em;
  }
  .contact-bigTitle h2 {
    font-size: 2.5em;
    color: var(--bs-gray);
  }
  .contact-field {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .contact-container {
    margin: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
  }
  .contact-form label {
    font-size: 0.8em;
    margin-top: 1em;
  }
  .vl {
    border-left: 0.5px solid rgb(255, 255, 255, 0.5);
    height: 30em;
    margin-top: 5em;
  }
  .contact-telegram {
    width: 45%;
    height: 100%;
    margin: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact-telegram::after {
    border-left: 0.5em solid #e0cb52;
    padding: 0.5em;
  }
  .contact-telegram img {
    width: 10%;
    border-radius: 50%;
    margin: 3em 0 0.5em 0;
  }
  .contact-telegram a:hover {
    color: #00d9ff;
    font-weight: 500;
  }
  @media screen and (max-width: 810px) {
    .contact-section {
      margin-top: 0;
    }
    .contact-field {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
    .vl {
      display: none;
    }
  }
  @media screen and (max-width: 600px) {
    .contact-section {
      padding-top: 5em;
    }
    .contact-bigTitle h1 {
      font-size: 2em;
    }
    .contact-bigTitle h2 {
      font-size: 1.5em;
      color: var(--bs-gray);
    }
    .contact-field {
      margin-top: 0;
    }
    .contact-container {
      display: none;
      margin: 1em;
    }
    .contact-telegram {
      width: 80%;
      margin: 0.5em;
    }
    .contact-telegram h2 {
      font-size: 1.5em;
    }
    .contact-telegram p {
      font-size: 0.9em;
      font-weight: 300;
    }
    .contact-telegram img {
      width: 25%;
      margin-top: 1em;
    }
  }
}
