@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*
 * GENERAL
 */
html {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  font-size: 1em;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
}

img {
  width: 100%;
  height: auto;
}

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

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

h2 {
  padding-top: 1em;
  margin: 0;
}

button {
  cursor: pointer;
}

/*
 * GRID
 */
.container {
  max-width: inherit;
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: rgba(32, 165, 226, 0.9);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.container-row {
  max-width: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
}

.container-col {
  max-width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  flex-wrap: wrap;
}

.center {
  width: 80%;
  margin: 0 auto;
  background-color: rgba(32, 165, 226, 0.9);
  text-align: center;
}
.center h2 {
  text-decoration: underline;
}

/*
 * HEADER
 */
.bckgrnd {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 0.5em;
}

.headings {
  display: none;
  position: absolute;
  top: -999999px;
}
.headings h1, .headings h2 {
  font-size: 5em;
}

header {
  background: url(../img/house.png) center;
}
header a {
  color: white;
}

.logo {
  position: relative;
  padding-top: 0.5em;
}

.phone-numbers li {
  margin: 0.7em 0;
}

.motto {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 0.5em;
  padding-top: 2.5em;
  padding-right: 3.5em;
  max-width: 23.4375em;
}
.motto h3 {
  font-family: "Ubuntu";
  font-size: 2.5em;
  font-weight: 400;
  font-style: italic;
  margin-left: 15%;
  margin-top: 1em;
  margin-bottom: 1em;
  color: white;
}
.motto h3:first-of-type {
  margin-left: 14%;
}
.motto h3:last-of-type {
  margin-top: -0.5em;
  margin-left: 42%;
}
.motto b {
  font-family: "Ubuntu";
  font-size: 2em;
  font-weight: 800;
  font-style: italic;
  margin-left: 20%;
  color: #20a3e2;
}

.navigation {
  font-size: 1.5em;
  font-family: "Rubik";
  font-weight: 500;
}
.navigation a {
  display: block;
  width: 100%;
  color: white;
  margin: 5% 0;
  box-shadow: 0px 0px 3px white;
  padding: 0.2em 0.4em;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}
.navigation a:hover {
  background-color: rgba(0, 0, 0, 0.95);
}

.menu-toggler {
  font-size: 1.5em;
  font-family: "Rubik";
  font-weight: 500;
  z-index: 20;
  position: relative;
  top: -999999999px;
  width: max-content;
  margin: 5% auto;
  padding: 3px;
  text-align: center;
  color: #20a3e2;
  border: 2px solid white;
}

/*
 * FOOTER
 */
.footer-left, .footer-right, .footer-menu, .postfooter {
  padding: 1em;
}

footer {
  background-color: #363432;
  font-family: Ubuntu;
}
footer h3 {
  margin: 1em 0;
  color: white;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer li {
  padding: 0.3em 0;
  color: white;
}
footer a {
  text-decoration: underline;
  color: #f86636;
}

.postfooter {
  color: white;
  font-weight: 200;
  font-size: 0.8em;
  line-height: 0.5em;
  padding-top: 2em;
  padding-bottom: 1em;
  text-align: center;
}
.postfooter a {
  text-decoration: none;
}

.footer-menu ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-weight: 600;
}

.logo-footer img {
  width: 10em;
}

.logo-footer:hover {
  opacity: 0.9;
}

/*
 * BACK TO TOP
 */
.back-to-top {
  color: #de5728;
  position: fixed;
  bottom: 5px;
  right: 30px;
  z-index: 60;
  display: block;
  opacity: 0.75;
}

.back-to-top:hover,
.back-to-top:focus {
  opacity: 1;
  transition: opacity 0.4s;
}

/*
 * OVERLAY
 */
#overlay,
#swipe {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  text-align: center;
  display: none;
}

#overlay img,
#swipe img {
  border: 2px solid white;
  border-radius: 5px;
  max-width: 75em;
  height: auto;
}

#close {
  width: max-content;
  z-index: 60;
  color: #de5728;
  opacity: 0.75;
  cursor: pointer;
}

#close:hover {
  opacity: 1;
}

/**
 * BUTTON
 */
.button {
  display: inline-block;
  font-size: 0.8em;
  font-family: Ubuntu;
  font-weight: 800;
  text-shadow: none;
  color: white;
  padding: 0.5em 1em;
  background-color: #f86636;
  border: 1px solid white;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 1em;
}

.button:hover,
.button:focus {
  background-color: #f34208;
}

.gal {
  width: max-content;
  height: max-content;
}

/*
 * MAIN CONTENT
 */
#main-content {
  background: url(../img/bricks.png) center;
  color: white;
  text-shadow: 1px 1px #000220;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.4em;
  font-family: Nunito Sans;
  font-size: 1.4em;
}
#main-content span {
  display: inline-block;
  width: 35%;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 7px white;
}
#main-content .no-border {
  box-shadow: none;
  padding: 0;
  border-radius: none;
}
#main-content h2 {
  font-weight: 800;
}

.slideshow img,
.image img {
  border-radius: 3px;
  border: 1px solid white;
  width: 100%;
  height: auto;
  box-shadow: 1px 3px 8px #000220;
  display: block;
}

/**
 * GALERIA V CINNOSTI
 */
figure {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background-color: #000220;
  border-radius: 3px;
  border: 1px solid white;
  box-shadow: 1px 3px 8px #000220;
}

.image figure img {
  width: 100%;
  height: auto;
  border: 0px;
  box-shadow: none;
}

figure a {
  width: 100%;
  font-family: Ubuntu;
  color: white;
}

figcaption {
  padding: 0.4em 0;
}

/*
 * FASÁDY
 */
.text {
  margin-top: 1em;
  margin-bottom: 1em;
}
.text li {
  text-align: left;
  margin-bottom: 0.7em;
  padding-left: 0.5em;
}
.text h2 {
  margin-bottom: 1em;
  padding: 0;
}

/*
* KONTAKT
*/
.person {
  display: flex;
  margin-top: 2em;
  margin-bottom: 2em;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.person img {
  width: 30%;
  height: auto;
  border-radius: 50%;
  border: 3px solid white;
}

.meno {
  font-size: 1.5em;
  font-weight: 700;
}

.phone a, .email a {
  font-size: 0.9em;
  color: white;
  text-transform: lowercase;
}

.phone a:hover, .email a:hover {
  text-decoration: underline;
}

/*
 * GALÉRIA
 */
.galeria {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.galeria section {
  width: 28%;
  margin-bottom: 0.5em;
}

#counter {
  display: inline-block;
  font-size: 0.8em;
  font-family: Ubuntu;
  font-weight: 800;
  text-shadow: none;
  color: white;
  padding: 0.5em 1em;
  border: 1px solid white;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 1em;
}

.obr img {
  border-radius: 3px;
  border: 1px solid white;
  width: 100%;
  height: auto;
  box-shadow: 1px 3px 8px #000220;
  display: block;
}

/*
 * MEDIAQUERIES
 */
@media screen and (max-width: 70.9375em) {
  .motto {
    font-size: 70%;
  }
  .logo {
    width: 17.5em;
  }
  .navigation {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 53.875em) {
  .postfooter {
    border-top: 1px solid #f86636;
  }
  .container {
    display: block;
  }
  #main-content span {
    width: 95%;
  }
}
@media screen and (max-width: 53.4375em) {
  .motto {
    font-size: 75%;
  }
  .navigation {
    display: block;
    width: 280px;
    position: absolute;
    right: 43em;
    top: 0;
  }
  .menu-toggler {
    position: relative;
    top: 1.2em;
  }
}
@media screen and (max-width: 36.625em) {
  .footer-left, .footer-right {
    max-width: 47%;
    padding: 0;
  }
  .footer-menu ul {
    flex-direction: row;
  }
  .footer-menu ul li {
    padding: 0.33em;
  }
  .logo-footer img {
    width: 8em;
  }
  .container,
  .center {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */