@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background-color: #2E3192;
}

::selection {
  color: #fff;
  background-color: #2E3192;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #333;
}

body {
  /*max-width: 1920px;*/
  margin: 0 auto;
}

h1 {
  font-size: 48px;
  line-height: 1.45em;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
  line-height: 1.50em;
}

p {
  font-size: 16px;
  line-height: 165%;
}

hr {
  border: none;
  border-bottom: 1px solid #C6C6C6;
}

.nav-container {
  display: none;
}

.fixed {
  position: fixed;
  will-change: transform;
  width: 100%;
  padding-right: 554px;
  padding-left: 554px;
  height: 76px;
  padding-top: 12px;
  border-top: 1px solid #AAA9A9;
}

.fixed--bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #000;
  padding: 15px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}

.button {
  border-style: solid;
  position: relative;
}

.button::after {
  background-color: #000;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  z-index: -1;
}

.button:focus::after,
.button:hover::after {
  opacity: 1;
}

/* modules/cookie-disclaimer.css */

.cookie-disclaimer {
  background-color: #fff;
  z-index: 99999;
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, transform 0.5s;
  transition: opacity 0.3s, transform 0.5s, -webkit-transform 0.5s;
}

.cookie-disclaimer.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cookie-disclaimer :first-child {
  margin-top: 0;
}

.cookie-disclaimer :last-child {
  margin-bottom: 0;
}

/* modules/media.css */

.media {
  display: -webkit-box;
  display: -ms-flexbox;
}

.media--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media__object--left {
  margin-right: 1em;
}

.media__object--right {
  margin-left: 1em;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.media__object--right a {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: bold;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;

}

.media__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.media__body p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;
}

.media__body a {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;
  color: #000;
}

.site-header {
  background: #fff;
  padding-left: 19.53%;
  padding-right: 19.53%;
  padding-top: 20px;
  transition: all .5s ease-in-out;
  -web-kit-position: sticky;
  position: sticky;
  top: 0;
  display: flex;
  height: 77px;
  width: 100%;
  justify-content: space-between;
  z-index: 5;
}

.logo {
  background-image: url('img/geo-logo-large.svg');
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  width: 100px;
  height: 57px;
  transition: width .5s ease-in-out, height .5s ease-in-out;
}

.logo:hover {
  cursor: pointer;
}

.max-width-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.domovhidden {
  display: none;
}

.site-header nav {
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.site-header.is-scrolling {
  background: #2E3192;
  height: 77px;
}

.site-header.is-scrolling .logo {
  background-image: url('img/geo-logo-small.svg');
  width: 100px;
  height: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  background-position: left;
}

.site-header.is-scrolling .logo:hover {
  cursor: pointer;
}

.site-header.is-scrolling .locations .ul-items li a {
  color: white;
  transition: none !important;
}

.site-header.is-scrolling .language a {
  color: white;
}

.site-header.is-scrolling .ul-items,
.site-header.is-scrolling .language {
  line-height: 40px;
  transition: 0.5s all;
}

.ul-items {
  display: flex;
  list-style: none;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  line-height: 50px;
  transition: 0.5s all;
}

.ul-items li a {
  text-decoration: none;
  color: #000;
  margin-right: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  font-family: 'IBM Plex Mono', monospace;
}

.ul-items li a:hover {
  border-bottom: 2px solid #6BC3E7;
  padding-bottom: 25px;
}

.ul-items li a.active {
  border-bottom: 2px solid #6BC3E7;
  padding-bottom: 25px;
}

#active {
  border-bottom: 2px solid #6BC3E7;
  padding-bottom: 25px;
}

.glink.active {
  border-bottom: 2px solid #6BC3E7;
  padding-bottom: 25px;
}

.language {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  line-height: 50px;
  transition: 0.5s all;
}

.language a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
}

.language a:hover {
  border-bottom: 2px solid #6BC3E7;
  padding-bottom: 25px;
}

.language a:nth-child(1) {
  margin-left: 30px;
}

/* HEADER BANNER */

.header-banner {
  width: calc(100% - 39.06%);
  height: 125px;
  margin: 0 auto;
  /*background-image: url(https://www.geoportalksk.sk/home/wp-content/uploads/2022/05/cyklo-small.png);*/
  background-repeat: no-repeat;
  background-position:center;
  background-size: cover;
  /*background-color:#f4f4f4;*/
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-banner:hover { 
  cursor:pointer;
}
.header-banner .content-holder {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.header-banner .button-holder {
  width: 20%;
  display: flex;
  justify-content: flex-end;
}

.header-banner .banner-title {
  font-size: 24px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
  text-transform: uppercase;
  line-height: 32px;
  text-align: left;
  padding-left:30px;
}

.header-banner .banner-subtitle {
  font-size: 22px;
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.header-banner .button-holder {
  padding-right: 40px;
}

.button-holder .button-more-top {
  background-color: #EF3A4C;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 22px;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  display:none;
}


/* END HEADER BANNER */

/* CYKLO BANNER */

.header-banner-cyklo {
  width: calc(100% - 39.06%);
  height: 125px;
  margin: 0 auto;
  background-image: url(https://www.geoportalksk.sk/home/wp-content/uploads/2022/05/cyklo-small.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-banner-cyklo .content-holder {
  padding-left: 40px;
}

.header-banner-cyklo .cyklo-title {
  font-size: 36px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
  text-transform: uppercase;
  line-height: 36px;
}

.header-banner-cyklo .cyklo-subtitle {
  font-size: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}

.header-banner-cyklo .button-holder {
  padding-right: 40px;
}

.button-holder .button-more-top {
  background-color: #EF3A4C;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 22px;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

/* END CYKLO BANNER */

.main-content {
  width: 100%;
  padding-left: 19.53%;
  padding-right: 19.53%;
  padding-top: 60px;
  padding-bottom: 160px;
  display: flex;
  justify-content: space-between;
}

.main-content .main-content-box {
  width: 365px;
  height: 480px;
  border: 1px solid #c6c6c6;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 69px;
}

.main-content .main-content-box:nth-child(1):hover {
  border: 2px solid #FFC843;
  cursor: pointer;
}

.main-content .main-content-box:nth-child(2):hover {
  border: 2px solid #6BC3E7;
  cursor: pointer;
  padding-right: 28px;
  padding-left: 28px;
  box-sizing: border-box;
}

.main-content .main-content-box:nth-child(3):hover {
  border: 2px solid #00B3AA;
  cursor: pointer;
}

.main-content .main-content-box .img {
  text-align: center;
}

.main-content .main-content-box .bottom {
  margin-top: 10px;
}

.main-content .main-content-box h1 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  padding-top: 37px;
  padding-bottom: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

.main-content .main-content-box p {
  text-align: center;
  font-size: 16px;
  line-height: 1.45em;
  font-family: 'IBM Plex Sans', sans-serif !important;
}

.main-content .main-content-box .arrow {
  padding-top: 53px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.main-content .main-content-box .arrow img {
  width: 167px;
  margin-right: 20px;
}

.main-content .main-content-box a {
  font-weight: bold;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.second-content {
  background-color: #EDEDED;
  width: 100%;
  height: 529px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}

.second-content .arrow {
  width: 870px;
  display: flex;
  justify-content: flex-start;
  padding-top: 50px;
}

.second-content .arrow a {
  font-weight: bold;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 20px;
}

.second-content h1 {
  text-align: left;
  padding-top: 90px;
  line-height: 1.450em;
  font-size: 36px;
  width: 870px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;

}

.clanky-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding-left: 19.53%;
  padding-right: 19.53%;
  box-sizing: border-box;
}

#clanky {
  padding-top: 140px;
}

.button-show-all {
  width: 60%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 90px;
}

.button-show-all a {
  background-color: #c6c6c6;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
}

.button-show-all a:hover {
  background-color: #000;
}

.nastroje-content {
  width: 100%;
  display: flex;
  height: auto;
  flex-direction: row;
  background-color: #EDEDED;
  padding-left: 475px;
  padding-right: 475px;
}

.nastroje-content .nastroje-left {
  width: 40%;
}

.nastroje-content .nastroje-left p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;
  width: 273px;
  padding-bottom: 40px
}

.nastroje-content .nastroje-left h1 {
  font-size: 36px;
  padding-top: 100px;
  padding-bottom: 30px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
}

.arrow-bottom-nastroje {
  display: flex;
}

.arrow-bottom-nastroje a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-left: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

.nastroje-content .nastroje-right {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-top: 115px;
  padding-bottom: 100px;
  gap: 30px;
}

.nastroje-box {
  width: 270px;
  height: 200px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.nastroje-box:hover {
  cursor: pointer;
}

.nastroje-box img {
  height: 65px;
  width: auto;
}

.nastroje-box h3 {
  font-size: 18px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
  padding-top: 30px;
}

.partneri-content {
  padding-left: 19.53%;
  padding-right: 19.53%;
}

.partneri-content h1 {
  font-size: 36px;
  text-align: center;
  padding-top: 100px;
  font-weight: 500;
  padding-bottom: 50px;
  font-family: 'IBM Plex Mono', monospace;
}

.partneri-holder-main {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 200px;
}

.partneri-holder-main .partneri-box {
  width: 265px;
  height: 212px;
  border: 1px solid #C6C6C6;
  margin-right: 30px;
  margin-bottom: 30px;
}

.partneri-holder-main .partneri-box img {
  width: 70%;
  height: auto;
}

.partneri-holder-main .partneri-box:nth-child(5) {
  padding: 50px;
}

.partneri-holder-main .partneri-box:hover {
  cursor: pointer;
}

.partneri-holder-main .partneri-box:nth-child(4n) {
  margin-right: 0;
}

.partneri-box {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}

.partneri-box .ksk-logo {
  width: 160px;
  height: auto;
}

.contact-form-main_holder {
  width: 100%;
  padding-left: 19.53%;
  padding-right: 19.53%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  padding-bottom: 150px;
  max-width: 1920px;
}

.contact-form-left {
  width: 30%;
  height: auto;
}

.contact-form-left h1 {
  font-size: 36px;
  padding-bottom: 30px;
  width: 20%;
  text-align: left;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
}

.contact-form-left p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;
  width: 80%;
}

.contact-form-right {
  width: 70%;
}

::placeholder {
  color: #000;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #000;
}

::-ms-input-placeholder {
  color: #000;
}

.contact-form-right form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-wrap: row;
  justify-content: space-between;
}

.contact-form-right form input[type='text'] {
  width: 48%;
  padding: 18px;
  background-color: #EDEDED;
  border: none;
  color: #000;
  font-family: 'IBM Plex Sans', sans-serif;
}

.contact-form-right form input[type='text']:focus,
.contact-form-right form input[type='email']:focus {
  outline: none;
}

.contact-form-right form input[type='email'] {
  width: 48%;
  padding: 18px;
  background-color: #EDEDED;
  border: none;
  color: #000;
  font-family: 'IBM Plex Sans', sans-serif;
}

.contact-form-right textarea {
  width: 100%;
  max-height: 250px;
  min-height: 250px;
  background-color: #EDEDED;
  outline: none;
  padding: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: none;
  font-family: 'IBM Plex Sans', sans-serif;
}

.form-bottom_area {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-bottom_area span {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  display: flex;
  line-height: 12px;
}
.form-bottom_area input[type='submit'] {
  padding: 20px 46px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  border: none;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  background-color
}

.form-bottom_area input[type='submit']:hover {
  cursor: pointer;
}

.form-bottom_area input[type='submit']:disabled {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  cursor: not-allowed;
}

.success-message_show {
  width: 100%;
  display: flex;
  max-width: 1200px;
  height: 45vh;
  flex-direction: column;
  align-content: center;
  align-items: center;
  position: absolute;
  background-color: #fff;
  -o-transition: opacity 2s;
  -moz-transition: opacity 2s;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  opacity: 1;
  transition: 2s all;
}

.success-message_show img {
  width: 115px;
  height: auto;
}

.success-message_show h1 {
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 36px;
  padding-bottom: 20px;
}

.success-message_show p {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.65em;
  font-size: 16px;
}
.hide {
  opacity: 0;
  display: none;
  -o-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  transition: 2s all;
}

.counter-main_holder {
  display: flex;
  width: 50%;
  flex-direction: row;
  gap: 30px;
  justify-content: flex-start;
  margin: 0 auto;
  padding-top:100px;
}

.counter-main_holder .counter-box {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.counter-box .circle-bg {
  margin-bottom: 30px;
  position: relative;
}

.counter-box #circle-bg_one {
  background-color: #6BC3E7;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center
}

.counter-box #circle-bg_two {
  background-color: #00B3AA;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center
}

.counter-box #circle-bg_three {
  background-color: #EF3A4C;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center
}

.counter-box .circle-bg span {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
}

.counter-box .circle-bg b {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
}

.counter-box .counter-img {
  display: flex;
  justify-content: center;
}

.counter-box .counter-text {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.counter-box .counter-text p {
  text-align: center;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
}
.checkdiv svg { 
  width: 10px;
  height: 10px;
  position: absolute;
  left: -1.1em; 
  top: 0;
  border: 1px solid #000;
}
label {
  display: inline-block;
  padding-left: 1em;
  position: relative;
  cursor: pointer;
  line-height:9px;
  
}
input[type="checkbox"] {
  opacity: 0;
  width: 10px;
  height: 10px;
}
label {
  transition: color 80ms linear;
}
label svg {
  transition: border-color 80ms linear;
}
label svg path {
  transition: stroke-dashoffset 80ms linear;
}
input[type="checkbox"]:checked ~ label svg path {
  stroke-dashoffset: 0;
}
input[type="checkbox"]:checked ~ label svg {
 border-color: #2E3192; 
}
input[type="checkbox"]:checked ~ label {
  color: #2E3192;
}
.checkdiv {
  font-size: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
}
#newsletter {
    width:100%;
	margin:0 auto;
	background-color:#2E3192;
}
.newsletter-container {
	max-width:1170px;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	padding-top:85px;
}
.newsletter-container hr {
	width:100%;
	border:none;
	border-bottom:1px solid #c6c6c6;
	padding-bottom:120px;
}
.newsletter-container h1 {
	text-align: center;
  	font-size: 36px;
  	font-weight: 600;
  	font-family: 'IBM Plex Mono', monospace;
	color:#fff;
	padding:30px 0px;
}
.newsletter-container .sub-p {
	font-family: 'IBM Plex Sans', sans-serif;
  	font-size: 12px;
  	line-height: 1.65em;
  	color: #fff;
	width:55%;
	text-align:center;
	padding-bottom:50px;
}
.newsletter-container .subscribe-content {
	width:55%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
}
.subscribe-form {
	display:flex;
	width:100%;
}
.newsletter-container .subscribe-content input {
	padding: 15px;
    background-color: #EDEDED;
    border: none;
    color: #000;
    font-family: 'IBM Plex Sans', sans-serif;
	width:530px;
}
.newsletter-container .subscribe-content input:focus {
	outline:none;
	border:none;
}
.newsletter-container .subscribe-content button {
	background-color:#EF3A4C;
}
.newsletter-container p {
	font-size: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #fff;
}
.forminator-ui.forminator-custom-form[data-grid=open] .forminator-row:not(:last-child) {
	margin-bottom: 0 !important;
}
.forminator-has_error {
	display:flex !important;
	flex-direction:column !important;
}
.forminator-module-edit-link {
	color: #fff !important;
    text-decoration: none !important;
    font-family: 'IBM Plex Sans', sans-serif !important;
    padding-left: 10px !important;
}
.forminator-error-message {
	color:#EF3A4C;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size:12px;
	padding:15px 0 10px 0;
	font-weight:500;
}
.forminator-show {
	width:100%;
	color:#EF3A4C;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size:12px;
	font-weight:500;
}
.subscribe-content h3 {
	text-align: center;
    font-size: 20px;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
	padding-top:30px;
}
/* Single page template */

#single-page-template {
	width:100%;
    padding-left:475px;
    padding-right:475px;
    display:flex;
    margin:0 auto;
}
#single-container {
	width:100%;
    height:auto;
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    padding-top:60px;
    padding-bottom:60px;
}

#single-container p {
	font-family: 'IBM Plex Sans', sans-serif;
    font-size:16px;
    line-height:25px;
}
#single-container ul {
	padding-left:20px;
    padding-top:15px;
    padding-bottom:15px;
}
#single-container ul li {
	font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: 18px;
    line-height: 1.8em;
    
}
#single-container h1 {
	font-family: 'IBM Plex Sans', sans-serif;
}
#single-container h2, #single-container h3, #single-container h4, #single-container h5, #single-container h6 {
	font-size:24px;
    font-weight:600;
    font-family: 'IBM Plex Sans', sans-serif;
}
#single-container img { 

	width:100%;
    height:auto;
}
    

/* End single page template */

footer {
  width: 100%;
  background-color: #2E3192;
  padding-top: 140px;
  padding-bottom: 100px;
  padding-left: 475px;
  padding-right: 475px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .content-footer p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;
  color: #fff;
}
footer .content-footer p span {
  text-decoration: underline;
  font-family: 'IBM Plex Sans', sans-serif;
}
footer .map-footer {
  display: flex;
  justify-content: flex-end;
}
#copyright {
  width: 100%;
  background-color: #2E3192;
  padding-left: 475px;
  padding-right: 475px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#copyright .cr-footer-cr p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  line-height: 1.65em;
  color: #fff;
}
#copyright .cr-footer-cr p a {
  color: #fff;
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
}
#copyright .cr-footer-cr p a:hover {
  text-decoration: underline;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cr-footer-social {
  display: flex;
  justify-content: flex-end;
}
.cr-footer-social a:nth-child(2) {
  margin-left: 25px;
}
.cr-footer-logo img {
  cursor: pointer;
}
/** 404 page **/

/** end 404 page **/

/** APP **/

#app-main-holder {
  width: 100%;
  display: flex;
  padding-left: 19.53%;
  padding-right: 19.53%;
  flex-direction: column;
}
#app-main-holder .headlines-app {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
  padding-top: 66px;
  padding-bottom: 60px;
}
#app-main-holder .headlines-app h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
}
#app-main-holder .headlines-app-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  padding: 30px 150px 0px 150px;
}
.button-main-holder {
  width:100%;
  height:auto;
  display:flex;
  justify-content:center;
  margin: 0 auto;
}
.button-main-holder .button-container {
	max-width:1170px;
	width:1170px;
	display:flex;
	flex-direction:row;
	justify-content:center;
	flex-wrap:wrap;
	gap:10px;
	margin-bottom:90px;
}
.button-main-holder .button-container button {
	padding:14px 25px;
	color:#000;
	background-color:#EDEDED;
	text-transform:inherit;
}
.button-main-holder .button-container .button.active {
	background-color:#6BC3E7;
	color:#fff;
}
.hide { 
display:none !important;
}
.flex-app-holder {
  display: grid;
  grid-template-columns: 25fr 25fr 25fr 25fr;
  justify-content: flex-start;
  gap: 30px;
  padding-bottom: 300px;
}
.flex-app-holder .app-box {
  width: 100%;
  height: 200px;
  border: 1px solid #C6C6C6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 30px;
  color: #c6c6c6;
}
.flex-app-holder a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
}
.flex-app-holder a:first-letter {
  text-transform: uppercase;
}
.flex-app-holder a:hover {
  cursor: pointer;
}
.flex-app-holder .app-box:hover {
  border: 2px solid #6BC3E7;
}
.flex-app-holder .app-box img {
  padding-bottom: 25px;
}
.flex-app-holder .app-box h3 {
  font-size: 15px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
}
.flex-app-holder .app-box h3::first-letter {
  text-transform: uppercase;
}
/** END APP **/

/** CLANKY **/

.filter-clanky {
  width: 100%;
  padding-top: 60px;
  flex-flow: column-reverse;
}

.holder {}

.gallery {
  width: calc(80.25% - 19.53%);
  margin: 0 auto;
}

.item {
  width: 370px;
  border: 1px solid #c6c6c6;
}

.item img {
  width: 100%;
}

.resp-arrow {
  display: none;
}

.item p {
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6em;
  color: #6BC3E7;
}

.item h3 {
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.5em;
  font-size: 18px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 60px;
  font-weight: 500;
}

.item a {
  color: #000;
  text-decoration: none;
}

.item .hover-link {
  text-decoration: none;
  color: #000;
}

.item .hover-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.holder-detail {
  width: 100%;
  height: auto;
  padding: 0 495px;
}

.holder-detail .top-author {
  padding-top: 83px;
  text-transform: uppercase;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6em;
  color: #6BC3E7;
  padding-bottom: 10px;
}

.holder-detail p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  /*padding-bottom: 30px;*/
  margin-bottom: 30px;
  max-width: 900px;
}

.holder-detail p:last-child {
  padding-bottom: 70px;
  border: 1px solid red;
}

.holder-detail p:nth-child(2) {
  border: 1px solid red;
}

.holder-detail .top-author span:nth-child(1) {
  padding-right: 20px;
}

.wp-block-image figcaption {
  font-size: 12px !important;
  font-family: 'IBM Plex Sans', sans-serif !important;
  text-align: center;
  color: #ccc;
}

.holder-detail h1 {
  font-size: 36px;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.5em;
  font-weight: 500;
  word-wrap: break-word;
  /*padding-bottom: 60px;*/
}
.holder-detail ul {
	padding-left:20px;
}
.holder-detail ul li {
	font-family: 'IBM Plex Sans', sans-serif !important;
    font-size: 18px;
    line-height: 1.8em;
    
}

.holder-detail .detail-pics {
  width: 100%;
  height: auto;
  padding-bottom: 30px;
  padding-top: 60px;
}
.holder-detail iframe {
	width:100% !important;
}
.holder-detail .tags { 
display:flex;
flex-direction:row;
padding-bottom:30px;
}
.wp-block-file__button { 
background-color: #EF3A4C !important;
color: #fff !important;
padding: 10px !important;
border-radius: 0px !important;
font-weight: bold !important;
font-family: 'IBM Plex Sans', sans-serif !important;
}
.tags a { 
background-color:#C6C6C6;
padding:5px 12px;
color:#fff;
font-weight:500;
margin-right:15px;
font-family: 'IBM Plex Sans', sans-serif !important;
font-size:12px;
text-decoration:none;
}
.heateorSssClear {
padding-top: 0 !important;
}

.bottom-social {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  height: 30px;
  padding-top: 70px;
  padding-bottom: 30px;
}

.bottom-social a {
  margin-right: 42px;
}

#holder-detail {
  width: 100%;
  padding-bottom: 200px;
}

#gallery {
  width: calc(70% - 425px);
  margin: 0 auto;
}

.bottom-headline {
  width: 100%;
  padding-left: 575px;
  padding-right: 575px;
}

.bottom-headline h1 {
  font-size: 36px;
  font-weight: 500;
  padding-top: 70px;
  padding-bottom: 30px;
  font-family: 'IBM Plex Mono', monospace;
}

.about-geoportal-holder {
  width: 100%;
  padding: 90px 575px 0 575px;
}

.geoportal-top-video {
  margin-bottom: 60px;
}

.about-geoportal-holder .geo-text-top {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  padding-bottom: 90px;
  width: 710px;
}

.about-geoportal-holder .holder-content {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.holder-content .item-inner {
  width: 100%;
  display: flex;
}

.holder-content .item-inner p {
  padding-bottom: 50px;
}

.holder-content .item-inner .more-pad {
  padding-bottom: 80px;
}

.item-inner .left {
  width: 200px;
  padding-top: 10px;
}

.item-inner .left img {}

.item-inner .right h2 {
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

.item-inner .right p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  width: 570px;
}

.item-inner:nth-child(5) {
  padding-bottom: 70px;
}

.item-inner:nth-child(11) {
  padding-bottom: 250px;
}

.holder-content .second-headline {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.45em;
  padding-top: 90px;
  padding-bottom: 90px;
  font-family: 'IBM Plex Mono', monospace;
}

.item-inner span {
  padding-top: 100px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  width: 600px;
  position: relative;
}

.item-inner-about {
  display: flex;
  flex-direction: row;
}

.item-inner-about .left {
  width: 175px;
  height: auto;
  padding-top: 12.5px;
}

.item-inner-about .left img:hover {
  cursor: pointer;
}

.item-inner-about .right {
  width: 700px;
  padding-left: 20px;
}

.item-inner-about .right h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5em;
  padding-bottom: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

.item-inner-about .right p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.8em;
  padding-bottom: 120px;
}

.last-paragraph {
  padding-bottom: 100px;
}

.item-inner-about .right .last {
  padding-bottom: 200px;
}

.container {
  width: 100px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 50px;
}

.show-more-btn {
  margin: 0 auto;
  /*width: 170px;*/
  height: auto;
  margin-bottom: 200px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  column-gap:15px;
}

.show-more-btn .current { 
  text-transform: uppercase;
  background-color: #000;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 15px 22px;
  font-family: 'IBM Plex Mono', monospace;
}

.show-more-btn a {
  text-transform: uppercase;
  border:1px solid #C6C6C6;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 15px 22px;
  font-family: 'IBM Plex Mono', monospace;
}

#kontaktbutt {
  background-color: rgba(0, 0, 0, 0) !important;
  color: #000;
}

.email-a {
  text-decoration: none;
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;

}

.responsive-nav {
  display: none;
}

.item-inner .right img {
  display: none;
  padding-right: 0;
}

.nastroje-hide {
  display: none;
}

#pravne-informacie {
	margin:0 auto;
	width:100%;
	max-width: 1170px;
}

#cookies {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 100px 485px 100px 475px;
}

#cookies h1 {
  font-size: 36px;
  font-weight: 500;
  padding: 0 150px;
  text-align: center;
  padding-bottom: 60px;
  font-family: 'IBM Plex Mono', monospace;
}

#cookies p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65em;
  padding-bottom: 30px;
  text-align: justify-all;

}

/* FILTER CLANKY */
/* END FILTER CLANKY */

/* PRAVNE INFORMACIE */

.content-pravne-informacie {
	max-width:1170px;
	width:1170px;
	display:flex;
	height:auto;
	flex-direction:column;
	margin:0 auto;
	font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65em;
}
.content-pravne-informacie h1 {
	padding-top:60px;
	padding-bottom:30px;
	text-align:center;
}
.content-pravne-informacie h3 {
	padding-bottom:20px;
}
.content-pravne-informacie p {
	padding-bottom:30px;
}
.content-pravne-informacie p:last-child {
	padding-bottom:120px;
}

/* END PRAVNE INFORMACIE */


/* DESKTOP */


@media only screen and (min-width: 1150px) and (max-width: 1750px) {

  .site-header,
  .main-content,
  .clanky-content,
  .partneri-content {
    padding-left: 180px;
    padding-right: 180px;
  }

  .header-banner-cyklo {
    width: calc(100% - 360px);
  }
  .header-banner {
    width: calc(100% - 360px);
  }

  #copyright,
  footer {
    padding-left: 237px;
    padding-right: 237px;
  }

  .nastroje-content .nastroje-left,
  .nastroje-content .nastroje-right {
    box-sizing: content-box;
  }

  .nastroje-content .nastroje-left {
    margin-left: 0;
  }

  .gallery {
    width: calc(80.25% - 60px);
    margin: 0 auto;
  }

  #gallery_holder {
    width: calc(80.25% - 100px);
    margin: 0 auto;
  }

  .nastroje-content {
    display: -webkit-box;
    padding: 0;
    margin: 0;
    padding-left: 237px;
    justify-content: space-between;
  }

  .about-geoportal-holder {
    padding-left: 237px;
    padding-right: 237px;
  }

  #app-main-holder {
    padding-left: 325px;
    padding-right: 325px;
  }

  .main-content {
    gap: 30px;
  }

  .main-content .main-content-box {
    width: 33%;
    height: 500px;
    border: 1px solid #c6c6c6;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 69px;
  }

  .main-content .main-content-box .arrow img {
    width: 127px;
    margin-right: 20px;
  }

  .fixed {
    position: fixed;
    will-change: transform;
    width: 100%;
    padding-right: 325px;
    padding-left: 325px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #AAA9A9;
  }

  #clanky {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nastroje-content {
    width: 100%;
    height: 100%;
    flex-direction: row;
    background-color: #EDEDED;
    justify-content: flex-start;
    padding-left: 237px;
    padding-right: 237px;
  }

  .nastroje-content .nastroje-left {
    margin-left: 0;
  }

  .nastroje-content .nastroje-right {
    display: flex;
    box-sizing: content-box;
    margin-left: 90px;
  }

  .nastroje-box {
    width: 240px;
    height: 200px;
  }

  .nastroje-box h3 {
    font-size: 16px;
  }

  .partneri-holder-main {
    justify-content: flex-start;
  }

  .partneri-holder-main .partneri-box {
    width: 224px;
    height: 180px;
    border: 1px solid #C6C6C6;
    margin-right: 30px;
    margin-bottom: 30px;
  }

  .partneri-holder-main .partneri-box img {
    width: 75%;
    height: auto;
  }

  .partneri-holder-main .partneri-box .small_logo_upjs {
    width: 50%;
    height: auto;
  }

  #app-main-holder {
    padding-left: 242px;
    padding-right: 242px;
  }

  .holder-detail {
    padding-left: 325px;
    padding-right: 325px;
  }

  #gallery {
    width: calc(70% - 195px);
    margin: 0 auto;
  }

  .bottom-headline {
    padding-left: 242px;
    padding-right: 242px;
    text-align: center;
  }

  .partneri-holder-main .partneri-box:nth-child(4n) {
    margin-right: 30px;
  }

}

/* END DESKTOP */



/** END CLANKY **/
/* 48em = 768px */

@media screen and (max-width: 1150px) {

  .site-header.is-scrolling,
  .site-header.is-scrolling .logo,
  .site-header.is-scrolling .logo:hover,
  .site-header.is-scrolling .locations .ul-items li a,
  .site-header.is-scrolling .language a,
  .site-header.is-scrolling .ul-items,
  .site-header.is-scrolling .language {
    display: none !important;
  }

  #hidden_nav {
    display: none;
  }

  #cookies {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 30px;
  }

  #cookies h1 {
    font-size: 24px;
    font-weight: 500;
    text-align: left;
    padding: 0;
    padding-bottom: 60px;
  }

  #cookies p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65em;
    padding-bottom: 30px;
    text-align: justify-all;

  }

  .site-header {
    display: none;
  }

  .domovhidden {
    display: block;
  }

  .holder-detail .detail-pics {
    width: 100%;
    height: auto;
  }

  .fixed {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    height: auto;
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .media__body p {
    font-size: 12px;
  }

  .media__body a {
    font-size: 12px;
  }

  button {
    padding: 10px 17px;
    font-size: 12px;
  }

  .bottom-headline h1 {
    font-size: 25px;
  }
	
	.newsletter-container .subscribe-content button {
		margin-top:15px;
		border-radius:5px;
	}

  .responsive-nav {
    display: block;
    position: sticky;
    max-height: none;
  }

  .about-geoportal-holder {
    width: 100%;
    padding: 0px 30px 0 30px;
  }

  .holder-content .item-inner {
    flex-wrap: wrap;
  }

  .holder-content .item-inner .left {
    display: none;
  }

  .resp-arrow {
    display: block;
  }

  .right h2 {
    display: flex;
    font-size: 20px !important;
  }

  .item-inner .right p {
    width: 100%;
  }

  .item-inner .right h2 {
    line-height: 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .item-inner .right h2 img {
    margin-bottom: 20px;
  }

  .item-inner .right h2 .resp-arrow {
    display: none;
  }

  .item-inner .right img {
    padding-right: 30px;
    display: block;
    width: 90px;
  }

  .item-inner:nth-child(11) {
    padding-bottom: 0;
  }

  .holder {
    padding-left: 30px;
    padding-right: 30px;
  }

  #app-main-holder {
    padding-left: 30px;
    padding-right: 30px;
  }

  #app-main-holder .headlines-app {
    padding-top: 60px;
    text-align: center;
    padding-bottom: 60px;
  }

  .flex-app-holder .app-box {
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    justify-items: center;
    padding-top: 30px;
  }

  .nastroje-hide {
    width: 60px;
    height: auto;
    display: block;
  }

  .cr-footer-cr span {
    display: none;
  }

  .about-geoportal-holder .geo-text-top {
    width: 100%;
  }

  .flex-app-holder {
    gap: 30px;
    padding-bottom: 100px;
    justify-content: flex-start;
	grid-template-columns:50fr 50fr;
  }

  .flex-app-holder .app-box h3 {
    font-size: 15px;
    text-align: center;
  }
	
	.flex-app-holder .app-box img { 
	width:60px;
	}
	
	.flex-app-holder .app-box { 
	padding-left:10px;
    padding-right:10px;
	}
	
	.flex-app-holder .app-box h3 { 
	font-size:13px;
	}
	
  .holder-detail {
    padding-left: 30px;
    padding-right: 30px;
  }

  .holder-detail h1 {
    font-size: 25px;
  }

  #holder-detail {
    width: 100%;
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .bottom-headline {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  #gallery {
    width: 100%;
    margin: 0 auto;
  }

  .item-inner-about .left {
    display: none;
  }

  .item-inner-about .right img {
    width: 90px;
    height: auto;
    padding-right: 30px;
  }

  .item-inner-about .right h2 {
    font-size: 20px !important;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .item-inner-about .right h2 img {
    margin-bottom: 20px;
  }



  /* responsive navigation */

  a {
    text-decoration: none;
    color: #fff;
  }

  .menu-left a {
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    transition: color .35s ease;
    font-family: 'IBM Plex Mono', monospace;
  }

  .menu-left a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: width 0s ease, background .35s ease;
  }

  .menu-left a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width .35s ease;
  }

  .menu-left a:hover:before {
    width: 100%;
    background: #fff;
    transition: width .35s ease;
  }

  .menu-left a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    background: #2E3192;
    z-index: 3;
    will-change: transform;
    transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
    transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }

  header nav .logo {
    float: left;
    padding-top: .25rem;
    padding-bottom: .25rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    font-weight: 500;
    color: black;
  }

  header .container {
    padding: 0;
    width: 100%;
  }

  header nav .logo:after {
    content: '';
    display: table;
    clear: both;
  }

  header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  header nav ul li {
    float: none;
    margin-left: 0;
  }


  header nav ul li a {
    display: block;
  }
  
  /* START HEADER BANNER RESP */
  
  .header-banner {
  width: calc(100% - 60px );
  height: auto;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size:contain;
  background-color:#f4f4f4;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;

}
.header-banner .content-holder {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.header-banner .button-holder {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.header-banner .banner-title {
  font-size: 18px;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 28px;
  text-align: left;
  padding: 30px 30px 15px;
}

.header-banner .button-holder {
  padding-right: 40px;
}

.button-holder .button-more-top {
  background-color: #EF3A4C;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 22px;
  font-family: 'IBM Plex Mono', monospace;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}
  .bannerbtn {
    margin-left:30px;
  }
  
  /* END HEADER BANNER RESP */
  
  /* START CYKLO BANNER RESP */

  .header-banner-cyklo {
    width: calc(100% - 60px);
    height: 253px;
    margin: 0 auto;
    background-image: url(https://www.geoportalksk.sk/home/wp-content/uploads/2022/05/Maskgroup.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header-banner-cyklo .content-holder {
    padding-left: 40px;
  }

  .header-banner-cyklo .cyklo-title {
    font-size: 22px;
    width: 60%;
    font-weight: 500;
    font-family: 'IBM Plex Mono', monospace;
    color: #fff;
    text-transform: uppercase;
    line-height: 25px;
    padding-top: 35px;
  }

  .header-banner-cyklo .cyklo-subtitle {
    font-size: 12px;
    width: 40%;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    word-break: break-word;
    padding-top: 10px;
    padding-bottom: 25px;
  }

  .header-banner-cyklo .button-holder {
    padding-left: 40px;
  }

  .button-holder .button-more-top {
    background-color: #EF3A4C;
    text-transform: uppercase;
    font-weight: bold;
    padding: 8px 17px;
    font-family: 'IBM Plex Mono', monospace;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
	display:none;
  }
  
  /* END CYKLO BANNER RESP */

  .holder-detail a {
    color: #2E3192;
    font-weight: 600;
    text-decoration: underline;
  }

  @media (min-width: 576px) {
    header nav ul li a {
      display: block;
      padding: 15px 0;
    }

    header nav ul li a:nth-child(1) {
      padding-top: 20px;
    }
  }

  @media (max-width: 1150px) {
    ul {
      clear: both;
    }

    ul li {
      padding: .5em 0;
    }
  }

  .hide-nav {
    transform: translateY(-120% !important);
    -webkit-transform: translateY(-120%) !important;
  }

  #app-main-holder .headlines-app-text {
    padding: 30px 0px;
    font-size: 15px;
    text-align: left;
  }

  ul.menu-left {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    text-align: center;
    font-size: 18px;
  }

  @media (min-width: 1150px) {
    ul.menu-left {
      display: block !important;
      float: right;
      max-height: none;
    }
  }

  ul.menu-left:before {
    content: '';
    display: table;
    clear: both;
  }

  ul.menu-left.collapse {
    max-height: 100vh !important;
    padding-top: 100px;
  }

  .nav-toggle {
    display: block;
    border-radius: 5px;
    background-color: transparent;
    float: right;
    height: 38px;
    width: 38px;
    cursor: pointer;
    padding: 8px 8px;
  }

  .nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(4.4px, 4.4px);
  }

  .nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(4.4px, -4.4px);
  }

  @media (min-width: 1150px) {
    .nav-toggle {
      display: none;
    }
  }

  .nav-toggle span {
    position: relative;
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 4px;
    background-color: #fff;
    transition: all .25s;
  }

  #navigation {
    padding: 15px 0;
  }

  .menu-left {
    display: flex;
    text-transform: uppercase;
  }
	.newsletter-container h1 { 
		font-size:24px;
	}
	
	.newsletter-container .sub-p {
		width:100%;
		padding-left:30px;
		padding-right:30px;
	}
	.newsletter-container .subscribe-content { 
		width:100%;
		padding-left:30px;
		padding-right:30px;
	}
	.newsletter-container .subscribe-content input {
		width:100%;
	}
	.forminator-ui.forminator-custom-form-1335 { 
		flex-direction:column;
	}
	.newsletter-container hr { 
		padding-bottom:60px;
	}
	.subscribe-content h3 {
		padding-bottom:30px;
	}


  /* end responsive navigation */

  .main-content {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-content .main-content-box {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  .main-content .main-content-box .arrow {
    display: none;
  }

  .main-content .main-content-box p {
    padding-bottom: 30px;
  }

  .main-content .main-content-box .img {
    padding-bottom: 0;
  }

  .second-content {
    display: flex;
    width: 100%;
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .second-content h1 {
    width: auto;
    font-size: 22px;
    padding-top: 60px;
  }

  .second-content .arrow {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .second-content .arrow img {
    width: 60%;
  }

  .gallery {
    width: auto;
  }

  #clanky {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
  }

  .nastroje-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: #EDEDED;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nastroje-content .nastroje-left {
    width: 100%;
  }

  .nastroje-content .nastroje-left p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65em;
    width: 100%;
    padding-bottom: 40px;
  }

  .nastroje-content .nastroje-left h1 {
    font-size: 36px;
    padding-top: 60px;
    padding-bottom: 30px;
    font-weight: 500;
    width: 100%;
  }

  .arrow-bottom-nastroje {
    display: flex;
  }

  .arrow-bottom-nastroje a {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-left: 20px;
  }

  .nastroje-content .nastroje-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .nastroje-box {
    width: 100%;
  }

  .partneri-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .partneri-holder-main .partneri-box {
    width: 195px;
    margin-right: 0;
  }

  .partneri-holder-main .partneri-box .small_logo_upjs {
    width: 60%;
    height: auto;
  }

  .partneri-holder-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .partneri-holder-main .partneri-box img {
    width: 90%;
    height: auto;
  }

  .partneri-holder-main {
    padding-bottom: 100px;
  }

  .contact-form-main_holder {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    flex-direction: column;
  }

  .counter-main_holder {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 100px;
  }

  .counter-main_holder .counter-box {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .counter-box .counter-text p {
    font-size: 20px;
  }

  .contact-form-left,
  .contact-form-right {
    width: 100%;
  }

  .contact-form-right form input[type='text'] {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .contact-form-right form input[type='email'] {
    width: 100%;
  }

  .form-bottom_area {
    width: 100%;
    display: flex;
    flex-direction: column
  }

  .area_left {
    width: 100%;
    margin-bottom: 30px;
  }

  .area_right {
    width: 100%;
  }

  .success-message_show {
    width: 99%;
    height: 98vh;
	left:0;
	justify-content:center;
  }

  .success-message_show h1 {
    font-size: 20px;
  }

  footer {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 60px;
  }

  footer .map-footer {
    width: 100%;
    height: auto;
    padding-top: 60px;
  }

  footer .map-footer iframe {
    width: 100%;
    height: 400px;
  }

  #copyright {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
  }

  .cr-footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 30px;
  }

  .cr-footer-cr {
    text-align: center;
    width: 100%;
  }

  .cr-footer-social {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .partneri-holder-main {
    flex-wrap: wrap;
    justify-content: center;
  }

  .partneri-holder-main .partneri-box {
    width: 90%;
  }

  .partneri-holder-main .partneri-box img {
    width: 200px;
    height: auto;
  }
	.content-pravne-informacie { 
	padding:30px;
	}
}

@media screen and (min-width: 2000px) {
  .header-banner-cyklo {
    max-width: 1150px;
  }
  .header-banner {
    max-width: 1150px;
  }

  .max-width-header {
    display: flex;
    justify-content: space-between;
    width: 1150px;
  }

  .max-width {
    max-width: 100vw;
    display: flex;
    justify-content: center;
  }
	.flex-start { 
	justify-content:flex-start;
	}

  .max-width-clanky {
    max-width: 1920px;
    margin: 0 auto;
  }

  .main-content {
    max-width: 1920px;
    gap: 30px !important;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
  }

  .counter-main_holder {
    max-width: 35vw;
  }

  .nastroje-content {
    max-width: 1920px;
  }

  #grey_max {
    background-color: #EDEDED;
  }

  .partneri-content {
    max-width: 1920px;
    padding-left: 0;
    padding-right: 0;
  }

  .partneri-holder-main {
    max-width: 1150px;
  }

  .contact-form-main_holder {
    max-width: 1150px;
    padding-left: 0;
    padding-right: 0;
  }

  footer {
    max-width: 1920px;
  }

  #footer-width,
  #copyright-width {
    background-color: #2E3192;
  }

  #copyright {
    max-width: 1920px;
  }

  .site-header {
    justify-content: center;
  }

  .about-geoportal-holder {
    max-width: 1920px;
  }

  .headlines-app,
  .flex-app-holder {
    max-width: 1150px;
	width: 1150px;
    margin: 0 auto;
  }

  .holder-detail,
  .bottom-headline {
    max-width: 1150px;
    padding-left: 0;
    padding-right: 0;
  }

  .max-width-clanky #gallery {
    width: calc(90% - 575px);
  }
  .header-banner .banner-title {
    font-size: 23px;
  }
}