* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-transform: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 10px #2b3976;
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    z-index: 1;
    width: auto;
    height: auto;
}

header .logoobrazek {
    z-index: 1;
    height: 7%;
    width: 7%;

}

.logotext {
    font-weight: bolder;
    font-size: 25px;
    color: #333;
    margin-right: 70%;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 120%;
    padding: 20px;
    color: #2b3976;
    display: block;
    font-weight: bolder;
}

header .navbar ul li a:hover {
    color: gray;
    transition-duration: 1s;
}

#menu-bar{
    display: none;
}

header label{
    font-size: 25px;
    color: #2b3976;
    cursor: pointer;
    display: none;
    padding: 15px;
}

header label:hover{
    color: gray;
    transition-duration: 1s;
    
}

@media(max-width:991px){
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        text-transform: none;
        text-decoration: none;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    header{
        padding: 20px;
    }

    header label{
        display: flex;
        text-align: center;
    }

    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0,.1);
        display: none;
        text-align: center;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: #eee;
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar{
        display: flex;
        text-align: center;
    }

    h1{
        padding-top: 40%;
    }

}

@media(max-width:740px){
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
        text-transform: none;
        text-decoration: none;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    header{
        padding: 20px;
    }

    header label{
        display: flex;
    }

    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0,.1);
        display: none;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: #eee;
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar{
        display: flex;
    }

    h1{
        padding-top: 40%;
        font-size: 10%;
    }

    h2{
        text-align: center;
    }

    .logo{
        display: none;
    }

}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Přidání bounce efektu při hover */
  .navbar ul li a:hover {
    animation: bounce 1.3s;
  }



  .wrapper {
    min-height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial {
    padding: 30px 100px;
}


article .hlavni1 {
    font-size: 1600%;
    font-weight: 800;
    text-transform: none;
    margin-top: 8%;
    color: #2b3976;
    text-align: left;
    font-weight: 600;
    margin-right: 120%;
}


.hlavni12{
    width: 50%;
    height: 1.5%;
    background-color: #0D0B07;
    height: 8px;
}


article .hlavni2 {
    font-size: 1600%;
    font-weight: 800;
    text-transform: none;
    color: gray;
    text-align: left;
    font-weight: 600;
    margin-right: 120%;
}

@media (max-width: 991px) {
    .testimonial {
        padding: 20px 20px; /* Adjust padding for smaller screens */
    }

    article .hlavni1,
    article .hlavni2 {
        font-size: 1000%; 
        margin-right: 120%; 
        text-align: left; 
    }

    article .hlavni1{
        margin-top: -15%;
    }

    article .hlavni2{
        margin-top: -35%;
    }

    .hlavni12 {
        width: 80%; /* Adjust width */
        height: 4px; /* Adjust height */
        margin: 20px auto; 
    }
}

@media(max-width:740px){
    .testimonial {
        padding: 20px 20px; /* Adjust padding for smaller screens */
    }

    article .hlavni1,
    article .hlavni2 {
        font-size: 300%; 
        margin-right: 120%; 
        text-align: left; 
    }

    article .hlavni1{
        margin-top: -15%;
    }

    article .hlavni2{
        margin-top: -35%;
    }

    .hlavni12 {
        width: 80%; /* Adjust width */
        height: 4px; /* Adjust height */
        margin: 20px auto; 
    }
}


.projekty{
    width: 100%;
    background-color: #fff;
    height: 100%;
}


.container{
    display: flex;
    background-color: #fff;
}

p{
    font-family: 'Rubik', sans-serif;
}

.section1{
    box-shadow: 5px 5px 20px black;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    width: 70%;
    text-align: center;
    margin-left: auto ;
    margin-right: auto;
    text-align: justify;

}

.section1 img{
    height: 15em;
    width: 20em;
}

.section1 h1{
    color:#2b3976 ;
    text-align: center;
}

.best1{
    padding-top: 5%;
    color: #2b3976;
    text-align: center;
    margin-bottom: 5%;
}

@media(max-width:740px){
    .best1{
        font-size: 250%;
    }
}

.section1 hr{
    width: 40%;
    margin-bottom: 10px;
    height: 1.5%;
    background-color: #0D0B07;
    border:#e97c18;
    text-align: center;
    margin-left: auto ;
    margin-right: auto;
}

.section1 p{
    color: black;
    padding-right: 20px;
}


article h2 {
    text-transform: none;
    font-size: 200%;
    margin-top: 30px;
    color: #2b3976;
    text-align: justify;
    font-weight: bolder;
    padding-bottom: 140px;
    padding-left: 20%;
    padding-right: 20%;
}


@media (max-width: 991px) {
    .section1 {
        flex-direction: column;
        width: 90%;
        padding: 20px;
    }

    .vznik{
        margin-top: -35%;
    }

    .section1 img {
        display: none;
    }

    article h2 {
        font-size: 150%;
        padding-left: 10%;
        padding-right: 10%;
        padding-bottom: 70px;
    }
}

@media(max-width:740px){
    .vznik{
        font-size: 250%;
    }
}




.nabidka{
    padding-top: 5%;
    color: #2b3976;
    text-align: center;
}

.pricing-plan{
    width: 300px;
    border-radius: 25px;
   box-shadow: 0 5px 10px gray;
   overflow: hidden;
   font-size:16px;
    line-height: 1.5;
    color: #2b3976;
    margin: 15px;
    margin-top: 3%;
    background-color: #fff;
}

.pricing-plan-doporucene{
    box-shadow: 0 5px 15px gray;
    transform: scale(1.05);
}

.pricing-plan-special-text{
    padding: 10px;
    font-weight: bold;
    color: #fff;
    background-color: #2b3976;
    box-shadow: 0 5px 15px gray inset;

}

.pricing-plan-header{
    padding: 25px;
    background: #2b3976;
    color: #fff;
}

.pricing-plan-title,
.pricing-plan-summary{
    margin: 0;
}

.pricing-plan-title{
    font-size: 1.5em;
    font-weight: 400;
    color:#fff;
}

.pricing-plan-summary{
    font-size: 1em;
    font-weight: 300;
}

.pricing-plan-description{
    padding: 25px;
}

.pricing-plan-list{
    padding: 0;
    margin: 0;
}

.pricing-plan-feature{
    list-style: none;
    margin: 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9em;
}

.pricing-plan-feature:not(:last-child)
{
    margin-bottom: 0.5em;
}

.pricing-plan-feature::before{
    content: "\2714";
    color: #2b3976;
    position: absolute;
    left: 0;
}

.pricing-plan-actions{
    padding: 25px;
    border-top: 1px solid #eeee;
    display: flex;
    flex-direction: column;
}

.pricing-plan-button{
    display: inline-block;
    margin: 15px auto;
    padding: 8px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #2b3976;
    border-radius: 5px;
    border: 1px solid gray;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: bold;
}

.pricing-plan-button:hover{
    background-color: gray;
    color: #2b3976;
}

.pricing-plan-cost{
    margin: 0;
    font-size: 2em;
    color: #000;
}

.pricing-plan-text{
    font-size: 0.9em;
    margin: 0 0 10px 0;
}

.pricing-plan-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


@media(max-width:740px){
    .pricing-plan-container{
        display: grid;
    }
}

.adresa{
    padding-top: 5%;
    color: #2b3976;
    text-align: center;
}

@media(max-width:740px){
    .adresa{
        display: none;
    }
}

.mapa{
    text-align: center;
}

iframe{
    box-shadow: 5px 5px 20px black;
    background-color: #fff;
    margin-top: 1%;
}

@media(max-width:740px){
    .mapa{
        display: none;
    }
}






.odpocet{
    background-color: #fff;
}

 .countdown {
    font-family: 'Rubik', sans-serif;
    font-size: 2em;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 3%;
    background-color: #fff;
    padding: 2%;
    margin-right: 15%;
    margin-left: 15%;
    color: black;
  }

  .slevy{
    padding-top: 5%;
    color: #2b3976;
    text-align: center;
  }

  @media(max-width:400px){
    .slevy{
        font-size: 250%;
    }
}

@media(max-width:740px){
    .nabidka{
        font-size: 250%;
    }
}



footer {
    background-color: #2b3976;
}

.footerContainer {
    width: 100%;
    padding: 25px 30px 20px;
    box-shadow: 0 10px 20px gray;
}



.footerBottom {
    background-color: #2b3976;
    padding: 20px;
    text-align: center;
}

.footerBottom p {
    color: #fff;
}