mcontact::after {
    content: attr(data-domain);
    text-decoration: none important;
  }

mcontact::before {
    content: attr(data-user) "\0040";
    text-decoration: none !important;
  }


div.portfolio-item {
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#portfolio .portfolio-item .portfolio-caption {
    flex: 1;
}

a.portfolio-link {
    text-decoration: none;
}


header.masthead {
    background-color: #777;
    background-blend-mode: multiply;
}

#mainNav {
    background-color: rgba(0,0,0,0.7);
}

.ourblue {
    color: #08C6FD
}

.olviblue {
    color: #08C6FD
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> GLightBox */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery a {
    flex: 1;
    margin: 10px;
    min-width: calc(33.33% - 20px);
    /*
    min-width: 25vw;
    min-height: 18vw;
    */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}


.gallery a::before {
    content: "";
    display: block;
    padding-top: 66.7%; /* Співвідношення сторін 3:2 */
}

.gallery a > img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Змінено з "contain" */
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s, filter 0.3s;
}

.gallery a:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}


.gslide-image img {
    object-fit: contain !important;
}

/* GLightBox <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */



