body{
    overflow-x: hidden;
}
.profile_banner.p-0 {
    position: relative;
}
.profile_upload{
    margin-top: -60px;
}
.profile-pic {
    width: 130px;
    max-height: 130px;
    display: inline-block;
    min-height: 130px;
}
.userName {
    position: absolute;
    left: 160px;
    color: #fff;
    top: 10px;
}
.small-12.medium-2.large-2.columns {
    position: relative;
}
.profile_upload .p-image{
    display: none;
}
.file-upload {
    display: none;
}
.profile_upload_popup {
    position: relative;
    max-width: 128px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.profile_upload_popup  p{
    margin-top: 10px;
}
.circle {
    border-radius: 100% !important;
    text-align: center;
    overflow: hidden;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    top: 0;
    z-index: 111;
}
img {
    max-width: 100%;
    height: auto;
}
.p-image {
    position: absolute;
    bottom: 40px;
    left: 90px;
    color: #666666;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    z-index: 111;
}
.p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
  font-size: 1.2em;
}

.upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: #999;
}
#UploadModal .form-group {
    margin-bottom: 10px;
}
#UploadModal .form-group label{
    display: block;
}
.UploadModalForm {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}
#UploadModal .form-group input {
    width: 100%;
    padding: 4px 10px;
    border-width: 2px;
    border-color: #000;
    border-radius: 3px;
}
#UploadModal .modal-footer {
    justify-content: center;
}
#UploadModal .modal-footer .btn {
    border-radius: 20px;
    border-width: 2px;
    border-color: #000;
    padding: 3px 20px;
}
#UploadModal .modal-footer .btn.cSubmit{
    background-color: #000;
    color: #fff;
}
.leftSideProfile form{
    position: relative;
}
.leftSideProfile form i {
    position: absolute;
    top: 10px;
    left: 10px;
}
.leftSideProfile form input {
    padding-left: 40px;
}
.blog_searchArrow {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding-left: 10px;
    display: block;
    position: relative;
}
.blog_searchArrow:hover{
    color: #000;
}
.blog_searchArrow:before {
    position: absolute;
    content: "";
    border-color: transparent transparent transparent #000;
    border-width: 7px;
    border-style: solid;
    left: 0;
    top: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog_searchArrow[aria-expanded="true"]:before {
    transform: rotate(90deg);
    left: -6px;
    top: 8px;
}
.blog_searchBox{
    margin-bottom: 30px;
}
.blog_searchBoxOuter {
    overflow: auto;
    height: 300px;
}
.blog_photoGallery {
    display: flex;
    flex-wrap: wrap;
    /* Compensate for excess margin on outer gallery flex items */
    margin: -1rem -1rem;
}

.gallery-item {
    flex: 1 0 120px;
    margin: 1rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.gallery-item:last-child:before{
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #000;
    opacity: .7;
}
.gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.gallery-image:hover {
    transform: scale(1.15);
}
.gallery-item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
@supports (display: grid) {
    .blog_photoGallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1px));
        grid-gap: 10px;
    }

    .blog_photoGallery,
    .gallery-item {
        margin: 0;
    }
}
.rightSidePinBlog{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.rightSidePinBlog i {
    position: absolute;
    color: #fff;
    transform: rotate(45deg);
    right: 10px;
    top: 10px;
    z-index: 1;
}
.rightSidePinBlog p {
    margin-bottom: 0;
    position: absolute;
    color: #fff;
    padding: 10px 15px;
    bottom: 0;
    font-weight: 600;
    font-size: 20px;
    z-index: 1;
}
.rightSidePinBlog img {
    width: 100%;
    max-height: 150px;
}
.rightSidePinBlog:before{
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #000;
    opacity: .7;
}
.rightSidePinBlogText h3{
    border-bottom:2px solid #000;
}