:root {
  --primaryColor:#ffffff;
  --secondaryColor:#00fcf8;
  --tertiaryColor:#191919;
  --buttonColor:#E2D686;
  --textColor1:var(--primaryColor);
  --textColor2:var(--backgroundColor1);
  --lightColor:white;
  --backgroundColor1:#000000;
  --backgroundColor2:var(--primaryColor);
  --darkBrightness:1;
}

@media (prefers-color-scheme: dark) {
  :root {
    --primaryColor:#e6e6e6;
    --secondaryColor:#00dedb;
    --tertiaryColor:#191919;
    --buttonColor:#E2D686;
    --textColor1:var(--primaryColor);
    --textColor2:var(--backgroundColor1);
    --lightColor:white;
    --backgroundColor1:#000000;
    --backgroundColor2:var(--primaryColor);
    --darkBrightness:1;
  }
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, ::after, ::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}

ul {
  margin: 0;
}

p + p {
  padding-top: 1.5rem;
}

p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

h1, h2, h3 {
  margin: 0;
}

h1 {
  font-weight: 400;
}

a {
  text-decoration: none;
  font-weight: 600;
  color: inherit;
}

.section__inner {
  padding: 2rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media screen and (min-width: 63rem) {
  .section__inner {
    max-width: 70rem;
  }
}

.section__1 {
  background-color: var(--backgroundColor1);
  color: var(--textColor1);
}

.section__2 {
  background-color: var(--backgroundColor2);
  color: var(--textColor2);
}

.grid__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 2rem;
  width: 100%;
  padding: 2rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 1.5rem 0 0 0;
}
@media screen and (min-width: 63rem) {
  .grid__cards {
    max-width: 70rem;
  }
}
@media screen and (min-width: 63rem) {
  .grid__cards {
    max-width: 70rem;
  }
}
.grid__cards--lekce {
  padding-bottom: 2rem;
}
@media screen and (min-width: 64rem) {
  .grid__cards--lekce {
    grid-template-columns: repeat(2, minmax(300px, 10fr));
  }
}
.grid__item {
  opacity: 0;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: calc(100vw - 2rem - 2rem);
  height: 300px;
  overflow: hidden;
  max-width: 500px;
}
@media screen and (min-width: 500px) {
  .grid__item {
    width: calc(500px - 3rem - 2rem);
  }
}
@media screen and (min-width: 64rem) {
  .grid__item {
    width: calc(50vw - 4rem - 1.5rem - 2rem);
  }
}
.grid__item--cover {
  width: calc(100vw - 2rem - 2rem);
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  max-width: 500px;
}
@media screen and (min-width: 500px) {
  .grid__item--cover {
    width: calc(500px - 3rem - 2rem);
  }
}
@media screen and (min-width: 64rem) {
  .grid__item--cover {
    width: calc(50vw - 4rem - 1.5rem - 2rem);
  }
}

.pdf-icon:before {
  content: "";
  display: inline-block;
  background-image: url(/images/pdf-icon.svg);
  background-position: cover;
  background-repeat: no-repeat;
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.5em;
}

.word-icon:before {
  content: "";
  display: inline-block;
  background-image: url(/images/word-icon.svg);
  background-position: cover;
  background-repeat: no-repeat;
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.5em;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: var(--tertiaryColor);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.75s;
  -o-transition: opacity 0.75s;
  transition: opacity 0.75s;
}
.loading--hidden {
  opacity: 0;
  visibility: hidden;
}
.loading--dispNone {
  display: none;
}
.loading::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: var(--secondaryColor);
  border-radius: 50%;
  -webkit-animation: loading 0.75s ease infinite;
  animation: loading 0.75s ease infinite;
}

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes loading {
  from {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.header {
  background-image: url('/images/uvod.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  animation: changeBackground 15s infinite; /* 10s je délka cyklu, lze upravit */
}

@keyframes changeBackground {
  0% {
    background-image: url('/images/uvod.jpg');
  }
  33% {
    background-image: url('/images/uvod2.jpg'); /* Druhý obrázek */
  }
  66% {
    background-image: url('/images/uvod3.jpg'); /* Třetí obrázek */
  }
  100% {
    background-image: url('/images/uvod.jpg'); /* Zpět na první obrázek */
  }
}

.header__motto {
  position: absolute;
  bottom: 30px;
  right: 1rem;
  -webkit-animation-name: example;
  animation-name: example;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  color: var(--primaryColor);
  max-width: 300px;
  letter-spacing: 2px;
  font-size: 30px;
  font-family: "Dancing Script", cursive;
  z-index: 2;
  padding-left: 1rem;
}
@media screen and (min-width: 63rem) {
  .header__motto {
    right: calc((100vw - 70rem) / 2);
  }
}

.header__brand {
  position: absolute;
  top: 20vh;
  left: 1rem;
  -webkit-animation-name: example;
  animation-name: example;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  color: var(--primaryColor);
  font-size: 50px;
  font-family: "Dancing Script", cursive;
  z-index: 2;
}
@media screen and (min-width: 42rem) {
  .header__brand {
    left: 16.6666666667vw;
    font-size: 100px;
  }
}

@-webkit-keyframes example {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  91.3% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes example {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  91.3% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 42rem) {
  .aktualne {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.aktualne__rozvrh {
  grid-column: 1/3;
}
.aktualne__item {
  opacity: 0;
}
@media screen and (min-width: 42rem) {
  .aktualne__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
  }
}
.aktualne__link {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.aktualne__link:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  -o-transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
}
@media screen and (max-width: 42rem) {
  .aktualne__item + .aktualne__item {
    padding-top: 2rem;
  }
  .aktualne__item + .aktualne__item:before {
    content: "";
    border-top: 1px solid transparent;
    background: rgb(0, 0, 0);
    background: -o-radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background: radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    color: inherit;
    display: block;
    width: 50%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1px;
    margin-bottom: 2rem;
  }
}
.aktualne__title {
  text-align: center;
  padding-bottom: 1rem;
}
@media screen and (min-width: 42rem) {
  .aktualne__title {
    height: 5rem;
  }
}
.aktualne__date {
  text-align: center;
}
@media screen and (min-width: 42rem) {
  .aktualne__date {
    height: 2rem;
  }
}
.aktualne__img {
  width: 100%;
  padding-top: 1.5rem;
}
.aktualne__headline {
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
.aktualne__nabor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.aktualne__nabor:before {
  content: "";
  border-top: 1px solid transparent;
  background: rgb(0, 0, 0);
  background: -o-radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background: radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  color: inherit;
  display: block;
  width: 50%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1px;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.aktualne__nabor--plakat {
  max-width: 500px;
}

.why:before {
  content: "";
  border-top: 1px solid transparent;
  background: rgb(255, 255, 255);
  background: -o-radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  color: inherit;
  display: block;
  width: 50%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1px;
  margin-bottom: 2rem;
}
.why__headline {
  font-weight: 600;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 2rem;
  font-size: 2rem;
}
.why__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (min-width: 63rem) {
  .why__cards {
    max-width: 70rem;
  }
}
.why__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 2rem 0 0 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 330px;
  min-width: 250px;
}
.why__img {
  max-width: 100%;
  height: 100px;
  fill: var(--textColor1);
  stroke: var(--textColor2);
}
.why__description {
  font-weight: 300;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 1.5rem;
}

.menu {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
}
.menu__background {
  width: 100vw;
}
.menu__icon {
  cursor: pointer;
  height: 50px;
  width: 50px;
  z-index: 3;
}
.menu__icon:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  -o-transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.menu__icon:last-of-type {
  margin-right: 100px;
}
.menu__icon svg {
  max-width: 100%;
  max-height: 100%;
  color: white;
  fill: var(--textColor1);
}
.menu__icon--full {
  margin-right: 0px;
  margin-top: 250px;
}
@media screen and (min-width: 97rem) {
  .menu__icon {
    margin-right: 0px;
    margin-top: 250px;
  }
}
.menu__icon--logo {
  height: 70px;
  width: 70px;
  margin-left: 1rem;
  margin-right: calc(100vw - 1rem - 70px - 150px - 6rem - 100px);
}
@media screen and (max-width: 405px) {
  .menu__icon--logo {
    margin-top: 170px;
  }
}
@media screen and (min-width: 42rem) {
  .menu__icon--logo {
    margin-left: 16.6666666667vw;
    margin-right: calc(83.3333333333vw - 70px - 150px - 6rem - 100px);
  }
}
@media screen and (min-width: 97rem) {
  .menu__icon--logo {
    margin-right: 0;
    height: 100px;
    width: 100px;
  }
}
.menu__list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  font-size: 1.2rem;
  background-color: var(--tertiaryColor);
  padding: 0;
  position: fixed;
  gap: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
  -webkit-transition: opacity 1s ease-in;
  -o-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
  color: var(--textColor2);
  opacity: 0;
}
.menu__list.menu__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  z-index: 3;
  -webkit-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.menu__link {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--textColor1);
  padding: 1rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem;
  width: 100%;
  cursor: pointer;
}
.menu__link:hover {
  background-color: var(--secondaryColor);
  color: black;
}
.menu__item {
  text-align: center;
  color: var(--textColor);
  width: 100%;
}
.menu__link--active {
  color: var(--lightColor);
  font-size: 2em;
}
.menu__item--active {
  background-color: var(--secondaryColor);
}
.menu__hamburger.menu__active .menu__bar:nth-child(2) {
  opacity: 0;
}
.menu__hamburger.menu__active .menu__bar:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(675deg);
  -ms-transform: translateY(11px) rotate(675deg);
  transform: translateY(11px) rotate(675deg);
  z-index: 4;
}
.menu__hamburger.menu__active .menu__bar:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-675deg);
  -ms-transform: translateY(-11px) rotate(-675deg);
  transform: translateY(-11px) rotate(-675deg);
  z-index: 4;
}
.menu__hamburger {
  display: block;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 4;
  right: 20px;
  padding: 0px;
}
.menu__bar {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 30%;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: rgb(255, 255, 255);
  background: -o-radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(64, 64, 64) 100%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(64, 64, 64) 100%);
  z-index: 4;
}
@media screen and (min-width: 97rem) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 3;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    min-height: 100px;
    max-height: 200px;
    right: 0px;
  }
  .menu__list--full {
    max-width: 100%;
    right: 0;
  }
  .menu__hamburger {
    display: none;
  }
  .menu__item {
    display: block;
    z-index: 100;
    border-bottom: 0;
    width: 100%;
    height: 100%;
  }
  .menu__item:last-child {
    border: 0;
  }
  .menu__link {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
  }
  .menu__link--active {
    color: black;
  }
  .menu__item--active {
    background-color: var(--primaryColor);
  }
  .menu__icon:last-of-type {
    margin-right: 30px;
  }
}

.fotogalerie {
  max-width: calc(100vw - 1rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: minmax(200px, 1fr) 1.5rem minmax(200px, 1fr) 1.5rem minmax(200px, 1fr);
  grid-template-rows: repeat(3, minmax(200px, 1fr));
  row-gap: 1.5rem;
  margin: 1.5rem auto 0 auto;
}
.fotogalerie .fotogalerie > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.fotogalerie .fotogalerie > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.fotogalerie .fotogalerie > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.fotogalerie__grid {
  max-width: calc(100vw - 1rem);
  margin: 1.5rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-rows: minmax(100px, 200px);
  gap: 1rem;
  grid-auto-flow: dense;
}
.fotogalerie__grid--wide {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.fotogalerie__grid--tall {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.fotogalerie__grid--big {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.fotogalerie__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fotogalerie__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.fotogalerie__item img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  -o-transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
}
@media screen and (min-width: 42rem) {
  .fotogalerie {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}
@media screen and (min-width: 63rem) {
  .fotogalerie {
    max-width: 70rem;
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
  .fotogalerie .fotogalerie > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .fotogalerie .fotogalerie > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .fotogalerie .fotogalerie > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .fotogalerie__grid {
    max-width: 70rem;
  }
}

.lektorky__lektorka {
  opacity: 0;
  position: relative;
  width: 300px;
  height: 250px;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}
.lektorky__item {
  background-position: center bottom;
  background-size: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: white;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.lektorky__item--1 {
  background-image: url(/images/lektorky/lektorka.png);
}
.lektorky__item--2 {
  background-image: url(/images/lektorky/postavy2.png);
}
}
.lektorky__item--3 {
  background-image: url(/images/lektorky/vj1.png);
}
.lektorky__item--active {
  -webkit-filter: blur(4px);
  filter: blur(4px);
}
.lektorky__item--hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  -o-transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
}
.lektorky__name {
  text-transform: uppercase;
  position: absolute;
  top: 40%;
  left: 50%;
  font-size: 30px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.lektorky__name--active {
  display: none;
}
.lektorky__plus {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 30px;
  width: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  border: solid 2px var(--primaryColor);
}
.lektorky__plus--active {
  display: none;
}
.lektorky__plus--bar-H, .lektorky__plus .lektorky__plus--bar-V {
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: white;
}
.lektorky__plus--bar-H {
  margin-top: 13px;
  margin-left: 5px;
}
.lektorky__plus--bar-V {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 12.5px;
  margin-left: 5.5px;
}
.lektorky__description {
  position: absolute;
  display: none;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 5;
  border: 3px solid #f1f1f1;
  font-weight: 600;
}
.lektorky__description--active {
  display: block;
}

.lekce__background--1 {
  background: #333 url(/images/lekce/SPORTOVNI-SPORTIK.jpg) center;
}
.lekce__background--21 {
  background: #333 url(/images/lekce/sportik-mini.jpg) center;
}
.lekce__background--2 {
  background: #333 url(/images/lekce/SPORTOVNI-SPORTAK.png) center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.lekce__background--3 {
  background: #333 url(/images/lekce/baby.jpg) center;
}
.lekce__background--4 {
  background: #333 url(/images/lekce/dvk-jvk2.jpg) center;
}
.lekce__background--5 {
  background: #333 url(/images/lekce/PROZABAVU-MAMIATATIGANG.jpg) center;
}
.lekce__background--6 {
  background: #333 url(/images/lekce/PROZABAVU-BREAKDANCE.jpg) center;
}
.lekce__background--7 {
  background: #333 url(/images/lekce/PROZABAVU-POLEDANCEVZDUSNAAKROBACIE.jpg) center;
}
.lekce__background--8 {
  background: #333 url(/images/lekce/MiniDeti.jpg) center;
}
.lekce__background--9 {
  background: #333 url(/images/lekce/ZACHOBBY-MINIDETI.jpg) center;
}
.lekce__background--10 {
  background: #333 url(/images/lekce/dvk-jvk3.jpg) center;
}
.lekce__background--11 {
  background: #333 url(/images/lekce/zachobby-streetDance-juniori.jpg) center;
}
.lekce__background--12 {
  background: #333 url(/images/lekce/STREETDANCEZAAHOBBY-DOSPELI.jpg) center;
}
.lekce__background--13 {
  background: #333 url(/images/lekce/basicVyberove-streetDance-deti.jpg) center;
}
.lekce__background--14 {
  background: #333 url(/images/lekce/STREETDANCEBASIC-VYBEROVE-JUNIORI.jpg) center;
}
.lekce__background--15 {
  background: #333 url(/images/lekce/STREETDANCEVYBEROVE-DOSPELI.jpg) center;
}
.lekce__background--16 {
  background: #333 url(/images/lekce/STREETDANCEZACAHOBBY-JAROMER-DETI.jpg) center;
}
.lekce__background--17 {
  background: #333 url(/images/lekce/STREETDANCEZAAHOBBY-JAROMER-JUNIORI.jpg) center;
}
.lekce__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.5rem;
}
.lekce__description {
  text-align: center;
  padding-top: 1rem;
}

.coNabizime__title {
  padding: 2rem 0 1rem 0;
}

.sponsors {
  max-width: calc(100vw - 1rem);
  margin: 1.5rem auto 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sponsors__img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.sponsors__hyperlink {
  width: 100%;
  height: 100%;
}
.sponsors__item {
  padding: 1.5rem;
  max-width: 150px;
  max-height: 100px;
}
.sponsors__item:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  -o-transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
}
@media screen and (min-width: 63rem) {
  .sponsors {
    max-width: 70rem;
  }
}

.contact {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 3rem;
  padding-top: 2rem;
}
.contact--hover:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.contact__subitem + .contact__subitem {
  padding-top: 0.5rem;
}
.contact__title {
  width: 60px;
  height: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 42rem) {
  .contact__title {
    width: 100px;
    height: 50px;
  }
}
.contact__title svg {
  width: 100%;
  height: 100%;
  fill: var(--textColor1);
  stroke: var(--textColor2);
}
.contact__info {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding-left: 1rem;
}
.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact__adress {
  padding-bottom: 0 !important;
}
.contact__map {
  width: 100%;
  height: 300px;
}
.contact__link {
  font-weight: 600;
  text-decoration: none;
}
.contact__link:after {
  content: "";
  display: inline-block;
  background-image: url(/images/newtab.svg);
  background-position: cover;
  background-repeat: no-repeat;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.5em;
}
@media screen and (max-width: 63rem) and (min-width: 42rem) {
  .contact {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .contact .contact > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .contact .contact > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .contact__map {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .contact__adress {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 63rem) {
  .contact {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact__map {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
  }
  .contact__adress {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}

.footer {
  overflow: hidden;
}
.footer__copyright {
  display: block;
  text-decoration: none;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 300;
}
.footer__link, .footer__link:visited {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.heading-frame {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  -ms-grid-columns: auto;
  grid-template-columns: auto;
  -ms-grid-rows: -webkit-max-content 0 auto 0 -webkit-max-content;
  -ms-grid-rows: max-content 0 auto 0 max-content;
  grid-template-rows: -webkit-max-content auto -webkit-max-content;
  grid-template-rows: max-content auto max-content;
  background-size: cover;
  color: var(--primaryColor);
  max-width: 500px;
  padding: 2rem;
  z-index: 2;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: calc(100vw - 2rem - 2rem);
  height: 300px;
}
.heading-frame .fotogalerie > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.heading-frame .fotogalerie > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.heading-frame .fotogalerie > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
@media screen and (min-width: 500px) {
  .heading-frame {
    width: calc(500px - 3rem - 2rem);
  }
}
@media screen and (min-width: 64rem) {
  .heading-frame {
    width: calc(50vw - 4rem - 1.5rem - 2rem);
  }
}
.heading-frame__background {
  background-color: rgba(41, 36, 36, 0.5);
}
.heading-frame--hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  -o-transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
}

.heading-frame__topRight {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1rem;
  width: 100%;
  text-align: right;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr 10px -webkit-max-content;
  -ms-grid-columns: 1fr 10px max-content;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  text-transform: uppercase;
}
@media screen and (min-width: 42rem) {
  .heading-frame__topRight {
    font-size: 1.5rem;
  }
}
.heading-frame__topRight:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-right: none;
  border-bottom: none;
}

.heading-frame:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  border-bottom: 0;
  border-top: 0;
}

.heading-frame__bottomLeft {
  font-family: "Pragati Narrow", sans-serif;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: -webkit-max-content 10px 1fr;
  -ms-grid-columns: max-content 10px 1fr;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  text-transform: uppercase;
}
@media screen and (min-width: 42rem) {
  .heading-frame__bottomLeft {
    font-size: 1.5rem;
  }
}
.heading-frame__bottomLeft:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid white;
  border-left: none;
  border-top: none;
}

.ramecek {
  --s0: calc(1.25em + 6px);
  --s1: calc(1.25em + 6px + 0.5em);
  position: relative;
  max-width: max-content;
  height: 2em;
  border: solid 0 transparent;
  border-width: 0 -5px 2px 0;
  padding: 10px 1em 1em 20px;
  background: var(--c) padding-box;
  background-color: inherit;
  color: inherit;
  font-size: 1.4rem;
  font-weight: 400;
}
.ramecek__color1 {
  color: var(--textColor1);
  background-color: var(--backgroundColor1);
}
.ramecek__color2 {
  color: var(--textColor2);
  background-color: var(--backgroundColor2);
}
@media screen and (min-width: 22rem) {
  .ramecek {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 25rem) {
  .ramecek {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 28rem) {
  .ramecek {
    font-size: 2rem;
  }
}
.ramecek::before {
  position: absolute;
  top: 0;
  left: 0;
  border: inherit;
  border: solid 0 transparent;
  border-width: 5px 2px 0 5px;
  width: 100%;
  height: 2em;
  pointer-events: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  content: "";
}
.ramecek.ramecek__color1::before {
  -webkit-box-shadow: inset 0 0 0 1px var(--secondaryColor);
  box-shadow: inset 0 0 0 1px var(--secondaryColor);
}
.ramecek.ramecek__color2::before {
  -webkit-box-shadow: inset 0 0 0 1px var(--secondaryColor);
  box-shadow: inset 0 0 0 1px var(--secondaryColor);
}

.mujramecek {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.lineSection::before {
  content: "";
  border-top: 1px solid transparent;
  background: rgb(255, 255, 255);
  background: -o-radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  color: inherit;
  display: block;
  width: 50%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1px;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
  margin-top: 4rem;
}

.counters {
  margin: 2rem auto 4rem auto;
  padding-top: 2rem;
  max-width: calc(100vw - 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 45%;
  flex: 1 1 45%;
  row-gap: 2rem;
}
.counters__description {
  text-align: center;
}
.counters__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 150px;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
@media screen and (min-width: 42rem) {
  .counters__card {
    min-width: 180px;
  }
}
.counters h3 {
  font-size: 35px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 42rem) {
  .counters h3 {
    font-size: 50px;
  }
}

.animationLeft {
  -webkit-animation: headlineAnimation 1.2s ease-in-out forwards;
  animation: headlineAnimation 1.2s ease-in-out forwards;
}

.animationRight {
  -webkit-animation: headlineAnimationRight 1.2s ease-in-out forwards;
  animation: headlineAnimationRight 1.2s ease-in-out forwards;
}

@-webkit-keyframes headlineAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headlineAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes headlineAnimationRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headlineAnimationRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--primaryColor);
  overflow: auto;
  z-index: 5;
}
.dialog__grid {
  gap: 0;
}
@media screen and (min-width: 63rem) {
  .dialog__grid {
    margin: 0;
    max-width: 100vw;
  }
}
.dialog__window {
  width: 100%;
  max-width: 0 auto;
  display: block;
}
.dialog__button {
  cursor: pointer;
}
.dialog__close {
  position: sticky;
  top: 20px;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: black;
  font-size: 40px;
  cursor: pointer;
  background-color: var(--secondaryColor);
  border: 1px solid var(--secondaryColor);
  z-index: 2;
  margin-left: calc(100vw - 80px);
  padding: 0px;
}
.dialog.active {
  display: block;
  -webkit-animation: popupAnimation 1500ms ease-in-out forwards;
  animation: popupAnimation 1500ms ease-in-out forwards;
}
.dialog.active .dialog__window {
  opacity: 1;
  -webkit-transition: all 100ms ease-in-out 1800ms;
  -o-transition: all 100ms ease-in-out 1800ms;
  transition: all 100ms ease-in-out 1800ms;
}
@-webkit-keyframes popupAnimation {
  0% {
    width: 0%;
    height: 0%;
  }
  50% {
    width: 2px;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes popupAnimation {
  0% {
    width: 0%;
    height: 0%;
  }
  50% {
    width: 2px;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-webkit-keyframes appearance {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appearance {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dialog__content h1 {
  text-align: center;
  padding-top: 2rem;
}
@media screen and (min-width: 42rem) {
  .dialog__content h1 {
    padding-top: 0;
  }
}
.dialog__content h2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.dialog__content--inner {
  width: 100%;
  -webkit-animation: appearance 1800ms ease-in-out forwards;
  animation: appearance 1800ms ease-in-out forwards;
}
.dialog__content--inner:nth-of-type(odd) {
  background-color: var(--backgroundColor1);
  color: var(--textColor1);
}
.dialog__content--inner:nth-of-type(odd) .dialog__item--grid .dialog__icon .dialog__img {
  fill: var(--textColor1);
  stroke: var(--textColor2);
}
.dialog__content--inner:nth-of-type(even) {
  background-color: var(--backgroundColor2);
  color: var(--textColor2);
}
.dialog__content--inner:nth-of-type(even) .dialog__item--grid .dialog__icon .dialog__img {
  fill: var(--textColor2);
  stroke: var(--textColor1);
}
.dialog__headline {
  font-size: 2rem;
  text-transform: uppercase;
  padding: 0 1.5rem;
  -webkit-animation: appearance 1800ms ease-in-out forwards;
  animation: appearance 1800ms ease-in-out forwards;
  color: var(--textColor2);
}
.dialog__item--grid {
  padding: 1.5rem 1rem 2rem 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 42rem) {
  .dialog__item--grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
  }
}
.dialog__item--grid ul li {
  padding-top: 0.5rem;
}
.dialog__item--grid ul li:last-child {
  padding-bottom: 1rem;
}
.dialog__item--grid ul li:first-child {
  padding-top: 1rem;
}
.dialog__icon {
  width: 100px;
  height: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}
.dialog__img {
  width: 100%;
  height: 100%;
}

.fotoBaner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
}
@media screen and (min-width: 42rem) {
  .fotoBaner {
    height: 110px;
  }
}
@media screen and (min-width: 63rem) {
  .fotoBaner {
    height: 180px;
  }
}
.fotoBaner img {
  height: 100%;
  display: inline-block;
}
.fotoBaner--translateY {
  -webkit-transform: translateX(-80px);
  -ms-transform: translateX(-80px);
  transform: translateX(-80px);
  width: calc(100% + 80px);
}

.fotoBaner2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 710px) {
  .fotoBaner2 {
    height: 300px;
  }
}
.fotoBaner2 img {
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
}

.contactForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem 0;
}

.box {
  width: 100%;
  padding: 0.5rem;
  background: var(--tertiaryColor);
  text-align: center;
  display: block;
}
@media screen and (min-width: 42rem) {
  .box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 3fr;
    grid-template-columns: 2fr 3fr;
    grid-template-areas: "formTitle formTitle" "form-email form-textarea" "form-text form-textarea" "form-label form-textarea" "form-select form-textarea" ". form-submit" "form-description form-description";
  }
  .box .box input[type=text] {
    grid-area: form-text;
  }
  .box textarea {
    grid-area: form-textarea;
  }
  .box h1 {
    grid-area: formTitle;
    padding-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .box .box input[type=email] {
    grid-area: form-email;
  }
  .box label {
    grid-area: form-label;
  }
}

.box input[type=text], .box input[type=email], textarea {
  background: var(--tertiaryColor);
  margin: 20px auto;
  text-align: center;
  border: 2px solid inherit;
  padding: 15px 10px;
  width: 90%;
  color: #bbb;
  outline: none;
}

.box input[type=text]:focus, .box input[type=email]:focus, textarea:focus, .box select:focus {
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  width: 100%;
  border-color: var(--secondaryColor);
}

.box input[type=submit] {
  background: none;
  margin: 0px auto;
  text-align: center;
  border: 2px solid var(--secondaryColor);
  padding: 14px 40px;
  width: 200px;
  outline: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  grid-area: form-submit;
  border-radius: 0;
}

.box input[type=submit]:hover {
  transition: 0.25s;
  background: var(--secondaryColor);
  color: var(--tertiaryColor);
  font-weight: 500;
}

.box h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}

.box input[type=text], .box input[type=email], textarea, .box select {
  background: none;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid var(--secondaryColor);
  padding: 15px 10px;
  width: 90%;
  color: #bbb;
  font-family: "Raleway", sans-serif;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
  border-radius: 0;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid var(--secondaryColor);
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px var(--tertiaryColor) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.box select {
  background-color: var(--tertiaryColor);
  grid-area: form-select;
  line-height: 2;
  --webkit-appearance: none; /*Removes default chrome and safari style*/
  --moz-appearance: none; /* Removes Default Firefox style*/
}

form p {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
  grid-area: form-description;
}

form h1 {
  padding-top: 1rem;
}

/* Form result */
.form-result {
  width: 80%;
  margin: 0 auto;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 3px;
}

.success {
  background-color: #239b28;
}

.error {
  background-color: #a01b30;
}/*# sourceMappingURL=style.css.map */