@charset "utf-8";

.imgBx01 {
    width: 100%;
    position: relative;
    padding: 0 0 100%;
    text-align: center;
    overflow: hidden;
    margin: auto;
    display: block;
    border-radius: 16px;
    background: #EFF6FD;
}

.imgBx01 > img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.imgBx01 > span >img {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}
  
.imgBx01 > img + span {
    display: none;
}

.imgBx01 > video + span {
    display: none;
}

.instaCont section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.imgBx01:hover img {
    transform: scale(1.1);
    transition: all .5s;
}

.imgBx01 img {
    transition: all .5s;
}

.imgBx01 > video {
    justify-content: center;
    align-items: center;
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    /*object-fit: cover;*/
}

@media screen and (min-width:768px) {



}

@media screen and (min-width:1200px) {



}