* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;

}

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-size: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.logo_mt {
    margin-right: 5px;
    color: #131313;
    background-color: #fff;
    padding: 1px 3px;
    border-radius: 2px;
}

.logo_model {
    color: #fff;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #f77062;
    color: #fff;
}

.button:hover {
    background: #4837ff;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: #f77062;
    transition: all 0.3s ease;
}

.navbar__toggle .hamburger{
    display: none;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #131313;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar_toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar_btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: auto;
    }

    .navbar__toggle .hamburger {
        color: #fff;
        display: block;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        font-size: xx-large;
    }

}

/* Galeria section */

.galeria{
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.galeria h1 {
    background-color: #ff8177;
    background-image: linear-gradient(90deg, #f77062 0%, #fc9b91 50%, #f77062 100%);
    background-size: 100%;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 3rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.galeria__container{
    display: flex;
    flex-wrap: wrap;
    width: 94%;
    justify-content: center;
    align-items: center;
}

.box{
    margin: 20px;
    max-width: 500px;
    
    box-shadow: 2px 2px 30px rgb(0, 0, 0);
    border-radius: 10px;
    overflow: hidden;
    position:static;
    left: 50%;
    top: 50%;
}

.slide-img{
    height: 400px;
    position: relative;
}

.slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.lightbox{
    position: fixed;
    display: none;
    background-color: rgb(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0px;
    left: 0;
    padding-bottom: 20px;
    padding-top: 0;
}

.lightbox-content{
    position: relative;
    width: 90%;
    height: 80%;
    margin: auto;
    margin-top: 100px;

    
}

.lightbox-content img {

    width: 100%;
    height: 100%;
    object-fit: contain;

}
.lightbox-prev,
.lightbox-next {
    font-size: xx-large;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 9px;
    top: 45%;
    cursor: pointer;
}

.lightbox-escape{
    font-size: xx-large;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 9px;
    top: 5%;
    right: 5%;
    cursor: pointer;
}

.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}




.footer{
    background: #131313;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
@media screen and (max-width: 600px) {
  .footer{
    flex-direction: column;
  }
}

.footer h3{
    margin: 10px;
    color:#fff;
}

.footer2{
    margin: 0px;
    background: #131313;
}

.footer2 p{
    font-size: 12px;
    padding: 10px;
    color:#fff;
}