@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html, body {
  scroll-behavior: smooth;
}

body, html {
  background: #202020;
  position: relative;
  overflow-x: hidden;
  width: 100vw;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

header {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
header .logo {
  font-size: 2em;
}
header .logo a {
  color: #fff;
  text-decoration: none;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}
header .right .language-switch a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .right .language-switch a img {
  height: 40px;
  width: 60px;
  border-radius: 5px;
}
header .socials {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
header .socials .icon {
  height: 51px;
  width: 51px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 1px solid transparent;
  transition: 0.25s ease;
}
header .socials .icon svg, header .socials .icon img {
  height: 25px;
  width: 25px;
  color: #000;
}
header .socials .icon:hover {
  outline: 1px solid #fff;
}

@media only screen and (max-width: 900px) {
  header .logo {
    font-size: 1.5em;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 20px 5%;
    flex-flow: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
  header .logo {
    font-size: 25px;
    display: none;
  }
  header .right {
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
  }
  header .right .language-switch {
    order: 2;
  }
  header .right .language-switch a img {
    height: 31px;
    width: 40px;
  }
  header .socials {
    gap: 10px;
  }
  header .socials .icon {
    height: 35px;
    width: 35px;
  }
  header .socials .icon svg, header .socials .icon img {
    height: 19px;
    width: 19px;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
}
.btn a {
  font-size: 1em;
  border: 3px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  border-radius: 15px;
  text-decoration: none;
  padding: 0.75em 1.5em;
  font-weight: 500;
  transition: 0.2s ease;
  background: #fff;
  cursor: pointer;
}
.btn a svg {
  height: 1.25em;
  width: 1.25em;
  stroke-width: 2.5;
}
.btn:hover a {
  outline: 1px solid #fff;
}

footer {
  padding: 5rem 7.5%;
  background: #181818;
}
footer .footer__content {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .footer__content .left {
  width: 40%;
}
footer .footer__content .left h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 1rem;
}
footer .footer__content .left p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.75em;
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right a {
  text-decoration: none;
  color: #fff;
  font-size: 1.25em;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}
footer .footer__content .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #fff;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 700px) {
  footer .footer__content {
    flex-flow: column;
    row-gap: 4rem;
  }
  footer .footer__content .left {
    width: 100%;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 0 1rem;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent {
    padding: 0;
  }
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.hero {
  padding: 50px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  position: relative;
}
.hero .left {
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 30px;
}
.hero .left h1 {
  font-size: 90px;
  font-weight: 400;
  line-height: 1em;
  color: #fff;
}
.hero .left h1 b {
  font-weight: 700;
}
.hero .left p {
  font-size: 20px;
  line-height: 1.75em;
  color: rgba(255, 255, 255, 0.6);
}
.hero .left .contacts {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 35px;
  margin-top: 50px;
}
.hero .left .contacts .item {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
}
.hero .left .contacts .item .icon {
  height: 65px;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
}
.hero .left .contacts .item .icon svg {
  height: 31px;
  width: 31px;
  color: #000;
}
.hero .left .contacts .item .item__content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  gap: 3px;
}
.hero .left .contacts .item .item__content label {
  font-size: 18px;
  color: #fff;
}
.hero .left .contacts .item .item__content a {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.hero .right {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  position: relative;
}
.hero .right .form__content {
  width: 100%;
  background: #1F1F1F;
  background: linear-gradient(45deg, rgb(31, 31, 31) 0%, rgb(53, 53, 53) 100%);
  padding: 35px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 25px;
  border-radius: 35px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: 1s ease;
}
.hero .right .form__content#form-content-2 {
  position: absolute;
  top: 0px;
  right: 0;
  transform: translateX(150%);
}
.hero .right .form__content h2 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 15px;
  color: #fff;
}
.hero .right .form__content h2 b {
  font-weight: 600;
}
.hero .right .form__content section {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 25px;
  width: 100%;
}
.hero .right .form__content section.second {
  margin-top: 2rem;
}
.hero .right .form__content .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
}
.hero .right .form__content .row.final {
  margin-top: 1rem;
}
.hero .right .form__content .row .item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 5px;
  width: 100%;
}
.hero .right .form__content .row .item.button-parent {
  justify-content: end;
  align-items: end;
}
.hero .right .form__content .row .item.back-link-parent {
  justify-content: center;
}
.hero .right .form__content .row .item #back-link {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
}
.hero .right .form__content .row .item #back-link svg {
  height: 1.25em;
  width: 1.25em;
}
.hero .right .form__content .row .item h3 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.hero .right .form__content .row .item p {
  color: #fff;
}
.hero .right .form__content .row .item .radio__parent {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.hero .right .form__content .row .item .radio__parent.images, .hero .right .form__content .row .item .radio__parent.countries {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.hero .right .form__content .row .item .radio__parent.images input, .hero .right .form__content .row .item .radio__parent.countries input {
  display: none;
}
.hero .right .form__content .row .item .radio__parent.images label, .hero .right .form__content .row .item .radio__parent.countries label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.hero .right .form__content .row .item label img {
  height: 51px;
  width: 51px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.hero .right .form__content .row .item label img.active {
  outline: 1px solid #00AAFF;
}
.hero .right .form__content .row .item label.country-label {
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 7px 20px;
  border-radius: 100px;
  transition: 0.25s ease;
  cursor: pointer;
  font-weight: 600;
}
.hero .right .form__content .row .item label.country-label.active, .hero .right .form__content .row .item label.country-label:hover {
  background: #fff;
  color: #000;
}
.hero .right .form__content .row .item input[type=number], .hero .right .form__content .row .item input[type=email], .hero .right .form__content .row .item input[type=tel], .hero .right .form__content .row .item input[type=text] {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 18px;
}
.hero .right .form__content .row .item .btn {
  width: 100%;
}
.hero .right .form__content .row .item .btn a {
  font-size: 20px;
}

@media only screen and (max-width: 1550px) {
  .hero .left h1 {
    font-size: 70px;
  }
  .hero .left p {
    font-size: 18px;
  }
  .hero .left .contacts .item .icon {
    height: 55px;
    width: 55px;
  }
  .hero .left .contacts .item .icon svg {
    height: 31px;
    width: 31px;
  }
  .hero .left .contacts .item .item__content label {
    font-size: 16px;
  }
  .hero .left .contacts .item .item__content a {
    font-size: 24px;
  }
  .hero .right .form__content h2 {
    font-size: 37px;
  }
  .hero .right .form__content .row .item h3 {
    font-size: 22px;
  }
  .hero .right .form__content .row .item label img {
    height: 45px;
    width: 45px;
  }
}
@media only screen and (max-width: 1300px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 50px 5%;
    gap: 50px;
  }
  .hero .left {
    padding-top: 0;
  }
  .hero .left h1 {
    font-size: 55px;
  }
  .hero .left p {
    font-size: 16px;
  }
  .hero .left .contacts {
    flex-flow: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 35px;
  }
  .hero .left .contacts .item {
    gap: 10px;
  }
  .hero .left .contacts .item .icon {
    height: 55px;
    width: 55px;
  }
  .hero .left .contacts .item .icon svg {
    height: 25px;
    width: 25px;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    gap: 0px;
    padding: 15px 5%;
    min-height: 100dvh; /* plná výška včetně iOS safe chování */
    overflow: visible; /* hlavně ne auto/scroll */
    -webkit-overflow-scrolling: auto; /* jistota proti inerci vevnitř */
    overflow: clip;
  }
  .hero .left {
    gap: 15px;
  }
  .hero .left h1 {
    font-size: 35px;
    font-weight: 500;
  }
  .hero .left p {
    font-size: 13px;
  }
  .hero .left .contacts {
    flex-flow: column;
    margin-top: 10px;
  }
  .hero .left .contacts .item {
    gap: 15px;
    grid-template-columns: 45px 1fr;
  }
  .hero .left .contacts .item .icon {
    height: 41px;
    width: 41px;
  }
  .hero .left .contacts .item .icon svg {
    height: 21px;
    width: 21px;
  }
  .hero .left .contacts .item .item__content label {
    font-size: 13px;
  }
  .hero .left .contacts .item .item__content a {
    font-size: 18px;
  }
  .hero .right .form__content {
    padding: 25px;
  }
  .hero .right .form__content h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .hero .right .form__content .row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero .right .form__content .row .item.back-link-parent {
    order: 2;
  }
  .hero .right .form__content .row .item #back-link {
    font-size: 16px;
  }
  .hero .right .form__content .row .item h3 {
    font-size: 18px;
  }
  .hero .right .form__content .row .item label {
    font-size: 15px;
    margin-left: 5px;
  }
  .hero .right .form__content .row .item .btn a {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */