@charset "UTF-8";
/* font weight */
h1, h2, h3 {
  margin: 0;
  text-shadow: 0 0 4px #00000021;
}

.container {
  width: 1016px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .container {
    width: 962px;
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .container {
    width: 748px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 25px;
  }
}

*, :after, :before {
  box-sizing: border-box;
}

.no-scroll {
  overflow-y: scroll;
  height: 100vh;
  position: fixed;
}
@media screen and (max-width: 992px) {
  .no-scroll {
    overflow: hidden;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2f2728;
  opacity: 0.7;
}

.overlay-light {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, #f5f5f5 40%, rgba(255, 255, 255, 0));
  z-index: 1;
}

.sub-page-wrap {
  min-height: 100vh;
}

.sub-page-top {
  position: relative;
  min-height: 160px;
  width: 100%;
  padding: 180px 0 50px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(assets/img/sub-page-bg.jpg);
}
.sub-page-top h1, .sub-page-top p {
  color: #EDE6E2;
}
.sub-page-top h1 {
  font-size: 60px;
}

.sub-page-nav {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.sub-page-nav a.btn {
  font-size: 14px;
  padding: 15px 30px;
  border: 2px solid #e5ddc8;
  color: #e5ddc8;
  z-index: 0;
}
.sub-page-nav .btn::before {
  font-family: "Font Awesome 5 Free";
  color: #e5ddc8;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  font-size: 20px;
}
.sub-page-nav .btn:first-of-type::before {
  content: "";
}
.sub-page-nav .btn:last-of-type::before {
  content: "";
  left: unset;
  right: 10px;
}

.back-btn {
  color: #e5ddc8;
  text-transform: uppercase;
  display: block;
  margin: 10px;
}
.back-btn i {
  margin-right: 10px;
  font-size: 19px;
  vertical-align: bottom;
  position: relative;
  left: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.back-btn:hover i {
  left: -4px;
}

.img-gallery {
  display: grid;
  grid-template-columns: auto auto auto;
  margin-top: 90px;
}
.img-gallery a {
  position: relative;
}
.img-gallery .gallery-overlay {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(47, 39, 40, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 40px;
  color: #e5ddc8;
}
.img-gallery a:hover .gallery-overlay {
  opacity: 1;
}

.slides {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.slides .slide {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.slides .slide[data-order="0"] {
  display: block;
  background-image: url(assets/img/hero-bg.jpg);
}
.slides .slide[data-order="1"] {
  background-image: url(assets/img/hero-bg2.jpg);
}
.slides .slide[data-order="2"] {
  background-image: url(assets/img/hero-bg3.jpg);
}

.zoom {
  animation: zoom 15s ease 0s normal both infinite;
  -webkit-animation: zoom 15s ease 0s normal both infinite;
  -moz-animation: zoom 15s ease 0s normal both infinite;
  -ms-animation: zoom 15s ease 0s normal both infinite;
  -o-animation: zoom 15s ease 0s normal both infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.btn {
  display: block;
  padding: 20px 80px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 0 3px #2f2728;
  position: relative;
  font-size: 20px;
  text-align: center;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: #36070f;
  width: 0%;
  margin: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn:hover::after {
  width: 100%;
}

.btn-light {
  border: 2px solid #e5ddc8;
  color: #e5ddc8;
}

.btn-dark {
  border: 2px solid #36070f;
}

.divider {
  font-size: 100px;
  line-height: 50px;
  display: block;
  margin: 10px 0 30px;
  color: #e5ddc8;
}

.divider-alt {
  font-size: 80px;
  line-height: 18px;
  display: block;
  margin: 10px 0 25px;
  color: #e5ddc8;
}

.section {
  padding: 90px 0;
  position: relative;
}

.content {
  text-align: center;
}

.logo img {
  filter: drop-shadow(none);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  max-width: 90px;
}
.logo:hover img {
  filter: drop-shadow(0px 0px 4px black);
}

.add-underline {
  position: relative;
}
.add-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #36070f;
  width: 0;
  bottom: -2px;
  margin: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.add-underline:hover::after {
  width: 100%;
}

.index-form-wrap {
  padding: 90px 0;
  position: relative;
}
.index-form-wrap .h2-heading {
  font-weight: 400;
}
.index-form-wrap p.light.dark {
  font-size: 17px;
  letter-spacing: 2.55px;
  text-align: center;
  margin-top: 20px;
}
.index-form-wrap form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 70px 140px 1fr 2fr;
  grid-gap: 14px;
  max-width: 674px;
  margin: auto;
  margin-top: 20px;
}
.index-form-wrap form label {
  position: relative;
  pointer-events: none;
}
.index-form-wrap form label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  transition: all 0.2s ease;
  height: 100%;
  border-bottom: 4px solid #dbb857;
  display: block;
  border-radius: 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.index-form-wrap form label .field-text {
  opacity: 0.5;
  font-size: 13px;
  font-style: italic;
}
.index-form-wrap form label .field-text span {
  color: red;
}
.index-form-wrap form .border::after {
  width: 100%;
  border-radius: 35px;
}
.index-form-wrap form .green::after {
  border-color: #64B73B;
}
.index-form-wrap form .red::after {
  border-color: #B73B48;
}
.index-form-wrap form input, .index-form-wrap form textarea {
  pointer-events: all;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  padding-left: 25px;
  background: #F5F5F5;
  border: none;
  outline: none;
  z-index: -1;
  color: rgba(51, 51, 51, 0.5);
  box-shadow: inset 0 0 15px #0000003d;
  border-radius: 35px;
  resize: none;
}
.index-form-wrap form .name {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
  padding: 22px 0;
  padding-left: 25px;
}
.index-form-wrap form .email {
  grid-row: 1;
  grid-column: 2;
  width: 100%;
  z-index: 1;
  padding: 22px 0;
  padding-left: 25px;
}
@media screen and (max-width: 578px) {
  .index-form-wrap form .email {
    grid-row: 2;
    grid-column: 1;
  }
}
.index-form-wrap form .message {
  grid-row: 2;
  grid-column: span 2;
  width: 100%;
  z-index: 1;
  padding: 22px 0;
  padding-left: 25px;
}
.index-form-wrap form .message textarea {
  padding-top: 25px;
}
@media screen and (max-width: 578px) {
  .index-form-wrap form .message {
    grid-row: 3;
    grid-column: 1;
  }
}
.index-form-wrap form p {
  grid-row: 3;
  grid-column: span 2;
  text-align: center;
  color: #B73B48;
}
@media screen and (max-width: 578px) {
  .index-form-wrap form p {
    grid-row: 4;
    grid-column: 1;
  }
}
.index-form-wrap form button[type=submit] {
  grid-row: 4;
  grid-column: span 2;
  position: relative;
  width: 35%;
  margin: 0 auto;
  -webkit-appearance: none;
  border: none;
  background: #DBB857;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 15px #00000040;
  font-size: 17px;
  letter-spacing: 1.7px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  padding: 20px 0;
  outline: none;
}
.index-form-wrap form button[type=submit]::after {
  content: "";
  position: absolute;
  font-weight: 600;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  color: #fff;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.index-form-wrap form button[type=submit]:hover::after {
  right: 21px;
}
@media screen and (max-width: 578px) {
  .index-form-wrap form button[type=submit] {
    grid-row: 5;
    grid-column: 1;
    position: relative;
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .index-form-wrap form button[type=submit] {
    width: 100%;
  }
}
@media screen and (max-width: 578px) {
  .index-form-wrap form {
    grid-template-rows: 70px 70px 140px 1fr 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 992px) {
  .index-form-wrap {
    padding: 60px 0;
  }
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(47, 39, 40, 0.85);
  z-index: 500;
  overflow: hidden;
}
.modal .modal-body {
  max-width: 1200px;
  margin: auto;
}
.modal .body-top {
  position: relative;
}
.modal .body-top .img-container {
  margin: auto;
  max-width: 70vw;
  max-height: 80vh;
  margin-top: 100px;
  position: relative;
}
.modal .body-top .img-container .close-btn {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(78, 71, 72, 0.52);
  padding: 22px 27px;
  font-size: 16px;
  cursor: pointer;
  color: #e5ddc8;
}
.modal .body-top .img-container .close-btn:hover {
  background: rgba(78, 71, 72, 0.7);
}
@media screen and (max-width: 768px) {
  .modal .body-top .img-container .close-btn {
    padding: 14px 20px;
  }
}
.modal .body-top .img-container img {
  margin: auto;
  max-width: 70vw;
  max-height: 80vh;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 1400px) {
  .modal .body-top .img-container {
    max-width: 50vw;
  }
}
.modal .body-top .navigation {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.modal .body-top .navigation span {
  display: block;
  width: 70px;
  height: 70px;
  background: #e5ddc8;
  cursor: pointer;
  text-shadow: 0 0 15px #0000004D;
  pointer-events: all;
  position: absolute;
}
.modal .body-top .navigation span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 9px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .modal .body-top .navigation span {
    width: 50px;
    height: 50px;
  }
}
.modal .body-top .navigation .fa-chevron-left {
  left: -100px;
}
.modal .body-top .navigation .fa-chevron-left:hover::before {
  right: 4px;
}
@media screen and (max-width: 768px) {
  .modal .body-top .navigation .fa-chevron-left {
    left: -10%;
  }
}
.modal .body-top .navigation .fa-chevron-right {
  right: -100px;
}
.modal .body-top .navigation .fa-chevron-right:hover::before {
  left: 4px;
}
@media screen and (max-width: 768px) {
  .modal .body-top .navigation .fa-chevron-right {
    right: -10%;
  }
}
.modal .body-bottom {
  max-width: 70vw;
  margin: auto;
  background: #272D39;
  padding: 30px 0;
  margin-bottom: 100px;
}
.modal .body-bottom .body-bottom-content {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-gap: 30px;
  padding: 0 50px;
}
@media screen and (max-width: 992px) {
  .modal .body-bottom .body-bottom-content {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
@media screen and (max-width: 992px) {
  .modal .add-gold-divider:after {
    display: none;
  }
}
.modal .photo-heading {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 32px;
  margin-bottom: 20px;
  letter-spacing: 2.55px;
}
.modal .client {
  min-height: 60px;
}
.modal .client, .modal .solution {
  font-size: 17px;
  letter-spacing: 2.55px;
  line-height: 30px;
}
.modal .desc-content > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.modal .desc-content > div p.light {
  font-size: 17px;
  letter-spacing: 2.55px;
  line-height: 30px;
  opacity: 0.5;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .modal .desc-content > div {
    grid-template-columns: 1fr;
    text-align: center;
    grid-gap: 10px;
  }
}
.modal .desc-content > div:nth-child(2) {
  margin: 10px 0;
}
.modal .desc-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
}
.modal .desc-img img {
  max-width: 128px;
}
.modal .desc-img p {
  font-size: 17px;
  opacity: 0.5;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2.55px;
  line-height: 30px;
}

.field-text span {
  color: red;
}

form label.error {
  position: absolute !important;
  right: 30px;
  color: red !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #2f2728;
  font-size: 14px;
  letter-spacing: 1.95px;
  line-height: normal;
  overflow-x: hidden;
  background-color: #fff;
}

.preloader {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.preloader img {
  width: 60px;
  position: relative;
  top: 3px;
}
@-webkit-keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.preloader div.loading {
  position: absolute;
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  -webkit-animation: donut-spin 1.2s linear infinite;
  animation: donut-spin 1.2s linear infinite;
}

.main-arrow {
  background: url(assets/img/arrow-down.svg);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 20px;
  position: absolute;
  bottom: 80px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.main-arrow:hover {
  bottom: 76px;
}

.form-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-page .form {
  text-align: center;
  font-size: 20px;
}
.form-page .form .fa-check {
  color: green;
  font-size: 50px;
}
.form-page .form .fa-times {
  font-size: 50px;
  color: red;
}

.menu-btn {
  z-index: 4;
  cursor: pointer;
  display: none;
  margin-right: 135px;
}
.menu-btn > span:first-of-type {
  margin-right: 17px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.menu-btn .lines {
  cursor: pointer;
}
.menu-btn .lines .line {
  display: block;
  height: 1px;
  width: 20px;
  border: 1px solid #fff;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.menu-btn .lines .line:first-child {
  -webkit-transform-origin: 4%;
  -ms-transform-origin: 4%;
  transform-origin: 4%;
}
.menu-btn .lines .line:nth-child(2) {
  margin: 5px 0;
}
.menu-btn .lines .line:last-child {
  transform-origin: -1%;
  -webkit-transform-origin: -1%;
  -ms-transform-origin: -1%;
}
@media screen and (max-width: 992px) {
  .menu-btn {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
@media screen and (max-width: 578px) {
  .menu-btn {
    margin-right: 0;
  }
}

.toggled .lines .line:first-child {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.toggled .lines .line:nth-child(2) {
  opacity: 0;
}
.toggled .lines .line:last-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.toggled .menu-btn > span:first-of-type {
  opacity: 0;
}

p {
  margin: 0;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus {
  opacity: 0 !important;
}

.white {
  color: #fff;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.light {
  font-weight: 300;
}

.thin {
  font-weight: 200;
}

blockquote {
  margin: 10px 0px;
  font-style: italic;
}

.h1-heading {
  font-family: "Lobster", cursive;
  font-size: 100px;
  line-height: normal;
  font-weight: 100;
  letter-spacing: 7px;
}

.h2-heading {
  font-family: "Lobster", cursive;
  color: #36070f;
  font-size: 50px;
  margin-bottom: 15px;
  letter-spacing: 4px;
}

.h3-heading {
  color: #36070f;
  font-size: 24px;
  text-transform: uppercase;
  margin: 30px 0 10px;
  letter-spacing: 1px;
  font-weight: 600;
}

.icon {
  max-width: 60px;
}

.set-bg > img {
  opacity: 0;
  width: 100%;
  height: 100%;
}

footer {
  position: relative;
  line-height: 28px;
}
footer a:hover {
  color: #fff;
}
footer .content {
  background-color: #2f2728;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
footer .main-arrow {
  top: -30px;
  z-index: 2;
  width: 60px;
  height: 60px;
  transform: rotate(180deg);
  left: 0;
  right: 0;
  margin: 0 auto;
  background-size: 25px;
}
footer .main-arrow + span {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  z-index: 1;
  box-shadow: 0 0 6px #00000063;
  background-color: #2f2728;
}
footer .social-net {
  margin-top: 15px;
}
footer .social-net a {
  font-size: 20px;
  margin-left: 20px;
}
footer .footer-wrap {
  background-color: #2f2728;
  color: #e5ddc8;
  padding-top: 90px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  grid-gap: 40px;
}
footer .footer-grid > div:first-child ul {
  text-align: left;
  max-width: 130px;
  margin: auto;
}
footer .footer-grid > div:nth-child(2) ul {
  text-align: left;
  max-width: 240px;
  margin: auto;
}
footer .footer-grid > div:last-child {
  text-align: right;
}
footer li > a {
  padding-left: 10px;
}
footer .divider-alt {
  font-size: 25px;
  margin: 10px 0 15px;
}
footer h3 {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #EDE6E2;
  font-size: 20px;
}
footer .logo {
  font-family: "Lobster", cursive;
  font-size: 50px;
  display: block;
  margin-bottom: 70px;
}
footer .open {
  text-align: left;
  margin: auto;
}
footer .open td.one:first-of-type {
  padding-right: 12px;
}
footer .copyright {
  padding-top: 40px;
  position: relative;
  padding-bottom: 15px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
footer .copyright::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40%;
  display: block;
  width: 80%;
  margin: auto;
  height: 100%;
  top: -100%;
  z-index: 0;
  box-shadow: 0 2px 15px #00000061;
}
footer .copyright span, footer .copyright a {
  color: #EDE6E2;
  opacity: 0.5;
}
footer .copyright > a {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  footer .copyright a:nth-child(2) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright span:nth-child(3) {
    margin: 10px 0;
  }
}
footer .copyright .mz {
  margin-left: 30px;
}
footer .copyright .mz a {
  opacity: 1;
  display: inline-block;
}
footer .copyright .mz a img {
  max-width: 85px;
  position: relative;
  top: 7px;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    flex-direction: column;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: initial;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  z-index: 2;
}
header nav {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  z-index: 3;
  position: relative;
}
header nav ul {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: initial;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (max-width: 992px) {
  header nav ul li {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
header nav ul a {
  text-transform: uppercase;
  color: #e5ddc8;
  font-size: 17px;
  letter-spacing: 0;
}
header nav ul a:hover {
  color: #fff;
}
header nav ul li:not(:last-child) {
  margin-right: 80px;
}
@media screen and (max-width: 992px) {
  header nav ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 992px) {
  header nav ul {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
  }
}
header nav > a {
  position: absolute;
  top: 50%;
  bottom: 0;
  margin: auto 0;
  font-size: 20px;
  right: -50px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  header nav {
    position: fixed;
    right: -200%;
    top: 0;
    bottom: 0;
    background: #272D39;
    min-height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    z-index: 4;
  }
}

.toggled nav {
  right: 0;
}

/* start index.php */
.hero-wrap {
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  background-image: url(assets/img/hero-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  color: #e5ddc8;
}
.hero-wrap .hero-content {
  height: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  pointer-events: all;
  position: relative;
  z-index: 1;
}
.hero-wrap .hero-content h1 {
  margin-top: 20px;
}
.hero-wrap .h1-heading + p {
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 300;
  text-shadow: 0 0 10px #00000094;
  line-height: normal;
  text-align: center;
}
.hero-wrap .cta-btns .btn-dark {
  margin-top: 20px;
}
.hero-wrap .contact-info {
  position: absolute;
  left: 0;
  bottom: 80px;
}
.hero-wrap .contact-info p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
.hero-wrap .contact-info a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.hero-wrap .contact-info a span {
  font-size: 15px;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
  width: 17px;
}
.hero-wrap .contact-info a:hover {
  color: #000;
}
.hero-wrap .contact-info a:first-of-type {
  margin-bottom: 10px;
}

.section-one {
  background: #fff;
}
.section-one::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40%;
  display: block;
  width: 100%;
  height: 38%;
  bottom: 0;
  box-shadow: 0 2px 15px #0000003d;
  z-index: -1;
}
.section-one::after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  top: 0;
  bottom: 0;
  background: transparent linear-gradient(90deg, #f5f5f5ba 0%, #f5f5f5ba 62%, #ececec 100%) 0% 0% no-repeat padding-box;
  z-index: 0;
}
.section-one .container {
  z-index: 1;
}
.section-one .benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 80px;
  margin-top: 80px;
}
.section-one .benefits .benefit {
  min-height: 300px;
  box-shadow: 0 0 15px #3e3e3e21, 0 0 0px 0px #0000000f;
}
.section-one .benefits .benefit .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 70px 0;
}
.section-one .benefits .benefit .bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(20deg, rgba(229, 221, 200, 0.3), rgba(54, 7, 15, 0.5));
  z-index: 0;
}
.section-one .benefits .benefit .bg + div {
  background: #fff;
  padding: 42px;
}
.section-one .benefits .benefit h3 {
  margin: 0;
  font-size: 17px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.section-one .benefits .benefit span {
  font-size: 35px;
  color: #e5ddc8;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.section-one .benefits .benefit p {
  font-size: 15px;
  letter-spacing: 0.7px;
  line-height: 21px;
}
.section-one .benefits .benefit:nth-child(1) .bg {
  background-image: url(assets/img/benefit1.jpg);
}
.section-one .benefits .benefit:nth-child(2) .bg {
  background-image: url(assets/img/benefit2.jpg);
}
.section-one .benefits .benefit:nth-child(3) .bg {
  background-image: url(assets/img/benefit3.jpg);
}
@media screen and (max-width: 450px) {
  .section-one .benefits {
    grid-template-columns: 1fr;
  }
}

.section-two {
  position: relative;
}
.section-two::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40%;
  display: block;
  width: 100%;
  height: 38%;
  bottom: 0px;
  box-shadow: 0 2px 15px #0000003d;
  z-index: -1;
}
.section-two .content {
  padding: 90px 0 50px;
}
.section-two .vertical-wrapper {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 768px;
  overflow: hidden;
}
.section-two .vertical-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.section-two .vertical-wrapper > div:not(:hover) {
  width: 80%;
}
.section-two .vertical-wrapper .vertical-one,
.section-two .vertical-wrapper .vertical-two,
.section-two .vertical-wrapper .vertical-three,
.section-two .vertical-wrapper .vertical-four {
  background-position: center;
  background-size: 560px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
  position: relative;
  z-index: 0;
}
.section-two .vertical-wrapper .vertical-one::before,
.section-two .vertical-wrapper .vertical-two::before,
.section-two .vertical-wrapper .vertical-three::before,
.section-two .vertical-wrapper .vertical-four::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(229, 221, 200, 0.3), rgba(54, 7, 15, 0.5));
  z-index: -1;
}
.section-two .vertical-wrapper .vertical-one {
  background-image: url("assets/img/burger.jpg");
}
.section-two .vertical-wrapper .vertical-two {
  background-image: url("assets/img/pancakes.jpg");
}
.section-two .vertical-wrapper .vertical-three {
  background-image: url("assets/img/steak.jpg");
}
.section-two .vertical-wrapper .vertical-four {
  background-image: url("assets/img/pasta.jpg");
}
.section-two .vertical-wrapper h3 {
  color: #e5ddc8;
  font-size: 40px;
}

.section-three .suites {
  margin-top: 50px;
  min-height: 770px;
  height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(assets/img/apartments.jpg);
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
  text-align: center;
}
.section-three .suites .suits-btns {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.section-three .suites .suits-btns .btn {
  padding: 20px 30px;
  font-size: 16px;
}
.section-three .suites::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
  border: 2px solid #e5ddc8;
  z-index: 1;
}
.section-three .suites::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 40%;
  display: block;
  width: 100%;
  height: 38%;
  bottom: 0;
  box-shadow: 0 2px 15px #0000003d;
  z-index: -1;
}
.section-three .suites .overlay {
  opacity: 0.8;
}
.section-three .suites h2 {
  color: #e5ddc8;
  z-index: 1;
  position: relative;
}
.section-three .suites p {
  max-width: 800px;
  text-align: center;
  line-height: 25px;
  color: #e5ddc8;
  z-index: 1;
}

.section-three.section {
  padding-bottom: 0;
}

.section-four .btn {
  max-width: 240px;
  margin: auto;
  margin-top: 40px;
  padding: 20px 30px;
  font-size: 16px;
}
.section-four .btn:hover {
  color: #e5ddc8;
}

/* end index.php */
/* start sklipek.php */
.basement p + p {
  margin: 20px 0;
}

/* end sklipek.php */
/* start apartmany.php */
.sub-page-wrap.suites {
  min-height: unset;
  height: 100%;
}

.suites h2 {
  margin-bottom: 25px;
}
.suites p {
  line-height: 25px;
}
.suites .suites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  margin-top: 80px;
}
.suites .suites-grid > a {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: relative;
  padding: 100px 20px;
  box-shadow: 0 0 8px #0000006b;
}
.suites .suites-grid a:hover {
  transform: scale(1.05);
  box-shadow: 4px 6px 10px 0px #00000069;
}
.suites .suites-grid > a:nth-child(1) {
  background-image: url(assets/img/apartments.jpg);
}
.suites .suites-grid > a:nth-child(2) {
  background-image: url(assets/img/apartments3.jpg);
}
.suites .suites-grid > a:nth-child(3) {
  background-image: url(assets/img/apartments4.jpg);
}
.suites .suites-grid h3 {
  color: #EDE6E2;
  position: relative;
}

/* end apartmany.php */
/* start rooms pages */
.rooms .rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
.rooms .left-side ul {
  text-align: left;
}
.rooms .left-side ul li {
  list-style-type: disc;
  line-height: 22px;
}
.rooms .right-side ul {
  border: 2px solid #36070f;
}
.rooms .right-side ul li {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  padding: 15px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: initial;
  -webkit-box-align: initial;
  -ms-flex-align: initial;
}
.rooms .right-side ul li span:first-of-type {
  font-weight: bold;
}
.rooms .right-side ul li:nth-child(even) {
  background: #442b2914;
}
.rooms .right-side ul li:last-of-type {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.rooms .right-side ul li:hover {
  background-color: #e5ddc8;
}

.rooms3 .right-side ul li:nth-last-child(2) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* end rooms pages */
/* start galerie.php */
.gallery .img-gallery {
  margin-top: 0;
  grid-gap: 10px;
}
.gallery .img-gallery img {
  max-width: 280px;
  max-height: 250px;
}

/* end galerie.php */
/* start kontakt.php */
.contact {
  min-height: unset;
  height: 100%;
  padding-bottom: 0;
}
.contact .info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
.contact .info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-direction: column;
}
.contact .info > div > div {
  border: 2px solid #36070f;
}
.contact .info i {
  display: block;
  font-size: 30px;
  width: 90px;
  padding: 30px;
  color: #36070f;
}
.contact .info h3 {
  margin: 20px 0;
}

.map-wrap {
  width: 100%;
}

#map {
  height: 400px;
}

/* end kontakt.php */
.clip-text {
  position: relative;
  transition: all 2s cubic-bezier(0.14, 0.94, 0.43, 1.02);
}
.clip-text.bottom {
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
}
.clip-text.transform {
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
.clip-text.reveal.bottom {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.clip-text.reveal.transform {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
