@media only screen and (max-width: 991px) {
  .header {
    justify-content: space-between;
    margin: 0;
  }
  .header .logo {
    width: max-content;
  }
  .header .logo img {
    width: 100%;
    max-width: 60vw;
  }
  .header .menu,
  .header nav {
    display: none !important;
  }
  .header__burger {
    width: 4rem;
    height: 3rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
  }
  .header__burger span {
    display: block;
    position: relative;
    width: 100%;
    height: 3px;
    background: #000;
  }
  .header__burger span::after,
  .header__burger span::before {
    content: '';
    position: absolute;
    left: 0;right: 0;
    width: 100%;
    height: 3px;
    background: #000;
  }
  .header__burger span::after {
    top: -5px;
  }
  .header__burger span::before {
    bottom: -5px;
  }
  .mobile__menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: fixed;
    top: -100%;
    left: 0;right: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    transition: top .4s, opacity .4s, height .4s;
    z-index: 100;
  }
  .mobile__menu.active {
    top: 0;
    height: 100vh;
    opacity: 1;
  }
  .mobile__menu .close__btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: bold;
  }
  .mobile__menu nav {
    width: 70%;
    display: flex;
    flex-direction: column;
    list-style: none;
  }
  .mobile__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile__menu a {
    color: #000;
    font-size: 6.5rem;
    font-weight: 400;
  }
  .about {
    height: 100%;
    max-height: 100%;
  }
  .about__header {
    flex-direction: column;
  }
  .about__list {
    grid-template-columns: 1fr;
  }
  .adv__list {
    grid-template-columns: 1fr;
  }
  .services__grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
  .services__grid .item img {
    max-height: 30rem;
  }
  .footer__wrap {
    grid-gap: 6rem 2rem;
  }
  .footer__area {
    flex-basis: calc(50% - 2rem);
    width: calc(50% - 2rem);
  }
  .menu-list__grid {
    grid-gap: 4rem;
  }
  .menu-list__grid .item {
    flex-basis: calc(50% - 4rem);
  }
  .instagram__title,
  .instagram__dsc {
    padding: 0 5rem 0 0;
  }
  .instagram__grid {
    grid-template-columns: repeat(3,1fr);
  }
}

@media only screen and (max-width: 768px) {
  .about {
    margin: 0;
  }
  .about__area {
    flex-direction: column;
  }
  .about__area-image img {
    max-height: 63.5rem;
    object-fit: cover;
  }
  .about__area-double {
    margin: 5rem 0 0 0;
  }
  .about__area-double .about__area-image img {
    width: 60%;
    max-height: 40rem;
  }
  .about__area-double .about__area-image:last-child {
    margin: -20rem 0 0 0;
    text-align: right;
  }
  .about__area-double .about__area-image:last-child img {
    width: 60%;
  }
  .adv__area {
    flex-direction: column;
    gap: 4rem;
  }
  .adv__area-icon {
    width: 100%;
    justify-content: space-between;
    flex-basis: 100%;
    flex-direction: row;
  }
  .adv__area-icon img {
    width: calc(33.333% - 1rem);
    height: max-content;
  }
  .adv__area-text h2 {
    text-align: left;
  }
  .services__sub-title {
    font-size: 1.8rem;
    margin: 0 0 2rem 0;
  }
  .services__grid .item-dsc {
    width: 80%;
  }
  .services__grid {
    grid-gap: 4rem;
  }
  .about-place__dsc p {
    font-size: 2.2rem;
  }
  .look-us {
    height: max-content;
  }
  .look-us__image {
    flex-basis: 100%;
  }
  .look-us__content {
    flex-basis: 100%;
    padding: 2.4rem;
  }
  .look-us__content-dsc p {
    font-size: 2.2rem;
  }
  .instagram {
    padding: 5rem 2.4rem;
  }
  .instagram__title,
  .instagram__dsc {
    padding: 0;
  }
  .footer__area {
    align-items: center;
    width: 100%;
    flex-basis: 100%;
  }
  .footer__area:first-child {
    align-items: center;
  }
  .footer__dsc {
    text-align: center;
    font-size: 2rem;
  }
  .footer__area:nth-child(3) .footer__title {
    margin: 0 0 2rem 0;
  }
  .footer__btn {
    margin: 0;
  }
  .footer__link{
    text-align: center;
    font-size: 2.2rem;
  }
  .activities__grid {
    grid-template-columns: 1fr;
  }
  .activities__grid .item-title {
    font-size: 3rem;
  }
  .grid-sizer,
  .gallery__grid .item {
    width: calc(50% - 10px);
  }
  .location__wrap {
    flex-direction: column;
  }
  .location__map,
  .location__content {
    flex-basis: 100%;
    width: 100%;
  }
  .big-image h2 {
    padding: 1rem;
    text-align: center;
  }
}

@media only screen and (max-width: 500px) {
  .menu-list__grid .item {
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 350px) {

}