body {
    width: 100%;
    height: 100% !important;
    margin: 0;
    font-family: "Libre Baskerville", serif;
}
* {
    box-sizing: border-box;
}

.home {
    display: flex;
    height: 100vh;
}

.home-right,
.home-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 100px;
}
.home-left {
    background: linear-gradient(to right,#003e5c, #003e5c 10%, #F2F2F2 0, #F2F2F2);
    padding-left: 100px;
}

.home-left > *:not(img) {
    width: 378px;
    max-width: 100%;
    text-align: left;
}

.home-left img {
    margin-bottom: 40px;
    max-width: 100%;
}
.home-left .title {
    margin-bottom: 20px;
    color: #003e5c;
    font-size: 22px;
    font-weight: bold;
    margin-top: 0;
}
.home-left p, .home-left h2 {
    margin-top: 0;
    font-size: 14px;
    font-weight: 400;
}

.home-left p.txt_select {
    position: relative;
}
.home-left p.txt_select:after {
    content: "";
    background: url("/modules/dmumultihome/views/img/arrow.svg") no-repeat center;
    width: 100px;
    height: 30px;
    background-size: contain;
    position: absolute;
    bottom: -100px;
    right: 0;
}

.home-left .mail_problem {
    position:absolute;
    bottom:30px;
}
.home-left .mail_problem a {
    color:#003e5c;
}

.home-right {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: #003e5c;
}

.shop-card {
    background-color: #ffffff;
    border-radius: 0 50px 50px 50px;
    display: flex;
    overflow: hidden;
    align-items: center;
    height: 27%;
    max-width: 100%;
    width: 650px;
    cursor: pointer;
    margin: 15px 0;
    opacity: 1;
    transition: opacity 100ms ease-in-out;
}
.shop-card .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-grow: 1;
    position: relative;
}

.shop-card .logo img {
    max-width: 100%;
    height: auto;
}
.shop-card a {
    position: relative;
}
.shop-card:first-child .logo {
    padding: 30px;
}
.shop-card .image {
    max-width: 55%;
    min-width: 55%;
    height: 100%;
}
.shop-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-card:hover {
    position: relative;
}

.shop-card:hover:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}
.shop-card:first-child:hover:before {
    background-color: #ef7d00;
}

.shop-card:nth-child(2):hover:before {
    background-color: #009bb2;
}

.shop-card:nth-child(3):hover:before {
    background-color: #f0c505;
}

@media (max-width: 1400px) {
    .shop-card {
        height: 25%;
    }
}

@media (max-width: 1200px) {
    .home-right,
    .home-left {
        padding: 0 50px;
    }
    .home-right {
        justify-content: center;
    }
    .shop-card {
        height: 20%;
    }
}

@media (max-width: 991px) {
    .home-right,
    .home-left {
        padding: 0 30px;
    }
    .home-left {
        padding-left: 75px;
    }
}

@media (max-width: 768px) {
    .home {
        flex-wrap: wrap;
    }
    .home-left,
    .home-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 50px 15px;
    }
    .home-right {
        height: fit-content;
    }
    .home-left {
        background: linear-gradient(#003e5c, #003e5c 10%, #F2F2F2 0, #F2F2F2);
        padding: 100px 15px 15px 15px;
    }
    .home-left p:last-child:after {
        bottom: -50px;
    }
    .shop-card {
        height: 250px;
    }
    .home-left .mail_problem {
        position:relative;
        margin-top:150px;
    }
}

@media (max-width: 576px) {
    .shop-card {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .shop-card {
        height: 150px;
    }
}
