@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

* {
  -webkit-touch-callout: none;
}

html, body {
  scroll-behavior: smooth;
}

body {
  background: #F6F1EB;
}

h2.h2 {
  font-size: 65px;
  font-weight: 400;
  color: #3E3E3E;
  line-height: 1.1em;
  letter-spacing: -2%;
  font-family: "Montserrat", sans-serif;
}
h2.h2.center {
  text-align: center;
}

@media only screen and (max-width: 1650px) {
  h2.h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 27px;
  }
}
header {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo a {
  color: #3E3E3E;
  text-decoration: none;
  font-size: 30px;
  font-weight: 500;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #3E3E3E;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #3E3E3E;
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .btn a {
  font-size: 18px;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3E3E3E;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 401;
  background: rgba(62, 62, 62, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    gap: 30px;
  }
  header nav a {
    font-size: 16px;
  }
  header .btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 0 5%;
    height: 85px;
  }
  header .logo a {
    font-size: 25px;
  }
  header nav {
    display: none;
  }
  header .btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 0 5%;
    height: 70px;
  }
  header .logo a {
    font-size: 20px;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn.secondary a {
  background: transparent;
  border: 2px solid #3E3E3E;
  color: #3E3E3E;
}
.btn.secondary:hover a {
  outline: 1px solid #3E3E3E;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  border-radius: 200px;
  text-decoration: none;
  padding: 0.65em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #B8B9A5;
  outline: 1px solid transparent;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
}
.btn:hover a {
  outline: 1px solid #B8B9A5;
}

footer {
  padding: 5rem 5%;
  background: #3E3E3E;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 55%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}
footer .footer__content .left p, footer .footer__content .left a {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .left p {
  max-width: 500px;
}
footer .footer__content .left img {
  height: 250px;
}
footer .footer__content .left a {
  text-decoration: none;
}
footer .footer__content .left a[href^=tel] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  font-weight: 400;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #B8B9A5;
  stroke-width: 3;
}

@media only screen and (max-width: 1550px) {
  footer .footer__content .left {
    width: 60%;
    gap: 25px;
  }
  footer .footer__content .left img {
    height: 200px;
  }
  footer .footer__content .left p {
    max-width: 400px;
  }
}
@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left img {
    height: 175px;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right h3 {
    font-size: 2em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
    flex-flow: column;
  }
  footer .footer__content .left h2 {
    font-size: 25px;
  }
  footer .footer__content .left p {
    font-size: 14px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #3E3E3E;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #3E3E3E;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: #B8B9A5;
}
.contacts form p {
  font-size: 18px;
  margin-bottom: 50px;
  color: rgba(62, 62, 62, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
  color: #3E3E3E;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  color: #3E3E3E;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form .btn a {
  font-size: 21px;
}
.contacts .details {
  padding: 40px;
  background: #EBE6E0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 0.75fr 0.25fr;
  gap: 10px;
  row-gap: 20px;
  width: 40vw;
  z-index: 2;
}
.contacts .details .details__content {
  display: flex;
  justify-items: start;
  align-items: start;
  flex-flow: column;
  row-gap: 20px;
}
.contacts .details .details__content h3 {
  font-size: 40px;
  color: #3E3E3E;
  font-weight: 500;
}
.contacts .details .details__content .link {
  color: #3E3E3E;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.contacts .details .details__content .link svg {
  height: 31px;
  width: 31px;
  stroke-width: 1.75;
}
.contacts .details .details__content .link span {
  font-size: 27px;
  font-weight: 300;
}
.contacts .details .photo {
  width: 100%;
}
.contacts .details .photo img {
  width: 100%;
  border-radius: 10px;
}
.contacts .details .photo p {
  font-size: 18px;
  color: #3E3E3E;
}

@media only screen and (max-width: 1550px) {
  .contacts .details {
    width: 45vw;
    padding: 30px;
  }
  .contacts .details .details__content h3 {
    font-size: 35px;
  }
  .contacts .details .details__content .link svg {
    height: 27px;
    width: 27px;
  }
  .contacts .details .photo p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
    gap: 25px;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details .details__content h3 {
    font-size: 25px;
  }
  .contacts .details .details__content .link {
    gap: 10px;
  }
  .contacts .details .details__content .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__content .link span {
    font-size: 17px;
  }
  .contacts .details .photo img {
    width: 100%;
  }
  .contacts .details .photo p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .contacts .details .photo img {
    width: 50%;
  }
}
@media only screen and (max-width: 700px) {
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
    margin-top: 5px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
    grid-template-columns: 1fr;
  }
  .contacts .details .details__content h3 {
    font-size: 20px;
  }
  .contacts .details .details__content .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__content .link span {
    font-size: 15px;
  }
}
.hero p {
  font-size: 18px;
  color: #3e3e3e;
}

.container .container__hero {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.container .swipe-info {
  display: none;
}
.container .filter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.container .filter-form .filters-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}
.container .filter-form .filter-group {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
.container .filter-form .filter-group label {
  color: #3e3e3e;
  font-size: 18px;
}
.container .filter-form .sort-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
.container .filter-form select {
  margin: 0;
  background: none;
  font-size: 18px;
  border: none;
  color: #3e3e3e;
  border-radius: 100px;
}
.container .filter-form button {
  display: none;
}

.price-table {
  padding: 60px 10%;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 20px;
  table-layout: fixed;
}
.price-table table thead th {
  background: #B8B9A5;
  padding: 25px 20px;
  font-weight: bold;
  color: #fff;
  width: auto;
  overflow: hidden;
  font-size: 17px;
  font-weight: 500;
}
.price-table table thead th:first-child {
  border-top-left-radius: 25px;
}
.price-table table thead th:last-child {
  border-top-right-radius: 25px;
}
.price-table table tbody tr {
  border-bottom: 1px solid #ddd;
}
.price-table table tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.price-table table tbody tr td {
  width: auto;
}
.price-table table tbody tr td button {
  background: none;
  border: none;
  transition: 0.25s ease;
}
.price-table table tbody tr td button:hover {
  transform: scale(1.05);
}
.price-table table tbody tr td button a {
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  border: 1px solid #3e3e3e;
  color: #3e3e3e;
  font-weight: 600;
  font-size: 13px;
}

.price-table {
  padding: 40px 5%;
}
.price-table table {
  width: 100%;
}
.price-table table tbody td {
  padding: 20px;
  font-size: 15px;
  color: #3e3e3e;
}

.image__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.image__row .image {
  width: 100%;
}
.image__row .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 1550px) {
  .price-table {
    padding: 40px 5%;
  }
  .price-table table {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column;
  }
  .price-table table thead {
    width: 100%;
  }
  .price-table table thead tr {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 11 stejných sloupců */
    width: 100%;
  }
  .price-table table thead tr th.big {
    grid-column: span 2; /* zabere 2 sloupce místo jednoho */
  }
  .price-table table tbody td {
    padding: 20px;
    font-size: 14px;
    color: #3e3e3e;
  }
  .price-table table tbody tr {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 11 stejných sloupců */
    width: 100%;
  }
  .price-table table tbody tr td.big {
    grid-column: span 2; /* zabere 2 sloupce místo jednoho */
  }
}
@media only screen and (max-width: 1300px) {
  .hero p {
    font-size: 16px;
  }
  .container .swipe-info {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
  }
  .container .swipe-info img {
    height: 24px;
  }
  .container .swipe-info span {
    font-size: 16px;
    color: #3e3e3e;
  }
  .container .filter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
  }
  .container .filter-form .filter-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .container .filter-form .filter-group label {
    font-size: 16px;
  }
  .container .filter-form .filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .container .filter-form .sort-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .container .filter-form label {
    font-size: 14px;
  }
  .container .filter-form select {
    margin: 0;
    font-size: 15px;
  }
  .price-table {
    padding: 20px 5%;
  }
  .price-table .table-parent {
    width: 100%;
    position: relative;
    overflow-x: scroll;
  }
  .price-table .table-parent table {
    width: 100%;
    min-width: 1500px;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed;
  }
  .price-table .table-parent table thead th:first-child {
    border-top-left-radius: 15px;
  }
  .price-table .table-parent table thead th:last-child {
    border-top-right-radius: 15px;
  }
  .price-table .table-parent table thead th,
  .price-table .table-parent table tbody td {
    padding: 0.75rem;
    font-size: 13px;
    width: 150px;
  }
  .price-table .table-parent table tbody tr td button a {
    font-weight: 500;
  }
  .contacts {
    padding: 3.5rem 10%;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details h3 {
    font-size: 30px;
  }
  .contacts .details .link svg {
    height: 23px;
    width: 23px;
  }
  .contacts .details .link span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .container .container__hero {
    flex-flow: column;
    align-items: start;
  }
  .container .container__hero p {
    font-size: 15px;
  }
  .container .swipe-info {
    margin-top: 15px;
    gap: 10px;
  }
  .container .swipe-info img {
    height: 21px;
  }
  .container .swipe-info span {
    font-size: 14px;
    color: #3e3e3e;
  }
  .container .filter-form .filters-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    gap: 40px;
  }
  .container .filter-form .filter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }
  .container .filter-form .filter-group label {
    font-size: 14px;
  }
  .container .filter-form select {
    font-size: 14px;
    min-width: 50%;
  }
  .price-table .table-parent {
    width: 100%;
    position: relative;
    overflow-x: scroll;
  }
  .price-table .table-parent table {
    width: auto;
    min-width: 1650px;
  }
  .price-table .table-parent table thead {
    width: 100%;
  }
  .price-table .table-parent table tbody {
    width: 1650px;
  }
  .price-table .table-parent table tbody tr {
    width: 1650px;
  }
  .price-table .table-parent table tbody tr td {
    width: auto;
  }
  .price-table .table-parent {
    width: 100%;
  }
  .price-table table {
    width: 175vw;
    table-layout: fixed;
  }
  .price-table table thead th,
  .price-table table tbody td {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    word-wrap: break-word;
  }
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .container .filter-form {
    grid-template-columns: 1fr;
  }
  .container .filter-form .filters-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    row-gap: 10px;
    width: 100%;
  }
  .container .filter-form .filter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .container .filter-form .sort-wrapper {
    gap: 10px;
    justify-content: start;
  }
  .container .filter-form label {
    font-size: 13px;
  }
  .container .filter-form select {
    font-size: 13px;
    max-width: 40%;
  }
  .container .swipe-info {
    margin-top: 10px;
    gap: 10px;
  }
  .container .swipe-info img {
    height: 19px;
  }
  .container .swipe-info span {
    font-size: 12px;
    color: #3e3e3e;
  }
  .image__row {
    grid-template-columns: 1fr 1fr;
  }
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
    margin-top: 0.5rem;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details h3 {
    font-size: 20px;
  }
  .contacts .details .link svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .link span {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */