#page {
    min-height: 100svh;
    position: relative;
    overflow-x: hidden;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
}
#main-content{
    flex: 1;
}
::-webkit-scrollbar {
    width: 0;
}
h1{
    margin-top: 20px;
    margin-bottom: 30px;
    color: #101010;
    font-size: 37px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.product-flex{
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    justify-content: space-between;
    padding-bottom: 30px;
}

.single-post-img-bg{
    width: 470px;
    height: 470px;
    padding: 30px;
    background: #FFF;
    border-radius: 10px;
    text-align: center;
}
.single-post-img-bg img{
    width: auto;
    height: -webkit-fill-available;
}

.table-title{
    margin-bottom: 20px;
    color: #101010;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.desc-title{
    margin-top: 30px;
    margin-bottom: 20px;
    color: #101010;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.desc-place p{
    margin-bottom: 20px;
    color: #101010;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
th{
    text-align: left;
    color: #101010;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 30px;
    padding: 5px;
    padding-right: 30px;
}
td{
    text-align: right;
    color: rgba(0, 91, 255, 1);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 5px;
}


.product-flex .right{
    width: 750px;
}
.product-flex .left{
    width: 500px;
}
.swiper-slide{
    text-align: center;
    background: #FFF;
    border-radius: 15px;
    height: 500px;
}
.swiper-slide img{
    width: min-content;
    height: -webkit-fill-available;
    max-height: 500px;
    margin-left: auto;
    margin-right: auto;
}
.table-2{
    margin-top: 30px;
}
.table-2 th{
    border: 1px solid #dddddd;
    text-align: center;
    padding: 5px;
    background-color: #9c9c9c;
    color: #FFF;
}
.table-2 td{
    border: 1px solid #dddddd;
    text-align: center;
    padding: 5px;
    color: #000;
}
.grey-row{background: #eaeaea;}
.white-row{background: #FFFFFF;}

@media (max-width: 1199px){}
@media(max-width:959px){
    .product-flex {
        display: flex;
        flex-direction: column;
        column-gap: 30px;
        justify-content: space-between;
        padding-bottom: 30px;
        align-items: center;
        row-gap: 20px;
    }
    .product-flex .right {
        width: 700px;
    }
}
@media(max-width:719px){
    .product-flex .right {
        width: 480px;
    }
    .product-flex .left {
        width: 480px;
    }
}
@media(max-width:479px){
    .product-flex .right {
        width: 300px;
    }
    .product-flex .left {
        width: 300px;
    }
    .single-post-img-bg {
        width: 300px;
        height: 300px;
        padding: 5px;
    }
    h1 {font-size: 20px;}
    .table-title {
        margin-bottom: 15px;
        font-size: 25px;
    }
    .swiper-slide {
        height: 300px;
    }
}