* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    /*outline: 1px solid red;*/
      


  }

body {
    font-family: "IBM Plex Sans", serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
  }

html {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
    overflow-x: hidden;

}

:root {
    --color-primary: #002652;
    --color-secondary: #2F97C1;
    --color-bggrey: #f7f7f7;
    --color-whitefont: rgba(255, 255, 255, 0.85);
    --color-darkfont: rgba(0, 0, 0, 0.75);
}

/* --------------------------------PAGE CODE --------------------------------*/
.navbar {
  background-color: white;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: var(--color-darkfont);
}

.navbar-logo {
  background-image: url(Images/logo-sm.svg);
  width: 100%;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  
}

.navbar .navcontainer {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
}

.navbar .navcontainer ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.navbar .navcontainer ul button {
  margin-left: 24px;
}

.navbar ul li a {
  padding: 8px 24px;
  display: block;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: 300ms;
  white-space: nowrap;
}

.navbar ul li a:hover {
  color: var(--color-secondary)
}

/*----FOR MOBILE----*/

#open-sidebar-button {
  border: none;
  width: 25px;
  height: fit-content;
  background-color: transparent;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--color-darkfont);
  transition: all 0.3s ease;
}

#open-sidebar-button.active .top {
  transform: rotate(45deg) translate(3px, 4px);
  align-self: center;
}

#open-sidebar-button.active .middle {
  opacity: 0;
}

#open-sidebar-button.active .bottom {
  transform: rotate(-45deg) translate(3px, -4px);
  align-self: center;
}

.mobile-nav {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  padding: 20px 16px;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav-img {
  background-image: url(Images/logo-sm.svg);
  width: 100%;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}

/*----HERO----*/

.hero {
  background-color: var(--color-primary);
  width: 100%;
  background-image: url(Images/wave-haikei.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 80px;
}

.hero-img {
  max-width: 600px;
  width: 100%;
  height: 400px;
  position: relative;
  background-image: url(Images/Hero-fin.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img-cont {
  width: 50%;
  height: fit-content;
}

.hero-text {
  width: 50%;
  max-width: 500px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.recenze {
  color: #fff;
  text-decoration: none;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.hero-text a:visited {
  color: #fff;
}

.recenze:hover {
  opacity: 0.75;
}

.fa-arrow-right {
  display: inline-block;
  transition: transform 0.3s ease;
}

.recenze:hover .fa-arrow-right {
  transform: rotate(-45deg);
}

.stars {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.hero-text h1 {
  margin-bottom: 24px;
}

.intro {
  margin-bottom: 32px;
}

.buttons-hero {
  display: flex;
  gap: 8px;
}

.services {
  background-color: #fff;
}

.services h1 {
  text-align: center;
}

.services .service-p {
  text-align: center;
  max-width: 900px;
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.services .card-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  row-gap: 56px;
  column-gap: 24px;
}

.card-grid .card .btn {
 margin-top: auto;
}

.services .card {
  background-color: var(--color-bggrey);
  color: #000;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56px;
  transition: 200ms ease-in-out;
}

.services .card:hover {
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

.services .card:hover .icon-box {
  background-color: var(--color-bggrey);
  color: var(--color-primary);
}

.services .card:hover h3 {
  color: #fff;
  transition: 200ms ease-in-out;

}

.services .card:hover p {
  color: var(--color-whitefont);
  transition: 200ms ease-in-out;

}

.services .card:hover .btn {

  color: #fff;
}

.services .card h2 {
  margin-top: 32px;
  margin-bottom: 24px;
}

.services .card p {
  margin-bottom: 24px;
  margin-top: 16px;
}

.services .card .icon-box {
  position: absolute;
  top: -32px;
  left: 24px;
  width: 64px;
  height: 64px;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  color: #fff;
  transition: 200ms ease-in-out;

}

.services .card .icon-box i {
  font-size: 24px;
}

.reference {
  background-color: var(--color-bggrey);
}

.headingblock {
  display: flex;
  height: fit-content;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  overflow: visible;
}

.reference-p {
  padding-left: 16px;
}

.ver-divider {
  margin-top: -2px;
  margin-bottom: -2px;
  width: 1px;
  background-color: var(--color-primary);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 24px;
}

.reference1 {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  padding: 40px 40px;
  background-color: #fff;
  border-radius: 40px;
}

.posun {
  position: relative;
  top: -40px;
}

.h-t-ref {
  display: flex;
  flex-direction: column;
  width: 40%;
}

.ref-img {
  height: 320px;
  width: 60%;
  border-radius: 40px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transition: background-position 3s ease-in-out;
  overflow: hidden;
  border: solid 1px #00265252;
}

.ref-img-1 {
  background-image: url('Images/masazenew.webp');
}

.ref-img-2 {
  background-image: url('Images/Coachingnew.webp');
}

.ref-img-3 {
  background-image: url('Images/Desktoprenonew.webp');
}

.ref-img-4 {
  background-image: url('Images/combinonew.webp');
}

.reference1:hover .ref-img {
  background-position: bottom;
}

.h-t-ref button {
  margin-top: auto;
  align-self: flex-start;
}

.omne-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 80px;
}

.h-t-omne {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
}

.h-t-omne span {
  color: #000;
  font-weight: 500;
}

.imgofme {
  min-height: 400px;
  width: 40%;
  background-image: url('Images/fotomne.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px 120px 30px 120px;
  position: relative;
  
}

.nametag {
  height: fit-content;
  width: fit-content;
  background-color: #fff;
  color: var(--color-primary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  border-radius: 16px;
  padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nametag-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-items: center;
  color: var(--color-primary);
  height: fit-content;
  width: 100%;
  gap: 0px;
}

.nametag-info p {
 white-space: nowrap;
}



.nametag-img {
  height: 25px;
  width: 70px;
  background-image: url('Images/SM-blue.svg');
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  align-self: center;
}


.qualities-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.mini-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  justify-self: start;
  font-weight: 400;
}

.mini-card i {
  color: var(--color-secondary);
}

.cenik .container-sm hr {
  width: 30%;
  background-color: var(--color-primary);
  height: 1px;
  margin-left: auto;
  margin-right: auto
}

.ceny {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cena-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: fit-content;
  width: 50%;
  border-radius: 40px;
  padding: 40px;
  max-width: 400px;
}

.var-cana-1 {
  background-color: var(--color-bggrey);
}

.var-cana-2 {
  background-color: var(--color-primary);
  color: #fff;
}

.var-cana-2 ul li .fa-ban {
  color: var(--color-whitefont);
}

.cena-card ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  gap: 12px;
  list-style: none; 
  width: 100%;
}

.cena-card li {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: fit-content;
  text-decoration: none;
  gap: 8px;
}

.cena-card li .ban-color1 {
  color: var(--color-secondary);
}

.ban-color2 {
  color: var(--color-darkfont);
}

.cislo-cena {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 8px;
} 

.cislo-cena p {
  margin-bottom: -20px;
}


/*-----END-CTA-----*/

.endcta {
  padding: 120px 40px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 80px;
  border-radius: 40px;
}

.cta-end {
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

.ctatext {
  color: #fff;
  max-width: 400px;
}

/*---FOOTER---*/

footer {
  background-color: var(--color-primary);
}

.footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.upper-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  height: fit-content;
}

.logo-footer {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.logo-footer p {
  width: 60%;
}

.logo-white {
  width: 100%;
  height: 50px;
  background-image: url('Images/logo-sm-white.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-position: left;
}

.menu-footer {
  width: 25%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
}

.footer-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 8px;
}

.footer-link {
  transition: 0.5s;
  color: #fff;
  text-decoration: none;
  transition: 300ms;
}

.footer-link:hover {
  color: var(--color-secondary)
}

.info-footer {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.footer-infos {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 8px;
  width: 100%;
}

.footer-infos li {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.footer-infos li i {
  color: var(--color-whitefont);
}

.footer-infos li a {
  color: white;
  text-decoration: none;
  transition: 500m
}

.footer-infos li a:hover {
  text-decoration: underline;
  opacity: 0.75;

}

footer hr {
  border: none;
  width: 100%;
  border-top: 1px solid var(--color-whitefont);
  margin-top: 64px;
  margin-bottom: 24px;
}

.lower-section {
  display: flex;
  justify-content: row;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  height: fit-content;
  gap: 8px;
}

.lower-section a {
  color: white;
  text-decoration: none;
  transition: 500ms;
}

.lower-section a:hover {
  text-decoration: underline;
  opacity: 0.75;
}

/* --------------------------------KONTAKTY_(SUBPAGE) --------------------------------*/

.kontaktheader {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  background-color: var(--color-primary);
  width: 100%;
  background-image: url(Images/wave-haikei-kontakt.svg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.kontaktheader .headercontainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  padding: 200px 40px; 
}

.kontaktheader hr {
  margin: 0 auto;
  height: 1px;
  background-color: var(--color-primary);
  width: 100%;
  max-width: 500px;
}

.info-form .container {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 80px;
}

.kontakty-info {
  width: 100%;
  display: flex;
  align-items: left ;
  justify-content: center;
  flex-direction: column;
  height: fit-content;
}

.kontakty-info ul {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 32px;
}


.kontakty-info ul li {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.circleicon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-darkfont);
  height: 64px;
  width: 64px;
  border-radius: 100%;
  transition: 200ms ease-in;
}

.circleicon i {
  font-size: 24px;
}

.kontakty-info ul li:hover .circleicon {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary)
}

.kontakty-info ul li:hover i{
  color: #fff;
}

.kontakty-info ul li a:hover {
  text-decoration: underline;
}

/* Forma (import: https://codepen.io/ainalem/pen/GRqPwoz) */

.kontakt-forma {
  width: 100%;
}

.form {
  background-color: var(--color-bggrey);
  border-radius: 40px;
  height: fit-content;
  padding: 40px;
  width: 100%;
}

.title {
  color: #000;
}


.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.input-container-area {
  height: 150px;
  position: relative;
  width: 100%;
}



.ic1 {
  margin-top: 40px;
}

.ic2 {
  margin-top: 30px;
}

.input {
  background-color: #fff;
  border-radius: 12px;
  color: #000;
  height: 100%;
  padding: 4px 20px 0;
  border: 0;
  outline: 0;
  width: 100%;
}

.input-container-area .input {
  padding: 12px 20px 0;
  font-family: inherit;
}

.input:focus {
  border: 1px solid var(--color-primary);
}


.cut {
  background-color: var(--color-bggrey);
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 112px;
}

.cut-mid {
  width: 102px;
}

.cut-area {
  width: 84px;
}

.cut-telefon {
  width: 58px;
}

.cut-short {
  width: 50px;
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(8px);
  
}

.placeholder {
  color: #ccc;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
  
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder {
  color: #808097;
}

.input:focus ~ .placeholder {
  color: var(--color-primary);
}

.submit {
  background-color: var(--color-primary);
  border-radius: 12px;
  border: 0;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  text-align: center;
  width: 100%;
}

.submit:active {
  background-color: #06b;
}

/* --------------------------------Thank you page --------------------------------*/

.thankyou {
  height: 100vh;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}



/* --------------------------------UTILITY CLASSES --------------------------------*/
/* titles */
.text-xxl {
  font-size: 3rem;
}

.text-xl {
  font-size: 2.5rem;
}

.text-l {
  font-size: 1.618rem;
}

.text-m {
  font-size: 1.2rem;
}

.text-s {
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

.text-grey {
  color: var(--color-darkfont);
}

.text-white {
  color: var(--color-whitefont);
}

/* containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
}

.container-sm {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 40px;
}

/* card */
.card {
  background: #fff;
  color: #000;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-align: center;
  transition: 0.1s;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  min-width: 160px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -100%;
  height: 100%;
  width: 100%;
  background: var(--color-secondary);
  transition: 0.2s ease-in-out;
  z-index: -1;
}

.btn:hover::before {
  background-color: var(--color-secondary);
  color: #fff;
  left: 0px;  
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
}

.btn:hover .fa-arrow-right {
  transform: rotate(-45deg);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-secondary:hover::before {
  background-color: #fff;
  color: var(--color-primary);
  left: 0px;  
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
}

.btn-white:hover {
  color: #fff;
}

.btn-white:hover::before {
  background-color: var(--color-secondary);
  color: #fff;
  left: 0px;  
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn-transparent {
  background: transparent;
  color: var(--color-primary);
}

.btn-transparent:hover {
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Background */
.bg-light {
  background: var(--color-bggrey);
  color: #fff;
}

.bg-dark {
  background: var(--color-primary);
  color: #fff;
}

.bg-black {
  background: #000;
  color: #fff;
}

.margin-bottom-s {
  margin-bottom: 16px;
}

.margin-bottom-m {
  margin-bottom: 24px;
}

.margin-bottom-l {
  margin-bottom: 40px;
}

.margin-bottom-xl {
  margin-bottom: 64px;
}

/* ------------------ MEDIA QUERIES ------------------ */

@media screen and (max-width: 1120px) {
  .posun {
    position: relative;
    top: 0px;
  }
}

@media screen and (max-width: 1000px) {
  .navbar {
  background-color: white;
  color: #000;
  position: fixed;
  top: 0;
  right: -100%;
  left: auto;
  z-index: 10;
  padding: 32px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100vh;
  width: min(300px, 100%);
  border-left: 1px solid var(--color-whitefont);
  transition: right 400ms ease-in-out;
}

.mobile-nav {
  display: flex;
}

.navbar-logo {
  display: none;
}

#open-sidebar-button {
  border: none;
  width: 20px;
  height: fit-content;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
}

#close-sidebar-button {
  border: none;
  width: 25px;
  height: fit-content;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.navbar.show {
    right: 0;
}

.navbar.show ~ #overlay {
  display: block;
}

.navbar-logo {
  width: 100%;
  height: 30px;
  
}

.navbar .navcontainer {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 8px 8px;
}

.navbar-nav {
  flex-direction: column;
  width: 100%;
}

.navbar .navcontainer ul {
  margin-top: 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 16px;
}

.navbar .navcontainer ul li:last-child {
  margin-top: 24px;
}

.hero .container {
  flex-direction: column;
  height: fit-content;
}

.hero-img-cont {
  width: 100%;
}

.hero-img {
  max-width: 800px;
  width: 100%;
  position: relative;
  height: 300px;
  margin-bottom: -64px;
}

.hero-text {
  width: 100%;
  max-width: 700px;
  text-align: center;
  align-items: center;
}

.recenze {
  justify-content: center;
}

/*--Omne--*/

.omne-container {
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.h-t-omne {
  width: 100%;
  max-width: 700px;
}

.imgofme {
  min-height: 500px;
  width: 100%;
  max-width: 700px;
  background-position: top; 
}

.upper-section {
  gap: 16px;
  
}

.logo-footer {
  width: 40%;
}

.menu-footer {
  width: 30%;
}

.info-footer {
  width: 30%;
}

/*--UTILITY--*/
.container {
  padding: 120px 40px;
}

}

@media screen and (max-width: 890px) {
.ceny {
  flex-direction: column;
}

.cena-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: fit-content;
  width: 100%;
  border-radius: 40px;
  padding: 40px;
  max-width: 600px;
}
}

@media screen and (max-width: 768px) {

.text-xxl {
  font-size: 2.5rem;
}

.text-xl {
  font-size: 2rem;
}

.text-l {
  font-size: 1.5rem;
}

.text-m {
  font-size: 1.2rem;
}

.text-s {
  font-size: 0.9rem;
}

.hero-img {
  max-width: 800px;
  width: 100%;
  position: relative;
  height: 250px;
  margin-bottom: -48px;
}

.services .card-grid {

  grid-template-columns: 1fr;

}

.reference-grid {
  grid-template-columns: 1fr;
}

.headingblock {
  gap: 16px;
}

.reference1 {
  flex-direction: column;
  gap: 40px;
}

.h-t-ref {
  width: 100%;
}

.ref-img {
  width: 100%;
}

.cislo-cena p {
  margin-bottom: -12px;
}

.upper-section {
  gap: 40px;
  flex-direction: column;
  align-items: left;
  justify-content: center;
}

.logo-footer {
  width: 100%;
}

.logo-footer p {
  width: 100%;
}

.menu-footer {
  width: 100%;

}

.info-footer {
  width: 100%;
  height: fit-content;
}

.kontaktheader .headercontainer {
  padding: 160px 40px; 
}

/*----kontakty----*/

.info-form .container {
  flex-direction: column;
  gap: 80px;
}

}

@media screen and (max-width: 440px) {
  .text-xxl {
  font-size: 2.1rem;
}

.text-xl {
  font-size: 1.7rem;
}

.text-l {
  font-size: 1.4rem;
}

.text-m {
  font-size: 1.2rem;  
}

.text-s {
  font-size: 0.9rem;
}

.margin-bottom-s {
  margin-bottom: 8px;
}

.margin-bottom-m {
  margin-bottom: 16px;
}

.margin-bottom-l {
  margin-bottom: 32px;
}

.margin-bottom-xl {
  margin-bottom: 40px;
}

.btn {
  min-width: 8%;
  padding: 16px 36px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 16px;
}

.container-sm {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 16px;
}

/*--web--*/

.hero .container {
  padding-top: 120px;
  gap: 40px;
}

.hero-img {
  margin-bottom: -40px;
}

.recenze .stars {
  display: none ;
}

.hero-text h1 {
  margin-bottom: 8px;
}

.intro {
  margin-bottom: 20px;
}

.headingblock {
  flex-direction: column;
}

.reference-p {
  padding-left: 0;
}

.ver-divider {
  margin-top: 0;
  margin-bottom: 0;
  width: 30%;
  height: 1px;
}

.reference1 {
  padding: 32px 24px;
  border-radius: 32px;
}

.ref-img {
  border-radius: 28px;
}

.cena-card {
    border-radius: 32px;
  padding: 32px;
}

.cislo-cena h4 {
  white-space: nowrap;
}

.cislo-cena p {
  margin-bottom: -8px;
}

.endcta {
  padding: 40px 16px;
}

.cta-container {
  padding: 32px 32px;
  border-radius: 32px;
  text-align: center;
}

.cta-end {
  gap: 24px;
}

.footer {
  padding: 64px 16px 20px 16px; 
}

.lower-section {
  flex-direction: column;
  justify-content: center;
}

.kontaktheader .headercontainer {
  padding: 120px 16px 100px 16px; 
}

/*--kontakt---*/

.info-form .container {
  flex-direction: column;
  gap: 80px;
}

.form {
  padding: 40px 24px;
  border-radius: 24px;


}

/*--thankyou page---*/

.thankyou {
  height: 100vh;
  width: 100%;
  padding: 16px;
}


}

