.photo-section{
    background-image: url(../contents/news-bg.png);
    padding: 30px 30px;
    background-size: 100%;
    padding-bottom: 200px;
}

.photo-section-title, .photo-section-description {
    font-size: 40px;
    color: white;
    text-align: center;
    white-space: pre-line;
}
.photo-section-title{
    font-size: 40px;
}
.photo-section-description{
    font-size: 20px;
}
.photo-section-image{
    width: 95%;
    border-radius: 10px;
    transition: 1s;
}
.photo-section-image:hover{
    background-size: 120% !important;
    background-position-x: -7vw;
    transition: 1s;
}
.photo-row{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.photo-column{
    width: 50%;
}
.photo-title{
    width: 90%;
    margin-left: 5%;
    margin-bottom: 5px;
    color: #3e9ba2;
}
.photo-description{
    width: 90%;
    margin-left: 5%;
    margin-top: 5px;
}

.news-1, .news-2, .news-3, .news-4{
    background-size: 100% !important;
}
.news-1{
    background: url(../contents/news1.jpg);
}
.news-2{
    background: url(../contents/news2.jpg);
}
.news-3{
    background: url(../contents/news3.jpg);
}
.news-4{
    background: url(../contents/news4.jpg);
}

.price-image{
    width: 100vw;
    margin-top: -100px;
}


@media only screen and (max-width: 500px) {
    .photo-section-title {
        font-size: 24px;
    }
    .photo-section-description {
        font-size: 14px;
    }
    .photo-row {
        flex-direction: column;
    }
    .photo-section {
        padding: 30px 10px;
        padding-bottom: 150px;
    }
    .photo-column {
        width: 100%;
    }
}