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

.clr {
  clear: both;
  float: none;
}

@font-face {
  font-family: "Inter regular";
  src: url("../font/Inter-Regular.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter regular";
  src: url("../font/Inter-Italic.woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Inter bold";
  src: url("../font/Inter-Bold.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter bold";
  src: url("../font/Inter-BoldItalic.woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Inter light";
  src: url("../font/Inter-Light.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter light";
  src: url("../font/Inter-LightItalic.woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Inter semibold";
  src: url("../font/Inter-SemiBold.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter semibold";
  src: url("../font/Inter-SemiBoldItalic.woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Inter thin";
  src: url("../font/Inter-Thin.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter thin";
  src: url("../font/Inter-ThinItalic.woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Italianno";
  src: url("../font/Italianno-Regular.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Regular.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Italic.woff2");
  font-weight: normal;
  font-style: italic;
}
body {
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
@media (max-width: 1920px) {
  body {
    background-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-size: initial;
    background-position-x: center;
    background-position-y: top;
  }
}
@media (max-width: 430px) {
  body {
    background-image: url("../img/mobile_bg.jpg");
    background-repeat: no-repeat;
    background-size: initial;
    background-position-x: center;
    background-position-y: top;
  }
}
body header {
  background-color: white;
}
body header .zarovnani {
  max-width: 1490px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 480px) {
  body header .zarovnani {
    max-width: 350px;
  }
}
body header .zarovnani .top {
  display: grid;
  grid-template-columns: 73px 1fr 43px;
  grid-gap: 20px;
  align-items: center;
  justify-items: center;
  height: 104px;
}
@media (max-width: 980px) {
  body header .zarovnani .top {
    grid-template-columns: 73px 1fr;
  }
}
body header .zarovnani .top #logo {
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  display: block;
  width: 100%;
  height: 41px;
}
@media (max-width: 980px) {
  body header .zarovnani .top nav {
    justify-self: end;
  }
  body header .zarovnani .top nav #hamburger {
    width: 23px;
    height: 18px;
    position: relative;
    cursor: pointer;
    transition: 500ms;
  }
  body header .zarovnani .top nav #hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    transition: 500ms;
  }
  body header .zarovnani .top nav #hamburger span:nth-child(0) {
    top: 0px;
  }
  body header .zarovnani .top nav #hamburger span:nth-child(1) {
    top: 9px;
  }
  body header .zarovnani .top nav #hamburger span:nth-child(2) {
    top: 18px;
  }
  body header .zarovnani .top nav #hamburger.open {
    width: 36px;
    height: 36px;
  }
  body header .zarovnani .top nav #hamburger.open span:nth-child(1) {
    transform: rotateZ(45deg);
    top: 18px;
    left: -6px;
    width: 49px;
  }
  body header .zarovnani .top nav #hamburger.open span:nth-child(2) {
    display: none;
  }
  body header .zarovnani .top nav #hamburger.open span:nth-child(3) {
    transform: rotateZ(135deg);
    top: 18px;
    left: -6px;
    width: 49px;
  }
}
body header .zarovnani .top nav ul {
  list-style: none;
}
body header .zarovnani .top nav ul li {
  display: inline-block;
}
body header .zarovnani .top nav ul li a {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  text-decoration: none;
  margin-left: 34px;
  margin-right: 34px;
  transition: 400ms;
}
body header .zarovnani .top nav ul li a:hover, body header .zarovnani .top nav ul li a.active {
  color: #b98a50;
}
body header .zarovnani .top nav ul li:first-of-type a {
  margin-left: 0px;
}
body header .zarovnani .top nav ul li:last-of-type a {
  margin-right: 0px;
}
@media (max-width: 720px) {
  body header .zarovnani .top nav ul {
    display: none;
  }
}
body header .zarovnani .top .socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px;
  width: 100%;
}
body header .zarovnani .top .socials a {
  display: block;
  width: 100%;
  height: 16px;
}
body header .zarovnani .top .socials a.instagram i {
  background-image: url("../img/instagram.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: left;
  background-position-y: center;
  display: block;
  width: 100%;
  height: 16px;
  transition: 400ms;
}
body header .zarovnani .top .socials a.youtube i {
  background-image: url("../img/youtube.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: right;
  background-position-y: center;
  display: block;
  width: 100%;
  height: 16px;
  transition: 400ms;
}
body header .zarovnani .top .socials a:hover i {
  transform: scale(1.15);
}
@media (max-width: 980px) {
  body header .zarovnani .top .socials {
    display: none;
  }
}
body #mobile_menu {
  display: none;
}
@media (max-width: 980px) {
  body #mobile_menu {
    position: absolute;
    left: 0px;
    width: 100%;
    background: #B98A50;
    z-index: 99;
  }
  body #mobile_menu ul {
    list-style: none;
  }
  body #mobile_menu ul li {
    display: block;
  }
  body #mobile_menu ul li a {
    font-family: "Inter light";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 68px;
    letter-spacing: 0px;
    color: #FFF;
    text-decoration: none;
    margin-left: 0px;
    margin-right: 0px;
    transition: 400ms;
    width: 100%;
    display: block;
    text-align: center;
    border-bottom: solid 1px white;
  }
  body #mobile_menu ul li a:hover, body #mobile_menu ul li a.active {
    color: #fff;
    font-family: "Inter regular";
    background-color: #b7721e;
  }
}
body main .carousel {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 701px;
  background-image: url("../img/carousel.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  position: relative;
}
@media (max-width: 1920px) {
  body main .carousel {
    max-width: 1920px;
    background-image: url("../img/carousel.jpg");
    background-repeat: no-repeat;
    background-size: initial;
    background-position-x: center;
    background-position-y: center;
  }
}
@media (max-width: 1060px) {
  body main .carousel {
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  body main .carousel {
    height: 400px;
  }
}
@media (max-width: 480px) {
  body main .carousel {
    background-image: url("../img/mobile_carousel.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    height: 700px;
  }
}
body main .carousel .edge {
  background-image: url("../img/carousel_edge.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 859px;
  height: 726px;
  position: absolute;
  top: 226px;
  right: auto;
  left: 0px;
  z-index: 0;
}
@media (max-width: 1920px) {
  body main .carousel .edge {
    left: auto;
    right: 1060px;
  }
}
@media (max-width: 1570px) {
  body main .carousel .edge {
    right: 920px;
  }
}
@media (max-width: 1350px) {
  body main .carousel .edge {
    right: 820px;
  }
}
@media (max-width: 1200px) {
  body main .carousel .edge {
    right: 720px;
  }
}
body main .carousel .anna {
  background-image: url("../img/carousel_picture.png");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  width: 595px;
  height: 667px;
  position: absolute;
  bottom: 0px;
  right: 149px;
}
@media (max-width: 1200px) {
  body main .carousel .anna {
    right: 20px;
  }
}
@media (max-width: 1060px) {
  body main .carousel .anna {
    right: -120px;
  }
}
@media (max-width: 900px) {
  body main .carousel .anna {
    transform: scale(0.5);
    bottom: -166px;
    right: -130px;
  }
}
@media (max-width: 660px) {
  body main .carousel .anna {
    right: -190px;
  }
}
@media (max-width: 480px) {
  body main .carousel .anna {
    display: none;
  }
}
body main .carousel .content {
  max-width: 1490px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
body main .carousel .content .content_h h1 {
  padding-top: 256px;
  font-family: "Italianno";
  font-style: normal;
  font-weight: normal;
  font-size: 128px;
  line-height: 160px;
  letter-spacing: 0px;
  color: #000;
}
@media (max-width: 900px) {
  body main .carousel .content .content_h h1 {
    padding-top: 126px;
    font-family: "Italianno";
    font-style: normal;
    font-weight: normal;
    font-size: 88px;
    line-height: 130px;
    letter-spacing: 0px;
    color: #000;
  }
}
@media (max-width: 580px) {
  body main .carousel .content .content_h h1 {
    font-family: "Italianno";
    font-style: normal;
    font-weight: normal;
    font-size: 68px;
    line-height: 100px;
    letter-spacing: 0px;
    color: #000;
  }
}
@media (max-width: 480px) {
  body main .carousel .content .content_h h1 {
    text-align: center;
    padding-top: 68px;
    font-family: "Italianno";
    font-style: normal;
    font-weight: normal;
    font-size: 80px;
    line-height: 100px;
    letter-spacing: 0px;
    color: #000;
  }
}
body main .carousel .content .content_h h2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
  color: #000;
  padding-left: 28px;
}
@media (max-width: 900px) {
  body main .carousel .content .content_h h2 {
    font-family: "Inter light";
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0px;
    color: #000;
    padding-left: 90px;
  }
}
@media (max-width: 580px) {
  body main .carousel .content .content_h h2 {
    padding-left: 50px;
  }
}
@media (max-width: 480px) {
  body main .carousel .content .content_h h2 {
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    font-family: "Inter light";
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0px;
    color: #000;
  }
}
body main .zarovnani {
  max-width: 1284px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
body main .zarovnani .formatovani_textu {
  padding-top: 80px;
}
@media (max-width: 430px) {
  body main .zarovnani .formatovani_textu {
    padding-top: 30px;
  }
}
body main .zarovnani .formatovani_textu:after {
  display: block;
  clear: both;
  float: none;
  content: "";
}
body main .zarovnani .formatovani_textu .obsahove_pole {
  padding-top: 120px;
}
body main .zarovnani .formatovani_textu .obsahove_pole:after {
  display: block;
  clear: both;
  float: none;
  content: "";
}
body main .zarovnani .formatovani_textu .obsahove_pole:nth-child(2) {
  padding-top: 0px;
}
@media (max-width: 430px) {
  body main .zarovnani .formatovani_textu .obsahove_pole {
    padding-top: 100px;
  }
}
body main .zarovnani .formatovani_textu .obsahove_pole h1, body main .zarovnani .formatovani_textu .obsahove_pole h2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 35px;
  line-height: 42px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 16px;
  padding-bottom: 65px;
}
body main .zarovnani .formatovani_textu .obsahove_pole h1:after, body main .zarovnani .formatovani_textu .obsahove_pole h2:after {
  content: "";
  display: block;
  background: #B98A50;
  width: 122px;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 39px;
}
@media (max-width: 430px) {
  body main .zarovnani .formatovani_textu .obsahove_pole h1, body main .zarovnani .formatovani_textu .obsahove_pole h2 {
    padding-bottom: 48px;
  }
}
body main .zarovnani .formatovani_textu h1 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 35px;
  line-height: 42px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 10px;
}
body main .zarovnani .formatovani_textu h2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 45px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 10px;
}
body main .zarovnani .formatovani_textu h3 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 25px;
  line-height: 45px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 10px;
}
body main .zarovnani .formatovani_textu h4 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 45px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 10px;
}
body main .zarovnani .formatovani_textu h5 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 45px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 10px;
}
body main .zarovnani .formatovani_textu p {
  padding-top: 20px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  max-width: 900px;
}
body main .zarovnani .formatovani_textu p.velky {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.vyrazny {
  border-left: solid 32px #B98A50;
  padding: 37px 50px;
  background-color: #080b17;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #fff;
  margin: 40px 0px;
}
body main .zarovnani .formatovani_textu p.vyrazny2 {
  font-family: "Inter semibold";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #B98A50;
}
body main .zarovnani .formatovani_textu p.maly_1 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.maly_2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.maly_3 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.velky_1 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.velky_2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.velky_3 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu p.nejvetsi {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu strong, body main .zarovnani .formatovani_textu b {
  font-family: "Inter semibold";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  padding-top: 10px;
  display: inline-block;
}
body main .zarovnani .formatovani_textu em, body main .zarovnani .formatovani_textu i {
  font-family: "Inter light";
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.vyrazny {
  font-family: "Inter semibold";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #B98A50;
  padding-top: 12px;
  display: inline-block;
}
body main .zarovnani .formatovani_textu span.velky {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.vyrazny2 {
  border-left: solid 32px #B98A50;
  padding: 37px 50px;
  background-color: #080b17;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #fff;
  margin: 40px 0px;
}
body main .zarovnani .formatovani_textu span.maly_1 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.maly_2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.maly_3 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.velky_1 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.velky_2 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.velky_3 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu span.nejvetsi {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 38px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu a {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #B98A50;
  text-decoration: underline;
}
body main .zarovnani .formatovani_textu a:hover {
  text-decoration: none;
}
body main .zarovnani .formatovani_textu a.a_vyrazny {
  font-family: "Inter semibold";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #B98A50;
}
body main .zarovnani .formatovani_textu a.a_nevyrazny {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu a.a_cta {
  display: inline-block;
  width: 210px;
  background-color: #B98A50;
  border: solid 1px #B98A50;
  text-decoration: none;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  color: white;
  cursor: pointer;
  font-size: 100%;
}
body main .zarovnani .formatovani_textu a.a_cta:hover {
  background-color: white;
  color: black;
  border: solid 1px black;
}
body main .zarovnani .formatovani_textu a.a_cta2 {
  display: inline-block;
  width: 210px;
  background-color: #989898;
  text-decoration: none;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  color: white;
  cursor: pointer;
  font-size: 100%;
}
body main .zarovnani .formatovani_textu a.a_cta2:hover {
  background-color: black;
  color: white;
}
body main .zarovnani .formatovani_textu a.a_cta3 {
  display: inline-block;
  width: 210px;
  background-color: #fff;
  border: solid 1px black;
  text-decoration: none;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  color: black;
  cursor: pointer;
  font-size: 100%;
}
body main .zarovnani .formatovani_textu a.a_cta3:hover {
  background-color: black;
  color: white;
}
body main .zarovnani .formatovani_textu a.mail {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  text-decoration: none;
  padding-left: 27px;
  background-image: url("../img/mail.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: left;
  background-position-y: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
}
body main .zarovnani .formatovani_textu a.mail:hover {
  text-decoration: underline;
}
body main .zarovnani .formatovani_textu a.phone {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  text-decoration: none;
  padding-left: 27px;
  background-image: url("../img/phone.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: left;
  background-position-y: center;
  display: inline-block;
  vertical-align: middle;
}
body main .zarovnani .formatovani_textu a.phone:hover {
  text-decoration: underline;
}
body main .zarovnani .formatovani_textu ul {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  margin-left: 0px;
  display: inline-block;
  padding-top: 10px;
  width: 100%;
}
body main .zarovnani .formatovani_textu ul li {
  margin-left: 20px;
  width: calc(100% - 55px);
}
body main .zarovnani .formatovani_textu ol {
  margin-left: 20px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
}
body main .zarovnani .formatovani_textu ol li {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  padding-left: 0px;
  margin-bottom: 14px;
}
body main .zarovnani .formatovani_textu ol li.no_li {
  list-style: none;
  padding-left: 0px;
}
body main .zarovnani .formatovani_textu img.img_vpravo {
  float: right;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  max-width: 400px;
  width: calc(100% - 20px);
}
@media screen and (max-width: 600px) {
  body main .zarovnani .formatovani_textu img.img_vpravo {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 20px auto !important;
  }
}
body main .zarovnani .formatovani_textu img.img_vlevo {
  float: left;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  max-width: 400px;
  width: calc(100% - 20px);
}
@media screen and (max-width: 600px) {
  body main .zarovnani .formatovani_textu img.img_vlevo {
    max-width: 100%;
    width: 100%;
    margin: 20px auto !important;
  }
}
body main .zarovnani .formatovani_textu img.img_100 {
  width: 100%;
  height: auto;
  display: block;
}
body main .zarovnani .formatovani_textu iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
body main .zarovnani .formatovani_textu .strankovani {
  text-align: center;
  margin-top: 20px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
  margin-bottom: 50px;
  max-width: 900px;
}
body main .zarovnani .formatovani_textu .strankovani a {
  padding: 10px 14px;
  background-color: #080b17;
  text-decoration: none;
  color: white;
}
body main .zarovnani .formatovani_textu .strankovani a:hover, body main .zarovnani .formatovani_textu .strankovani a.active {
  background-color: #B98A50;
  color: white;
}
body main .zarovnani .formatovani_textu table {
  margin-top: 15px;
  margin-bottom: 64px;
  border-spacing: 4px;
  max-width: 900px;
  width: 100%;
  border-collapse: collapse;
}
body main .zarovnani .formatovani_textu table tr {
  border-bottom: 2px solid rgba(158, 158, 158, 0.4);
}
body main .zarovnani .formatovani_textu table tr:nth-child(even) {
  background-color: #E6E6E6;
}
body main .zarovnani .formatovani_textu table tr th {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #8193A5;
  text-align: left;
  padding: 15px 11px;
}
body main .zarovnani .formatovani_textu table tr td {
  text-align: left;
  padding: 15px 11px 8px 11px;
  margin: 3px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu table tr td img {
  width: 100%;
}
body main .zarovnani .formatovani_textu table tr td ul li {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu table tr td ol {
  margin-left: 20px;
  text-align: left;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu table tr td p {
  padding: 0px;
}
body main .zarovnani .formatovani_textu table.table_svetla {
  margin-top: 15px;
  margin-bottom: 64px;
  border-spacing: 4px;
  max-width: 900px;
  width: 100%;
  border-collapse: collapse;
}
body main .zarovnani .formatovani_textu table.table_svetla td {
  text-align: left;
  padding: 15px 11px 8px 11px;
  margin: 3px;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu table.table_tmava {
  margin-top: 15px;
  margin-bottom: 64px;
  border-spacing: 4px;
  max-width: 900px;
  width: 100%;
  border-collapse: collapse;
}
body main .zarovnani .formatovani_textu table.table_tmava tr {
  border-bottom: 1px solid #8A8A8A;
  background-color: #AB763B;
}
body main .zarovnani .formatovani_textu table.table_tmava tr:nth-child(even) {
  background-color: #797979;
}
body main .zarovnani .formatovani_textu table.table_tmava tr th {
  background-color: white;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #AB763B;
  padding: 15px 11px;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td {
  text-align: left;
  padding: 15px 11px 8px 11px;
  margin: 3px;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td img {
  width: 100%;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td ul li {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td ol {
  margin-left: 20px;
  text-align: left;
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td ol li {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td p, body main .zarovnani .formatovani_textu table.table_tmava tr td a {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #FFF;
  padding: 0px;
}
body main .zarovnani .formatovani_textu table.table_tmava tr td p strong, body main .zarovnani .formatovani_textu table.table_tmava tr td a strong {
  font-weight: 800;
  color: white;
}
body main .zarovnani .formatovani_textu table.table_mensi tr td {
  padding: 5px 3px 2px 3px;
  margin: 2px;
  font-size: 12px;
  line-height: 18px;
}
body main .zarovnani .formatovani_textu table.table_mensi tr td ul li {
  font-size: 12px;
  line-height: 18px;
}
body main .zarovnani .formatovani_textu table.table_mensi tr td ol {
  font-size: 12px;
  line-height: 18px;
}
body main .zarovnani .formatovani_textu table.table_mensi tr td p, body main .zarovnani .formatovani_textu table.table_mensi tr td a {
  font-size: 12px;
  line-height: 18px;
}
body main .zarovnani .formatovani_textu .dva_panely {
  display: grid;
  grid-template-columns: 465px 1fr;
  grid-gap: 91px;
}
body main .zarovnani .formatovani_textu .dva_panely img {
  display: block;
  width: 100%;
}
@media (max-width: 1120px) {
  body main .zarovnani .formatovani_textu .dva_panely {
    grid-gap: 30px;
  }
}
@media (max-width: 1120px) {
  body main .zarovnani .formatovani_textu .dva_panely {
    grid-template-columns: 365px 1fr;
  }
  body main .zarovnani .formatovani_textu .dva_panely .panel_1 {
    display: grid;
    align-self: center;
  }
}
@media (max-width: 830px) {
  body main .zarovnani .formatovani_textu .dva_panely {
    grid-template-columns: 1fr;
  }
  body main .zarovnani .formatovani_textu .dva_panely .panel_1 {
    max-width: 465px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 430px) {
  body main .zarovnani .formatovani_textu .dva_panely .panel_2 p {
    padding-top: 0px;
    font-family: "Inter light";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0px;
    color: #333;
  }
  body main .zarovnani .formatovani_textu .dva_panely .panel_2 p span.vyrazny {
    font-family: "Inter semibold";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0px;
    color: #B98A50;
    padding-bottom: 17px;
  }
  body main .zarovnani .formatovani_textu .dva_panely .panel_2 p strong {
    padding-bottom: 10px;
  }
  body main .zarovnani .formatovani_textu .dva_panely .panel_2 ul {
    padding-top: 0px;
  }
}
body main .zarovnani .formatovani_textu .ukazka_hudby {
  width: 338px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 50px;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 59px 59px;
  grid-gap: 25px;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .ukazky {
  border-radius: 22.5px;
  background: #AB763B;
  display: block;
  width: 100%;
  height: 45px;
  font-family: "Inter bold";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 45px;
  letter-spacing: 0px;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  transition: 400ms;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .ukazky:hover {
  background-color: #000;
}
body main .zarovnani .formatovani_textu .ukazka_hudby span {
  background: #333;
  width: 100%;
  height: 1px;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px;
  width: 100%;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .socials a {
  display: block;
  width: 100%;
  height: 23px;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .socials a.instagram i {
  background-image: url("../img/instagram.svg");
  background-repeat: no-repeat;
  background-size: 23px;
  background-position-x: left;
  background-position-y: center;
  display: block;
  width: 100%;
  height: 23px;
  transition: 400ms;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .socials a.youtube i {
  background-image: url("../img/youtube.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position-x: right;
  background-position-y: center;
  display: block;
  width: 100%;
  height: 23px;
  transition: 400ms;
}
body main .zarovnani .formatovani_textu .ukazka_hudby .socials a:hover i {
  transform: scale(1.15);
}
body main .zarovnani .formatovani_textu .vypis_koncertu {
  width: 100%;
  max-width: 601px;
  margin-left: auto;
  margin-right: auto;
}
body main .zarovnani .formatovani_textu .vypis_koncertu .radek {
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-gap: 20px;
  border-bottom: solid 1px #333;
  padding-bottom: 9px;
  padding-top: 9px;
}
body main .zarovnani .formatovani_textu .vypis_koncertu .radek .datum {
  text-align: right;
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #B98A50;
}
body main .zarovnani .formatovani_textu .vypis_koncertu .radek .nazev {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu .vypis_koncertu .radek a {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #333;
}
body main .zarovnani .formatovani_textu .galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin-top: 40px;
}
@media (max-width: 980px) {
  body main .zarovnani .formatovani_textu .galerie {
    grid-gap: 20px;
  }
}
@media (max-width: 760px) {
  body main .zarovnani .formatovani_textu .galerie {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
}
@media (max-width: 580px) {
  body main .zarovnani .formatovani_textu .galerie {
    grid-gap: 20px;
  }
}
body main .zarovnani .formatovani_textu .galerie a {
  display: block;
  width: 100%;
  height: 200px;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
  transition: 600ms;
}
body main .zarovnani .formatovani_textu .galerie a img {
  display: none;
}
body main .zarovnani .formatovani_textu .galerie a:hover {
  transform: scale(1.1);
  box-shadow: gray 5px 5px 20px 5px;
}
@media (max-width: 540px) {
  body main .zarovnani .formatovani_textu .galerie a {
    height: 160px;
  }
}
@media (max-width: 440px) {
  body main .zarovnani .formatovani_textu .galerie a {
    height: 120px;
  }
}
body footer {
  margin-top: 230px;
  position: relative;
}
body footer .pos_abs {
  position: absolute;
  width: 100%;
  height: 72px;
  top: -72px;
}
body footer .pos_abs .zarovnani {
  max-width: 672px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
body footer .pos_abs .zarovnani .bottom {
  display: grid;
  grid-template-columns: 73px 1fr 103px;
  grid-gap: 20px;
  align-items: center;
  justify-items: center;
}
body footer .pos_abs .zarovnani .bottom #logo_bottom {
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: center;
  display: block;
  width: 100%;
  height: 41px;
}
body footer .pos_abs .zarovnani .bottom p {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0px;
  color: #989898;
}
body footer .pos_abs .zarovnani .bottom p a {
  font-family: "Inter regular";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0px;
  color: #989898;
  text-decoration: none;
  margin-right: 30px;
}
body footer .pos_abs .zarovnani .bottom p a:hover {
  text-decoration: underline;
}
body footer .pos_abs .zarovnani .bottom p a:last-of-type {
  margin-right: 0px;
}
body footer .pos_abs .zarovnani .bottom .to_up {
  width: 100%;
  cursor: pointer;
}
body footer .pos_abs .zarovnani .bottom .to_up i {
  font-family: "Lato";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  color: #333;
  display: inline-block;
  vertical-align: middle;
}
body footer .pos_abs .zarovnani .bottom .to_up em {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #B98A50;
  margin-left: 12px;
  transition: 400ms;
}
body footer .pos_abs .zarovnani .bottom .to_up em .arrow_drop_up {
  background-image: url("../img/arrow_drop_up.svg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: 50%;
  background-position-y: 50%;
  display: block;
  width: 40px;
  height: 40px;
  transition: 400ms;
}
body footer .pos_abs .zarovnani .bottom .to_up:hover em {
  background: #b67729;
}
body footer .pos_abs .zarovnani .bottom .to_up:hover em .arrow_drop_up {
  background-position-y: 25%;
}
@media (max-width: 640px) {
  body footer .pos_abs .zarovnani .bottom {
    display: block;
    position: relative;
  }
  body footer .pos_abs .zarovnani .bottom #logo_bottom {
    left: 0px;
    width: 74px;
    top: 0px;
  }
  body footer .pos_abs .zarovnani .bottom p {
    text-align: center;
    padding-bottom: 185px;
    padding-top: 95px;
  }
  body footer .pos_abs .zarovnani .bottom .to_up {
    right: 0px;
    width: 103px;
    top: 0px;
    position: absolute;
  }
}
body.podstrana {
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: initial;
  background-position-x: center;
  background-position-y: top;
}
body.podstrana main .carousel .content .content_h h2 {
  padding-top: 256px;
  font-family: "Italianno";
  font-style: normal;
  font-weight: normal;
  font-size: 128px;
  line-height: 160px;
  letter-spacing: 0px;
  color: #000;
  padding-left: 0px;
}
@media (max-width: 900px) {
  body.podstrana main .carousel .content .content_h h2 {
    padding-top: 126px;
    font-family: "Italianno";
    font-style: normal;
    font-weight: normal;
    font-size: 88px;
    line-height: 130px;
    letter-spacing: 0px;
    color: #000;
  }
}
@media (max-width: 580px) {
  body.podstrana main .carousel .content .content_h h2 {
    font-family: "Italianno";
    font-style: normal;
    font-weight: normal;
    font-size: 68px;
    line-height: 100px;
    letter-spacing: 0px;
    color: #000;
  }
}
@media (max-width: 480px) {
  body.podstrana main .carousel .content .content_h h2 {
    text-align: center;
    padding-top: 68px;
    font-family: "Italianno";
    font-style: normal;
    font-weight: normal;
    font-size: 80px;
    line-height: 100px;
    letter-spacing: 0px;
    color: #000;
  }
}
body.podstrana main .carousel .content .content_h h3 {
  font-family: "Inter light";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0px;
  color: #000;
  padding-left: 28px;
}
@media (max-width: 900px) {
  body.podstrana main .carousel .content .content_h h3 {
    font-family: "Inter light";
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 29px;
    letter-spacing: 0px;
    color: #000;
    padding-left: 90px;
  }
}
@media (max-width: 580px) {
  body.podstrana main .carousel .content .content_h h3 {
    padding-left: 50px;
  }
}
@media (max-width: 480px) {
  body.podstrana main .carousel .content .content_h h3 {
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    font-family: "Inter light";
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0px;
    color: #000;
  }
}
body.podstrana main .zarovnani {
  max-width: 1168px;
  width: 96%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
body.podstrana main .zarovnani .formatovani_textu {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
body.podstrana main .zarovnani .formatovani_textu .obsahove_pole h1:after, body.podstrana main .zarovnani .formatovani_textu .obsahove_pole h2:after {
  display: none;
}/*# sourceMappingURL=style.css.map */