@charset "UTF-8";
/*
 *                    HORIZONTY
 *
 *                    Apr 2026 | v 1.0
 *                    Ing. Ondrej Čerman
 *
 *    Last edit: 19.04.2024
 */
/*  ========[ Definicie ]============================================  */
:root {
  --green-dark: #1C3322;
  --green-mid: #2A4A33;
  --green-light: #3D6147;
  --copper: #A0714F;
  --copper-light: #C49070;
  --cream: #F5F2ED;
  --cream-mid: #EDE8E0;
  --text-dark: #1A2820;
  --text-body: var(--fake-black);
  --text-muted: #6B7D72;
  --white: #FFFFFF;
  --fake-black: #161616;
  --grey: #F2F2F2;
  --radius: 8px;
  --shadow: 0 4px 32px rgba(28,51,34,0.10);
  --shadow-card: 0 2px 16px rgba(28,51,34,0.08);
  --font: 'Roboto', 'Inter', sans-serif;
  --headerFont: 'Montserrat', sans-serif;
  --disabledColor: darkgray;
  --red: red;
  --green: #1E3F29;
  --dark-green: #0C311A;
  --dark-grey: #737973;
  --light-grey: #D1D5CF;
  --brown: #8B6F4E;
  --warm-show: #F3EFE8; }

/*  ======================================================================  */
/*  ========[ Zakladne casti ]=======================================  */
html, body {
  height: 100%; }

html, body, img, a {
  margin: 0;
  padding: 0;
  border: 0; }

a {
  color: currentColor;
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }
  a.for-btn {
    text-decoration: none; }

:root {
  background: #FFFFFF; }

html {
  font-family: var(--font);
  font-size: 1em;
  text-align: left;
  font-weight: normal;
  color: var(--text-body);
  scroll-behavior: smooth;
  scroll-padding: 70px;
  font-size: 1em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased; }

form {
  max-height: 100%; }

iframe {
  border: 0;
  margin: 0; }

p {
  margin: 1em 0; }

strong {
  font-weight: bold; }

img {
  max-width: 100%; }

h1, h2, h3, .header {
  margin: 1rem 0;
  line-height: 1.2;
  font-family: var(--headerFont);
  font-weight: 700; }

h1, .ash1 {
  font-size: 4.5em;
  letter-spacing: -4px; }
  @media (max-width: 1200px) {
    h1, .ash1 {
      font-size: 4em; } }
  @media (max-width: 51em) {
    h1, .ash1 {
      font-size: 3em; } }

h2, .ash2 {
  font-size: 2em; }
  @media (max-width: 51em) {
    h2, .ash2 {
      font-size: 1.6em; } }

h3, .ash3 {
  font-size: 1.5em; }
  @media (max-width: 51em) {
    h3, .ash3 {
      font-size: 1.13m; } }

/*  ========[ Casti stranook ]============================================  */
.content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.cpad {
  padding: 2em; }
  @media (max-width: 51em) {
    .cpad {
      padding: 1em; } }

#layout {
  position: realtive;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  #layout header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900; }
  #layout .context {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  header .logo img {
    height: 77px; }
  @media (max-width: 51em) {
    header {
      padding: 20px 24px; } }

.pg-generic.centered {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

footer {
  background: var(--green);
  color: var(--grey);
  padding: 32px; }
  footer .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px; }
  footer .footer-brand {
    font-family: 'Inter', sans-serif;
    color: var(--white); }
    footer .footer-brand p {
      font-size: 14px;
      margin-top: 8px; }
  footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    footer .footer-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      -webkit-transition: color 0.2s;
      transition: color 0.2s; }
  footer .footer-email a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s; }
  footer a:hover {
    color: var(--white); }
  footer .footer-copy {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 12px;
    color: #78716C;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto; }
  @media (max-width: 51em) {
    footer {
      padding: 24px; }
      footer .footer-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }

/*  ========[ Helpre ]====================================================  */
.hidden {
  display: none; }

/*  ========[ Komponenty ]================================================  */
.elposta:after {
  content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); }

/*  ========[ Widgety ]============================================  */
form .response .msg {
  display: none; }
form.loading, form.loading * {
  cursor: wait; }
form .failure-msg {
  color: var(--red); }
form .success-msg {
  color: var(--green); }
form.touched :invalid {
  border-color: var(--red);
  outline: none; }
form.touched input[type="checkbox"]:invalid {
  border-color: var(--red);
  outline: 1px solid var(--red); }

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-bottom: 14px; }

fieldset {
  padding: 1em;
  margin: 0;
  border: 1px solid currentColor;
  border-radius: 5px; }

input, textarea, select {
  background: var(--grey, #F2F2F2);
  border: 1px solid var(--grey, #F2F2F2);
  color: var(--fake-black, #161616);
  font-family: var(--font);
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25em;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 14px;
  text-align: left;
  border-radius: 6px; }
  input:focus, textarea:focus, select:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
    color: var(--light-grey, #D1D5CF);
    opacity: 1; }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
    color: var(--light-grey, #D1D5CF);
    opacity: 1; }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
    color: var(--light-grey, #D1D5CF);
    opacity: 1; }
  input::placeholder, textarea::placeholder, select::placeholder {
    color: var(--light-grey, #D1D5CF);
    opacity: 1; }
  input:invalid, textarea:invalid, select:invalid {
    outline: none; }
  input:-moz-ui-invalid, textarea:-moz-ui-invalid, select:-moz-ui-invalid {
    box-shadow: none; }
  input[disabled], textarea[disabled], select[disabled] {
    background: var(--disabledColor);
    color: white; }

select option {
  font-family: var(--font);
  font-weight: normal;
  font-size: 1em; }

.form-group label {
  font-family: var(--font);
  font-weight: bold;
  font-size: 10px;
  color: currentColor;
  color: var(--dark-grey, #737973);
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase; }

.form-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--dark-grey); }

input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green-mid);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15px;
  height: 15px;
  cursor: pointer; }
  input[type="checkbox"] + label {
    display: inline-block;
    cursor: pointer;
    line-height: 1; }

textarea {
  resize: vertical;
  min-height: 90px; }

.button {
  display: inline-block; }

button, .button {
  color: black;
  background: var(--dark-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--headerFont);
  font-weight: 600;
  text-align: center;
  padding: 1em;
  cursor: pointer;
  font-size: 1em;
  text-decoration: none;
  line-height: 100%;
  min-width: 180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-filter 0.1s ease;
  transition: -webkit-filter 0.1s ease;
  transition: filter 0.1s ease;
  transition: filter 0.1s ease, -webkit-filter 0.1s ease;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25); }
  button:hover, .button:hover {
    -webkit-filter: brightness(130%);
            filter: brightness(130%); }

button:disabled {
  background: var(--disabledColor); }

svg.icon {
  fill: gray;
  fill: currentColor;
  height: 1em;
  vertical-align: baseline; }
  svg.icon.square-icon {
    width: 1em; }
  svg.icon.icon-std {
    width: 1em; }

/*  ========[ Konkretne casti ]===========================================  */
.hero {
  position: relative;
  min-height: 730px;
  background: var(--green-dark);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 48px 00px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(37.02%, #4C6D57), to(rgba(2, 44, 34, 0.6))), url("../img/budova.jpg") center/cover no-repeat;
  background: linear-gradient(180deg, #4C6D57 37.02%, rgba(2, 44, 34, 0.6) 100%), url("../img/budova.jpg") center/cover no-repeat;
  z-index: 800; }
  .hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end; }
  .hero .hero-left {
    padding-top: 80px;
    padding-bottom: 40px; }
  .hero .hero-badge {
    display: inline-block;
    border-radius: 12px;
    background: var(--grey, #F2F2F2);
    color: var(--fake-black, #161616);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px; }
  .hero .hero-tagline {
    padding: 32px 24px;
    max-width: 512px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    color: var(--fake-black, #161616);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .hero .hero-tagline svg {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .hero .hero-tagline h2 {
      color: var(--dark-green, #0C311A);
      margin: 0;
      margin-bottom: 0.5em; }
    .hero .hero-tagline p {
      font-size: 14px;
      margin: 0; }
  @media (max-width: 1200px) {
    .hero .hero-content {
      grid-template-columns: 1fr 400px; } }
  @media (max-width: 1000px) {
    .hero {
      padding: 100px 48px 40px; }
      .hero .hero-content {
        grid-template-columns: 1fr;
        gap: 20px; } }
  @media (max-width: 51em) {
    .hero {
      padding: 100px 24px 40px; }
      .hero .hero-left {
        padding-top: 50px;
        margin-bottom: 0px;
        padding-bottom: 0px; } }
  @media (max-width: 30em) {
    .hero .hero-tagline {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.form-card {
  padding: 36px;
  -webkit-box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
          box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  color: var(--dark-green, #0C311A);
  width: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 40px 56px 40px;
  border-radius: 8px;
  border: 1px solid rgba(195, 200, 193, 0.1);
  background: var(--white, #FFF);
  -webkit-box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: -70px; }
  .form-card p {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.55; }
  .form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px; }
  .form-card .form-consent label {
    font-size: 10px; }
  .form-card .btn-submit {
    width: 100%; }
  @media (max-width: 1200px) {
    .form-card {
      margin-top: 0px;
      margin-bottom: 40px;
      padding: 24px;
      width: 400px; }
      .form-card .form-row {
        grid-template-columns: 1fr; } }
  @media (max-width: 1000px) {
    .form-card {
      width: 100%; }
      .form-card .form-row {
        grid-template-columns: 1fr 1fr; } }
  @media (max-width: 30em) {
    .form-card .form-row {
      grid-template-columns: 1fr; } }

.features {
  padding: 120px 48px 48px 48px;
  background: var(--white);
  z-index: 500; }
  .features .features-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start; }
  .features .features-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden; }
    .features .features-image-wrap img {
      width: 100%;
      display: block;
      aspect-ratio: 4/3;
      -o-object-fit: cover;
         object-fit: cover; }
    .features .features-image-wrap .features-caption {
      position: absolute;
      bottom: 40px;
      left: 0;
      padding: 32px;
      border-radius: 0px 16px 16px 0px;
      background: rgba(255, 255, 255, 0.85);
      -webkit-backdrop-filter: blur(2px);
              backdrop-filter: blur(2px); }
      .features .features-image-wrap .features-caption h2 {
        color: var(--fake-black);
        margin-top: 0; }
      .features .features-image-wrap .features-caption p {
        max-width: 400px;
        margin: 0; }
  @media (max-width: 51em) {
    .features {
      padding: 48px 24px; }
      .features .features-inner {
        grid-template-columns: 1fr; } }

.features-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: -100px; }
  .features-cards .feature-card {
    background: var(--warm-show);
    border-radius: 6px;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    min-height: 290px; }
    .features-cards .feature-card.dark {
      background: var(--green);
      color: var(--white); }
      .features-cards .feature-card.dark p {
        color: var(--light-grey); }
    .features-cards .feature-card .icon {
      width: 36px;
      height: 36px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      opacity: 0.85; }
    .features-cards .feature-card p {
      margin: 0;
      color: var(--brown); }
    .features-cards .feature-card h3 {
      margin: 0;
      margin-top: auto; }
  @media (max-width: 51em) {
    .features-cards {
      margin-bottom: 0px;
      gap: 24px; }
      .features-cards .feature-card {
        min-height: 140px; } }

.location {
  padding: 100px 48px 100px 48px;
  background-color: #F4F4F2;
  background: url("../img/hora.svg") no-repeat right 0% bottom 10%, #F4F4F2;
  background-size: 60%; }
  .location .location-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start; }
  .location .location-brand {
    background: var(--white);
    border-radius: 8px;
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    margin-left: 32px;
    margin-right: 64px;
    border-radius: 8px; }
    .location .location-brand .location-brand-header {
      position: absolute;
      top: -40px;
      left: -40px;
      z-index: 200; }
    .location .location-brand .location-brand-img {
      position: relative;
      z-index: 100; }
      .location .location-brand .location-brand-img img {
        height: 720px;
        width: 100%;
        display: block;
        aspect-ratio: 16/9;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 8px; }
    .location .location-brand .location-bg {
      border-radius: 6px;
      background: rgba(30, 63, 41, 0.6);
      position: absolute;
      right: -48px;
      bottom: -48px;
      width: 256px;
      height: 256px;
      z-index: 10; }
  @media (max-width: 1200px) {
    .location .location-inner {
      grid-template-columns: 1.4fr 1fr;
      gap: 24px; } }
  @media (max-width: 51em) {
    .location {
      padding: 48px 24px; }
      .location .location-brand {
        margin-top: 40px;
        margin-left: 0;
        margin-right: 0; }
        .location .location-brand .location-brand-header {
          top: -40px;
          left: 0px; }
          .location .location-brand .location-brand-header img {
            height: auto; }
        .location .location-brand .location-brand-img img {
          height: 420px; }
        .location .location-brand .location-bg {
          right: -20px;
          bottom: -20px; }
      .location .location-inner {
        grid-template-columns: 1fr;
        gap: 64px; } }
  .location .features-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0; }
    .location .features-list .feature-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 20px;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding: 22px 0; }
      .location .features-list .feature-item .feature-item-icon {
        border-radius: 4px;
        background: var(--light-grey, #D1D5CF);
        padding: 8px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        min-width: 32px;
        aspect-ratio: 1 / 1; }
      .location .features-list .feature-item h3 {
        margin: 0px;
        margin-bottom: 3px;
        font-size: 1rem;
        font-weight: 600; }
      .location .features-list .feature-item p {
        margin: 0px;
        color: var(--Dark-Grey, #737973);
        font-size: 14px; }

.e345d {
  top: 0; }
