.container2 {width:1200px}
#leftmenu { display: none; }
#container { width: 1200px;}
#site_feedback {width: 1170px;}
#header {width: 1200px;}
#header > div:nth-child(1) {right:200px}

.codefree{width:100%}
.codefree  h1 {width: 100%; height: 80px; display: flex; align-items:center; color:#fff; background:#000; justify-content: center;}
.codefree  h1 > p {color:#84bcf8}
.codefree .codefree_price {width: 100%;}
.codefree .codefree_price > ul { display:flex; justify-content: space-between; gap:10px}
.codefree .codefree_price > ul > li {width: 30%; text-align: center; padding: 20px 0; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 20px;     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); }
.codefree .codefree_price > ul > li > h4 {font-size: 20px; line-height: 1.4;}
.codefree .codefree_price > ul > li > p {font-size: 18px; color:#007BFF; line-height: 3;}
.codefree .codefree_price > ul > li > button {background-color:#000; font-size:16px; color:#fff; border-radius:50px; padding:5px 20px; border:0;}
.codefree .codefree_price > ul > li > section p {font-size: 16px;line-height: 2;}
.codefree > div > h2 {font-size: 30px; font-weight: 600; text-align: center; line-height: 1.5; margin:40px 0;}
.codefree > div > figure {margin:0 auto; text-align: center;}
.codefree > div > figure > figcaption > p {line-height: 4; font-size: 20px;}
.codefree_gif figure img {width: 100%; height: auto; object-fit: cover;}
.codefree_themes ul {display: flex; justify-content: center; width: 100%; padding: 0; margin: 0; gap:10px;}
.codefree_themes ul li {cursor: pointer; text-align: center; padding: 20px 100px; border: 1px solid #ddd; border-radius: 100px; margin-bottom: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); }
.swiper-slide figure {
  border: 1px solid #ddd; /* 테두리 추가 */
  padding: 10px; /* 패딩 추가 */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
  
  margin: auto; /* 중앙 정렬 */
  text-align: center;
}

.swiper-container {margin:30px 0; text-align: left;} 

.swiper-slide figure img {
  max-width: 100%; /* 이미지가 너무 크면 축소 */
  height: 400px;
  margin: auto; /* 중앙 정렬 */
}
.swiper-wrapper{
  display:flex;gap:20px;
}
.swiper-button-next, .swiper-button-prev {
  color: #007BFF; /* 글자색 설정 */
  padding: 5px; /* 패딩 설정 */
}

.swiper-slide > figure > figcaption > p {line-height: 2; font-size: 20px; text-align: center; margin: 20px 0;}
.swiper-slide > figure > figcaption > a {
  display: inline-block; /* 박스 형태로 만들기 위해 */
    background-color: #007BFF; /* 배경색 설정 */
    color: #fff; /* 글자색 설정 */
    padding: 10px 20px; /* 패딩 설정 */
    text-decoration: none; /* 밑줄 제거 */
    border-radius: 5px; /* 테두리 둥글게 */
    transition: background-color 0.3s;
}

.swiper-slide > figure > figcaption > a:hover {
  background-color: #0056b3;
}

.nocode_memu > ul {display: flex; justify-content: space-between; width: 100%; padding: 0; margin: 0; gap:10px;}
.nocode_memu > ul > li {list-style: none; font-size: 20px; font-weight: 600; padding: 10px 0; width: 31%; text-align: center; border-bottom: 2px solid #000;}
.container-fluid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
#site_feedback_area {width:100%}
section {
padding: 40px 0;
}

#intro {
background-color: #f5f5f5;
}

#features {
background-color: #fff;
}

.feature {
text-align: center;
margin-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.feature:nth-of-type(2n) img{
    order: 2;
}
.feature img {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

#pricing {
background-color: #f5f5f5;
}

table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

table, th, td {
border: 1px solid #ddd;
}

th, td {
padding: 15px;
text-align: center;
}


.apply-button {
    background-color: #007BFF; /* 버튼 색상 */
    border: none; /* 테두리 없음 */
    color: white !important; /* 글자 색상 */
    padding: 15px 32px; /* 패딩 */
    text-align: center; /* 텍스트 정렬 */
    text-decoration: none; /* 텍스트 장식 없음 */
    display: inline-block;
    font-size: 16px; /* 글자 크기 */
    margin: 4px 2px;
    cursor: pointer; /* 마우스 커서 */
    transition-duration: 0.4s; /* 전환 효과 지속 시간 */
}

.apply-button:hover {
    background-color: #0056b3; /* 마우스 오버 시 버튼 색상 */
    color: white; /* 마우스 오버 시 글자 색상 */
}

.tdtext {
    text-align: left;
}


.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 500px;
    text-align: center;
  }

  .modal-content > div {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  
  .close-button {
    padding: 15px 32px; /* 패딩 */
    background-color: #DC3545;
    color: white;
    border: none;
  }


  .container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.container .header > p { color: red}

