html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* 가로 스크롤 방지 */
    /*overflow-y: auto; !* 세로 스크롤 허용 *!*/
    /*-webkit-overflow-scrolling: touch; !* 모바일에서 부드러운 스크롤 *!*/
}

html {
    box-sizing: border-box;
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}
img{
    width: 82%;
    height: auto;
    display: block;

}
button:focus {
    outline: none ; /* 버튼이 포커스 됐을 때 나타나는 테두리를 제거합니다. */
}
label {
    display: inline-block;
    /* margin-bottom: .5rem; */
}
@media screen and (max-width: 768px) {
    img{
        width: 80%;
        max-width: 80%;
        height: auto;
        display: block;

    }
    .logo img{
        width: 100%;
        max-width: 70%;
        height: auto;
    }
}


input, button ,textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button, input {
    overflow: visible;
}
input{
    touch-action: manipulation;
}

/* 배경 이미지를 설정할 컨테이너에 스타일링을 적용합니다. */
.background-container {
    width:100%;
    background-image: url('../images/robot_header.png');
    /* 배경 이미지 경로를 지정합니다. */
    background-size: cover;
    /* 이미지를 화면에 가득 차게 설정합니다. */
    background-position: center top;
    /* 이미지를 가운데 정렬합니다. */
    /* 나머지 필요한 스타일링을 추가하세요 */
}

/* 로고 스타일링 */
.logo {
    position: absolute;
    top: 50%;
    left: 32%; /* 화면의 중앙으로 변경 */
    transform: translate(-50%, -50%); /* 로고의 중심을 기준으로 위치 조정 */

}

.logo img {
    /*max-width: 84%;*/
    height: auto;
    width:170px;
}

/* 초기 헤더 스타일링 */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, height 0.3s ease;
    height: 48px;
    /* border-bottom: 2px solid red; */
}

/* 스크롤 시 헤더 스타일링 */
header.scrolled {
    background-color: #dddddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* transform: translate(426%, -50%); */
}

/* 스크롤 시 로고 이미지 변경 */
header.scrolled .logo img {
    /*content: url("../images/JTSPCB_logo.jpg");*/
    content: url("../images/ROBOJTS_logo.jpg");
}

/* 배경이미지 섹션 */
.background-section {
    /* background-image: url('../images/robot_header.png'); */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 184px;
}
@media screen and (max-width: 768px) {
    .background-section {
        background-size: 70% auto; /* 가로 크기를 원래 크기의 70%로 조정 */
        background-position: center; /* 이미지가 중앙에 위치하도록 조정 */
        height:88px;
        /* 모바일 화면에서 전체 높이를 차지하도록 변경 */
        /*background-size: 100% auto; !* 가로로 화면 전체를 채우도록 변경 *!*/
    }
    .background-container{
        width: 100%;

    }
}

/* 태그 섹션 */
.home-page-tags {
    margin-bottom: -15px;
    text-align: center;
    /* 버튼을 가운데 정렬하기 위해 */
    /* border: 2px solid red; */
    background-color: rgba(255, 255, 255, 0.5);
}

.tag-wrapper {
    display: flex;
    justify-content: center;
    /* 가운데 정렬 */
    gap: 10px;
    /* 버튼 사이의 간격 설정 */
}

.tag {
    position: relative;
    /* 상대 위치 지정 */
    background-color: #1d5b8d;
    /* 버튼 배경색 설정 */
    border-radius: 50px;
    /* 버튼을 반원형으로 만듦 */
    padding: 10px 20px;
    /* 버튼 내부 여백 설정 */
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 6px rgba(11, 94, 135, 0.6);
    /* 자연스러운 그림자를 추가합니다. */
    transition: transform 0.3s, box-shadow 0.3s;
    /* 변화에 애니메이션을 추가합니다. */
}

.tag button {
    color: white;
    /* 링크 텍스트 색상 설정 */
    background-color: transparent;
    /* 배경색 투명으로 설정 */
    border: none;
    /* 테두리 제거 */

}


.tag:hover {
    transform: translateY(-2px);
    /* 호버 시 버튼을 약간 위로 이동하여 입체감을 표현합니다. */
    box-shadow: 0px 6px 8px rgba(11, 94, 135, 1.3);
    /* 호버 시 그림자를 더 크게 만듭니다. */

}
@media screen and (max-width: 768px) {
    .tag {
        padding: 4px 5px; /* 크기 조정 */
        font-size: 70%; /* 글꼴 크기 조정 */
    }
}


/* 중간 테이블 섹션 */


table {
    border-collapse: collapse;
    /* 테이블 셀 경계를 합치고 테이블의 테두리를 하나로 만듭니다. */
}

td,
th {
    /*border: 1px solid red;*/
    /* 테이블 셀의 테두리를 빨간색으로 설정합니다. */
}

tbody {
    display: table-row-group;
    /* margin-left: 150px; */
}

.label-column {
    width: 80%;
}

.second-column {
    width: 150%;
}




.middle-section {
    /* border: 2px solid red; */
    height: 2187px;
    text-align: center;
    /* 텍스트를 가운데 정렬 */
    background-color: rgba(255, 255, 255, 0.5);
    /* display: flex;
   justify-content: center;
   align-items: center;  */
}

.middle-section h5 {
    margin-top: 15px;
    color: #195f6c;
    font-style: normal;
    font-size: 50px;
    font-weight: 600;

}


.middle-section-square {
    border: 10px solid #2b768c;
    /* Set border to 2px solid black */
    width: 800px;
    height: 960px;
    margin: auto;
    margin-top: 30px;
    border-radius: 30px;
    /* Optional: Add border-radius for rounded corners */
    padding: 10px;
    /* Optional: Add padding to create space between the content and the border */
    box-sizing: border-box;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 6.5);
    background-color: rgb(92 154 205 / 50%);
    justify-content: center;
    align-items: center;

}
@media screen and (max-width: 768px) {

    .middle-section h5 {
        font-size: 33px;
    }
    .middle-section-square {
        width: 87%; /* 모바일 화면에서 가로 크기를 화면의 90%로 조정 */
        height:508px !important;
        margin-top: 30px; /* 원래 마진 값으로 변경 */

    }

    .displayNone {
        /* border: 1px solid red; */
        display: none !important;
        /*font-size: 80%;*/
        /*margin-top: 120px;*/
    }
    .middle-section{
        height:60%;
    }
    .fontMedium{
        font-size:small;
    }
    .fontXXsmall{
        font-size:xx-small;
    }
    .paddingNone{
        padding:0 !important;
    }
    .table-cont-div{
        align-items: center;
    }

    .marLeft-6{
        margin-left:-6px;

    }
    .marLeft-3{
        margin-left:-3px;
    }
    .marleft-11{
        margin-left:-11px;
    }
    .fontWeight600{
        font-weight:600 !important;
    }
    .filebox1 .upload-name {
        height: 20px !important;
        width: 44% !important;

    }
    .filebox-button {

        height: 20px !important;
        font-size: xx-small;
        margin-top: 2% !important;
        width: 13% !important;
        line-height: 8px !important;
    }
    .dimension-label1{
        margin-left: 4px !important;
    }
    .dimension-input{
        height: 20px !important;
        width: 11% !important;
    }
    .dimension-select{
        height: 20px !important;
        width: 16% !important;
        font-size: 10px !important;
    }
    .mm{
        font-size: 10px !important;
    }
    .inch{
        font-size: 10px !important;
    }

    .layer-button{
        width:13% !important;
        padding: 0px 5px !important;
    }

    .layer-input{
        height: 20px !important;
        width: 32% !important;
    }

    .material-button{
        width: 32% !important;
        padding: 0px 6px !important;
    }

    .quantity-select{
        height: 20px !important;
        width: 21% !important;
    }

    .date-button{
        width:13% !important;
        padding: 0px 5px !important;
    }
    .thickness-button{
        width:13% !important;
        padding: 0px 5px !important;
    }
    .copperWeight-button{
        width:13% !important;
        padding: 0px 5px !important;
    }
    .pcbColor-button{
        width:16% !important;
        padding: 0px 5px !important;
    }
    .silkScreen-button{
        width:16% !important;
        padding: 0px 5px !important;
    }
    .price-container{
        width: 58% ! important;
        margin-top: 15px !important;
        margin-left: 117px !important;
    }
    .price-div{
        margin-left: -88px !important;
        margin-top: 6px !important;
        font-size: small !important;
    }
    .price-div2{
        margin-left: -88px !important;
        margin-top: 6px !important;
        font-size: small !important;
    }
    .price-div3{
        margin-left: 5px !important;
        margin-top: 6px !important;
        font-size: smaller !important;
    }

    .price-button{

    }
    .estimate-button{

    }
    .basic-price{

    }
    .basic-price-unit{
        font-weight: 400 !important;
        font-size: 14px !important;
    }


}
.table-container {
    /* border: 1px solid red; */
    font-size: 18px;
    margin-top: 96px;
}
@media screen and (max-width: 768px) {
    .table-container {
        /* border: 1px solid red; */
        font-size: 18px;
        margin-top: 0;
        margin-left:-104px;
    }
}

.common-spacing {
    margin-bottom: 5px; /* 하단 마진을 20px로 설정하여 항목 간 거리 조정 */
    padding: 5px; /* 내부 패딩을 10px로 설정하여 내용과 경계 사이의 여백 조정 */
}
@media screen and (max-width: 300px) {
    .filebox-label1 {
        font-size: xx-small !important;
    }
    .xxSmall-300{
        font-size: xx-small !important;
    }
    .marLeft-11{
        margin-left:-11px !important;

    }
    .marLeft-18{
        margin-left:-18px !important;
    }
    .marLeft-8{
        margin-left:-8px !important;
    }
    .dimension-input{
        width: 28% !important;
    }

    .layer-input{
        width: 28% !important;
    }
    .material-button{
        width: 45% !important;

    }
    .quantity-select{
        width: 18% !important;
    }
    .date-button{
        width:15% !important;
    }
    .thickness-button{
        width:14% !important;
    }
    .copperWeight-button{
        width:18% !important;
    }
    .pcbColor-button{
        width:22% !important;
    }
    .silkScreen-button{
        width:22% !important;
    }

}

@media screen and (max-width: 768px) {

    .filebox1 {
        display: block; /* 모바일에서는 세로로 배열되도록 변경 */
        margin-left: auto; /* 가로 여백을 자동으로 설정하여 가운데 정렬 */
        margin-right: auto;
        text-align: center; /* 내용을 가운데 정렬 */
    }

    .filebox1 input[type="file"],
    .filebox1 .upload-name,
    .filebox-button {
        width: 100%; /* 모바일에서 파일 업로드 영역이 가로폭을 꽉 차게 설정 */
        margin: 5px 0; /* 세로 여백을 추가하여 요소 사이의 간격 조정 */
    }
}

.filebox1 {

    display: flex;
    align-items: center;
    margin-left: 100px;
}

.filebox-label1 {
    color: #032541;
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.filebox1 label {
    margin-right: 10px;
}

.filebox1 .upload-name {
    display: inline-block;
    height: 30px;
    padding: 0 10px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 48%;
    color: #999999;
    border-radius: 6px;
    box-shadow: 0px 2px 4px rgb(4 50 65);

}

.filebox1 input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.filebox-button{
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    background-color: #1d5b8d;
    cursor: pointer;
    height: 35px;
    margin-left: 10px;
    margin-top: 1%;
    border-radius: 6px;
    border:none;
    width: 8%;
    text-align: center;
    /* 텍스트를 수평으로 가운데 정렬합니다. */
    line-height: 35px;
    /* 높이와 동일한 값으로 줄 높이를 설정하여 수직으로 가운데 정렬합니다. */
    box-shadow: 0px 4px 6px rgba(11, 94, 135, 0.3);
    /* 자연스러운 그림자를 추가합니다. */
    transition: transform 0.3s, box-shadow 0.3s;
    /* 변화에 애니메이션을 추가합니다. */
}

.filebox-label2:hover {
    transform: translateY(-2px);
    /* 호버 시 버튼을 약간 위로 이동하여 입체감을 표현합니다. */
    box-shadow: 0px 6px 8px rgba(11, 94, 135, 1.3);
    /* 호버 시 그림자를 더 크게 만듭니다. */
}


.layer {
    display: flex;
    align-items: center;
    margin-left: 126px;
    margin-top: 7px;

}
.fontWeight500{
    font-weight: 500;
}
.layer-label1 {
    margin-right: 10px;
}

.layer-input {
    display: inline-block;
    height: 30px;
    padding: 0 10px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 33%;
    color: #999999;
    box-shadow: 0px 2px 4px rgb(4 50 65);
    /* Add shadow effect */
    border-radius: 6px;

}
.dimension {
    display: flex;
    align-items: center;
    margin-left: 89px;
    margin-top: 3px;


}
.dimension-label2{
    display: flex;
    align-items: center;
    margin-bottom: -9px;
}

.dimension-input {
    display: inline-block;
    height: 30px;
    padding: 0 10px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 10%;
    color: #999999;
    box-shadow: 0px 2px 4px rgb(4 50 65);
    /* Add shadow effect */
    border-radius: 6px;
    margin-left: 10px;
    margin-right: 5px;
    text-align: center;

}
.dimension-select{
    display: inline-block;
    height: 30px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 10%;
    color: #999999;
    box-shadow: 0px 2px 4px rgb(4 50 65);
    /* Add shadow effect */
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    margin-left: 5px;
}

.layer-button {
    color: #000;
    background-color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-right: 5px;
    width: 8%;

}

.layer-button.active {
    color: #fff;
    background-color: #1d5b8d;
}

.layer-button.button-default {
    /* 2버튼의 디폴트 스타일 (파란색 등) */
    background-color: #1d5b8d;
    /* 파란색 배경 등 */
    color: white;
    /* 흰색 글자 등 */
}

.material {
    display: flex;
    align-items: center;
    margin-left: 143px;
    margin-top: 10px;


}

.material-button {
    color: #fff;
    background-color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-left: 10px;
    margin-right: 5px;
    width: 20%;
    background-color: #1d5b8d;

}

.quantity {
    display: flex;
    align-items: center;
    margin-left: 143px;
    margin-top: 10px;


}

.quantity-select {
    display: inline-block;
    height: 30px;
    padding: 0 10px;
    vertical-align: middle;
    border: 1px solid #dddddd;
    width: 11%;
    color: #999999;
    box-shadow: 0px 2px 4px rgb(4 50 65);
    /* Add shadow effect */
    border-radius: 6px;
    margin-left: 10px;
    margin-right: 5px;
    text-align: center;
}

.date {
    display: flex;
    align-items: center;
    margin-left: 143px;
    margin-top: 10px;


}

.date-button {
    color: #fff;
    background-color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-left: 10px;
    margin-right: 5px;
    width: 8%;
    background-color: #1d5b8d;

}

.thickness {
    display: flex;
    align-items: center;
    margin-left: 143px;
    margin-top: 10px;

}

.thickness-label1 {
    margin-right: 10px;
}

.thickness-button {
    color: #000;
    background-color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-right: 5px;
    width: 8%;

}

.thickness-button.active {
    color: #fff;
    background-color: #1d5b8d;
}

.thickness-button.button-default {
    /* 1.6 버튼의 디폴트 스타일 (파란색 등) */
    background-color: #1d5b8d;
    /* 파란색 배경 등 */
    color: white;
    /* 흰색 글자 등 */
}

.copperWeight {
    display: flex;
    align-items: center;
    margin-left: 143px;
    margin-top: 10px;


}

.copperWeight-button {
    color: #fff;
    background-color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-left: 10px;
    margin-right: 5px;
    width: 8%;
    background-color: #1d5b8d;

}

.pcbColor {
    display: flex;
    align-items: center;
    margin-left: 124px;
    margin-top: 10px;


}

.pcbColor-button {
    color: #fff;
    background-color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-left: 10px;
    margin-right: 5px;
    width: 15%;
    background-color: #1d5b8d;

}

.silkScreen {
    display: flex;
    align-items: center;
    margin-left: 124px;
    margin-top: 10px;
}

.silkScreen-button {
    color: #fff;
    border: 2px solid #1d5b8d;
    border-radius: 20px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-left: 10px;
    margin-right: 5px;
    width: 15%;
    background-color: #1d5b8d;

}
/*--------------------------------------------------------*/

/*--------------------------------------------------------*/


.price-button{
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgb(5 50 65);
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px;
    margin-right: 5px;
    width: 23%;
    background-color: #f7918e;
}


.estimate-button{
    color: #fff;
    /*border: 2px solid #1d5b8d;*/
    border-radius: 5px;
    /* Add round corners */
    box-shadow: 0px 2px 4px rgb(5 50 65);
    /* Add shadow effect */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    transition: background-color 0.3s;
    /* Add transition for color change */
    margin-left: 10px;
    margin-right: 5px;
    width: 23%;
    background-color: #f7918e;
}

.price-container{
    border-top: 2px solid #868e96;
    width: 430px;
    margin-left: 96px;
    margin-top: 57px;
    display: flex;

}
.price-div{
    margin-left: -164px;
    margin-top: 10px;
    font-size: larger;
    width: 111%;
}
.price-div2{
    margin-left: -176px;
    margin-top: 10px;
    font-size: larger;
}
.price-div3{
    margin-left: 10px;
    margin-top: 10px;
    font-size: larger;
}
.basic-price-label{
    font-weight: 600;
}
.basic-price{
    margin-left: 10px;
    font-weight: 600;
    font-size: larger;
}
.basic-price-unit{
    color: #dc3545;
    font-weight: 600;
    font-size: 17px;
}


.order-button {
    background-color: #1d5b8d;
    /* 배경색을 설정합니다. */
    color: #fff;
    /* 글자색을 설정합니다. */
    border: none;
    /* 테두리를 없앱니다. */
    padding: 10px 20px;
    /* 내부 여백을 조정합니다. */
    border-radius: 20px;
    /* 버튼을 둥글게 만듭니다. */
    box-shadow: 0px 4px 6px rgba(11, 94, 135, 0.3);
    /* 자연스러운 그림자를 추가합니다. */
    cursor: pointer;
    /* 마우스 커서를 포인터로 변경합니다. */
    transition: transform 0.3s, box-shadow 0.3s;
    /* 변화에 애니메이션을 추가합니다. */
    margin-top: 15px;
    width: 15%;
    display: inline-block; /* 가운데 정렬을 위해 블록 요소로 변경 */
}


.order-button:hover {
    transform: translateY(-2px);
    /* 호버 시 버튼을 약간 위로 이동하여 입체감을 표현합니다. */
    box-shadow: 0px 6px 8px rgba(11, 94, 135, 1.3);
    /* 호버 시 그림자를 더 크게 만듭니다. */
}
/* 모바일 화면에서 주문하기 버튼 스타일 변경 */

@media screen and (max-width: 768px) {
    .order-button {
        width: 50%;
        display: inline-block;
        overflow: hidden; /* 내용이 버튼을 벗어나지 않도록 설정 */
        white-space: nowrap; /* 내용이 줄 바꿈되지 않도록 설정 */
        text-overflow: ellipsis; /* 내용이 버튼을 벗어날 경우 생략 부호로 표시 */
        position: relative; /* 상대 위치 지정 */
    }
    /* 모바일 화면에서 주문하기 버튼 내용 변경 */
    .order-button::after {
        content: '상담'; /* 가상 요소의 내용을 직접 설정 */
        position: absolute; /* 절대 위치 지정 */
        top: 50%; /* 부모 요소의 중앙에 위치시키기 위해 50%로 설정 */
        left: 0;
        width: 100%;
        /* height: 100%; */
        transform: translateY(-50%); /* 부모 요소의 중앙에 텍스트를 배치하기 위해 사용 */
        background-color: #1d5b8d; /* 배경 색상을 버튼과 동일하게 설정하여 텍스트를 가리기 */
        color: #fff; /* 텍스트 숨김 */
        box-shadow: 0px 4px 6px rgba(11, 94, 135, 0.3);
        font-weight: bold;
    }
}
.table-cont-last-div{
    margin-top: 30px;
    align-items: center;
    color:#1d5b8d;
    display:none;
}
.webDisplayNone{
    display: none;
}
@media screen and (max-width: 768px) {
    .table-cont-last-div{
        margin-top: 10px;
        align-items: center;
        color:#ff6863;
        display:block;
        text-align: center;
        margin-left: 91px;
        margin-right: -13px !important;
    }

}

/*
Maps Section style
=====================*/
.Maps-header{
    background: transparent;
}
.main_maps {
    /*background: url(../images/jts_map.png) no-repeat center center;*/
    position: relative;
    width: 42%;
    height: 367px;
    overflow: hidden;
    /* border: 3px solid #1d5b8d; */
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6a6b6c;
    margin: auto;
    border-radius: 10px;
    transition: box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.main_maps.active {
    /*box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6a6b6c !important; !* Darker, thicker border *!*/
    transform: scale(1.02) translateY(-2px); /* Slight movement effect */
}
.maps-cont {
    display: flex; /* Flexbox 레이아웃 활성화 */
    justify-content: space-between; /* 컨테이너 내 항목 사이에 공간 배분 */
    align-items: start; /* 컨테이너 내 항목들을 상단에서 정렬 */
}

.maps-left-cont, .maps-right-cont {
    width: 100%;
    height: 500px;
    /* border: 1px solid red; */
    margin-top: 37px;
}
.maps-text{
    width: 50%;
    height: 100%;
    border: 1px solid red;
    margin:auto ;
}
@media screen and (max-width: 768px) {
    .main_maps {
        width:92% !important;
        height: 60% !important;
    }
}
/* Contact Section style
===================== */
.btn:focus, .btn:hover {
    text-decoration: none;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
.btn-primary {
    color: #fff;
    background-color: #ff6863;
    border-color: #ff6863;
}
.btn {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
}
.bg-mega {
    background-color: #6a6b6c;
}
*, *::before, *::after {
    box-sizing: inherit;
}

section {
    width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.main_contact {
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
}

.text-white {
    color: #7c7c7c !important;
}

@media (min-width: 768px) {
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.col-sm-12,
.col-sm-6,
.col-md-8,
.col-md-4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .col-sm-6{
        margin-top: 0;
    }
    .col-sm-12{
        margin-top: 0;
    }
}

.separator_small {
    width: 30px;
    height: 2px;
    margin: 20px 0px;
    background: #ff6863;
}

.m-top-30 {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .sm-m-top-30 {
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

@media (min-width: 576px) {
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.contact-form{
    margin: 0 auto; /* 상하 마진 0, 좌우 마진 자동으로 설정하여 중앙 정렬 */
    width: 100%; /* 전체 너비를 사용 */
    max-width: 800px; /* 최대 너비를 800px로 설정하여 너무 커지지 않도록 함 */
    padding: 20px; /* 내부 여백 추가 */
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

button,
input {
    overflow: visible;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

input[type="text" i] {
    padding-block: 1px;
    padding-inline: 2px;
}

input {

    text-rendering: auto;
    color: fieldtext;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: field;
    margin: 0em;
    padding: 1px 0px;
    border-width: 2px;
    border-style: inset;
    /*border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));*/
    border-image: initial;
    padding-block: 1px;
    padding-inline: 2px;
}


@media (min-width: 576px) {
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin:0;
    }
}

.btn-primary {
    color: #fff;
    background-color: #ff6863;
    border: 2px solid;
    border-color: #ff6863;
    padding: 1rem 3rem;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary:hover {
    color: #fff;
    /* background-color: #0069d9;
    border-color: #0062cc; */
    transform: translateY(-2px);
    /* 호버 시 버튼을 약간 위로 이동하여 입체감을 표현합니다. */
    box-shadow: 0px 6px 8px rgba(255, 104, 99, 0.3);
    /* 호버 시 그림자를 더 크게 만듭니다. */
}

.main_contact a.btn {
    width: 100%;
    outline: none !important;
}
.main_contact a.btn:focus{
    outline: none !important;
}

.text-center {
    text-align: center !important;
}

.btn {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    border: 1px solid;
}
.contact-input{
    height: 30px;
}
.contact-textarea{

}
.contact-button{
    background-color: #ff6863 !important;
    border:#ff6863 !important;/* 원하는 배경색으로 설정 */
    width:100%;
}
.contact-button::-moz-focus-inner {
    border: 0;
}
.contact-button:focus{
    box-shadow: 0 0 0 3px #ff6863;
    outline: 1px solid #ff6863;
}
.contact-button-cont{
    outline: none !important;
    border:#ff6863 !important;
}
.contact-button:active {
    background-color: initial;
    color: initial;
    border-color: initial;
    /* Any other property that might be changing */
}
.contact-button:not(:active) {
    box-shadow: none;
    transform: none;
    /* Reset other properties that might be changing on click */
}

/* 푸터 */

.footer {
    display: flex;
    justify-content: center;
    padding-inline: 20px;
    padding-block: 40px;
    background-color: #4d4d4d;
}
.footer-logo img{
    width: 72%; /* 로고의 너비를 전체 너비의 50%로 설정합니다. */
    height: auto; /* 높이를 자동으로 조정하여 가로세로 비율을 유지합니다. */
    width: 170px;
}
.footer .container {
    max-width: 1584px;
    width: 32%;
    gap: 20px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-direction: column;
}
.footer-logo{
    margin: auto;
}
.footer-address {
    flex: 1; /* 동일한 너비를 가지도록 설정 */
    width:576px;
    margin-bottom: -15px !important;
}
.footer-phone{
    display: block;
    margin: 0 auto;
    text-align: center;
}
.footer .container .left-cont {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start; /* 왼쪽 정렬 */
}
.left-cont p {
    display: inline-block; /* 블록 요소를 인라인 레벨로 변경하여 가로 배치 */
    margin-right: 10px !important; /* 각 요소 사이의 간격을 설정할 수 있습니다. */
}
.footer .container .left-cont {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start; /* 왼쪽 정렬 */
}

.font-normal {
    font-weight: 400;
}
.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}
.footer .container .left-cont .text-cont p {
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -.16px;
    color: #fbfbfb;
    box-sizing: border-box;
    padding: 0;
    scroll-behavior: smooth;
    margin: 0;
}
.footer .container .right-cont {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    margin-top: auto;
}
.footer .container .right-cont .links {
    color: #9e9e9e;
    font-family: Noto+Sans+KR;
    display: flex;
    gap: 15px;
}
.footer .container .right-cont .links>div .cursor-pointer {
    color: #ff6863;
}
.cursor-pointer{
    cursor: pointer;
}
.footer .container .right-cont .sm-icons {
    display: flex;
    gap: 16px;
}
.footer .container .right-cont .cp-rights {
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -.16px;
    color: #757575;
}


/* 웹 화면에서의 스타일 */
/*@media screen and (min-width: 769px) {*/
/*    @media screen and (min-width: 769px) {*/
/*        .footer .container .left-cont,*/
/*        .footer .container .right-cont {*/
/*            width: auto;*/
/*            text-align: center;*/
/*            !* flex-direction: row; *!*/

/*        }*/
/*    }*/
/*}*/
/* 모바일 화면에서의 스타일 */
@media screen and (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer .container .left-cont,
    .footer .container .right-cont {
        width: 100%;
        text-align: center;
        flex-direction: column;

    }
    .footer .container .left-cont .text-cont{
        flex-direction: column;
    }

    .footer .container .left-cont .text-cont p,
    .footer .container .right-cont .links {
        margin: 0;
        flex-direction: column;
    }

    .footer .container .left-cont .text-cont p:not(:last-child) {
        margin-bottom: 12px;
    }
    .left-cont{
        width:545% !important;
    }
    .links{
        width: 100% !important;
        flex-direction: row !important;
    }
    .footer-phone{
        text-align: center;
        display: block;
        margin: 0 auto;
    }
}



/* 모달 스타일 */
.mymodal {
    display: none;
    /* 모달 초기에는 보이지 않도록 설정 */
    position: fixed;
    /* 화면에 고정 */
    z-index: 9999;/* 모달 창을 가장 위로 올립니다. */
    /* 다른 요소들보다 위에 표시 */
    width: 36%;
    /* 모달의 너비를 설정 */
    height: 60%;
    top: 50%;
    /* 화면의 세로 중앙에 모달을 위치시킵니다. */
    left: 50%;
    /* 화면의 가로 중앙에 모달을 위치시킵니다. */
    transform: translate(-50%, -50%);
    /* 모달을 수평 및 수직으로 정확히 화면의 중앙에 위치시킵니다. */
    background: transparent;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    font-family: 'Noto Sans KR', sans-serif;

}
@media screen and (max-width: 768px)and (min-width:300px) {
    .mymodal {
        width: 98%;
        height: 400px !important;
    }
    .modal-info-span1{

    }
    .close{
    }
    .modal-container{
        margin-top:38px !important;
        margin-left: -30px !important;

    }
    .modal-span2{
        margin-top:-5px !important;
        margin-left: -67px !important;
    }
    .fontMedium{
        font-size:medium;
    }
    .modal-container input{
        margin-left: -82px;
        width:122% !important;
    }
    .modal-order-button {
        margin-left: -54px !important;
        width:100% !important;
    }
    .fontSmall{
        font-size: small;
    }
}

@media screen and (max-width: 300px) {
    .mymodal {
        width: 98%;
        height: 300px !important;
    }
    .modal-container{
        margin-top:29px !important;
        margin-left: 10px !important;

    }
    .modal-span2{
        margin-top:-5px !important;
        margin-left: -82px !important;
    }
    .fontMedium{
        font-size:medium;
    }
    .modal-container input{
        margin-left: -82px;
        width:131% !important;
    }
    .modal-order-button {
        margin-left: -48px !important;
        width:100% !important;
    }
    .fontSmall{
        font-size: small;
    }
}

.mymodal-content {

    grid-template-columns: 1fr 2fr auto; /* 3열로 구성 */
    grid-template-rows: auto; /* 행은 자동으로 조절됩니다 */

}

.modal-container {
    display: grid;
    grid-column: 1 / span 2; /* 1열부터 2열까지 스팬 */
    grid-row: 1 / span 2; /* 1행부터 2행까지 스팬 */
    grid-template-columns: 1fr 2fr; /* 2열로 구성 */
    grid-template-rows: repeat(5, auto); /* 2행으로 구성 */
    grid-column-gap: 20px; /* 열 사이의 간격을 10px로 설정 */
    grid-row-gap: 10px;
    margin-left:-30px;
    margin-top:56px;

}
.modal-container input,
.modal-container textarea{
    border: 1px solid #dddddd;
    color: #999999;
    border-radius: 6px;
    box-shadow: 0px 2px 4px rgb(4 50 65);
    width: 71%;
}
.modal-container label{
    align-self: center; /* 세로로 중앙 정렬 */

}
.modal-container button{
    background-color: #1d5b8d;
    /* 배경색을 설정합니다. */
    color: #fff;
    /* 글자색을 설정합니다. */
    border: none;
    /* 테두리를 없앱니다. */
    padding: 10px 20px;
    /* 내부 여백을 조정합니다. */
    border-radius: 20px;
    /* 버튼을 둥글게 만듭니다. */
    box-shadow: 0px 4px 6px rgba(11, 94, 135, 0.3);
    /* 자연스러운 그림자를 추가합니다. */
    cursor: pointer;
    /* 마우스 커서를 포인터로 변경합니다. */
    transition: transform 0.3s, box-shadow 0.3s;
}
.modal-info-span-container{
    margin-left:36px;
    padding: 0px 0px 17px 0px !important;
}

.modal-info{
    text-align: center; /* 텍스트를 가운데 정렬로 설정 */
    font-weight: bold; /* 폰트를 굵게 설정 */
    font-size: 20px; /* 폰트 크기를 조절 */
    margin-top: 30px !important;
    text-align: center;
    /* margin-left: 32px !important; */
    color:#1d5b8d;
    border-bottom: 1px solid #708590; /* 밑줄 선 추가 */
}

.close{

    cursor: pointer;
    color: #1d5b8d !important;
    float: right;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.modal-order-button:hover {
    transform: translateY(-2px);
    /* 호버 시 버튼을 약간 위로 이동하여 입체감을 표현합니다. */
    box-shadow: 0px 6px 8px rgba(11, 94, 135, 1.3);
    /* 호버 시 그림자를 더 크게 만듭니다. */
}
.modal-order-button:active {
    border: none !important; /* 클릭 시 테두리를 없애고 싶을 때 */
}
.modal-order-button{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 7; /* 3행에 배치 */
    width:50%;
    margin-top: 20px;
    margin-left:7px;



}

.modal-label1 {
    grid-column: 1; /* 1열에 배치 */
    grid-row: 1; /* 1행에 배치 */
    text-align: right; /* 텍스트를 오른쪽 정렬로 설정 */

}
.modal-label2 {
    grid-column: 1; /* 1열에 배치 */
    grid-row: 2; /* 2행에 배치 */
    text-align: right; /* 텍스트를 오른쪽 정렬로 설정 */

}
.modal-label3 {
    grid-column: 1; /* 1열에 배치 */
    grid-row: 3; /* 3행에 배치 */
    text-align: right; /* 텍스트를 오른쪽 정렬로 설정 */

}
.modal-label4{
    grid-column: 1; /* 1열에 배치 */
    grid-row: 4; /* 3행에 배치 */
    text-align: right; /* 텍스트를 오른쪽 정렬로 설정 */
}
.modal-label5 {
    grid-column: 1; /* 1열에 배치 */
    grid-row: 5; /* 4행에 배치 */
    text-align: right; /* 텍스트를 오른쪽 정렬로 설정 */

}

input:focus::placeholder {
    color: transparent; /* 입력란에 포커스가 있을 때 placeholder 텍스트를 투명하게 만듭니다. */
}

.modal-input1{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 1; /* 1행에 배치 */


}
.modal-input2{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 2; /* 2행에 배치 */


}
.modal-input3{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 3; /* 3행에 배치 */

}
.modal-input4{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 4; /* 4행에 배치 */

}
.modal-textArea{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 5; /* 4행에 배치 */

}

.modal-span2{
    grid-column: 2; /* 2열에 배치 */
    grid-row: 6; /* 5행에 배치 */
    text-align: left; /* 텍스트를 오른쪽 정렬로 설정 */
    margin-top:30px;
    /*margin-left: 24px;*/
    font-weight: 400;
    color: #ff0000;
}

@media screen and (max-width: 768px){
    .mymodal4{
        width: 368px !important;
    }
    .h3-announce{
        font-size: 23px;
        width: 77% !important;
    }
    .close4{

    }
    .modal4-header{
        padding: 0px !important;
        margin-bottom: 10px;
    }
}
.mymodal4 {
    /* 모달 초기에는 보이지 않도록 설정 */
    position: fixed;
    /* 화면에 고정 */
    z-index: 1;
    /* 다른 요소들보다 위에 표시 */
    top: 50%;
    /* 화면의 세로 중앙에 모달을 위치시킵니다. */
    left: 50%;
    /* 화면의 가로 중앙에 모달을 위치시킵니다. */
    transform: translate(-50%, -50%);
    /* 모달을 수평 및 수직으로 정확히 화면의 중앙에 위치시킵니다. */
    background: transparent;
    border-radius: 5px;
    width: 650px;

}
.announce-container{
    background-color: rgba(255, 255, 255, 0.9) !important;
}
.modal4-header{
    border-bottom: #032541;
    padding: 1.5rem;
}
.h3-announce{
    align-self: center;
    width:93%;
    padding: 20px;
    margin-left: 28px;
    position: relative; /* 상대적 위치 설정 */
}

.h3-announce::after {
    content: '';
    position: absolute; /* 절대적 위치 설정으로 .h3-announce 요소 기준으로 배치 */
    left: 0;
    bottom: -2px; /* 실제 보더 두께만큼 조정 필요 */
    width: 100%;
    height: 1px; /* 바닥선의 높이 */
    background: cornflowerblue; /* 바닥선의 색상 */
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2); /* 수평 오프셋, 수직 오프셋, 블러 반경, 색상 */
}
.close4{
    font-size: 16px;
    cursor: pointer;
    border:none;
    /*background: cornflowerblue;*/
    /*border-radius: 3px;*/
    /*border: 1px solid red;*/
}
.mymodal4-button-cont{
    margin-top: -61px;
    float: right;
}
/* 기본 체크박스를 숨깁니다 */
.announce-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background: white; /* 기본 배경을 흰색으로 설정 */
    border: 3px solid #1d5b8d; /* 선택적: 체크박스에 테두리 추가 */
    display: inline-block;
    width: 20px; /* 체크박스 너비 설정 */
    height: 20px; /* 체크박스 높이 설정 */
    position: relative; /* 체크표시를 체크박스 내부에 절대적으로 위치시키기 위함 */
}
/* 체크박스가 선택되지 않았을 때의 스타일 */
.announce-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white; /* 배경을 흰색으로 유지 */
    border-radius: 3px; /* 원하는 경우 둥근 모서리 */
}
/* 체크박스가 선택되었을 때의 스타일 */
.announce-checkbox:checked::before {
    background-color: white; /* 체크표시 배경을 빨간색으로 변경 */
    border-radius: 3px;
}
/* 체크박스가 선택됐을 때의 스타일 */
.announce-checkbox:checked {
    background-color: white; /* 선택됐을 때의 배경색 */
    border-radius: 3px; /* 원하는 경우 둥근 모서리 */
}

/* 선택 사항: 체크 표시 스타일을 지정합니다 */
.announce-checkbox:checked::after {
    content: '✔';
    color: #ff6863; /* 체크 표시 색상 */
    position: absolute;
    left: 50%; /* 체크표시를 수평 중앙에 배치 */
    top: 50%; /* 체크표시를 수직 중앙에 배치 */
    transform: translate(-50%, -50%); /* 정확한 중앙 배치를 위한 조정 */
    font-size: 18px; /* 체크표시 크기 */
    line-height: 20px; /* 체크표시를 적절하게 맞추기 위한 라인 높이 */
}
.announce-label{
    margin: 0px 10px;
}
.mymodal2 {
    display: none;
    /* 모달 초기에는 보이지 않도록 설정 */
    position: fixed;
    /* 화면에 고정 */
    z-index: 1;
    /* 다른 요소들보다 위에 표시 */
    top: 50%;
    /* 화면의 세로 중앙에 모달을 위치시킵니다. */
    left: 50%;
    /* 화면의 가로 중앙에 모달을 위치시킵니다. */
    transform: translate(-50%, -50%);
    /* 모달을 수평 및 수직으로 정확히 화면의 중앙에 위치시킵니다. */
    background: transparent;
    border-radius: 5px;
    width: 650px;

}
.mymodal2-button-cont{
    margin-top: -61px;
    /*float: right;*/
}
.h3-service{
    align-self: center;
}
.close-x{
    font-size: 40px !important;
    align-self: center;
    margin-bottom: 15px;
    color: #ff6863;
}
.close2{
    font-size: 16px;
    cursor: pointer;
    border:none;
}
.p-4 {
    padding: 1rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.w-full {
    width: 100%;
}
.max-h-full {
    max-height: 100%;
}

/*.shadow {*/
/*    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);*/
/*    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);*/
/*    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);*/
/*}*/
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-t {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.justify-between {
    justify-content: space-between;
}
.items-start {
    align-items: flex-start;
}
.flex {
    display: flex;
}
.p-6 {
    padding: 1.5rem;
}
.terms-of-use {
    color: #000;
    margin-top: -31px;
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-t {
    border-top-width: 1px;
}
.rounded-b {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.items-center {
    align-items: center;
}

.mymodal3 {
    display: none;
    /* 모달 초기에는 보이지 않도록 설정 */
    position: fixed;
    /* 화면에 고정 */
    z-index: 1;
    /* 다른 요소들보다 위에 표시 */
    width: 40%;
    /* 모달의 너비를 설정 */
    height: 60%;
    top: 50%;
    /* 화면의 세로 중앙에 모달을 위치시킵니다. */
    left: 50%;
    /* 화면의 가로 중앙에 모달을 위치시킵니다. */
    transform: translate(-50%, -50%);
    /* 모달을 수평 및 수직으로 정확히 화면의 중앙에 위치시킵니다. */
    background: none;
    border-radius: 5px;

}
.modal3-header{
    border-bottom: #032541;
}
.mymodal3-content{
    border-bottom: 1px solid gray;
    position: fixed;
    top: 0;
    left: 73px;
    width: 650px;
    background-color: #ffffff; /* 배경색 설정 */
    z-index: 9999; /* 다른 요소들 위로 올리기 */
    padding: 10px; /* 내부 여백 설정 */
    border-bottom: 1px solid #ccc; /* 하단 테두리 설정 */
    height: 82px;

}
.mymodal3-content-div{
    width: 650px;
    margin-left: 49px;
}

.border-b {
    border-bottom-width: 1px;
}
.h3-policy{
    align-self: center;
}
.close3 {
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.overflow-y-auto {
    overflow-y: auto;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.relative {
    position: relative;
}
.bg-transparent {
    background-color: transparent;
}
.justify-center {
    justify-content: center;
}
.w-8 {
    width: 2rem;
}
.h-8 {
    height: 2rem;
}
.inline-flex {
    display: inline-flex;
}
.ml-auto {
    margin-left: auto;
}
.w-3 {
    width: 0.75rem;
}
.h-3 {
    height: 0.75rem;
}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-none{
    border:none;
}
/* 스크롤바를 숨기고 스크롤 기능은 유지 */
::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* 스크롤바를 숨기고 스크롤 기능은 유지 */
::-webkit-scrollbar-track {
    display: none; /* Chrome, Safari, Opera */
}

/* 스크롤바를 숨기고 스크롤 기능은 유지 */
::-webkit-scrollbar-thumb {
    display: none; /* Chrome, Safari, Opera */
}

/* 스크롤바를 숨기고 스크롤 기능은 유지 */
::-webkit-scrollbar-thumb:hover {
    display: none; /* Chrome, Safari, Opera */
}