html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* image CSS*/



.circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

    .circle:after {
        content: "";
        width: 118px;
        height: 118px;
        display: block;
        position: absolute;
        background: var(--bg-color);
        border-radius: 50%;
        transition: opacity 0.3s ease-out;
    }

    .circle svg {
        z-index: 10000;
        transform: translateZ(0);
    }

.overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 70px;
    left: 50px;
    z-index: 0;
    transition: transform 0.3s ease-out;
}


.photo-gallery {
    color: #313437;
    background-color: #fff;
}

    .photo-gallery p {
        color: #7d8285;
    }

.lightboxOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    cursor: pointer;
}

.lightboxContent {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    max-height: 80vh;
    text-align: center;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .lightboxContent img {
        max-width: 100%;
        max-height: 100%;
        cursor: default;
        object-fit: contain;
        padding: 20px;
        box-sizing: border-box;
    }

.photo-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}

@media (max-width:767px) {
    .photo-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}

.photo-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px;
}

    .photo-gallery .intro p {
        margin-bottom: 0;
    }

.photo-gallery .photos {
    padding-bottom: 20px;
}

.photo-gallery .item {
    padding-bottom: 30px;
}

    .photo-gallery .item:hover img {
        transform: scale(1.50); /* Resim boyutunu büyütme */
        transition: transform 0.6s ease; /* Geçiş efekti */
    }

.pbmit-heading-subheading {
    position: relative;
    z-index: 1;
    margin-bottom: 55px;
}

    .pbmit-heading-subheading .pbmit-subtitle {
        margin-bottom: 5px;
        position: relative;
        display: inline-block;
        padding: 0 10px;
        font-family: Mulish,sans-serif;
        font-weight: 700;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 2px;
        color: var(--pbmit-global-color);
        text-transform: uppercase;
        font-style: normal;
    }

        .pbmit-heading-subheading .pbmit-subtitle:before {
            content: "";
            position: absolute;
            bottom: 5px;
            left: 0px;
            width: 7px;
            height: 1px;
            background-color: var(--pbmit-global-color);
        }

        .pbmit-heading-subheading .pbmit-subtitle:after {
            content: "";
            position: absolute;
            bottom: 5px;
            right: 0px;
            width: 7px;
            height: 1px;
            background-color: var(--pbmit-global-color);
        }

    .pbmit-heading-subheading .pbmit-title {
        font-family: Nunito,sans-serif;
        font-weight: 800;
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 0px;
        color: var(--pbmit-heading-color);
        text-transform: none;
        font-style: normal;
        margin-bottom: 0;
    }

    .pbmit-heading-subheading.text-left {
        margin-bottom: 30px;
    }