nav {
  width: 100%;
  position: absolute;
  padding: 4px 0;
  top: 0;
  z-index: 3;
  position: fixed;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
}

nav ul {
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (min-width: 992px) {
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 15px;
    list-style-type: none;
    width: 80%;
    margin: 0 auto;
  }
}

nav ul li {
  width: 100%;
  text-align: center;
  line-height: 4.5rem;
}

nav ul li a {
  color: #D6C6C2;
  line-height: 3rem;
  font-size: 1.2rem;
  text-decoration: none;
  -webkit-transition: 1s;
  transition: 1s;
  border-bottom: 2px solid transparent;
  -webkit-animation: in 1s forwards;
          animation: in 1s forwards;
}

@media only screen and (min-width: 1200px) {
  nav ul li a {
    font-size: 1.375rem;
  }
}

nav ul li a:hover {
  color: #fff;
  -webkit-animation: out 1s forwards;
          animation: out 1s forwards;
}

nav ul .logo {
  text-decoration: none;
  display: block;
  text-align: left;
  color: #FFD15C;
  line-height: 1em;
  z-index: 3;
  font-size: 1.5rem;
  padding-left: 10px;
}

nav ul .logo span {
  display: block;
  color: white;
  white-space: nowrap;
}

nav ul .logo span:nth-child(2) {
  font-size: 1rem;
}

nav ul .logo {
  padding-left: 0;
  width: 100%;
  font-size: 1.5rem;
}

@media only screen and (min-width: 992px) {
  .dropdown_wrap {
    display: none;
  }
}

.dropdown_wrap .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.dropdown_wrap .dropdown .logo {
  text-decoration: none;
  display: block;
  text-align: left;
  color: #FFD15C;
  line-height: 1em;
  z-index: 3;
  font-size: 1.5rem;
  padding-left: 10px;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.dropdown_wrap .dropdown .logo span {
  display: block;
  color: white;
  white-space: nowrap;
}

.dropdown_wrap .dropdown .logo span:nth-child(2) {
  font-size: 1rem;
}

@media only screen and (min-width: 992px) {
  .dropdown_wrap .dropdown .logo {
    padding: 0;
  }
}

.dropdown_wrap .dropdown .hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  z-index: 3;
  height: 72px;
  position: absolute;
  right: 0;
  top: 0;
}

.dropdown_wrap .dropdown .hamburger span {
  display: block;
  height: 5px;
  width: 38px;
  background: white;
  margin-bottom: 6px;
  border-radius: 2px;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

.dropdown_wrap .dropdown_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(33, 37, 41, 0.9);
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  text-align: center;
  -webkit-transition: margin .5s ease-out;
  transition: margin .5s ease-out;
  margin-top: -120vh;
}

.dropdown_wrap .dropdown_menu a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  -webkit-transition: 1s;
  transition: 1s;
}

.dropdown_wrap .dropdown_menu a:hover {
  color: #65707B;
}

.dropdown_wrap .dropdown_menu a:hover > span {
  -webkit-animation: border-out 1s forwards;
          animation: border-out 1s forwards;
}

.dropdown_wrap .dropdown_menu a span {
  border-bottom: 3px solid transparent;
  -webkit-animation: border-in 1s forwards;
          animation: border-in 1s forwards;
}

.dropdown_wrap .dropdown_menu a:nth-child(1) {
  margin-top: 100px;
}

.dropdown_wrap .sub_dropdown_menu a:hover {
  color: #fff;
}

.dropdown_wrap .sub_dropdown_menu a:hover > span {
  -webkit-animation: out 1s forwards;
          animation: out 1s forwards;
}

.spanA {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.spanB {
  opacity: 0;
}

.spanC {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 6px 5px;
          transform-origin: 6px 5px;
}

.hidden {
  overflow: hidden;
}

.margin-top {
  margin-top: 0 !important;
}

.background_color {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.sub_nav {
  background-color: #212529;
}

.grid {
  display: -ms-grid !important;
  display: grid !important;
}

@-webkit-keyframes border-out {
  from {
    border-color: transparent;
  }
  to {
    border-color: #65707B;
  }
}

@keyframes border-out {
  from {
    border-color: transparent;
  }
  to {
    border-color: #65707B;
  }
}

@-webkit-keyframes border-in {
  from {
    border-color: #65707B;
  }
  to {
    border-color: transparent;
  }
}

@keyframes border-in {
  from {
    border-color: #65707B;
  }
  to {
    border-color: transparent;
  }
}

@-webkit-keyframes out {
  from {
    border-color: transparent;
  }
  to {
    border-color: #fff;
  }
}

@keyframes out {
  from {
    border-color: transparent;
  }
  to {
    border-color: #fff;
  }
}

@-webkit-keyframes in {
  from {
    border-color: #fff;
  }
  to {
    border-color: transparent;
  }
}

@keyframes in {
  from {
    border-color: #fff;
  }
  to {
    border-color: transparent;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  background: #FFEEC2;
  font-size: 1rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.body_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.block {
  display: block;
}

h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  padding-top: 10px;
}

@media only screen and (min-width: 992px) {
  h3 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 3rem;
  }
}

.hero {
  width: 100vw;
  min-height: 338px;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 992px) {
  .hero {
    min-height: 500px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100vw;
  min-height: 338px;
  background: rgba(0, 0, 0, 0.7);
}

@media only screen and (min-width: 992px) {
  .hero::before {
    min-height: 500px;
  }
}

.hero p {
  text-align: center;
  color: white;
  font-size: 2rem;
  z-index: 1;
}

@media only screen and (min-width: 992px) {
  .hero p {
    font-size: 3.5rem;
  }
}

.hero a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 4px 15px;
  color: #FFD15C;
  border: 1px solid #FFD15C;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 1;
}

@media only screen and (min-width: 992px) {
  .hero a {
    font-size: 2.25rem;
    padding: 6px 25px;
  }
}

.hero a:hover {
  border-color: #FFBF1F;
  color: #FFBF1F;
}

.card {
  width: 80%;
  background: #FFD15C;
  margin: 0 auto;
  margin-top: 70px;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .card {
    margin-top: 100px;
  }
}

.card:nth-child(even) {
  background: #FFE299;
}

.card .card_wrap {
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

@media only screen and (min-width: 992px) {
  .card .card_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.card .card_wrap img {
  margin: 0 auto;
  display: block;
  width: 200px;
}

@media only screen and (min-width: 992px) {
  .card .card_wrap img {
    width: 275px;
    -webkit-transform: translate(30px, -30px);
            transform: translate(30px, -30px);
    padding-right: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-right: 1px solid #000;
    margin: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .card .card_wrap img {
    width: 416px;
  }
}

@media only screen and (min-width: 992px) {
  .card .card_wrap div {
    text-align: left;
    padding: 20px 0 30px 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.card .card_wrap div p {
  width: 83%;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5rem;
  padding-bottom: 15px;
}

@media only screen and (min-width: 992px) {
  .card .card_wrap div p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 0;
    margin-top: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .card .card_wrap div p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .card .card_wrap div span {
    margin-top: 15px;
  }
}

.card .card_wrap div span a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #212529;
  padding: 3px 30px;
  border: 2px solid #212529;
  font-weight: 400;
  -webkit-transition: 1s;
  transition: 1s;
}

@media only screen and (min-width: 992px) {
  .card .card_wrap div span a {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .card .card_wrap div span a {
    font-size: 2rem;
  }
}

.card .card_wrap div span a:hover {
  color: #000;
  border-color: #000;
}

.sub_section {
  margin-top: 65px;
}

.sub_section .menu {
  width: 80%;
  margin: 30px auto 0 auto;
  padding: 15px;
  background: #FFD15C;
}

.sub_section .menu h3 {
  text-align: center;
  padding-bottom: 15px;
}

.sub_section .menu .menu_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .sub_section .menu .menu_list {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
}

.sub_section .menu .menu_list p {
  padding: 0 10px 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 30px auto;
  width: 90%;
  border-bottom: 1px solid black;
}

.sub_section .gallery {
  -webkit-transition: all 1s;
  transition: all 1s;
}

.sub_section .gallery .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) {
  .sub_section .gallery .current {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.sub_section .gallery .current .main_img {
  max-width: 65%;
  cursor: pointer;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.sub_section .gallery .current span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  margin: auto 0;
}

.sub_section .gallery .current span .arrow {
  width: 15px;
  margin: auto 0;
  padding: 0 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .sub_section .gallery .current span .arrow {
    width: 40px;
  }
}

@media only screen and (min-width: 992px) {
  .sub_section .gallery .current span .arrow {
    width: 50px;
  }
}

@media only screen and (min-width: 1200px) {
  .sub_section .gallery .current span .arrow {
    width: 60px;
  }
}

.sub_section .gallery .rest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80vw;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  scroll-behavior: smooth;
}

.sub_section .gallery .rest img {
  height: 50px;
  margin: 15px 1px 0px 1px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (min-width: 768px) {
  .sub_section .gallery .rest img {
    height: 80px;
  }
}

@media only screen and (min-width: 992px) {
  .sub_section .gallery .rest img {
    height: 100px;
  }
}

@media only screen and (min-width: 1200px) {
  .sub_section .gallery .rest img {
    height: 130px;
  }
}

.sub_section .gallery .cross {
  position: fixed;
  top: 10px;
  right: 10px;
  display: none;
  height: 50px;
  width: 50px;
  place-content: center;
  cursor: pointer;
}

.sub_section .gallery .cross span {
  display: block;
  height: 6px;
  width: 50px;
  background: #000;
}

.sub_section .gallery .cross span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
          transform: rotate(45deg) translate(4px, 4px);
}

.sub_section .gallery .cross span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sub_section .accomodation_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80vw;
  margin: 85px auto 0;
  background-color: #FFD15C;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sub_section .accomodation_wrap .photos {
  width: 80%;
  margin: 0 auto;
}

.sub_section .accomodation_wrap .photos .rest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sub_section .accomodation_wrap .photos .rest img {
  margin: 0;
  padding: 0 2px;
}

.sub_section .accomodation_wrap .photos .current {
  margin: 0 auto 0 auto;
  border-top: 1px solid #212529;
}

@media only screen and (min-width: 992px) {
  .sub_section .accomodation_wrap .photos .current {
    width: 100%;
    padding-top: 25px;
  }
}

.sub_section .accomodation_wrap .photos .current img {
  padding-top: 10px;
  width: 70%;
}

.sub_section .accomodation_wrap .photos .current span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10%;
  max-width: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sub_section .accomodation_wrap .both_acc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .sub_section .accomodation_wrap .both_acc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (min-width: 1200px) {
  .sub_section .accomodation_wrap .both_acc {
    padding: 30px 0;
  }
}

.sub_section .accomodation_wrap .both_acc .accomodation {
  padding: 15px 0;
  width: 80%;
  margin: 0 auto;
}

.sub_section .accomodation_wrap .both_acc .accomodation h3 {
  padding-bottom: 10px;
}

@media only screen and (min-width: 992px) {
  .sub_section .accomodation_wrap .both_acc .accomodation {
    padding: 15px 30px;
  }
  .sub_section .accomodation_wrap .both_acc .accomodation:nth-child(1) {
    border-right: 1px solid #212529;
  }
}

@media only screen and (min-width: 1200px) {
  .sub_section .accomodation_wrap .both_acc .accomodation {
    font-size: 1.5rem;
    line-height: 3rem;
  }
}

.sub_section .accomodation_wrap .both_acc .accomodation table {
  border: 1px solid #212529;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.sub_section .accomodation_wrap .both_acc .accomodation table tr {
  border: 1px solid #212529;
}

.sub_section .accomodation_wrap .both_acc .accomodation table tr th {
  background-color: #FFCB47;
  padding: 5px;
  border: 1px solid #212529;
  font-weight: 200;
}

.sub_section .features_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .sub_section .features_wrap {
    width: 80vw;
  }
}

.sub_section .features_wrap .feature {
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-image: none !important;
  text-align: center;
  cursor: pointer;
}

.sub_section .features_wrap .feature h3 {
  padding: 10px 0;
  font-size: 1rem;
}

@media only screen and (min-width: 576px) {
  .sub_section .features_wrap .feature h3 {
    font-size: 1.2rem;
    padding: 15px 0;
  }
}

@media only screen and (min-width: 768px) {
  .sub_section .features_wrap .feature h3 {
    font-size: 1.5rem;
    padding: 20px 0;
  }
}

@media only screen and (min-width: 992px) {
  .sub_section .features_wrap .feature h3 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .sub_section .features_wrap .feature h3 {
    padding: 40px 0;
  }
}

.sub_section .contact_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFD15C;
  width: 80%;
  margin: 60px auto 0 auto;
  padding-bottom: 20px;
}

@media only screen and (min-width: 1200px) {
  .sub_section .contact_wrap {
    padding: 40px 0;
  }
}

.sub_section .contact_wrap .map {
  text-align: center;
  width: 85%;
  margin: 0 auto;
  height: 100%;
}

.sub_section .contact_wrap .map iframe {
  width: 100%;
  height: 100%;
  opacity: .8;
  border: 2px solid #FFBF1F;
}

.sub_section .contact_wrap .contact {
  width: 85%;
  margin: 0 auto;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .sub_section .contact_wrap .contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.2fr;
        grid-template-columns: 1fr 1.2fr;
  }
}

.sub_section .contact_wrap .contact .contact_right {
  padding-top: 15px;
}

@media only screen and (min-width: 768px) {
  .sub_section .contact_wrap .contact .contact_right {
    padding-left: 15px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    mid-width: 50%;
  }
}

@media only screen and (min-width: 768px) and (min-width: 992px) {
  .sub_section .contact_wrap .contact .contact_right {
    padding-left: 30px;
  }
}

.sub_section .contact_wrap .contact .contact_right form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 15px;
}

.sub_section .contact_wrap .contact .contact_right form input, .sub_section .contact_wrap .contact .contact_right form textarea, .sub_section .contact_wrap .contact .contact_right form button {
  background: #FFCB47;
  border: 2px solid #FFBF1F;
  margin-bottom: 5px;
  border-radius: 2%;
  font-family: inherit;
  font-size: 1rem;
  padding: 2px 10px;
  font-weight: 200;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.sub_section .contact_wrap .contact .contact_right form input:focus, .sub_section .contact_wrap .contact .contact_right form textarea:focus, .sub_section .contact_wrap .contact .contact_right form button:focus {
  outline: none;
  border: 2px solid #f0ad02;
}

.sub_section .contact_wrap .contact .contact_right form input:-webkit-autofill, .sub_section .contact_wrap .contact .contact_right form input:-webkit-autofill:hover, .sub_section .contact_wrap .contact .contact_right form input:-webkit-autofill:focus, .sub_section .contact_wrap .contact .contact_right form input:-webkit-autofill:active, .sub_section .contact_wrap .contact .contact_right form textarea:-webkit-autofill, .sub_section .contact_wrap .contact .contact_right form textarea:-webkit-autofill:hover, .sub_section .contact_wrap .contact .contact_right form textarea:-webkit-autofill:focus, .sub_section .contact_wrap .contact .contact_right form textarea:-webkit-autofill:active, .sub_section .contact_wrap .contact .contact_right form button:-webkit-autofill, .sub_section .contact_wrap .contact .contact_right form button:-webkit-autofill:hover, .sub_section .contact_wrap .contact .contact_right form button:-webkit-autofill:focus, .sub_section .contact_wrap .contact .contact_right form button:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FFCB47 inset !important;
}

@media only screen and (min-width: 1200px) {
  .sub_section .contact_wrap .contact .contact_right form input, .sub_section .contact_wrap .contact .contact_right form textarea, .sub_section .contact_wrap .contact .contact_right form button {
    font-size: 1.5rem;
  }
}

.sub_section .contact_wrap .contact .contact_right .sent {
  padding: 5px;
  background: #3ace3a;
  border: 2px solid #26a126;
  border-radius: 3px;
}

@media only screen and (min-width: 768px) {
  .sub_section .contact_wrap .contact .contact_left {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding-right: 15px;
    border-right: 1px solid #212529;
  }
}

@media only screen and (min-width: 768px) and (min-width: 992px) {
  .sub_section .contact_wrap .contact .contact_left {
    padding-right: 40px;
  }
}

.sub_section .contact_wrap .contact .contact_left .details {
  font-weight: 400;
  padding: 15px;
  background: #FFCB47;
}

@media only screen and (min-width: 1200px) {
  .sub_section .contact_wrap .contact .contact_left .details p {
    font-size: 1.5rem;
  }
}

.sub_section .contact_wrap .contact .contact_left .details p span {
  font-weight: 200;
}

.arrow_span:nth-child(2) {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.arrow_span:nth-child(3) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.features_wrap {
  margin-top: 50px;
}

@media only screen and (min-width: 992px) {
  .features_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin: 100px auto 0 auto;
  }
}

.features_wrap .feature {
  width: 60%;
  margin: 0 auto;
  padding: 10px 20px;
  background: #FFDC85;
  background-image: url("../images/parking.png");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (min-width: 992px) {
  .features_wrap .feature {
    padding: 15px 30px 20px 30px;
    background-size: auto 55% !important;
  }
}

.features_wrap .feature:nth-child(2) {
  background: #FFD15C;
  background-image: url("../images/child.png");
  background-repeat: no-repeat;
  background-position: center;
}

.features_wrap .feature:nth-child(2) p {
  margin: 0;
}

.features_wrap .feature:nth-child(3) {
  background: #FFCB47;
  background-image: url("../images/store.png");
  background-repeat: no-repeat;
  background-position: center;
}

.features_wrap .feature:nth-child(3) p {
  margin: 0;
}

.features_wrap .feature h4 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 400;
}

@media only screen and (min-width: 992px) {
  .features_wrap .feature h4 {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .features_wrap .feature h4 {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .features_wrap .feature p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .features_wrap .feature p {
    font-size: 1.65rem;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.8rem;
  color: #D6C6C2;
  background: #343A40;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) {
  footer {
    font-size: 1.2rem;
    margin-top: 100px;
  }
}

footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 0 auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 15px 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media only screen and (min-width: 992px) {
  footer .footer {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

footer .footer ul {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  padding-right: 15px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

footer .footer ul li a {
  text-decoration: none;
  color: #D6C6C2;
}

footer .footer div span {
  font-weight: 400;
}

footer .footer div a {
  height: 25px;
}

@media only screen and (min-width: 992px) {
  footer .footer div a {
    height: 40px;
    display: block;
    float: left;
  }
}

footer .footer div a img {
  width: 25px;
}

@media only screen and (min-width: 992px) {
  footer .footer div a img {
    width: 40px;
  }
}

footer .credentials {
  background: #212529;
  text-align: center;
  padding: 5px 0;
}

footer .credentials a {
  margin: 7px 0;
  text-decoration: none;
  color: #D6C6C2;
}

.inline {
  display: inline !important;
}

.none {
  display: none !important;
}

.rest_photos {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 65% !important;
}

.noborder {
  border: none !important;
}

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media only screen and (min-width: 992px) {
  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .reverse > div {
    margin-right: auto;
  }
}

@media only screen and (min-width: 992px) {
  .reverse_img {
    border-right: none !important;
    border-left: 1px solid black;
    padding-right: 0 !important;
    padding-left: 50px;
    -webkit-transform: translate(-30px, -30px) !important;
            transform: translate(-30px, -30px) !important;
  }
}

.gallery_zoomed {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(255, 238, 194, 0.9);
  z-index: 4;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.gallery_zoomed_main {
  max-height: 75vh !important;
  padding-bottom: 15px;
  width: auto !important;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: none !important;
}

@media screen and (max-width: 1200px) {
  .gallery_zoomed_main ~ span {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .gallery_zoomed_main {
    max-width: 100vw !important;
    max-height: none !important;
  }
}

.gallery_zoomed_rest {
  max-height: 10vh !important;
  width: auto !important;
}

.selected, .select {
  border: 2px solid #212529;
  -webkit-animation: border 1s forwards;
          animation: border 1s forwards;
}

@-webkit-keyframes border {
  from {
    border-color: transparent;
  }
  to {
    border-color: #212529;
  }
}

@keyframes border {
  from {
    border-color: transparent;
  }
  to {
    border-color: #212529;
  }
}
/*# sourceMappingURL=style.css.map */