@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;
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
  pointer-events: none; /* volitelně, pokud nechceš, aby šlo číslo kliknout */
}

h2.h2 {
  font-size: 65px;
  color: #3E3E3E;
  font-weight: 400;
  line-height: 1em;
}

@media only screen and (max-width: 1550px) {
  h2.h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1300px) {
  h2.h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 900px) {
  h2.h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  h2.h2 {
    font-size: 26px;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 7.5%;
  z-index: 51;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
header .logo {
  font-size: 30px;
  font-weight: 500;
}
header .logo a {
  color: #fff;
  text-decoration: none;
}
header .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .buttons .flag {
  background: none;
  border: none;
}
header .buttons .flag a {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .buttons .flag a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
header .buttons .btn a {
  font-size: 16px;
}

.offcanvas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  transform: translateX(120%);
  transition: 0.5s ease-in-out;
  z-index: 51;
  background: #fff;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  cursor: pointer;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #3E3E3E;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #3E3E3E;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.2);
  cursor: pointer;
  transition: 0.5s ease;
  font-weight: 500;
}
.offcanvas a:hover {
  border-bottom: 2px solid #3e3e3e;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1550px) {
  header .logo {
    font-size: 27px;
    font-weight: 500;
  }
  header .logo a {
    color: #fff;
    text-decoration: none;
  }
  header .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  header .buttons .btn a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 20px 7.5%;
  }
  header .logo {
    font-size: 24px;
  }
  header .buttons .btn a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    padding: 15px 7.5%;
  }
  header .logo {
    font-size: 17px;
    padding-right: 10px;
  }
  header .buttons .flag a {
    height: 41px;
    width: 41px;
  }
  header .buttons .btn.primary {
    display: none;
  }
  header .buttons .btn a {
    font-size: 12px;
  }
  .offcanvas {
    width: 100%;
  }
}
.btn {
  border: none;
  background: none;
  cursor: pointer;
}
.btn:hover a .icon {
  transform: translateX(3px);
}
.btn.primary a {
  background: #A85D7B;
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
}
.btn.primary a .icon svg {
  color: #A85D7B;
}
.btn.secondary a {
  background: #A85D7B;
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
}
.btn.secondary a .icon svg {
  color: #A85D7B;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0.5em 0.5em 0.5em 1.2em;
  border-radius: 100px;
}
.btn a span {
  font-weight: 500;
  color: #fff;
}
.btn a .icon {
  height: 2.5em;
  width: 2.5em;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease;
}
.btn a .icon svg {
  height: 1.35em;
  width: 1.35em;
}

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 .logo {
  width: 300px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
footer .footer__content .left .logo img {
  width: 60%;
}
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 .left p a {
  color: rgba(255, 255, 255, 0.6);
}
footer .footer__content .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1.15rem;
}
footer .footer__content .right h3 {
  font-size: 35px;
  color: #fff;
  font-weight: 500;
}
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: #AD6280;
  stroke-width: 3;
}

@media only screen and (max-width: 1300px) {
  footer .footer__content .left .logo {
    width: 250px;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right h3 {
    font-size: 30px;
  }
  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%;
  }
  footer .footer__content .left .logo {
    width: 200px;
  }
  footer .footer__content .right h3 {
    font-size: 25px;
  }
}
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.image-popup .popup-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.image-popup .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: opacity 0.2s ease;
}
.image-popup .close-btn:hover {
  opacity: 0.7;
}
.image-popup .close-btn svg {
  height: 41px;
  width: 41px;
}
.image-popup .popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1001;
  transition: opacity 0.2s ease;
}
.image-popup .popup-nav.left {
  left: 2rem;
}
.image-popup .popup-nav.right {
  right: 2rem;
}
.image-popup .popup-nav:hover {
  opacity: 0.7;
}
.image-popup .popup-nav svg {
  height: 71px;
  width: 71px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5));
}

@media only screen and (max-width: 1300px) {
  .gallery {
    padding: 3.5rem 10%;
  }
  .gallery .gallery__content {
    margin-top: 1.5rem;
    gap: 10px;
  }
  .gallery .gallery__content .image {
    height: 15rem;
  }
  .gallery .button__parent .btn a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .gallery .gallery__content .image {
    height: 10rem;
  }
  .gallery .button__parent {
    padding-top: 1rem;
  }
  .gallery .button__parent .btn a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 700px) {
  .gallery .gallery__content {
    grid-template-columns: 1fr 1fr;
  }
  .gallery .gallery__content .image {
    height: 7.5rem;
  }
  .gallery .button__parent .btn a {
    font-size: 15px;
  }
  .image-popup .popup-nav {
    top: initial;
    bottom: 0;
  }
  .image-popup .popup-nav.left {
    left: 35vw;
  }
  .image-popup .popup-nav.right {
    right: 35vw;
  }
  .image-popup .popup-nav svg {
    height: 45px;
    width: 45px;
  }
}
.contacts {
  padding: 5rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  background: rgba(255, 234, 231, 0.25);
}
.contacts::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20vw;
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
}
.contacts form p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 50px;
  color: rgba(62, 62, 62, 0.6);
}
.contacts form .input__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.contacts form .input__row input {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  background: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 20px;
  transition: 0.25s ease;
  color: #3E3E3E;
}
.contacts form .input__row input:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form textarea {
  width: 100%;
  height: 100px;
  border: none;
  border-bottom: 2px solid rgba(62, 62, 62, 0.5);
  font-size: 18px;
  resize: none;
  background: none;
  color: #3E3E3E;
  transition: 0.25s ease;
}
.contacts form textarea:focus {
  border-bottom: 2px solid #3E3E3E;
  outline: none;
}
.contacts form .btn {
  margin-top: 10px;
}
.contacts form .btn a {
  font-size: 18px;
}
.contacts .details {
  padding: 40px;
  background: #2E2E2E;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  width: 40vw;
  z-index: 2;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.contacts .details .details__text {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 20px;
}
.contacts .details .details__text h3 {
  font-size: 45px;
  color: #fff;
  font-weight: 500;
}
.contacts .details .details__text .link {
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.contacts .details .details__text .link .icon {
  background: linear-gradient(0deg, rgb(168, 93, 123) 0%, rgb(198, 123, 153) 100%);
  padding: 10px;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts .details .details__text .link .icon svg {
  height: 23px;
  width: 23px;
  stroke-width: 2.5;
}
.contacts .details .details__text .link span {
  font-size: 20px;
  font-weight: 400;
}
.contacts .details .logo {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.contacts .details .logo img {
  width: 80%;
}

@media only screen and (max-width: 1550px) {
  .contacts .details {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .contacts .details .logo {
    width: 60%;
    padding: 20px;
  }
  .contacts .details .logo img {
    width: 60%;
  }
}
@media only screen and (max-width: 1300px) {
  .contacts {
    padding: 3.5rem 10%;
    gap: 25px;
  }
  .contacts form p {
    font-size: 16px;
  }
  .contacts form .btn a {
    font-size: 18px;
  }
  .contacts .details {
    width: 45vw;
  }
  .contacts .details .details__text h3 {
    font-size: 30px;
  }
  .contacts .details .details__text .link .icon {
    height: 37px;
    width: 37px;
  }
  .contacts .details .details__text .link .icon svg {
    height: 21px;
    width: 21px;
  }
  .contacts .details .details__text .link span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts {
    padding: 3.5rem 10%;
    grid-template-columns: 1fr;
    row-gap: 75px;
  }
  .contacts::after {
    height: 200px;
    width: 100vw;
    bottom: 0;
    top: initial;
  }
  .contacts form {
    z-index: 2;
  }
  .contacts form .btn a {
    font-size: 15px;
  }
  .contacts .details {
    position: relative;
    top: 0;
    transform: none;
    width: 80vw;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .contacts {
    padding-top: 50px;
  }
  .contacts::after {
    height: 150px;
  }
  .contacts form p {
    font-size: 13px;
    margin-top: 5px;
  }
  .contacts form .input__row input {
    font-size: 13px;
  }
  .contacts form textarea {
    font-size: 13px;
  }
  .contacts form .btn a {
    font-size: 14px;
  }
  .contacts .details {
    padding: 30px;
  }
  .contacts .details .details__text h3 {
    font-size: 20px;
  }
  .contacts .details .details__text .link .icon {
    height: 35px;
    width: 35px;
  }
  .contacts .details .details__text .link .icon svg {
    height: 25px;
    width: 25px;
  }
  .contacts .details .details__text .link span {
    font-size: 13px;
  }
  .contacts .details .logo {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }
  .contacts .details .logo img {
    width: 50%;
  }
}
#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: #3E3E3E;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #3E3E3E;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.validity {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero {
  padding: 150px 7.5% 50px;
  position: relative;
  margin-bottom: 50px;
}
.hero .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.hero .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.hero .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #6BA8D6;
  background: linear-gradient(221deg, rgb(107, 168, 214) 0%, rgb(168, 93, 123) 100%);
  z-index: 3;
  opacity: 0.45;
}
.hero .bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero h1 {
  position: relative;
  z-index: 4;
  font-size: 75px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.hero p {
  position: relative;
  z-index: 4;
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.75);
  margin: 15px auto 35px;
  text-align: center;
  max-width: 750px;
}

.content {
  padding: 2.5rem 15%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 3rem;
}
.content section h2 {
  font-size: 2em;
  margin-bottom: 0.5rem;
  color: #000;
}
.content section ul {
  padding-left: 20px;
}
.content section p, .content section ul li {
  line-height: 1.75em;
  color: #000;
}
.content section p a, .content section ul li a {
  color: #000;
}

@media only screen and (max-width: 1300px) {
  h1 {
    font-size: 2.5em;
  }
  .validity {
    font-size: 1.25em;
  }
  .content section h2 {
    font-size: 1.65em;
  }
  .content section p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 2em;
  }
  .validity {
    font-size: 1em;
  }
  .content {
    padding: 2rem 10% 3rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  header {
    width: 100vw;
    height: 5rem;
    justify-content: space-between;
  }
  header img {
    height: 2.5rem;
  }
  header nav {
    gap: 0.5rem;
  }
  header nav a {
    font-size: 0.5em;
  }
  h1 {
    font-size: 1.75em;
    padding: 0 10%;
  }
  .content section h2 {
    font-size: 1.35em;
  }
  .content section p, .content section ul li {
    font-size: 0.75em;
  }
}/*# sourceMappingURL=style.css.map */