/* Call Section
********************************************************************* */

#hovor {
  padding: 100px 0 100px 0;
  position: relative;
  background: url("../../images/hovor.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;
}

#hovor:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #181818;
  z-index: 1;
}

#hovor .container {
  z-index: 2;
}

#hovor h1 {
  text-align: center;
  margin-bottom: 32px;
}

#hovor p {
  margin-top: 0;
  padding: 0;
  text-decoration: none;
  color: #fff;
  margin-bottom: 32px;
}

#hovor a {
    display: flex;  /* Flexbox pro zarovnání ikonky a textu vedle sebe */
    align-items: center;   /* Zarovnání na střed vertikálně */
    justify-content: space-between; /* Zarovná obsah do středu */
    font-weight: 600;
    margin: 0;
    font-size: 16px;
    border-radius: 24px;
    padding: 16px 16px;
    background: linear-gradient(to left, #aca8e0, #525589);
    color: #fff;
    text-decoration: none;
}

#hovor .gradient {
    background: inear-gradient(to left, #aca8e0, #525589);
    background-size: 300% 300%;
    -webkit-animation: Animation 3s ease infinite;
    -moz-animation: Animation 3s ease infinite;
    animation: Animation 3s ease infinite;
}

@-webkit-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes Animation { 
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}

#hovor a:hover, .sec-call a:focus, .sec-call a:active {
  background: #fff;
  color: #000;
}

#hovor i {
  pointer-events: none;
}

@media (min-width: 768px) {
  #hovor .row {
    display: flex;
    align-items: center; /* Zarovná všechny sloupce vertikálně na střed */
  }
  #hovor, #hovor h1 {
    text-align: left;
  }
}