﻿.customer-of-site {
    margin: 80px auto;
    max-width: 1200px;
    padding: 10px;
}

.top-of-customer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.img-of-customer {
    width: 100%;
}

    .img-of-customer > img {
        width: 100%;
        max-width: 500px;
        margin: auto;
        display: block;
    }

.text-of-customer {
    width: 100%;
    margin: 20px auto;
}

    .text-of-customer > h1 {
        font-size: 22px;
    }

    .text-of-customer > p {
        font-size: 15px;
        margin: 20px auto;
        text-align: justify;
    }

    .text-of-customer > div {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        .text-of-customer > div > a {
            margin: 10px auto;
            font-size: 15px;
            text-align: center;
            padding: 4px;
            width: 200px;
            color: #FF165D;
            border-radius: 4px;
            transition: background-color 1s, color 1s, border 1s;
            cursor: pointer;
            background-color: white;
            border: 1px solid #FF165D;
        }

            .text-of-customer > div > a:hover {
                background-color: #FF165D;
                color: white;
                border: 1px solid #FF165D;
            }

.products-of-customer {
}

    .products-of-customer > h1 {
        font-size: 18px;
        text-align: center;
        margin: 30px auto;
        background-color: #ececec;
        padding: 5px 0;
    }

.pl-of-customer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid lightgray;
}

.btn-of-l-c {
    display: block;
    margin: 5px;
    font-size: 15px;
    text-align: center;
    color: #FF165D;
    border-radius: 4px;
    transition: background-color 1s, color 1s, border, 1s;
    background-color: white;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #FF165D;
}

    .btn-of-l-c:hover {
        background-color: #FF165D !important;
        color: white !important;
        border: 1px solid #FF165D !important;
    }

.pb-of-customer {
    display: none;
    border-bottom: 1px solid lightgray;
}

    .pb-of-customer > h2 {
        margin: 20px 0 10px 0;
        font-size: 18px;
    }

    .pb-of-customer > p {
        font-size: 15px;
        text-align: justify;
        line-height: 25px;
    }

    .pb-of-customer > h3 {
        color: #00609C;
        font-size: 17px;
        margin: 30px 10px 0 0;
    }

.facilities-of-product {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
    justify-content: space-between;
}

    .facilities-of-product > p {
        width: 100%;
        font-weight: normal;
        display: block;
        font-size: 15px;
        background-color: #ececec;
        padding: 4px 10px;
        margin: 5px;
        border-radius: 2px;
        color: #00609C;
    }

        .facilities-of-product > p * {
            font-weight: normal;
        }

.pi-of-customer {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.screenshot-of-customer {
    width: 95px;
    display: flex;
    margin: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px 1px lightgray;
    transition: box-shadow 0.5s;
    border-radius: 10px;
    padding-top: 5px;
}

    .screenshot-of-customer:hover {
        box-shadow: 0 0 10px 1px #FF165D4F;
    }

    .screenshot-of-customer > img {
        width: 100%;
    }


.samples-of-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.link-of-sample {
    display: flex;
    cursor: pointer;
    position: relative;
    width: 154px;
    height: 154px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px 2px lightgray;
}

    .link-of-sample > img {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .link-of-sample > h3 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: end;
        color: white;
        height: 100%;
        background-color: transparent;
        transition: background-color 1s;
    }


.title-of-sample {
    background-color: #013165d9;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    font-size: 15px;
    transition: padding 1s;
    font-weight: normal;
    display: block;
    width: inherit;
    margin: 5px;
}

    .title-of-sample > lable {
        font-size: 13px;
    }

@media only screen and (min-width: 992px) {
    .screenshot-of-customer {
        width: 200px;
    }

    .customer-of-site {
        margin: 100px auto;
    }

    .img-of-customer {
        width: 30%;
    }

    .text-of-customer {
        width: 65%;
    }

        .text-of-customer > div {
            justify-content: start;
            text-align: left;
            direction: ltr;
        }

            .text-of-customer > div > a {
                margin: 10px 10px 0 0;
            }

    .screenshot-of-customer {
        padding-top: 12px;
    }

    .facilities-of-product > p {
        width: 46%;
    }


    .link-of-sample {
        width: 230px;
        height: 230px;
    }

    .title-of-sample {
        font-size: 17px;
        font-weight: bold;
        padding: 15px 5px;
        margin: 10px;
    }

    .link-of-sample > h3:hover {
        background-color: #00609c4d;
    }

        .link-of-sample > h3:hover .title-of-sample {
            padding: 40px 5px;
        }
}
