@charset "uft-8";

@font-face {
  font-family: ZEN-SERIF;
  src: local("ZEN-SERIF-regular"),
  local("ZEN-SERIF-regular"),
  url(ZEN-SERIF-Regular.woff2);
  font-weight: regular;
}

@import url('https://fonts.cdnfonts.com/css/apple-garamond');

/*전체페이지 설정*/
html {
    margin:0;
    border:0;
    overflow-x: hidden;
}
body {
    height:100%;
    margin:0;
    border:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

/*첫번째 페이지*/

#firstpage{
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding-bottom: 823px;
}

#firstpage .whitearea .titlearea .bigttitle{
    font-family: zen-serif;
    color:#243c73;
    margin-top: 80px;
}

#firstpage .whitearea .titlearea{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 91%;
    margin: 0 auto;
}

#firstpage .whitearea .titlearea .bigttitle h3{
    margin: 0px;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 1px;
}

#firstpage .whitearea .titlearea .bigttitle p{
    font-size: 47px;
    margin: 5px 0 0 0;
    font-weight: 500;
    font-family: 'Apple Garamond', sans-serif;
    letter-spacing: 2px;
}


#firstpage .whitearea .titlearea ul{
    display: block;
    height: fit-content;
    font-family: notosanskr;
    display: flex;
    gap: 30px;
    margin: 0;
}

#firstpage .whitearea .titlearea ul li{
    text-decoration: none;
    list-style: none;
    font-size: 25px;
    font-weight: 600;
}

#firstpage .whitearea .titlearea ul li a{
    text-decoration: none;
    color:#000;
}

#firstpage .whitearea .visualarea {
    position: relative;
    margin-top: 25px;
    z-index: 2;
    text-align: center; 
}

#firstpage .whitearea .visualarea .mainimg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#firstpage .whitearea .visualarea .mainimg.active {
    opacity: 1;
}

#firstpage .whitearea .visualarea img {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: none;
}

#firstpage .grayarea{
    position: absolute;
    top:85%;
    display: flex;
    z-index: 1;
}

#firstpage .grayarea .rightgray{
    width: 60vw;
    background: #404040;
    height: 295px;
    position: relative;
}

#firstpage .grayarea .rightgray p{
    position: absolute;
    color: #fff;
    font-size: 20px;
    font-family: notosanskr;
    top: 55%;
    left:26%;
    line-height: 33px    
}

#firstpage .grayarea .leftgray{
    width: 40vw;
    background: #e3e3df;
    height: 470px;
    border-radius: 0 0 0 20px;
    position: relative;
}

#firstpage .grayarea .leftgray p{
    position: absolute;
    font-size: 20px;
    font-family: notosanskr;
    top: 34%;
    left:15%;
    line-height: 40px    
} 

/*두번째 페이지*/

#secondpage{
    position: relative;
    padding-bottom: 830px;
}

#secondpage .imgbox{
    position: absolute;
    width: 100%;
    height: auto;
}

#secondpage .imgbox img{
    width: 100%;
    height: auto;
}

#secondpage .txtbox {
    position: absolute;
    left: 16%;
    color: #fff;
    font-family: notosanskr;
    transform: translateY(20%); /* 처음엔 아래쪽에 위치 */
    opacity: 0; /* 처음엔 투명 */
    transition: all 1.2s ease-out; /* 부드럽게 올라오게 */
}

#secondpage .txtbox.show {
    transform: translateY(14%); /* 원래 자리로 이동 */
    opacity: 1; /* 불투명하게 */
}

#secondpage .txtbox h3{
    font-size: 35px;
    font-weight: 500;
}
#secondpage .txtbox p{
    font-size: 23px;
}


/* 세 번째 페이지 */
#thirdpage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 화면 전체 높이 */
}

#thirdpage .slide-wrapper {
    display: flex;
    align-items: center;
    gap: 20px; /* 버튼과 슬라이드 간격 */
}

#thirdpage .slide-btn {
    background: none;
    border: none;
    cursor: pointer;
}

#thirdpage .slide-btn img {
    width: 50px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#thirdpage .slide-btn img:hover {
    opacity: 1;
}

/* 슬라이드 영역 */
#thirdpage .slide-box {
    width: 65vw; 
    overflow: hidden;
    position: relative;
}


#thirdpage .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

#thirdpage .slide-item {
    flex: 0 0 100%; /* 한 번에 하나씩만 보이게 */
    text-align: center;
    background: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

#thirdpage .slide-inner {
  display: flex;
  gap: 50px;
  padding: 50px 40px;
  width: 100%;
  box-sizing: border-box; 
}

#thirdpage .slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

#thirdpage .slidtxt{
    font-family: notosanskr;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#thirdpage .slidtxt h3{
    font-size: 35px;
    text-align: left;
    font-weight: 500;
}

#thirdpage .slidtxt h3 span{
    color: #243c73;
    margin: 0;
}

#thirdpage .slidtxt p{
    font-size: 22px;
    text-align: justify;
}

#thirdpage table {
    width: 100%;
    border-collapse: collapse;
}
 #thirdpage tr.whitecell td{
    background: #fff;
 }

 #thirdpage td {
    border: 1px solid #000;
    padding: 10px 8px;
    text-align: center;
    font-size:20px;
    font-weight: 500;
}

/*네번째 페이지*/

#fourthpage {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#fourthpage .review{
    width: 65vw;
    margin: 0 auto;
    display: flex;
    background: #ebebeb;
    font-family: notosanskr;
    padding: 20px;
    gap: 30px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

#fourthpage .review.show {
    opacity: 1;
    transform: translateY(0);
}

#fourthpage .review h3{
    font-size: 23px;
    margin-top:0;
}

#fourthpage .review h3 span{
    color:#ff9c0e;
}

/*다섯번째 페이지*/
#fivethpage {
    display: flex;
    justify-content: space-between;
    width: 65vw;
    margin: 0 auto;
    align-items: flex-end;
    padding: 120px 0 100px 0;
}

#fivethpage h3{
    color: #243c73;
    font-family: ZEN-SERIF;
    font-size: 22px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

#fivethpage table{
    border-top: 1px solid #243c73;
    border-bottom: 1px solid #243c73;
    width: 100%;
    border-collapse: collapse;
    padding: 5px;
}

#fivethpage table td{
    padding:  5px 8px;
    font-family: notosnaskr;
    font-size: 18px;
    border-top: 1px solid #243c73;
    text-align: center;
}

#sixththpage{
    width: 100%;
    height: fit-content;
    padding: 40px 0;
    display: flex;
    background:#404040;
    align-items: center;
    justify-content: center;
}


/*반응형*/


@media (max-width: 549px) {
   
    /*첫번째페이지*/
    #firstpage {
        padding-bottom: 0; 
    }

    #firstpage .whitearea .titlearea .bigttitle h3{
        font-size: 25px;
    }
    #firstpage .whitearea .titlearea .bigttitle p{
        font-size: 20px;
    }

    #firstpage .whitearea .titlearea ul{
        flex-direction: column;
        gap:10px;
        margin-top: 20px;
        align-items: flex-end;
        width: 30%;
    }
    #firstpage .whitearea .titlearea ul li{
        font-size: 13px;
    }

#firstpage .whitearea .visualarea {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}
#firstpage .whitearea .visualarea .mainimg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
#firstpage .whitearea .visualarea .mainimg.active { opacity: 1; }
#firstpage .whitearea .visualarea .mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


 
#firstpage .grayarea {
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}
    #firstpage .grayarea .rightgray,
    #firstpage .grayarea .leftgray {
        width: 100%;
        height: auto; 
    }

       #firstpage .grayarea .rightgray p,
    #firstpage .grayarea .leftgray p {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin: 20px auto;
    }
    /*두번째페이지*/

     #secondpage {
        position: relative; 
        padding-bottom: 0; 
        margin-top: 0; 
    }


#secondpage .imgbox {
    position: relative; 
    width: 100%;
    height: auto;
    overflow: hidden;
}
#secondpage .imgbox img {
    width: auto;
    height: 100vh;
    display: block;
    object-fit: cover;
}

    #secondpage .txtbox.show{
        top:0;
        left: 5%;
    }

 #secondpage .txtbox {
        position: relative; 
        left: auto;
        transform: none;
        padding: 20px;
        opacity: 1; 
    }
   #secondpage .txtbox h3{
    font-size: 22px;
   }
   
   #secondpage .txtbox {
      position: absolute;
      top: 20%; 
      left: 16%;
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
  }
   #secondpage .txtbox p{
    font-size: 17px;
   }

  
    /* 세번째 페이지 */
#thirdpage {
    position: relative;
    margin-top: 16px; 
    padding: 0 0 20px 0;
    height: auto; 
    display: block;
}
#thirdpage .slide-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}
#thirdpage .slide-box {
    width: 90vw;
    max-width: 720px; 
    overflow: hidden;
}
#thirdpage .slides {
    display: flex;         
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
#thirdpage .slide-item {
    flex: 0 0 100%;           
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 320px;        
    padding: 0;             
}
#thirdpage .slide-inner {
    display: flex;
    gap: 50px;        
    padding: 20px;    
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;      
}


#thirdpage .slide-inner img {
    width: 100%;                
    height: auto;
    max-height: 220px;   
    object-fit: contain;
    display: block;
}

#thirdpage .slidtxt {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


#thirdpage .slide-btn img {
    width: 15px;
    height: auto;
}


#thirdpage .slidtxt h3 { 
    font-size: 20px; 
    line-height: 1.2; 
}
#thirdpage .slidtxt p  {
     font-size: 16px; 
     line-height: 1.5; 
    }

#thirdpage td {
    font-size: 16px;
    padding: 8px 6px;
}

/*네번째페이지*/

#fourthpage .review.show{
    flex-direction: column;  
    width: 80vw;
}

/*다섯번째 페이지*/

#fivethpage{
flex-direction: column;
align-items: center;
gap: 20px;
width: 90vw;
}

#fivethpage .linkbox{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#fivethpage .linkbox a:nth-child(1){
    display: none;
}
#fivethpage .linkbox a:nth-child(2){
    display: none;
}


}

@media (min-width: 550px) and (max-width: 767px){

/*첫번째페이지*/
    #firstpage {
        padding-bottom: 0; 
    }

    #firstpage .whitearea .titlearea .bigttitle h3{
        font-size: 28px;
    }
    #firstpage .whitearea .titlearea .bigttitle p{
        font-size: 24px;
    }

    #firstpage .whitearea .titlearea ul{
        flex-direction: column;
        gap:10px;
        margin-top: 20px;
        align-items: flex-end;
        width: 30%;
    }
    #firstpage .whitearea .titlearea ul li{
            font-size: 16px;
    }

#firstpage .whitearea .visualarea {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}
#firstpage .whitearea .visualarea .mainimg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
#firstpage .whitearea .visualarea .mainimg.active { opacity: 1; }
#firstpage .whitearea .visualarea .mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


 
#firstpage .grayarea {
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}
    #firstpage .grayarea .rightgray,
    #firstpage .grayarea .leftgray {
        width: 100%;
        height: auto; 
    }

       #firstpage .grayarea .rightgray p,
    #firstpage .grayarea .leftgray p {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin: 20px auto;
    }
    /*두번째페이지*/

     #secondpage {
        position: relative; 
        padding-bottom: 0; 
        margin-top: 0; 
    }


#secondpage .imgbox {
    position: relative; 
    width: 100%;
    height: auto;
    overflow: hidden;
}
#secondpage .imgbox img {
    width: auto;
    height: 100vh;
    display: block;
    object-fit: cover;
}

    #secondpage .txtbox.show{
        top:0;
        left: 5%;
    }

 #secondpage .txtbox {
        position: relative; 
        left: auto;
        transform: none;
        padding: 20px;
        opacity: 1; 
    }
   #secondpage .txtbox h3{
    font-size: 24px;
   }
   
   #secondpage .txtbox {
      position: absolute;
      top: 20%; 
      left: 16%;
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
  }
   #secondpage .txtbox p{
    font-size: 20px;
   }

  
    /* 세번째 페이지 */
#thirdpage {
    position: relative;
    margin-top: 16px; 
    padding: 0 0 20px 0;
    height: auto; 
    display: block;
}
#thirdpage .slide-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}
#thirdpage .slide-box {
    width: 80vw;
    max-width: 720px; 
    overflow: hidden;
}
#thirdpage .slides {
    display: flex;         
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
#thirdpage .slide-item {
    flex: 0 0 100%;           
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 320px;        
    padding: 0;             
}
#thirdpage .slide-inner {
    display: flex;
    gap: 50px;        
    padding: 20px;    
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;      
}


#thirdpage .slide-inner img {
    width: 100%;                
    height: auto;
    max-height: 400px;   
    object-fit: contain;
    display: block;
}

#thirdpage .slidtxt {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


#thirdpage .slide-btn img {
    width: 15px;
    height: auto;
}


#thirdpage .slidtxt h3 { 
    font-size: 20px; 
    line-height: 1.2; 
    text-align: center;
}
#thirdpage .slidtxt p  {
     font-size: 16px; 
     line-height: 1.5; 
    }

#thirdpage td {
    font-size: 16px;
    padding: 8px 6px;
}

/*네번째페이지*/

#fourthpage .review.show{
    flex-direction: row;  
    width: 90vw;
}

#fourthpage .review.show img{
    /* width: 100%; */
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}
/*다섯번째 페이지*/

#fivethpage{
flex-direction: row;
align-items: center;
gap: 20px;
width: 90%;
align-items: flex-end;
}

#fivethpage .linkbox{
    display: flex;
    flex-direction: column;
    
}

#fivethpage .linkbox a:nth-child(1){
    display: none;
}
#fivethpage .linkbox a:nth-child(2){
    display: none;
}

}

@media (min-width: 768px) and (max-width: 991px) {
   /*태블릿 세로*/

/*첫번째페이지*/
    #firstpage {
        padding-bottom: 0; 
    }

    #firstpage .whitearea .titlearea .bigttitle h3{
        font-size: 28px;
    }
    #firstpage .whitearea .titlearea .bigttitle p{
        font-size: 24px;
    }

    #firstpage .whitearea .titlearea ul{
        flex-direction: column;
        gap:10px;
        margin-top: 20px;
        align-items: flex-end;
        width: 30%;
    }
    #firstpage .whitearea .titlearea ul li{
            font-size: 16px;
    }

#firstpage .whitearea .visualarea {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}
#firstpage .whitearea .visualarea .mainimg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
#firstpage .whitearea .visualarea .mainimg.active { opacity: 1; }
#firstpage .whitearea .visualarea .mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


 
#firstpage .grayarea {
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}
    #firstpage .grayarea .rightgray,
    #firstpage .grayarea .leftgray {
        width: 100%;
        height: auto; 
    }

       #firstpage .grayarea .rightgray p,
    #firstpage .grayarea .leftgray p {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin: 20px auto;
    }
    /*두번째페이지*/

     #secondpage {
        position: relative; 
        padding-bottom: 0; 
        margin-top: 0; 
    }


#secondpage .imgbox {
    position: relative; 
    width: 100%;
    height: auto;
    overflow: hidden;
}
#secondpage .imgbox img {
    width: auto;
    height: 100vh;
    display: block;
    object-fit: cover;
}

    #secondpage .txtbox.show{
        top:0;
        left: 5%;
    }

 #secondpage .txtbox {
        position: relative; 
        left: auto;
        transform: none;
        padding: 20px;
        opacity: 1; 
    }
   #secondpage .txtbox h3{
    font-size: 24px;
   }
   
   #secondpage .txtbox {
      position: absolute;
      top: 20%; 
      left: 16%;
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
  }
   #secondpage .txtbox p{
    font-size: 20px;
   }

  
    /* 세번째 페이지 */
#thirdpage {
    position: relative;
    margin-top: 16px; 
    padding: 0 0 20px 0;
    height: auto; 
    display: block;
}
#thirdpage .slide-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}
#thirdpage .slide-box {
    width: 90vw;
    max-width: 720px; 
    overflow: hidden;
}
#thirdpage .slides {
    display: flex;         
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
#thirdpage .slide-item {
    flex: 0 0 100%;           
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 320px;        
    padding: 0;             
}
#thirdpage .slide-inner {
    display: flex;
    gap: 50px;        
    padding: 20px;    
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;      
}


#thirdpage .slide-inner img {
    width: 100%;                
    height: auto;
    max-height: 400px;   
    object-fit: contain;
    display: block;
}

#thirdpage .slidtxt {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


#thirdpage .slide-btn img {
    width: 15px;
    height: auto;
}


#thirdpage .slidtxt h3 { 
    font-size: 20px; 
    line-height: 1.2; 
    text-align: center;
}
#thirdpage .slidtxt p  {
     font-size: 16px; 
     line-height: 1.5; 
    }

#thirdpage td {
    font-size: 16px;
    padding: 8px 6px;
}

/*네번째페이지*/

#fourthpage .review.show{
    flex-direction: row; 
    width: 90vw;
}

#fourthpage .review.show img{
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}
/*다섯번째 페이지*/

#fivethpage{
flex-direction: row;
align-items: center;
gap: 20px;
width: 90%;
align-items: flex-end;
}

#fivethpage .linkbox{
    display: flex;
    flex-direction: row;
    
}

#fivethpage .linkbox a:nth-child(1){
    display: none;
}


}

@media (min-width: 992px) and (max-width: 1199px) {
    /*태블릿 가로*/
    /*첫번째페이지*/
    #firstpage {
        padding-bottom: 0; 
    }

    #firstpage .whitearea .titlearea .bigttitle h3{
        font-size: 32px;
    }
    #firstpage .whitearea .titlearea .bigttitle p{
        font-size: 28px;
    }

    #firstpage .whitearea .titlearea ul{
        margin-top: 20px;
        justify-content: flex-end;
        width: 30%;
        flex-direction: row;
        width: 100%;
        gap: 30px;
    }
    #firstpage .whitearea .titlearea ul li{
            font-size: 16px;
    }

#firstpage .whitearea .visualarea {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}
#firstpage .whitearea .visualarea .mainimg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
#firstpage .whitearea .visualarea .mainimg.active { opacity: 1; }
#firstpage .whitearea .visualarea .mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


 
#firstpage .grayarea {
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}
    #firstpage .grayarea .rightgray,
    #firstpage .grayarea .leftgray {
        width: 100%;
        height: auto; 
    }

       #firstpage .grayarea .rightgray p,
    #firstpage .grayarea .leftgray p {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        margin: 20px auto;
    }
    /*두번째페이지*/

     #secondpage {
        position: relative; 
        padding-bottom: 0; 
        margin-top: 0; 
    }


#secondpage .imgbox {
    position: relative; 
    width: 100%;
    height: auto;
    overflow: hidden;
}
#secondpage .imgbox img {
    width: auto;
    height: 100vh;
    display: block;
    object-fit: cover;
}

    #secondpage .txtbox.show{
        top:0;
        left: 5%;
    }

 #secondpage .txtbox {
        position: relative; 
        left: auto;
        transform: none;
        padding: 20px;
        opacity: 1; 
    }
   #secondpage .txtbox h3{
    font-size: 24px;
   }
   
   #secondpage .txtbox {
      position: absolute;
      top: 20%; 
      left: 16%;
      transform: none !important;
      opacity: 1 !important;
      transition: none !important;
  }
   #secondpage .txtbox p{
    font-size: 20px;
   }

  
    /* 세번째 페이지 */
#thirdpage {
    position: relative;
    margin-top: 16px; 
    padding: 0 0 20px 0;
    height: auto; 
    display: block;
}
#thirdpage .slide-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}
#thirdpage .slide-box {
    width: 90vw;
    max-width: 850px;
    overflow: hidden;
}
#thirdpage .slides {
    display: flex;         
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}
#thirdpage .slide-item {
    flex: 0 0 100%;           
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 320px;        
    padding: 0;             
}
#thirdpage .slide-inner {
    display: flex;
    gap: 50px;        
    padding: 20px;    
    box-sizing: border-box;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;     
}


#thirdpage .slide-inner img {
    width: 100%;                
    height: auto;
    max-height: 400px;   
    object-fit: contain;
    display: block;
}

#thirdpage .slidtxt {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


#thirdpage .slide-btn img {
    width: 15px;
    height: auto;
}


#thirdpage .slidtxt h3 { 
    font-size: 20px; 
    line-height: 1.2; 
    text-align: center;
}
#thirdpage .slidtxt p  {
     font-size: 16px; 
     line-height: 1.5; 
    }

#thirdpage td {
    font-size: 16px;
    padding: 8px 6px;
}

/*네번째페이지*/

#fourthpage .review.show{
    flex-direction: row; 
    width: 90vw;
}

#fourthpage .review.show img{
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}
/*다섯번째 페이지*/

#fivethpage{
flex-direction: row;
align-items: center;
gap: 20px;
width: 90%;
align-items: flex-end;
}

#fivethpage .linkbox{
    display: flex;
    flex-direction: row;
    
}

#fivethpage .linkbox a:nth-child(1){
    display: none;
}
}

@media (min-width: 1200px) and (max-width: 1919px) {
    /*데스크탑 일반*/
}