/* -------main------- */
.main{
    position: relative;
    z-index: 1000;
    color: var(--text-color);
    margin-bottom: 100px;
}
.info__row{
    width:80%;
    height:300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6rem;
    box-shadow: 0 0 30px #00000036;
    /*padding: 10px 20px;*/
    margin: 3rem auto;
    background-color:var(--white-color);
}
.text-title-app{
    width:80%;
    margin:auto;
}

.text-title-app h1{
    color: var(--primary-color);
    font-size: 2.8rem;
}

.text-title-app p{
    color: var(--secondry-color);
    font-size: 1.5rem;
    text-align: justify;
    padding-right:1rem;
    margin-top: 3%;
    word-spacing:.5rem;
}
.menu-app{
    max-width: 90%;
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    margin-top: 5%;
    background-color: var(--white-color);
}

.menu-app1{
    border: 5px solid #f7931e;
    border-radius: 50px;
    justify-content: flex-start;
}


.menu-app-img{
    width: 8%;
    position: relative;
}

.menu-app-img1{
    width:110%;
    position: relative;
    top: 4px;
}

.menu-app-img1-after{
    transition: all .5s;
    border-radius: 30%;

}

.under-menu{
    flex-direction: row;
    width: 85%;
    display:none;
    position: relative;
}

.under-menu-after{
    display: flex;
}

.under-menu-ul{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.under-menu li{
    color: #707070;
    margin-right: 7%;
    white-space: nowrap;
    width: 20%;
}

.under-menu-a{
    font-size: 1.2rem;
    color: var(--text-color);
    z-index: 999;
    position: relative;
}

.submenu{
    width:30%;
    height:50rem;
    border:5px solid #f7931e;
    border-radius: 50px;
    position: absolute;
    top: -136%;
    right: -10%;
    display: none;
}


.filters{
    display: flex;
    flex-direction: column;
    margin-top: 50%;
    align-items: center;
    justify-content: start;
    width:100%;
    height: inherit;
}

.submenu li{
    margin-top: 10%;
    width:inherit;
    padding:1rem;
    text-align: center;
}

.filter-item{
    font-size: 1.2rem;
    color: var(--text-color);
}


.title-app-after{
    display: none;
}



.title-app{
    max-width: 85%;
    margin-inline: auto;
    position: relative;
}

.title-app-img{
    width: 95%;
}
.reserv-bosh.active {
    display:flex;
}

.filter-item.active {
    font-weight: bold;
    color: #f7931e;
}

.reserv-bosh{
    width: 65%;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    /*display: none;*/
    /*flex-direction: column;*/
    margin-top: 5rem;
    margin-right: 33%;
}

.reserv-bosh h1{
    text-align: center;
    font-size: 400%;
    color: #707070;
    margin-bottom: 2%;
}

.place-details{
    width:100%;
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    display:none;
}
.details-img1{
    width:200px;
    height: 200px;
    border-radius: 70px;
    object-fit: cover;
}
.details__detail{
    display:flex;
    justify-content: space-between;
    opacity: 0.5;
    width: 80%;
}
.details__detail h2{
    font-size: 1.2rem;
}
.place-details .des{
    color: var(--primary-color);
    font-size:0.9rem;
    width: 83%;
    text-align: center;
}
.place-details p{
    color: var(--text-color);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    /*width: 60%;*/
    width: 83%;
    height: 30px;
}

.place-share-other {
    /*width: 60%;*/
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    width: 74%;
    margin-right: 1.5rem;
}

.place-share-other p{
    color: var(--primary-color);
    margin-right: 0.3rem;
    margin-left: 1rem;
    margin-top:0;
}

.place-share-other img{
    width: 20px;
    height: 20px;
}

/****** responsive *********/
@media screen and (max-width:1200px){
    .submenu {
        top: -115%;
        right: -11%;
    }
    .details-img1 {
        width: 170px;
        height: 170px;
    }
    .place-details p {
        font-size: 1rem;
        width: 83%;
        height: 30px;
    }
    .place-details .des {
        width: 83%;
    }
    .place-share-other {
        width: 83%;
        margin-right: 1rem;
    }
}

@media screen and (max-width:992px){
    .menu-app-img {
        width: 12%;
    }
    .menu-app-img1 {
        width: 100%;
    }
    .info__row {
        margin: auto;
    }
    .reserv-bosh {
        width: 70%;
        grid-template-columns: repeat(2, 1fr);
    }
    .details-img1 {
        width: 150px;
        height: 150px;
        border-radius: 10px;
        margin: auto;
        display: block;
    }
    .details__detail {
        margin-right: 1rem;
    }
    .place-details p {
        width: 100%;
    }
    .place-details .des {
        width: 100%;
    }
    .place-share-other {
        width:74%;
        margin-right: 3rem;
    }
    .submenu {
        top: -119%;
        right: -15%;
        width:38%;
    }
}

@media screen and (max-width:768px) {
    .text-title-app h1 {
        font-size: 2.2rem;
    }
    .text-title-app p {
        font-size: 1.2rem;
    }
    .info__row {
        width: 90%;
    }
    .under-menu li {
        padding: 2rem 0;
        margin-right:4%;
    }
    .submenu {
        top: -7%;
        right: -16%;
        width:33%;
    }
    .submenu li {
        margin-top: 3rem;
        padding: 0.5rem 1rem !important;
    }
    .reserv-bosh {
        margin-right: 30%;
    }
    .filter-item {
        font-size: 1.1rem;
    }
    .details-img1 {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width:577px){
    .filter-item {
        font-size: 1rem;
    }
}

@media screen and (max-width:500px){
    .reserv-bosh {
        width: 70%;
        grid-template-columns: repeat(1, 1fr);
    }
    .menu-app {
        max-width: 95%;
    }
    .menu-app1 {
        border: 3px solid #f7931e;
    }
    .submenu {
        top: -4%;
        right: -16%;
        width: 37%;
        border: 3px solid #f7931e;
    }
    .under-menu-a {
        font-size: 1rem;
    }
    .under-menu li {
        padding: 2rem 0;
        margin-right: 2%;
    }
    .reserv-bosh {
        width: 60%;
        margin-top: 3rem;
    }
}

@media screen and (max-width:400px) {
    .submenu {
        top: -5%;
    }
    .text-title-app h1 {
        text-align: center;
        font-size: 1.5rem;
    }
    .text-title-app p {
        font-size: 1.1rem;
    }
    .menu-app1 {
        flex-direction: column;
        height: 550px;
    }
    .under-menu-ul {
        display: flex;
        flex-direction: column;
    }
    .under-menu {
        width: 90%;
    }
    .filters {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: unset;
    }
    .submenu {
        right: unset;
        left: 0;
        border: unset;
        width: 50%;
    }
    .reserv-bosh {
        width: 100%;
        margin: auto;
    }
    .place-share-other {
        width: 48%;
        margin: auto;
    }
    .place-details {
        border-bottom: 1px solid lightgray;
        padding-bottom: 1rem;
        margin: 2rem auto;
        width: 90%;
    }
    .info__row {
        margin: 3rem auto;
    }
}

