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

.sec-call {
  position: relative;
  background: url("../../images/call.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;
}

.sec-call:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(to left, #464445, #232223);
  z-index: 1;
}

.sec-call .container {
  z-index: 2;
}

.sec-call .row {
  display: flex;
  align-items: center; /* Zarovná všechny sloupce vertikálně na střed */
}

.sec-call .right {
  display: flex;
  align-items: center; /* Ujistí se, že `<a>` je vycentrované v rámci svého sloupce */
  justify-content: flex-end; /* Zarovná tlačítko doprava */
}

.sec-call h2 {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #F5F5F5;
}

.sec-call p {
  color: #fff;
}

.sec-call a {
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 18px;
  color: #fff;
  border-radius: 0;
  border: 2px solid #fff;
  text-decoration: none;
}

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

.sec-call i {
  pointer-events: none;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .sec-call {
    text-align: left;
  }
  .sec-call a {
    padding: 1rem 2rem;
  }
}