@charset "UTF-8";
/* CSS Document */
  /*photogallery*/
  
        .photogallery h2{
            font-weight: normal;
            color: #454545;
            padding-bottom: 5px;
            border-bottom: 1px solid #c7c7c7;
            position: relative;
        }
        .photogallery h2:before{
        position: absolute;
            content: "";
            width: 100px;
            height: 1px;
            bottom: -1px;
            left: 0;
            background: #06c7ea;
        }
        .photogallery{
            display: flex;
            display: -webkit-flex;
            flex-wrap: wrap;
            -webkit-flex-wrap: wrap;
        }
        .photo {
            position: relative;
            width: 31%;
            height: auto;
            margin: 1%;
            overflow: hidden;
        }
        .photo:before {
            content: "";
            display: block;
            padding-top: 100%;
        }
        .inner {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
        }
        .inner img{
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: auto;
            height: 100%;
        }


.photogallery_txt {
	margin:20px auto;
	padding:20px;
	width: 90%;
	background-color:#fff;
    border-radius: 20px;
}

