@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;900&display=swap");
h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #93ba44;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin: 0;
  text-align: center;
}
@media (max-width: 500px) {
  h1 {
    font-size: 26px;
  }
}

h2 {
  font-size: clamp(1.5rem, 6vw, 3.125rem);
  color: #93ba44;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin: 0;
  text-align: center;
}
@media (max-width: 500px) {
  h2 {
    font-size: 22px;
  }
}

p {
  color: #000;
  font-size: clamp(1rem, 6vw, 2.5rem);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  text-align: center;
}

.header {
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.header .top-header {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
@media (max-width: 570px) {
  .header .top-header .logo img {
    width: 100px;
  }
}
@media (max-width: 500px) {
  .header .top-header .logo img {
    width: 70px;
  }
}
@media (max-width: 440px) {
  .header .top-header .logo img {
    width: 50px;
  }
}
.header .top-header .lang {
  text-decoration: none;
}
.header .top-header .lang:hover {
  text-decoration: none;
}
.header .top-header .langs {
  position: relative;
  height: 70px;
}
.header .top-header .langs .lang {
  display: block;
  cursor: default;
}
.header .top-header .langs .lang:hover {
  animation: shake 0.25s ease-in-out infinite;
}
@media (max-width: 500px) {
  .header .top-header .langs .lang img {
    width: 80px;
  }
}
@media (max-width: 440px) {
  .header .top-header .langs .lang img {
    width: 50px;
  }
}
.header .top-header .langs .lang-hover {
  padding-top: 10px;
  display: none;
  position: absolute;
  top: 70px;
}
.header .top-header .langs .lang-hover img {
  height: auto;
}
.header .top-header .langs .lang-hover:hover {
  animation: shake 0.25s ease-in-out infinite;
}
@media (max-width: 500px) {
  .header .top-header .langs .lang-hover img {
    width: 80px;
  }
}
@media (max-width: 440px) {
  .header .top-header .langs .lang-hover img {
    width: 50px;
  }
}
.header .top-header .langs:hover .lang-hover {
  display: block;
}
.header .top-header .cepka {
  display: block;
  max-width: 100%;
  min-height: auto;
  align-self: flex-start;
  animation: moving 3s ease-in-out infinite;
  animation-direction: alternate;
}
@media (max-width: 570px) {
  .header .top-header .cepka {
    transform: scale(0.7);
  }
}
@media (max-width: 440px) {
  .header .top-header .cepka {
    transform: scale(0.5);
    max-width: 50%;
  }
}
@media (max-width: 500px) {
  .header .top-header {
    padding-bottom: 10px;
  }
}
@media (max-width: 440px) {
  .header .top-header {
    padding-top: 25px;
  }
}
.header .header-image img {
  display: block;
  margin: auto;
}
.header .header-title h1 {
  color: #fff;
  font-size: clamp(2.5rem, 10vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  text-align: center;
}
.header .header-description {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .header .header-description p {
    line-height: 40px;
  }
}
@media (max-width: 440px) {
  .header .header-description p {
    line-height: 30px;
  }
}
.header .arrow-down {
  text-align: center;
  margin-bottom: 20px;
  animation: down 0.5s infinite ease-in-out;
  animation-direction: alternate;
}

@keyframes shake {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  25% {
    transform: translate3d(2px, -2px, 2px);
  }
  50% {
    transform: translate3d(-1px, -1px, 1px);
  }
  75% {
    transform: translate3d(2px, 2px, 2px);
  }
  100% {
    transform: translate3d(0px, 0px, 0px);
  }
}
@keyframes moving {
  0% {
    transform: translate3d(0px, 0px, 0px) rotate(5deg);
  }
  25% {
    transform: translate3d(2px, -2px, 2px);
  }
  50% {
    transform: translate3d(-1px, -1px, 1px) rotate(12deg);
  }
  75% {
    transform: translate3d(2px, 2px, 2px);
  }
  100% {
    transform: translate3d(0px, 0px, 0px) rotate(5deg);
  }
}
@keyframes down {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
.choice-spot {
  padding: 15px 0px;
  background: #fff;
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}
.choice-spot .choice-steps {
  position: absolute;
  right: 0;
  top: -75px;
  right: -27px;
}
@media (max-width: 830px) {
  .choice-spot .choice-steps {
    transform: scale(0.7);
    right: -112px;
  }
}
.choice-spot .choice-steps #step-1 {
  -webkit-animation: first-step 5s ease-in-out infinite;
  -moz-animation: first-step 5s ease-in-out infinite;
  animation: first-step 5s ease-in-out infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.choice-spot .choice-steps #step-2 {
  -webkit-animation: second-step 5s ease-in-out infinite;
  -moz-animation: second-step 5s ease-in-out infinite;
  animation: second-step 5s ease-in-out infinite;
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.choice-spot .choice-steps #step-3 {
  -webkit-animation: third-step 5s ease-in-out infinite;
  -moz-animation: third-step 5s ease-in-out infinite;
  animation: third-step 5s ease-in-out infinite;
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.choice-spot .choice-steps #step-4 {
  -webkit-animation: fourth-step 5s ease-in-out infinite;
  -moz-animation: fourth-step 5s ease-in-out infinite;
  animation: fourth-step 5s ease-in-out infinite;
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.choice-spot .choice-steps #step-5 {
  -webkit-animation: fifth-step 5s ease-in-out infinite;
  -moz-animation: fifth-step 5s ease-in-out infinite;
  animation: fifth-step 5s ease-in-out infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}
.choice-spot .choice-steps #step-6 {
  -webkit-animation: sixth-step 5s ease-in-out infinite;
  -moz-animation: sixth-step 5s ease-in-out infinite;
  animation: sixth-step 5s ease-in-out infinite;
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.choice-spot .choice-title h1 {
  color: #93ba44;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 569px) {
  .choice-spot .choice-title h1 {
    margin-bottom: 25px;
  }
}
.choice-spot .slick-tip .tip-head {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.choice-spot .slick-tip .tip-head .tip-photo {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.choice-spot .slick-tip .tip-head .tip-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .choice-spot .slick-tip .tip-head .tip-photo img {
    width: 100px;
    height: auto;
  }
}
@media (max-width: 499px) {
  .choice-spot .slick-tip .tip-head .tip-photo img {
    display: none;
  }
}
@media (max-width: 400px) {
  .choice-spot .slick-tip .tip-head .tip-photo img {
    width: 75px;
  }
}
.choice-spot .slick-tip .tip-head .tip-from {
  width: 100%;
  text-align: left;
}
.choice-spot .slick-tip .tip-head .tip-from h2 {
  text-align: left;
  padding-bottom: 10px;
}
.choice-spot .slick-tip .tip-head .tip-from h2 span {
  text-transform: capitalize;
}
.choice-spot .slick-tip .tip-head .tip-from h1 {
  text-align: left;
  position: relative;
  display: inline;
}
.choice-spot .slick-tip .tip-head .tip-from h1 span {
  background-image: url("../images/border-pattern.png");
  background-position: 0 65px;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-bottom: 65px;
  line-height: 130px;
}
@media (max-width: 900px) {
  .choice-spot .slick-tip .tip-head .tip-from h1 span {
    line-height: 100px;
  }
}
@media (max-width: 850px) {
  .choice-spot .slick-tip .tip-head .tip-from h1 span {
    background-position: 0 50px;
    line-height: 90px;
  }
}
@media (max-width: 700px) {
  .choice-spot .slick-tip .tip-head .tip-from h1 span {
    background-position: 0 40px;
    padding-bottom: 30px;
    line-height: 70px;
  }
}
@media (max-width: 600px) {
  .choice-spot .slick-tip .tip-head .tip-from h1 span {
    background-position: 0 35px;
    padding-bottom: 30px;
    line-height: 70px;
  }
}
@media (max-width: 500px) {
  .choice-spot .slick-tip .tip-head .tip-from h1 span {
    background-position: 0 25px;
    line-height: 45px;
  }
}
.choice-spot .slick-tip .tip-head .tip-from .mobile-div {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 450px) {
  .choice-spot .slick-tip .tip-head .tip-from .mobile-div {
    margin-bottom: 30px;
  }
}
@media (min-width: 499px) {
  .choice-spot .slick-tip .tip-head .tip-from .mobile-div {
    margin-bottom: 10px;
  }
}
.choice-spot .slick-tip .tip-head .tip-from .mobile-div h2 {
  padding-bottom: 0;
}
.choice-spot .slick-tip .tip-head .tip-from .mobile-div img {
  width: 75px;
  padding-right: 10px;
}
@media (min-width: 499px) {
  .choice-spot .slick-tip .tip-head .tip-from .mobile-div img {
    display: none;
  }
}
@media (max-width: 499px) {
  .choice-spot .slick-tip .tip-head .tip-from {
    text-align: center;
  }
}
@media (max-width: 730px) {
  .choice-spot .slick-tip .tip-head {
    width: 90%;
    padding-top: 10px;
  }
}
.choice-spot .slick-tip .tip-description {
  text-align: center;
  width: 80%;
  margin: Auto;
  padding-bottom: 2rem;
}
.choice-spot .slick-tip .tip-description span {
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 500;
  color: #000;
  padding: 0 6px;
  text-decoration: none;
}
@media (max-width: 568px) {
  .choice-spot .slick-tip .tip-description span {
    font-size: 20px;
  }
}
.choice-spot .slick-tip .tip-image {
  width: 100%;
  display: flex;
  align-items: center;
  max-height: 420px;
}
.choice-spot .slick-tip .tip-image .arrow-bg-left {
  background: rgba(0, 0, 0, 0.4);
  height: 99%;
  width: 90px;
  left: 0;
  top: 0;
  display: flex;
  position: absolute;
  z-index: 98;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .choice-spot .slick-tip .tip-image .arrow-bg-left {
    width: 70px;
    height: 98.5%;
  }
}
@media (max-width: 450px) {
  .choice-spot .slick-tip .tip-image .arrow-bg-left {
    width: 40px;
    height: 98%;
  }
}
.choice-spot .slick-tip .tip-image .arrow-bg-right {
  background: rgba(0, 0, 0, 0.4);
  height: 99%;
  width: 90px;
  right: 0;
  top: 0;
  display: flex;
  position: absolute;
  z-index: 98;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .choice-spot .slick-tip .tip-image .arrow-bg-right {
    width: 70px;
    height: 98.5%;
  }
}
@media (max-width: 450px) {
  .choice-spot .slick-tip .tip-image .arrow-bg-right {
    width: 40px;
    height: 98%;
  }
}
.choice-spot .how-to-get {
  text-align: center;
  padding-top: 50px;
}
.choice-spot .how-to-get a {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  font-weight: 900;
  background: #93ba44;
  padding: 17px 70px;
  color: #fff;
  height: 238px;
  text-decoration: none;
}
.choice-spot .how-to-get a:focus {
  outline: none;
}
@media (max-width: 685px) {
  .choice-spot .how-to-get a {
    padding: 13px 40px;
  }
}
@media (max-width: 568px) {
  .choice-spot .how-to-get a {
    padding: 10px 0;
    height: auto;
    display: block;
    width: 90%;
    font-size: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 569px) {
  .choice-spot .how-to-get {
    padding-top: 35px;
  }
}

@-webkit-keyframes first-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes first-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes first-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes second-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes second-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes second-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes third-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes third-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes third-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes fourth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes fourth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes fourth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes fifth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes fifth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes fifth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes sixth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes sixth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes sixth-step {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
.music {
  background: #fff;
  padding: 100px 0 50px 0;
}
.music .music-title {
  position: relative;
}
.music .music-title h1 {
  color: #93ba44;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
}
.music .music-title:before {
  content: url("../images/slouchadla.png");
  display: block;
  left: 0;
  top: -160px;
  position: absolute;
  transform: scale(0.8);
  -webkit-animation: pulsing 0.5s infinite;
  -moz-animation: pulsing 0.5s infinite;
  animation: pulsing 0.5s infinite;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 0.9, 0.2);
  -moz-animation-timing-function: cubic-bezier(0, 1, 0.9, 0.2);
  animation-timing-function: cubic-bezier(0, 1, 0.9, 0.2);
}
@media (max-width: 885px) {
  .music .music-title:before {
    top: -200px;
  }
}
@media (max-width: 780px) {
  .music .music-title:before {
    opacity: 0.8;
  }
}
@media (max-width: 569px) {
  .music .music-title:before {
    opacity: 0.6;
    top: -120px;
  }
}
.music .music-tip {
  padding: 0 15px;
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  width: 80%;
  text-align: center;
}
.music .music-tip p {
  margin-bottom: 40px;
}
@media (max-width: 715px) {
  .music .music-tip p {
    margin: 20px auto;
    width: 90%;
  }
}
.music .music-tip .spotify-embed {
  text-align: center;
  position: relative;
}
.music .music-tip .spotify-embed iframe {
  background-color: #184808;
  width: 100%;
  box-shadow: 0px 0px 15px -4px grey;
}
.music .music-tip .spotify-embed.podcast:before {
  content: url("../images/arrow-music.png");
  display: block;
  position: absolute;
  right: -65px;
  transform: scale(0.7);
  top: -170px;
}
@media (max-width: 997px) {
  .music .music-tip .spotify-embed.podcast:before {
    right: -110px;
  }
}
@media (max-width: 756px) {
  .music .music-tip .spotify-embed.podcast:before {
    right: -70px;
  }
}
@media (max-width: 520px) {
  .music .music-tip .spotify-embed.podcast:before {
    transform: scale(0.5);
  }
}
@media (max-width: 450px) {
  .music .music-tip .spotify-embed.podcast:before {
    display: none;
  }
}
.music .music-tip .spotify-embed.playlist:before {
  content: url("../images/arrow-podcast.png");
  display: block;
  position: absolute;
  left: -95px;
  transform: scale(0.7);
  top: -130px;
}
@media (max-width: 997px) {
  .music .music-tip .spotify-embed.playlist:before {
    left: -125px;
  }
}
@media (max-width: 756px) {
  .music .music-tip .spotify-embed.playlist:before {
    left: -90px;
  }
}
@media (max-width: 520px) {
  .music .music-tip .spotify-embed.playlist:before {
    transform: scale(0.5);
  }
}
@media (max-width: 450px) {
  .music .music-tip .spotify-embed.playlist:before {
    display: none;
  }
}
.music .music-tip:last-child {
  margin-bottom: 0;
}
@media (max-width: 997px) {
  .music .music-tip {
    width: 70%;
  }
}
@media (max-width: 450px) {
  .music .music-tip {
    width: 85%;
  }
}
.music .music-tip a {
  font-size: 24px;
  font-weight: 900;
  background: #93ba44;
  padding: 17px 50px;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  margin: 10px auto;
  text-align: center;
}
.music .music-tip a:focus {
  outline: none;
}
@media (max-width: 685px) {
  .music .music-tip a {
    padding: 13px 40px;
  }
}
@media (max-width: 568px) {
  .music .music-tip a {
    padding: 10px 0;
    height: auto;
    display: block;
    width: 90%;
  }
}
@media (max-width: 569px) {
  .music .music-tip {
    padding-top: 0;
  }
}
@media (min-width: 550px) {
  .music {
    padding-top: 170px;
  }
}

@-webkit-keyframes pulsing {
  0% {
    transform: scale(0.8);
  }
  25% {
    transform: scale(0.82);
  }
  50% {
    transform: scale(0.83);
  }
  75% {
    transform: scale(0.82);
  }
  100% {
    transform: scale(0.8);
  }
}
@-moz-keyframes pulsing {
  0% {
    transform: scale(0.8);
  }
  25% {
    transform: scale(0.82);
  }
  50% {
    transform: scale(0.83);
  }
  75% {
    transform: scale(0.82);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulsing {
  0% {
    transform: scale(0.8);
  }
  25% {
    transform: scale(0.82);
  }
  50% {
    transform: scale(0.83);
  }
  75% {
    transform: scale(0.82);
  }
  100% {
    transform: scale(0.8);
  }
}
.slick-tip .arrow-prev {
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 99;
  cursor: pointer;
}
.slick-tip .arrow-prev:hover, .slick-tip .arrow-prev:focus {
  animation: jumpLeft 1s ease-in-out infinite;
  animation-direction: alternate;
}
@media (max-width: 980px) {
  .slick-tip .arrow-prev {
    width: 70px;
  }
}
@media (max-width: 730px) {
  .slick-tip .arrow-prev {
    top: -35px;
    left: 20px;
    width: 55px;
  }
}
@media (max-width: 580px) {
  .slick-tip .arrow-prev {
    width: 50px;
    top: -25px;
  }
}
@media (max-width: 500px) {
  .slick-tip .arrow-prev {
    top: 90px;
    left: 15px;
    width: 50px;
  }
}
.slick-tip .arrow-next {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 99;
  cursor: pointer;
}
.slick-tip .arrow-next:hover, .slick-tip .arrow-next:focus {
  animation: jumpRight 1s ease-in-out infinite;
  animation-direction: alternate;
}
@media (max-width: 980px) {
  .slick-tip .arrow-next {
    width: 70px;
  }
}
@media (max-width: 730px) {
  .slick-tip .arrow-next {
    top: -35px;
    right: 20px;
    width: 55px;
  }
}
@media (max-width: 580px) {
  .slick-tip .arrow-next {
    width: 50px;
    top: -25px;
  }
}
@media (max-width: 500px) {
  .slick-tip .arrow-next {
    top: 90px;
    right: 15px;
    width: 50px;
  }
}

.image-slick .arrow-image-prev {
  transform: rotate(180deg);
  z-index: 99;
}
@media (max-width: 600px) {
  .image-slick .arrow-image-prev {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .image-slick .arrow-image-prev {
    width: 40%;
  }
}
.image-slick .arrow-image-next {
  z-index: 99;
}
@media (max-width: 600px) {
  .image-slick .arrow-image-next {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .image-slick .arrow-image-next {
    width: 40%;
  }
}
.image-slick .img-slick {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .image-slick .img-slick {
    height: 300px;
  }
}
@media (max-width: 450px) {
  .image-slick .img-slick {
    height: 200px;
  }
}
.image-slick .slick-list {
  width: 100%;
}
.image-slick .slick-list .slick-track {
  width: 100%;
}
.image-slick .slick-list .slick-track .slick-slide {
  width: 100%;
}
.image-slick .slick-list .slick-track .slick-slide div {
  width: 100%;
}

@keyframes jumpLeft {
  0% {
    transform: translateX(0px) rotate(180deg);
  }
  100% {
    transform: translateX(-10px) rotate(180deg);
  }
}
@keyframes jumpRight {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
footer {
  padding: 30px 15px;
}
footer .footer-title h1 {
  color: #fff;
}
footer .footer-image {
  margin-top: 25px;
  text-align: center;
}
@media (max-width: 568px) {
  footer .footer-image img {
    width: 70%;
  }
}

.desktop {
  background: #93ba44;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.desktop .top-header {
  padding-top: 20px;
  padding-bottom: 0;
}
.desktop .wrapper {
  max-width: 1100px;
  margin: auto;
  height: 100%;
}
.desktop .wrapper .content {
  height: 100%;
}
.desktop .wrapper .content .flex {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: -100px;
}
.desktop .wrapper .content .left {
  flex: 1 1 50%;
  max-width: 50%;
}
.desktop .wrapper .content .left h1 {
  font-size: 200px;
  color: #fff;
  text-align: left;
  line-height: 50px;
}
@media (max-height: 1300px) {
  .desktop .wrapper .content .left h1 {
    font-size: 125px;
    line-height: 15px;
  }
}
@media (max-height: 600px) {
  .desktop .wrapper .content .left h1 {
    font-size: 125px;
    line-height: 15px;
  }
}
.desktop .wrapper .content .left h2 {
  font-size: 90px;
  text-align: left;
  padding-top: 70px;
  color: #fff;
  text-transform: lowercase;
  line-height: 95px;
}
@media (max-height: 1300px) {
  .desktop .wrapper .content .left h2 {
    font-size: 75px;
    line-height: 80px;
  }
}
@media (max-height: 600px) {
  .desktop .wrapper .content .left h2 {
    font-size: 55px;
    line-height: 50px;
  }
}
.desktop .wrapper .content .right {
  flex: 1 1 55%;
  max-width: 55%;
  position: relative;
  margin-top: 180px;
}
.desktop .wrapper .content .right .d-img {
  text-align: right;
}
.desktop .wrapper .content .right .d-img img {
  transform: scale(0.8);
}
.desktop .wrapper .content .right p {
  text-align: left;
  font-size: 32px;
}
@media (max-height: 1300px) {
  .desktop .wrapper .content .right p {
    font-size: 26px;
  }
}
@media (max-height: 600px) {
  .desktop .wrapper .content .right p {
    font-size: 26px;
  }
}
.desktop .wrapper .content .right:before {
  content: url("../images/desktop-cepka.png");
  display: block;
  position: absolute;
  right: 50px;
  top: -245px;
  z-index: -1;
  transform: scale(0.8);
}
@media (max-height: 1300px) {
  .desktop .wrapper .content .right:before {
    transform: scale(0.7);
  }
}
.desktop .wrapper .desktop-steps {
  position: absolute;
  bottom: -150px;
  left: -170px;
  transform: scale(0.7);
  z-index: -1;
  opacity: 0.8;
}
.desktop .wrapper .desktop-steps svg #left {
  -webkit-animation: left-1 5s ease-in-out infinite;
  -moz-animation: left-1 5s ease-in-out infinite;
  animation: left-1 5s ease-in-out infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.desktop .wrapper .desktop-steps svg #right {
  -webkit-animation: right-1 5s ease-in-out infinite;
  -moz-animation: right-1 5s ease-in-out infinite;
  animation: right-1 5s ease-in-out infinite;
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.desktop .wrapper .desktop-steps svg #left-2 {
  -webkit-animation: left-1 5s ease-in-out infinite;
  -moz-animation: left-1 5s ease-in-out infinite;
  animation: left-1 5s ease-in-out infinite;
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s;
}
.desktop .wrapper .desktop-steps svg #right-2 {
  -webkit-animation: right-1 5s ease-in-out infinite;
  -moz-animation: right-1 5s ease-in-out infinite;
  animation: right-1 5s ease-in-out infinite;
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s;
}
.desktop .wrapper .desktop-steps svg #left-3 {
  -webkit-animation: left-1 5s ease-in-out infinite;
  -moz-animation: left-1 5s ease-in-out infinite;
  animation: left-1 5s ease-in-out infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}
.desktop .wrapper .desktop-steps svg #right-3 {
  -webkit-animation: right-1 5s ease-in-out infinite;
  -moz-animation: right-1 5s ease-in-out infinite;
  animation: right-1 5s ease-in-out infinite;
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.desktop .wrapper .desktop-steps svg #left-4 {
  -webkit-animation: left-1 5s ease-in-out infinite;
  -moz-animation: left-1 5s ease-in-out infinite;
  animation: left-1 5s ease-in-out infinite;
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}
.desktop .wrapper .desktop-steps svg #right-4 {
  -webkit-animation: right-1 5s ease-in-out infinite;
  -moz-animation: right-1 5s ease-in-out infinite;
  animation: right-1 5s ease-in-out infinite;
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
.desktop .wrapper .desktop-steps svg #left-5 {
  -webkit-animation: left-1 5s ease-in-out infinite;
  -moz-animation: left-1 5s ease-in-out infinite;
  animation: left-1 5s ease-in-out infinite;
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
}
.desktop .wrapper .desktop-steps svg #right-5 {
  -webkit-animation: right-1 5s ease-in-out infinite;
  -moz-animation: right-1 5s ease-in-out infinite;
  animation: right-1 5s ease-in-out infinite;
  -webkit-animation-delay: 5.5s;
  -moz-animation-delay: 5.5s;
  animation-delay: 5.5s;
}
.desktop .wrapper .desktop-steps svg #left-6 {
  -webkit-animation: left-1 5s ease-in-out infinite;
  -moz-animation: left-1 5s ease-in-out infinite;
  animation: left-1 5s ease-in-out infinite;
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  animation-delay: 6s;
}
.desktop .wrapper .desktop-steps svg #right-6 {
  -webkit-animation: right-1 5s ease-in-out infinite;
  -moz-animation: right-1 5s ease-in-out infinite;
  animation: right-1 5s ease-in-out infinite;
  -webkit-animation-delay: 6.5s;
  -moz-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

@-webkit-keyframes left-1 {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes left-1 {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes left-1 {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-webkit-keyframes right-1 {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@-moz-keyframes right-1 {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
@keyframes right-1 {
  0% {
    opacity: 1;
  }
  8% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #93ba44;
  font-family: "Fira Sans", sans-serif;
  margin: 0;
  height: 100vh;
}

main {
  height: 100%;
}

.wrapper {
  height: 100%;
}

/*# sourceMappingURL=style.css.map */
