@import url('general/theme.css');
@import url('general/general.css');
@import url('parts/header.css');
@import url('parts/burger.css');
@import url('parts/footer.css');
@import url('pages/hp.css');
.gallery .gallery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery .gallery-items .gal-item {
  width: calc(50% - 10px);
  display: block;
  position: relative;
}
.gallery .gallery-items .gal-item img {
  display: block;
  aspect-ratio: 25 / 17;
  object-fit: cover;
  object-position: center;
}
.gallery .gallery-items .go-to-gallery {
  aspect-ratio: 25 / 17;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(50% - 10px);
  text-decoration: none;
}
.gallery .gallery-items .go-to-gallery:hover {
  background: var(--bttn-hover);
}
.gallery.gallery-prew .gallery-items .gal-item.text {
  background: var(--light-black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 21px;
  text-decoration: none;
  text-align: center;
}
.gallery.gallery-prew .gallery-items .gal-item.text:hover {
  color: var(--white);
}
.gallery.gallery-prew .gallery-items .gal-item.text:hover::before {
  display: none;
}
@media (min-width: 768px) {
  .gallery .gallery-items .gal-item {
    width: calc(33.3334% - 14px);
  }
  .gallery .gallery-items .go-to-gallery {
    width: calc(33.3334% - 14px);
  }
  .gallery.gallery-prew .gallery-items .gal-item {
    width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .gallery.gallery-prew .gallery-items .gal-item {
    width: calc(28% - 15px);
  }
  .gallery.gallery-prew .gallery-items .gal-item.text {
    width: calc(16% - 15px);
  }
}
@media (min-width: 1370px) {
  .gallery .gallery-items .gal-item::before {
    content: "";
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: 0.2s;
  }
  .gallery .gallery-items .gal-item:hover::before {
    content: "";
    background: rgba(61, 61, 61, 0.71);
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
}
.modal .modal-dialog {
  max-height: 90%;
  overflow-y: auto;
  max-width: 1179px;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-dialog .modal-content {
  background: var(--white);
}
.modal .modal-dialog .modal-content .modal-header h2 {
  text-align: center;
  padding: 80px 0 0 0;
  margin: 0;
}
.modal .modal-dialog .modal-content .modal-header .close {
  background: var(--pea);
  border-radius: 0;
  border: 0;
  width: 109px;
  height: 60px;
  font-weight: 600;
  font-size: 21px;
  position: absolute;
  right: 0;
  top: 0;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
.modal .modal-dialog .modal-content .modal-body form {
  padding: 0;
}
@media (min-width: 480px) {
  .modal .modal-dialog .modal-content .modal-body form .form-group {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content .modal-header .close {
    right: 41px;
  }
  .modal .modal-dialog .modal-content .modal-header h2 {
    padding: 50px 0 20px 0;
  }
}
@media (min-width: 992px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 50px;
  }
}
form {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
}
form .form-group {
  margin-bottom: 30px;
}
form .form-group label {
  font-size: 21px;
  display: block;
  margin-bottom: 5px;
}
form .form-group label .required {
  color: #e62929;
}
form .form-group input {
  height: 49px;
  width: 100%;
  border-radius: 49px;
  border: 1px solid #a8a9a8;
  font-family: var(--Urbanist);
  font-size: 21px;
  padding: 0 25px;
}
form .form-group textarea {
  height: 150px;
  width: 100%;
  border-radius: 35px;
  border: 1px solid #a8a9a8;
  padding: 30px;
  resize: none;
  font-family: var(--Urbanist);
  font-size: 21px;
}
form .form-group.spam input {
  max-width: 118px;
}
form p {
  text-align: center;
  margin-bottom: 30px;
}
form button {
  margin: 0 auto;
  display: table;
}
@media (min-width: 768px) {
  form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 43px;
  }
  form .form-group label {
    width: 150px;
    padding-right: 30px;
    white-space: nowrap;
    margin: 0;
  }
  form .form-group.spam label {
    width: auto;
  }
}
@media (min-width: 992px) {
  form {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    padding: 50px;
  }
  form .form-group {
    width: calc(50% - 15px);
  }
  form .form-group.w-100 {
    width: 100%;
  }
}
@media (min-width: 1370px) {
  form {
    column-gap: 110px;
  }
  form .form-group {
    width: calc(50% - 55px);
    margin-bottom: 45px;
  }
  form p {
    margin-bottom: 45px;
  }
}
.extra-info {
  margin-top: 30px;
}
.extra-info .extra-text ul li {
  color: var(--dark-grey);
}
.extra-info .extra-text ul li::before {
  color: var(--black);
}
.extra-info .extra-banner {
  background: var(--pea);
  border-radius: 6px;
  padding: 30px;
}
.extra-info .extra-banner h2 {
  margin: 0 0 20px 0;
  font-weight: 600;
}
.extra-info .extra-banner h2 strong {
  font-weight: 800;
}
@media (min-width: 768px) {
  .extra-info {
    display: flex;
    gap: 24px;
    margin-top: 60px;
  }
  .extra-info > div {
    width: 50%;
  }
  .extra-info > div h3 {
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .extra-info .extra-banner {
    padding: 30px 50px;
  }
  .extra-info .extra-banner h2 {
    margin-bottom: 30px;
  }
  .extra-info .extra-banner p {
    margin-bottom: 30px;
  }
}
@media (min-width: 1370px) {
  .extra-info {
    gap: 48px;
    margin-top: 90px;
  }
  .extra-info .extra-banner {
    padding: 50px 65px;
  }
}
.text-image {
  margin: 30px 0 0 0;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .text-image .container {
    display: flex;
    gap: 24px;
  }
  .text-image .container > div {
    width: 50%;
  }
  .text-image .container > div h2 {
    margin-top: 15px;
  }
  .text-image .container > div.text {
    display: flex;
    flex-direction: column;
  }
  .text-image .container > div.text .bttn {
    margin-top: auto;
  }
}
@media (min-width: 992px) {
  .text-image {
    margin: 60px 0 0 0;
  }
}
@media (min-width: 1370px) {
  .text-image {
    margin: 90px 0 0 0;
    padding: 90px 0;
  }
  .text-image .container {
    gap: 48px;
  }
}
.cookies-popup {
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 2000;
  width: 100%;
  max-width: 26rem;
  text-align: center;
  background: var(--white);
  color: var(--black);
}
@media (min-width: 480px) {
  .cookies-popup {
    right: 20px;
    bottom: 20px;
    padding: 2rem;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.004), 0 0 20px rgba(0, 0, 0, 0.013), 0 0 32px rgba(0, 0, 0, 0.07);
  }
}
@media (min-width: 1230px) {
  .cookies-popup {
    max-width: 28rem;
  }
}
.cookies-popup .cookies_actions {
  justify-content: center;
  margin-top: 1rem;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookies-popup .cookies_links {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 0.5rem;
  margin-top: 1rem;
}
.cookies-popup .cookies_links a {
  color: var(--black) !important;
}
.cookies-popup .cookies_links a:hover,
.cookies-popup .cookies_links a:focus-visible {
  text-decoration: none;
}
.setting#cookiesConsent {
  max-width: 72rem;
  padding-right: 4rem;
  text-align: justify;
}
.setting#cookiesConsent .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (max-width: 480px) {
  .setting#cookiesConsent {
    padding-right: 2rem;
  }
}
@media (max-width: 384px) {
  .setting#cookiesConsent {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.setting#cookiesConsent .cookies_header h2 {
  margin-bottom: 2rem;
}
.setting#cookiesConsent .cookies_type {
  border-top: 1px solid #eee;
  padding: 2rem 0 0;
  margin: 2rem 0 0;
}
@media (max-width: 767px) {
  .setting#cookiesConsent .cookies_type {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
.setting#cookiesConsent .cookies_type_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.setting#cookiesConsent .cookies_type_header h3 {
  margin: 0;
}
.setting#cookiesConsent .cookies_type_info {
  margin: 1rem 0;
}
.setting#cookiesConsent .cookies_type_switch {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  font-size: 1.375rem;
  margin: 0;
}
@media (max-width: 1600px) {
  .setting#cookiesConsent .cookies_type_switch {
    font-size: 1.25rem;
  }
}
@media (max-width: 1140px) {
  .setting#cookiesConsent .cookies_type_switch {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .setting#cookiesConsent .cookies_type_switch {
    font-size: 1rem;
  }
}
.setting#cookiesConsent .cookies_type_switch.cookies_type_switch-mandatory {
  opacity: 0.75;
  cursor: not-allowed;
}
.setting#cookiesConsent .cookies_type_switch .switch_el {
  display: flex;
  align-items: center;
  width: 3em;
  height: 1.5em;
  background: #eee;
  border-radius: 0.75em;
  transition: background-color 0.2s ease;
}
.setting#cookiesConsent .cookies_type_switch .switch_el::after {
  content: '';
  display: block;
  height: calc(1.5em - 4px);
  width: calc(1.5em - 4px);
  border-radius: 50%;
  background: #fff;
  border: 2px solid #eee;
  transform: translateX(100%);
  transition: transform 0.2s ease, border 0.2s ease;
}
.setting#cookiesConsent .cookies_type_switch input:checked + .switch_el {
  background: #56b456;
}
.setting#cookiesConsent .cookies_type_switch input:checked + .switch_el::after {
  border-color: #56b456;
  transform: translateX(0);
}
.setting#cookiesConsent .cookies_type_switch input:focus-visible + .switch_el {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}
.setting#cookiesConsent .cookies_actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
}
.setting#cookiesConsent .cookies_actions input {
  border: 0;
}
.setting#cookiesConsent .cookies_actions .btn {
  flex: 1;
  float: none;
  margin: 0;
}
.setting#cookiesConsent .cookies_actions .btn:nth-child(1) {
  border-radius: 0 0 4px 4px;
  width: 100%;
  flex: none;
  order: 3;
}
@media (min-width: 480px) {
  .setting#cookiesConsent .cookies_actions .btn:nth-child(1) {
    flex: 1;
    width: auto;
    border-radius: 0;
    order: 2;
  }
}
.setting#cookiesConsent .cookies_actions .btn:nth-child(2) {
  border-radius: 0 4px 0 0;
  order: 2;
}
@media (min-width: 480px) {
  .setting#cookiesConsent .cookies_actions .btn:nth-child(2) {
    border-radius: 0 4px 4px 0;
    order: 3;
  }
}
.setting#cookiesConsent .cookies_actions .btn:nth-child(3) {
  border-radius: 4px 0 0 0;
  order: 1;
}
@media (min-width: 480px) {
  .setting#cookiesConsent .cookies_actions .btn:nth-child(3) {
    border-radius: 4px 0 0 4px;
  }
}
.gallery-page .heading {
  text-align: center;
  padding: 30px 0;
}
.gallery-page .heading h1 {
  margin: 0 0 10px 0;
}
.gallery-page .heading h2 {
  margin: 0;
}
.gallery-page .gallery {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .gallery-page .heading {
    padding: 60px 0;
  }
  .gallery-page .gallery {
    padding: 60px 0;
  }
}
.specifikace-stavby h1 {
  position: relative;
  padding-bottom: 100px;
  line-height: 120%;
  font-weight: normal;
  text-align: center;
}
.specifikace-stavby h1 .circles {
  position: absolute;
  right: 20px;
  bottom: -20px;
}
.specifikace-stavby h1 .circles .circle-sand {
  background: url("/images/circle-sand.png") no-repeat center;
  line-height: 14px;
  height: 100px;
  width: 100px;
  color: var(--black);
  background-size: contain;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.specifikace-stavby h1 .circles .circle-sand small {
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
}
.specifikace-stavby h1 .circles .circle-sand span {
  display: block;
  font-size: 17px;
  font-weight: 800;
}
.specifikace-stavby h1 .circles .circle-brown {
  margin: -132px 0 0 -86px;
  background: url("/images/circle-brown.png") no-repeat center;
  line-height: normal;
  height: 100px;
  width: 100px;
  color: var(--black);
  background-size: contain;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.specifikace-stavby h1 .circles .circle-brown span {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.specifikace-stavby h1 .circles .circle-brown strong {
  font-size: 18px;
  display: block;
  font-weight: 900;
}
.specifikace-stavby h1 .circles .circle-brown small {
  font-size: 10px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .specifikace-stavby h1 {
    padding-bottom: 130px;
  }
  .specifikace-stavby h1 .circles .circle-sand {
    width: 140px;
    height: 140px;
    line-height: 20px;
  }
  .specifikace-stavby h1 .circles .circle-sand small {
    font-size: 14px;
  }
  .specifikace-stavby h1 .circles .circle-sand span {
    font-size: 30px;
  }
  .specifikace-stavby h1 .circles .circle-brown {
    width: 140px;
    height: 140px;
    line-height: 27px;
    margin: -184px 0 0 -120px;
  }
  .specifikace-stavby h1 .circles .circle-brown span {
    font-size: 19px;
  }
  .specifikace-stavby h1 .circles .circle-brown strong {
    font-size: 25px;
  }
  .specifikace-stavby h1 .circles .circle-brown small {
    font-size: 14px;
  }
}
@media (min-width: 1100px) {
  .specifikace-stavby h1 .circles {
    top: 45px;
    bottom: auto;
  }
}
@media (min-width: 1370px) {
  .specifikace-stavby h1 {
    padding-bottom: 75px;
    margin: 60px 0;
  }
  .specifikace-stavby h1 .circles .circle-sand {
    width: 173px;
    height: 173px;
    line-height: 28px;
  }
  .specifikace-stavby h1 .circles .circle-sand small {
    font-size: 16px;
    line-height: 20px;
  }
  .specifikace-stavby h1 .circles .circle-sand span {
    font-size: 37px;
  }
  .specifikace-stavby h1 .circles .circle-brown {
    width: 173px;
    height: 173px;
    margin: -227px 0 0 -147px;
    line-height: 32px;
  }
  .specifikace-stavby h1 .circles .circle-brown span {
    font-size: 22px;
  }
  .specifikace-stavby h1 .circles .circle-brown strong {
    font-size: 30px;
  }
  .specifikace-stavby h1 .circles .circle-brown small {
    font-size: 16px;
  }
  .specifikace-stavby .bottom-text {
    padding: 110px 0 40px 0;
  }
}
.vybaveni-domu#content h1 {
  font-weight: normal;
  text-align: center;
  line-height: 120%;
}
.vybaveni-domu#content .qBox {
  background: var(--black);
  border-radius: 10px;
  color: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.vybaveni-domu#content .qBox .item {
  text-align: center;
  line-height: 1;
}
.vybaveni-domu#content .qBox .item span {
  color: var(--pea);
  font-size: 25px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.vybaveni-domu#content .qBox .item strong {
  font-size: 29px;
  font-weight: 800;
  display: block;
}
.vybaveni-domu#content .qBox .item p {
  font-size: 21px;
  margin: 10px 0 0 0;
}
.vybaveni-domu#content .descriptions .inner {
  display: flex;
  column-gap: 30px;
}
.vybaveni-domu#content .descriptions .inner .nav-menu ul {
  margin: 0;
  padding: 0;
  position: sticky;
  top: 20px;
}
.vybaveni-domu#content .descriptions .inner .nav-menu ul li {
  cursor: pointer;
  margin: 10px 0;
  background: url("/images/arrow.svg") no-repeat right 10px center;
  background-size: 15px;
  padding: 5px 30px 5px 10px;
  color: #8e8e8e;
  font-weight: bold;
}
.vybaveni-domu#content .descriptions .inner .nav-menu ul li::before {
  display: none;
}
.vybaveni-domu#content .descriptions .inner .nav-menu ul li.active {
  color: var(--black);
  background: var(--pea) url("/images/arrow.svg") no-repeat right 10px center;
  background-size: 15px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .vybaveni-domu#content .qBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .vybaveni-domu#content .qBox .item {
    width: 50%;
  }
  .vybaveni-domu#content .qBox .item span {
    font-size: 29px;
  }
  .vybaveni-domu#content .qBox .item strong {
    font-size: 33px;
  }
  .vybaveni-domu#content .qBox .item p {
    font-size: 25px;
  }
  .vybaveni-domu#content .descriptions {
    column-gap: 100px;
  }
  .vybaveni-domu#content .descriptions .inner .nav-menu ul li {
    width: 208px;
  }
}
@media (min-width: 992px) {
  .vybaveni-domu#content .qBox {
    justify-content: space-between;
    padding: 50px;
    flex-wrap: nowrap;
    column-gap: 30px;
  }
  .vybaveni-domu#content .qBox .item {
    width: auto;
  }
  .vybaveni-domu#content .descriptions {
    column-gap: 155px;
  }
  .vybaveni-domu#content .descriptions .inner .nav-menu ul li {
    margin: 15px 0;
  }
}
@media (min-width: 1370px) {
  .vybaveni-domu#content h1 {
    margin: 60px 0;
  }
  .vybaveni-domu#content .descriptions {
    padding: 40px 80px;
  }
  .vybaveni-domu#content .descriptions .inner .nav-menu ul li {
    margin: 20px 0;
  }
}
.kontakt h1 {
  text-align: center;
}
.kontakt .boxes {
  padding-bottom: 30px;
}
.kontakt .form-wrapper {
  display: table;
  width: 100%;
  padding: 0 0 30px 0;
}
.kontakt .form-wrapper h3 {
  text-align: center;
  background: url("/images/pen.png") no-repeat left center;
  display: table;
  padding: 10px 0 10px 70px;
  margin: 30px auto;
}
.kontakt .form-wrapper form {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .kontakt .boxes {
    display: flex;
    padding: 0 0 60px 0;
    margin: 0 -50px;
  }
  .kontakt .boxes .item {
    width: 33.3334%;
    border-right: 1px solid #e2e2e2;
    padding: 0 50px;
  }
  .kontakt .boxes .item:last-child {
    border: 0;
  }
  .kontakt .form-wrapper {
    padding: 0 0 50px 0;
  }
}
@media (min-width: 1370px) {
  .kontakt h1 {
    margin: 60px 0;
  }
  .kontakt .boxes {
    padding: 40px 0 110px 0;
    margin: 0 -110px;
  }
  .kontakt .boxes .item {
    padding: 0 110px;
  }
  .kontakt .form-wrapper {
    padding: 0 0 90px 0;
  }
  .kontakt .form-wrapper h3 {
    margin: 60px auto;
  }
  .kontakt .bottom-text {
    padding: 110px 0 40px 0;
  }
}
#content.pudoris-domu h1 {
  text-align: center;
  margin: 0;
  padding: 30px 0;
}
#content.pudoris-domu .nav-menu {
  background: var(--light-grey);
  padding: 28px 0;
}
#content.pudoris-domu .nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  font-weight: 600;
  overflow-x: auto;
  white-space: nowrap;
}
#content.pudoris-domu .nav-menu ul li {
  margin: 0;
  cursor: pointer;
  padding: 17px 25px;
}
#content.pudoris-domu .nav-menu ul li::before {
  display: none;
}
#content.pudoris-domu .nav-menu ul li.active {
  background: var(--black);
  color: var(--white);
  border-radius: 50px;
}
#content.pudoris-domu .preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
#content.pudoris-domu .preview p {
  margin: 30px 0;
  text-align: center;
}
@media (min-width: 992px) {
  #content.pudoris-domu h1 {
    padding: 60px 0;
  }
  #content.pudoris-domu .preview p {
    margin: 60px 0;
  }
}
/*# sourceMappingURL=style.css.map */