@media(min-width: 769px){
    .hamburger {
        display: none;
    }

    .body__header {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 99;
        background-color: rgba(255, 255, 255, 0.87);
        border-bottom: 2px solid rgba(211, 211, 211, 0.904);
    }
    

.header__fixed {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
}

    .body__header header {
        width: 80%;
        padding: 10px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .header__nav ul {
        
        margin-bottom: 10px;
    }

    .header__nav ul li{
        display: inline;
    }

    .header__nav ul li + li {
        margin-left: 30px;
    }

    .body__banner {
        position: relative;
    }

    .banner__content {
        min-width: 450px;
        position: absolute;
        top: 120px;
        left: 20px;
    }

    .mobile__banner {
        display: none;
    }

    .desktop__banner img {
        max-height: 100vh;
    }
    
    .wrap__offer header {
    }

    
    .section__offer footer {
    text-align: center;
    }

    .mobile__gallery {
        display: none;
    }

    .section__fixed {
        /* display:none; */
    }

    

    .section__query {
        position: fixed;
        top: 200px;
        right:-60px;
        text-align: center;
        transform: rotate(270deg);
    }

    .section__query a {
        padding: 0px 30px;
        display: inline-block;
        font-size: 20px;
        background-color: #ce6f04;
        color: #fff;
        line-height: 60px;
        transition: 300ms;
        border-radius: 10px 10px 0px 0;
    }
    

    .section__query a:hover {
        background-color:#a3a000;
    }

    .section__whatsapp {
        position: fixed;
        bottom: 10px;
        right: 10px;
        text-align: center;
    }

    .section__whatsapp a {
        width: 60px;
        height: 60px;
        display: inline-block;
        font-size: 30px;
        background-color: green;
        color: #fff;
        border-radius: 50%;
        line-height: 60px;
        transition: 300ms;
    }

    .section__whatsapp a:hover {
        background-color: rgb(2, 201, 2);
    }
}

@media(max-width: 768px){
    .hamburger {
        position: absolute;
        top: 30px;
        right: 2%;
    }

    .header__brand {
        padding: 10px 0;
    }

    .header__nav {
        padding: 4px 0;
        text-align: center;
        display: none;
    }

    .nav__link {
        display: block;
        background-color: #e8e8e8;
        margin-bottom: 1px;
        padding: 4px 0;
    }

    .desktop__banner {
        display: none;
    }

    .wrap__container {
        width: 96%;
    }

    .wrap__offer .wrap__article { 
        margin: 0 auto;
    }

    .desktop__gallery {
        display: none;
    }

    .amenity__name {
        padding-bottom: 40px;
    }

    .body__footer {
        padding-bottom: 40px;
    }
    

    .section__fixed {
        width: 100%;
        position: fixed;
        bottom: 0;
    }

    .section__fixed ul {
        text-align: center;
        display: flex;
        justify-content: space-between;
    }

    .section__fixed ul li{
        width: 50%;
        background-color:  #11132c;
    }

    .section__fixed ul li:first-child {
        border-right: 1px solid #5c5c5c;
    }

    .section__fixed ul li a {
        display: block;
        padding: 10px 0;
        color: #fff;
    }

    .fixed__wrap {
        height: 40px;
        position: fixed;
        bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        text-align: center;
    }
    .fixed__wrap > div {
        width: 100%;
    }

    .section__query a {
        display: block;
        font-size: 20px;
        background-color: #eb701f;
        color: #fff;
        transition: 300ms;
        line-height: 40px;
    }

    .section__whatsapp a {
        display: block;
        font-size: 30px;
        background-color: green;
        color: #fff;
        transition: 300ms;
    }

}