/* full_mouth.css - 전체 임플란트 페이지 */

/* --------------------- full mouth main section container */
#full_mouth_main section .container {
  padding: 90px 20px;
}

#full_mouth_main section .container .wrapper h2 {
  font-size: var(--text-lg);
  padding-bottom: 20px;
}

#full_mouth_main section .container .wrapper p {
  line-height: 1.3;
}

#full_mouth_main section .container .wrapper .content {
  padding-top: 35px;
}

/* --------------------- header */
#full_header {
}
#full_header .container {
}
#full_header .container .wrapper {
}
#full_header .container .wrapper .main-banner {
}
#full_header .container .wrapper .main-banner img {
  position: relative;
}
#full_header .container .wrapper .main-banner .txt {
  position: absolute;
  width: 100%;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: var(--font-heading);
  text-shadow: 5px 0 #0000002c;
  /*  */
}

#full_header .container .wrapper .main-banner .txt h1 {
  font-size: var(--text-xl);
}
#full_header .container .wrapper .main-banner .txt h1 span {
  color: #00d8b5;
}

/* --------------------- full intro section */

#full_intro {
  background-color: #fafafa;
  padding: 80px 20px;
}

#full_intro .container .wrapper .intro-boxes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

#full_intro .container .wrapper .intro-box {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#full_intro .container .wrapper .intro-box .box-icon {
  margin-bottom: 20px;
}

#full_intro .container .wrapper .intro-box .box-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

#full_intro .container .wrapper .intro-box .box-title {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: #292929;
  margin-bottom: 15px;
  line-height: 1.4;
}

#full_intro .container .wrapper .intro-box .box-text {
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  color: #666;
  line-height: 1.6;
}

/* --------------------- full section 01 */

#full_1 {
  background-color: #fafafa;
}

#full_1 .container .wrapper .content {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}

#full_1 .container .wrapper .content .content-image {
  flex: 0 0 auto;
  width: 45%;
}

#full_1 .container .wrapper .content .content-image img {
  width: 100%;
  height: auto;
  display: block;
}

#full_1 .container .wrapper .content .content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#full_1 .container .wrapper .content .text-headline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

#full_1 .container .wrapper .content .text-headline .headline-main {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  line-height: 1.4;
  color: #292929;
}

#full_1 .container .wrapper .content .text-headline .headline-sub {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  line-height: 1.4;
  color: #292929;
}

#full_1 .container .wrapper .content .text-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#full_1 .container .wrapper .content .text-description p {
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  line-height: 1.8;
  color: #292929;
  margin: 0;
}

#full_1 .container .wrapper .content p {
  font-size: var(--text-lg);
  font-weight: var(--font-light);
  line-height: 1.8;
}

#full_1 .container .wrapper .content p span {
  font-weight: 600;
}

/* --------------------- full section 02 */

#full_2 .container .wrapper .content {
  display: flex;
  align-items: stretch;
  gap: 30px;
  text-align: left;
}

#full_2 .container .wrapper .content .comparison-column,
#full_2 .container .wrapper .content .info-column {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 600px;
}

#full_2 .container .wrapper .content .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#full_2 .container .wrapper .content .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#full_2 .container .wrapper .content .content-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(232, 232, 232, 0.85) 0%,
    rgba(240, 240, 240, 0.75) 50%,
    rgba(248, 248, 248, 0.65) 100%
  );
}

#full_2 .container .wrapper .content .comparison-column .content-text h2 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #292929;
  margin-bottom: 30px;
  text-align: left;
}

#full_2 .container .wrapper .content .comparison-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#full_2 .container .wrapper .content .comparison-item {
  margin-bottom: 0;
}

#full_2 .container .wrapper .content .comparison-label {
  display: inline-block;
  padding: 10px 20px;
  background: #292929;
  color: #fff;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  margin-bottom: 15px;
}

#full_2 .container .wrapper .content .comparison-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#full_2 .container .wrapper .content .comparison-item ul li {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

#full_2 .container .wrapper .content .comparison-item ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d9b6;
  font-weight: 700;
  font-size: 20px;
}

#full_2 .container .wrapper .content .info-column .content-text h2 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #292929;
  margin-bottom: 30px;
  text-align: left;
}

#full_2 .container .wrapper .content .info-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#full_2 .container .wrapper .content .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
}

#full_2 .container .wrapper .content .info-label {
  flex: 0 0 auto;
  padding: 10px 20px;
  background: #292929;
  color: #fff;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  white-space: nowrap;
}

#full_2 .container .wrapper .content .info-arrow {
  flex: 0 0 auto;
  font-size: 24px;
  color: #333;
  line-height: 1;
}

#full_2 .container .wrapper .content .info-description {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: #333;
  line-height: 1.8;
}

/* --------------------- full section 03 */

#full_3 {
  background: #fafafa;
}

#full_3 .container .wrapper .content {
  text-align: center;
  padding-top: 60px;
}

#full_3 .container .wrapper .content .info-icon {
  margin-bottom: 30px;
}

#full_3 .container .wrapper .content .info-icon img {
  width: 100px;
  height: auto;
  display: inline-block;
}

#full_3 .container .wrapper .content h2 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #292929;
  margin-bottom: 50px;
}

#full_3 .container .wrapper .content .info-sections {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#full_3 .container .wrapper .content .info-item {
  text-align: left;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#full_3 .container .wrapper .content .info-item h3 {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: #292929;
  margin-bottom: 15px;
}

#full_3 .container .wrapper .content .info-item p {
  font-size: var(--text-sm);
  font-weight: var(--font-light);
  color: #555;
  line-height: 1.8;
  margin: 0;
}

#full_main section#full_3 .container .wrapper .content {
  padding-top: 80px;
}

#full_3 .container .wrapper .content ul.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: center;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
#full_3 .container .wrapper .content ul.steps li.step {
  width: calc((100% - 200px) / 2);
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  max-width: 560px;
}

#full_3 .container .wrapper .content ul.steps li.step:nth-child(1):after,
#full_3 .container .wrapper .content ul.steps li.step:nth-child(3):after {
  position: absolute;
  content: "▶";
  top: 45%;
  right: -13%;
  font-size: 30px;
  color: #3a3a3a;
}

/* #full_3 .container .wrapper .content ul.steps li.step:nth-child(3):after,
#full_3 .container .wrapper .content ul.steps li.step:nth-child(6):after {
  content: " ";
} */
#full_3 .container .wrapper .content ul.steps li.step .title {
  background: #019982;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  font-size: var(--text-lg);
  margin: 0 5px;
}
#full_3 .container .wrapper .content ul.steps li.step img {
  border-radius: 20px;
  margin: 15px 0 20px;
}
#full_3 .container .wrapper .content ul.steps li.step .desc {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
}

/* old */

#full_3 .container .wrapper .content .point {
  display: flex;
  justify-content: space-evenly;
  gap: 300px;
  padding-bottom: 60px;
  /* justify-content: center;
  gap: 60px; */
}

#full_3 .container .wrapper .content .point.second,
#full_3 .container .wrapper .content .point.forth {
  gap: 80px;
  justify-content: flex-start;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

#full_3 .container .wrapper .content .point .txt {
  align-self: center;
  display: flex;
  flex-direction: column;
  font-size: var(--text-md);
}

#full_3 .container .wrapper .content .point .txt span.number {
  padding-bottom: 15px;
  font-size: var(--text-lg);
  color: #0e9380;
}
#full_3 .container .wrapper .content .point .txt span.color {
  font-weight: var(--font-bold);
  padding-bottom: 15px;
}
#full_3 .container .wrapper .content .point .txt span.color .green {
  color: #0e9380;
}
#full_3 .container .wrapper .content .point .txt p {
  font-size: var(--text-sm);
  padding-top: 15px;
  position: relative;
}

#full_3 .container .wrapper .content .point .txt p:before {
  content: "";
  position: absolute;
  width: 400%;
  height: 2px;
  background-color: #0e9380;
  top: -2px;
}

#full_3 .container .wrapper .content .point img {
  border-radius: 20px;
}

/* --------------------- full section 04 */

#full_4 {
  background: #fafafa;
}

#full_4 .container .wrapper .content {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 500px;
}

#full_main #full_4 .container .wrapper .content {
  padding-top: 65px;
}

#full_4 .container .wrapper .content .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#full_4 .container .wrapper .content .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#full_4 .container .wrapper .content .content-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 80px 60px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(232, 232, 232, 0.85) 0%,
    rgba(240, 240, 240, 0.75) 50%,
    rgba(248, 248, 248, 0.65) 100%
  );
}

#full_4 .container .wrapper .content .content-text .text-headline {
  margin-bottom: 20px;
}

#full_4 .container .wrapper .content .content-text .text-headline h2 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: #292929;
  line-height: 1.4;
  margin: 0;
}

#full_4 .container .wrapper .content .content-text .text-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#full_4 .container .wrapper .content .content-text .text-description p {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: #333;
  line-height: 1.8;
  margin: 0;
}

/* --------------------- full section 02 */

#full_5 {
  background: #fafafa;
}

#dentures_main #full_5 .container .wrapper .content {
  padding: 0;
}

#full_5 .container .wrapper .candidates {
  text-align: center;
  padding: 50px 0;
}

#full_5 .container .wrapper .candidates img {
  padding-left: 40px;
}

/* --------------------- full section 06 */

#full_6 {
  background: #cdfff6;
  background: linear-gradient(
    109deg,
    rgba(230, 254, 249, 1) 0%,
    rgba(225, 229, 224, 1) 100%
  );
}

#full_main #full_6 .container .wrapper h2 {
  padding-bottom: 75px;
}

/* --------------------- full section 07 */

#full_7 {
  background: #fafafa;
  background: url("../assets/images/one_day/section10.png");
}

#full_7 .answer {
  width: 95%;
}

/********************************************* EQUIPMENT ************************************
*/
.container .wrapper .content {
  color: #292929;
}

#equipment_main section .container {
  padding: 90px 20px;
}

#equipment_main section .container .wrapper h2 {
  font-size: var(--text-lg);
  padding-bottom: 20px;
}

#equipment_main section .container .wrapper p {
  line-height: 1.3;
}

#equipment_main section .container .wrapper .content {
  padding-top: 35px;
}


/* ============================================
   Full Implant Page Styles
   ============================================ */

#full_intro_title .container {
    max-width: 1580px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}

#full_intro_title .wrapper {
    width: 100%;
}

#full_intro_title h1 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    text-align: center;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Full Intro Title */
@media screen and (max-width: 1024px) {
    #full_intro_title h1 {
        font-size: 38px;
    }
}

@media screen and (max-width: 768px) {
    #full_intro_title .container {
        padding: 50px 15px;
    }

    #full_intro_title h1 {
        font-size: 28px;
        font-weight: 700;
    }
}

@media screen and (max-width: 480px) {
    #full_intro_title h1 {
        font-size: 24px;
    }
}

