/* breadcrumb area in all inner pages */
.breadcrumb-area {
    position: relative;
    background-image: url('../img/bestop11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcrumb-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-content li {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    display: inline;
    margin-right: 5px;
    text-transform: capitalize;
}


















.mansory-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 80px 80px 80px;
    position: relative;
}

.gallery-header {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    align-items: center;
    padding-top: 40px;
}

.mansory-gallery .column {
    flex: 25%;
}

.mansory-gallery .column img {
    border: 0.5rem solid #fff;
    border-radius: 1.5rem;
    box-sizing: border-box;
    display: block;
    width: 100%;
}



@media (max-width: 992px) {
    .mansory-gallery {
        padding: 40px 60px 80px 60px;
    }


}



@media (max-width: 768px) {
    .mansory-gallery .column {
        flex: 50%;
    }

    .mansory-gallery {
        padding: 40px 40px 60px 40px;
    }


}

@media (max-width: 500px) {
    .mansory-gallery .column {
        flex: 100%;
    }

    .mansory-gallery {
        padding: 40px 20px 40px 20px;
    }

}












.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 1rem;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
}















/* cta section */
.cta-container {
    padding: 40px;



    background: linear-gradient(to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.cta-msg p {
    font-size: 36px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}


.cta-btn a {
    padding: 15px 23px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #25D366;
    color: white;
    transition: all 0.2s ease;
}


.cta-btn:hover a {
    transform: scale(1.03);
}


.cta-btn i {
    color: #ffffff;
    margin-right: 15px;
    font-size: 20px;
    margin-right: 15px;
    font-size: 20px;
    animation: quickJerkShake 0.3s infinite ease-in-out;

}



@keyframes quickJerkShake {
    0% {
        transform: rotate(0 deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-15deg);
    }

    80% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0 deg);
    }


}