.portfolio-section-1 {
    width: 100%;
    height: auto;
    background-color: #f2f6fa;
    padding-top: 80px;
    padding-bottom: 100px;
}
.portfolio-section-1 .portfolio-section-1-title {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 3em;
}
.portfolio-section-1 .portfolio-section-1-description {
    text-align: center;
    font-family: "Roboto", sans-serif;
    color: #575757;
    font-size: 1.3em;
    line-height: 1.6em;
}
.portfolio-section-1 .portfolio-section-1-link {
    text-align: center;
    color: #054063;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.5px;
    font-weight: bold;
    text-decoration: underline;
}
.portfolio-photos-buttons {
    display: flex;
    margin: 0;
    position: sticky;
    margin: 0 auto;
    margin-bottom: 30px;
    top: 150px;
    z-index: 997;
    background: white;
    width: auto;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    flex-wrap: nowrap;
}
.portfolio-photos-buttons .portfolio-photos-button {
    width: 190px;
    line-height: 45px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    border: 1px solid #00a0e0;
    letter-spacing: 0.5px;
    font-size: 1.6em;
    position: relative;
    cursor: pointer;
}
.portfolio-photos-buttons .portfolio-photos-button:nth-child(1) {
    margin-left: auto;
}
.portfolio-photos-buttons .portfolio-photos-button:nth-child(2) {
    margin-left: 30px;
    margin-right: 30px;
}
.portfolio-photos-buttons .portfolio-photos-button:nth-child(3) {
    margin-right: auto;
}
.portfolio-photos-buttons .portfolio-photos-button.active {
    background-color: #00a0e0;
    color: #fff;
}
.portfolio-photos-buttons .portfolio-photos-button.active .triangle {
    display: inline-block;
}
.portfolio-photos-buttons .portfolio-photos-button .triangle {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35px;
    width: 0px;
    height: 0px;
    border: 20px transparent solid;
    border-top: 20px solid #00a0e0;
}
.portfolio-photos {
    display: none;
}
.portfolio-photos.active {
    display: block;
}
.portfolio-photos .portfolio-photos-col {
    padding: 0;
}
.portfolio-photos .portfolio-photo {
    padding: 2px;
    cursor: pointer;
}
.portfolio-photo {
    position: relative;
}
.portfolio-photo .design-business-name {
    display: none;
    transition: 300ms ease all;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.fancybox-caption__body {
    font-size: 25px;
}
.fancybox-caption {
    background: linear-gradient(
        0deg,
        rgb(0 161 223) 0,
        #00a1df52 50%,
        rgb(0 161 223 / 15%) 65%,
        rgb(0 161 223 / 8%) 75.5%,
        rgb(0 161 223 / 4%) 82.85%,
        rgb(0 161 223 / 2%) 88%,
        transparent
    ) !important;
}
.portfolio-photo img {
    position: relative;
    -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.portfolio-photo:hover {
    cursor: pointer;
}
.portfolio-photo:hover img {
    -webkit-filter: grayscale(100%) blur(3px);
    filter: grayscale(100%) blur(3px);
}
.portfolio-photo:hover .design-business-name {
    display: block;
}
.portfolio-photos-buttons a {
    color: black;
}

@media (max-width: 992px) {
    .portfolio-photos-buttons {
        flex-direction: column;
        gap: 10px;
        top: 130px;
        font-size: 12px;
    }
    .portfolio-photos-buttons .portfolio-photos-button {
        line-height: 25px;
    }
}
