﻿.organization-website {
    width: 100%;
    float:left;
    padding:30px 0;
}

    .organization-website .item {
        width: 100%;
        height: 150px;
        border: 1px solid #ddd;
        margin: 20px 0;
        border-radius: 20px;
        transition: all .5s;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .organization-website .item img {
            width: 80px;
            margin: 20px 0;
        }

        .organization-website .item:hover {
            transform: scale(1.01)
        }
/*//////////////////////////////////details*/
.details {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/*////////////////////////*/
.product-image {
    width: 100%;
    min-height: 500px;
    height: 100%;
    padding-top: 50px;
}

    .product-image .active-image {
        width: 100%;
        height: 400px;
        background-color: blue;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: all 0.5s;
    }


    .product-image .images-tiny {
        width: 100%;
        min-height: 200px;
        margin-top: 10px;
        cursor: pointer;
    }

        .product-image .images-tiny .swiper {
            height: 200px;
        }

            .product-image .images-tiny .swiper .swiper-slide {
                width: 150px;
                height: 100px;
            }

        .product-image .images-tiny .item-image {
            max-width: 150px;
            height: 100px;
            transition: all 0.5s;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }


            .product-image .images-tiny .item-image .images img,
            .product-template-related img {
                width: 100%;
                height: 100%;
            }