@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: "Century";
  src: url("fonts/century.ttf");
}
@font-face {
  font-family: "Century";
  font-style: italic;
  src: url("fonts/century.ttf");
}
@font-face {
  font-family: "Century";
  font-weight: bold;
  src: url("fonts/century.ttf");
}
@font-face {
  font-family: "Century";
  font-weight: bold;
  font-style: italic;
  src: url("fonts/century.ttf");
}
@font-face {
  font-family: "Century";
  font-weight: 900;
  src: url("fonts/century.ttf");
}
@font-face {
  font-family: "Century";
  font-weight: 500;
  src: url("fonts/century.ttf");
}
@font-face {
  font-family: "Century";
  font-weight: 300;
  src: url("fonts/century.ttf");
}


@font-face {
  font-family: "Farnklin";
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}
@font-face {
  font-family: "Farnklin";
  font-style: italic;
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}
@font-face {
  font-family: "Farnklin";
  font-weight: bold;
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}
@font-face {
  font-family: "Farnklin";
  font-weight: bold;
  font-style: italic;
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}
@font-face {
  font-family: "Farnklin";
  font-weight: 900;
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}
@font-face {
  font-family: "Farnklin";
  font-weight: 500;
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}
@font-face {
  font-family: "Farnklin";
  font-weight: 300;
  src: url("fonts/itc-franklin-gothic-std-book.otf");
}


.content {
  width: 100%;
}

.galery-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}

.image-wrapper {
  width: 100%;
  height: 250px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  margin-top: -1px;
  animation: zoom 0.3s ease-in-out;
}

@keyframes zoom {
  from {
      transform: scale(0);
  }
  to {
      transform: scale(1);
  }
}

.modal-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

/* .modal img {
  width: 50%;
  object-fit: cover;
} */

.closeBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.closeBtn:hover {
  color: rgb(255, 255, 255);
}


.prev-button {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.next-button {
  width: 30px;
  height: 30px;
  transform: rotate(180deg);
  cursor: pointer;
}

.mySlides {
  width: 100%;
  height: auto;
}

.mySlides img {
  width: 60%;
  /* height: 680px; */
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
  transform: translate(0, 0);
}

@keyframes fade {
  from {
    opacity: .4;
    /* transform: translate(10%, 0); */
  }
  to {
    opacity: 1;
    /* transform: translate(0, 0); */
  }
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.contact-wrapper {
  width: 100%;
  margin-bottom: 45px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-header {
  margin: 0;
  font-size: 40px;
}

.rodo-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.rodo-container a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

.rodo-container p {
  margin: 0;
  padding: 0;
}

.top-button {
  padding: 10px 20px;
  margin-left: 20px;
  background: #d0a93c;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.social {
  align-items: center;
  justify-content: space-between !important;
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 30px;
    /* margin: 0 auto; */
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}

.header-menu a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}

/* Offer  */

.offer-container {
  /* width: 70vw; */
  margin: 0 auto;
  overflow-x: auto;
  background-color: #0000008f;
  font-size: 16px;
}

.offer-table {
  width: 100%;
  border: 1px solid #b3adad;
  border-collapse: collapse;
  padding: 5px;
}
table th {
  border: 1px solid #b3adad;
  padding: 5px;
  /* background: #f0f0f0; */
  color: #fff;
}
table td {
  border: 1px solid #b3adad;
  text-align: center;
  padding: 5px;
  /* background: #ffffff; */
  color: #fff;
}

.galery-image {
  object-fit: cover;
}

@media screen and (min-width: 768px) {

  .galery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .mySlides {
    width: 50%;
    height: auto;
  }
}

@media screen and (min-width: 375px) {
  .image-wrapper {
    height: 300px;
  }
}

/* @media screen and (min-width: 1000px) {
  .content {
    display: none;
  }
} */

@media screen and (max-width: 426px) {
  .header-container {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1100px) {
  .top-button-header {
    display: none;
  }
	.contact-header {
  margin: 0;
  font-size: 30px;
}
/*
  .content-top {
    display: none;
  } */

  .social li:first-of-type {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .galery-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mySlides {
    width: 40%;
    height: auto;
  }
}

@media screen and (min-width: 1025px) {
  .contact-container {
    flex-direction: row;
  }
  .mySlides {
    width: 30%;
    height: auto;
  }

  .contact-wrapper {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  .image-wrapper {
    height: 330px;
  }
  .mySlides {
    width: 30%;
    height: auto;
  }
}

.contact-map {
  width: 100%;
  height: 100%;
}

.top-button-mobile {
  margin-left: 0;
}

.main-galery,
.main-oferta {
    flex-direction: column;
}


.logo-container {
  display: none;
}

.logo-content-container {
  display: flex;
  align-items: center;
}

.logo-mobile {
  display: block;
  width: 170px;
}

@media screen and (min-width: 768px) {
  .logo-container {
    display: block;
  }

  .logo-mobile {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  header {
    padding-bottom: 40px;
  }
}