@charset "UTF-8";
#cookies_consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 1.5rem 1rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  min-height: 15%;
}
#cookies_consent a {
  color: #0d6efd !important;
  text-decoration: underline !important;
}
#cookies_consent .cookies-consent-message {
  flex: 1 1 300px;
  margin-right: 1.5rem;
  font-size: 1rem;
}
#cookies_consent .cookies-consent-actions {
  display: flex;
  gap: 0.75rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.tim-button {
  background-color: #4b697e;
  border: none;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 8px;
}

.tim-button:hover {
  background-color: #4b697e;
  color: white;
}

/* Základní styl pro tělo */
body {
  font-family: "Helvetica", sans-serif;
  background-image: linear-gradient(rgba(198, 215, 236, 0.5607843137) -85%, #fff 69%, rgba(198, 215, 236, 0.5607843137) 93%);
  color: #2e2e2e;
  margin: 0;
  padding: 0 !important;
  font-size: 13px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin-top: 15px;
}

section {
  background-color: transparent;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hlavička */
header {
  background-color: #4b697e;
  color: white;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

/* Logo */
.logo {
  width: 200px;
}

header nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #f0f4f8;
}

/* Tlačítka pro přihlášení a registraci */
header .auth-links {
  display: flex;
  gap: 15px;
  margin-left: auto;
}

header .auth-links a {
  background-color: #f0f4f8;
  color: #4b697e;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  padding: 8px;
}

header .auth-links a:hover {
  color: #4b697e;
  background-color: #f0f4f8;
}

/* Přepínač jazyků */
header .language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

span.tim-lang_label {
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #101c3f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Helvetica", sans-serif;
}

/* Tlačítka */
.btn-primary {
  background-color: #4b697e;
  border: none;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #1f1f1f;
  border: none;
}

.show_more img {
  transition: all 0.3s ease;
  height: 80px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.show_more:hover img {
  transform: translateY(-30px);
}

/* Hlavní sekce (Hero) */
#hero {
  position: relative;
  text-align: center;
  color: #101c3f;
}

#hero .btn {
  background-color: #101c3f;
}

.hero-content h2 {
  margin-bottom: 20px;
  color: #101c3f;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-content a {
  margin: 10px;
  padding: 12px 30px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.hero-content a.btn-primary {
  background-color: #4b697e;
}

.hero-content a.btn-secondary {
  background-color: #e0e0e0;
  color: #1f1f1f;
}

/* Pro menší obrazovky, upravit velikost textu a tlačítek */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 27px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-content a {
    padding: 10px 20px;
  }
  span.tim-lang_label {
    font-size: 15px;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 22px;
  }
  .hero-content p {
    font-size: 14px;
  }
  h1 {
    font-size: 25px;
  }
}
/* Funkce */
#features {
  text-align: center;
  box-shadow: none;
}

#features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #101c3f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Helvetica", sans-serif;
}

.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
  color: #4b697e;
}

.feature-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Textová část */
.feature h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #101c3f;
  font-weight: bold;
  font-family: "Helvetica", sans-serif;
}

.feature p {
  font-size: 18px;
  color: #101c3f;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Obrázky */
.feature-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 850px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: scale(1.05);
}

.tim-screenshot {
  border-radius: 20px;
}

/* Responzivita */
@media (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
  }
  .feature-img {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  #features h2 {
    font-size: 22px;
  }
  .feature h3 {
    font-size: 18px;
  }
}
/* Ceník */
.ribbon {
  position: absolute;
  width: 60px;
  font-size: 14px;
  padding: 4px;
  right: -15px;
  top: -12px;
  text-align: center;
  border-radius: 25px;
  transform: rotate(20deg);
  background-color: #ff9800;
  color: white;
}

ul {
  list-style-type: none;
  padding-left: 0;
  padding-left: 20px;
}

ul.pricing-plan-versions li {
  margin-bottom: 15px;
  text-align: left;
  text-indent: -21px;
  font-size: 18px;
}

ul.pricing-plan-versions li::before {
  content: "✔";
  margin-right: 10px;
  color: #101c3f;
}

.pricing-cards {
  border: 2px solid #e6e6e6;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.268);
  padding: 50px;
  clip-path: ellipse(75% 95% at top);
  background: linear-gradient(180deg, #4b697e, rgb(139, 170, 191));
  padding-top: 20px;
  padding-bottom: 115px;
}

.table th {
  background-color: #f2f7fc;
  text-align: center;
  font-size: 25px;
  border-style: none;
}

.tim-th_pro {
  background: linear-gradient(180deg, #ffde00, #ffb700);
}

.table td {
  font-size: 18px;
  border-style: dotted;
}

.table-tim-pricing {
  border-collapse: collapse;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.268);
}

.pricing-table {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.table-pricing h2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Helvetica", sans-serif;
  font-size: 32px;
  color: #101c3f;
  margin-bottom: 25px;
}

#pricing {
  background: transparent;
  padding: 60px 20px;
  text-align: center;
}

#pricing h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Helvetica", sans-serif;
}

.pricing-section {
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pricing-plan {
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(34, 45, 66, 0.64);
  margin: 50px 5px 60px 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 270px;
  flex: 1;
  padding-bottom: 15px;
  position: relative;
}

.pricing-card-pro {
  background: linear-gradient(rgb(255, 255, 255), #ffffff) padding-box, linear-gradient(to right, #fecb32, white, #fecb32) border-box;
  border: 5px solid rgba(255, 248, 137, 0.4509803922);
  box-shadow: 0 0px 20px rgba(255, 183, 46, 0.82);
}

.btn-price-pro {
  background: linear-gradient(180deg, #ffde00, #ffb700);
  color: #101c3f !important;
  box-shadow: 0px 4px 10px rgba(255, 208, 21, 0.3);
  display: inline-block;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 10px;
}

.btn-price-free {
  display: inline-block;
  padding: 10px 20px;
  background-color: #101c3f;
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.btn-price-free:hover {
  background-color: #101c3f;
}

.pricing-plan-footer {
  margin-top: auto;
  margin-bottom: 20px;
}

.pricing-plan .btn {
  margin-bottom: 20px;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.268);
}

.pricing-plan h3, .pricing-plan h4 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #101c3f;
  font-weight: bold;
}

.pricing-plan h5 {
  font-weight: bold;
  margin-bottom: 14px;
  font-size: 26px;
}

.pricing-plan p {
  font-size: 18px;
  color: #101c3f;
  margin-bottom: 20px;
}

/* TRIAL  */
.payment-methods {
  margin-top: 40px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.payment-methods p {
  font-size: 18px;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.g-pay_icon {
  width: 140px;
}

.master_icon {
  width: 80px;
}

.secure_icon {
  width: 90px;
}

/* Responzivita */
@media (max-width: 1260px) {
  .pricing-cards {
    clip-path: ellipse(159% 98% at top);
  }
}
@media (max-width: 768px) {
  .payment-methods .payment-method {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  #pricing h2 {
    font-size: 22px;
  }
  .pricing-plan {
    margin: 15px;
  }
  .pricing-cards {
    clip-path: ellipse(159% 98% at top);
    padding: 20px 0px 60px 0px;
  }
}
/* Styling pro tlačítka v sekci ceník */
#pricing .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #101c3f;
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

#pricing .btn:hover {
  transform: scale(1.05);
}

#pricing .btn-primary:hover {
  color: #fff;
}

/*sekce time is money*/
.tim-text {
  clip-path: ellipse(75% 95% at top);
  background: linear-gradient(180deg, rgba(231, 240, 249, 0.27), rgba(156, 186, 206, 0.71), rgba(243, 247, 249, 0.18));
}

/* Kontakt */
#contact {
  background-color: transparent;
  padding: 35px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 32px;
  color: #101c3f;
  font-weight: bold;
  margin-bottom: 20px;
}

#contact p {
  font-size: 18px;
  color: #101c3f;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info a {
  color: #101c3f;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact_icon {
  width: 35px;
}

@media (max-width: 480px) {
  #contact h2 {
    font-size: 22px;
  }
}
/* Patička */
footer {
  background-color: #2a3d4a;
  color: white;
  padding: 70px 20px;
  text-align: center;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  clip-path: ellipse(105% 100% at 50.73% 101.47%);
}

footer .footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

footer .footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

footer .footer-links ul li a:hover {
  color: #f0f4f8;
}

footer .social-media {
  margin-top: 20px;
}

footer .social-icon {
  width: 40px;
  display: block;
  margin: 8px;
}

footer .social-icon:hover {
  color: #4b697e;
  transform: scale(1.2);
}

footer .footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* Vlajky */
.tim-nav__footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.js-changeLanguage {
  display: flex;
  gap: 10px;
}

.js-changeLanguage .col {
  display: inline-block;
}

.tim-flag_icon {
  width: 24px;
  height: 16px;
  cursor: pointer;
}

.js-changeLanguage .active {
  display: none;
}

@media (max-width: 768px) {
  .js-changeLanguage {
    gap: 5px;
  }
  .tim-flag_icon {
    width: 42px;
    height: 25px;
    cursor: pointer;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
  }
  .flags-left-side {
    flex-direction: column;
  }
}/*# sourceMappingURL=main.min.css.map */