#mainNav{
    background-color: var(--bs-dark);
}
body{
    margin-top: 95px;
}

.sv-btn{
    margin: 20px auto;
    display: flex;
}

.sv-btn a{
    margin: 0 auto;
}
.sv-items>.sv-tittle{
    background-color: var(--bs-primary);
    line-height: 3rem;
    margin-bottom: 20px;
    padding: 1rem;
}
.sv-items{
    margin-bottom: 70px;
}


/* Q&A page */


.faq-label {
    cursor: pointer;
    width: 100%;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 19px;
    background: #d0edf0;
    box-shadow:  5px 5px 10px #b7d1d3,
                -5px -5px 10px #e9ffff;
}

.faq-label-text {
    color: #365A5E;

}

.faq-label-icon {
    padding: 2px 3px;
    background: #d0edf0;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

.material-icons {
    color: #365A5E;
    transition: 0.3s ease;
}

.faq-answer {
    transition: 0.3s ease;
    margin-top: 15px;
    height: 0;
    border-radius: 6px;
    color: rgba(127, 121, 121, 1);
    overflow: hidden;

}

.faq-answer-content {
    padding: 10px 0 10px 15px;
  

}

.active {

    background: #FFFFFF;
    border: 1px solid #C7C4C4;
    
    height: auto;
    margin-bottom: 25px;

}
.rotate{
    transform: rotate(180deg)
}

/* ----------------------------------Gallery---------------------------- */
.intro{
    margin-bottom: 20px;
}
.btn-instagram{
    
    color: white;
    margin: 0 auto;
    margin-top: 60px;
}
.btn-instagram p {
    margin: 0;
}
.btn-instagram a{
    background: linear-gradient(#e66465, #9198e5);
    color: white;
    
}
.btn-instagram a:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.note{
    font-size: 1.2rem;
    
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}
.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
    overflow: hidden;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item>img{
    transition: transform .5s ease;
}
.gallery-item>img:hover{
    transform: scale(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
    padding: 10% 0 0;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
    
}
.lightbox-content img {
    border-radius: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .lightbox{
        padding: 20% 0 0;
    }
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
    .lightbox-content img {
        object-fit: contain;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

