@import url('https://fonts.cdnfonts.com/css/montserrat');
@import url('https://fonts.cdnfonts.com/css/rajdhani');


/*=Typography=*/
html {
  font-size: 18px;
    overflow-x: hidden;
}

body {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

section {
  padding: 5em 0;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

a, a :hover, a:active {
  color: #fff;
  text-decoration: none;
}

h2 {
  font-family: 'montserrat', sans-serif;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-out {
  opacity: 0;
  transform: translateY(20px) scale(1.2);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-out.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Main Section
********************************************************************* */

.sec-methods {
  background: #F1F1F1;
}

.sec-methods .line {
  margin: 1em 0;
  height: 5px;
  background: #464445;
}

.sec-methods .flex {
    width: 100%;
  }

.sec-methods .image-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.sec-methods .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
}

.sec-methods .image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(90%) contrast(105%);
}

.sec-methods h2 {
  margin-top: 1em;
  padding: 0;
  color: #fff;
}

.sec-methods .col-sm-12 {
  color: #fff;
}

.sec-methods a:hover, .sec-methods a:focus, .sec-methods a:active,
.sec-methods a:hover .background .more, .sec-methods a:focus .background .more, .sec-methods a:active .background .more {
  cursor: pointer;
  color: #3D8BD6;
}

.sec-methods a:hover .line, .sec-methods a:focus .line, .sec-methods a:active .line {
  background: linear-gradient(to left, #42688E, #3D8BD6);
}


.sec-methods .background {
  margin-top: 1em;
  pointer-events: none;
  align-items: center;
  justify-content: space-between;
  display: flex;
  background: linear-gradient(to left, #464445, #232223);
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  padding: 1rem;
  transition: background 0.5s ease, box-shadow 0.3s ease;
}

.sec-methods a {
  padding: 0;
  margin: 0;
}

.sec-methods .background p {
  color: #fff;
  margin: 0;
}

.sec-methods .background .more {
  margin-top: 1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.sec-methods .background i {
  margin-left: 0.5rem;
  line-height: 1.5;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .sec-methods .image-wrapper img {
    height: 250px;
  }
  .sec-methods .line {
    margin: 0;
  }
  .sec-methods h2, .sec-methods .background .more {
    margin-top: 0;
  }
  .sec-methods .flex {
    display: flex;
    align-items: center; /* Zarovnání obrázku a textového bloku na střed */
  }
  .sec-methods .flex .col-sm-9 {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Rozprostření textu */
    height: 100%; /* Aby se space-between uplatnil */
    min-height: 10em; /* Nastavení minimální výšky */
  }
}

/* Sub Section
********************************************************************* */

.sec-methods-active {
  background: #F1F1F1;
  text-align: left;
}

.sec-methods-active .line {
  margin-top: 1em;
  height: 10px;
  background: linear-gradient(to left, #42688E, #3D8BD6);
}

.sec-methods-active h2 {
  color: #fff;
}

.sec-methods-active a:hover i, .sec-methods-active a:focus i, .sec-methods-active a:active i,
.sec-methods-active a:hover .background p, .sec-methods-active a:focus .background p, .sec-methods-active a:active .background p {
  color: #3D8BD6;
}

.sec-methods-active .background {
  pointer-events: none;
  align-items: center;
  justify-content: space-between;
  display: flex;
  background: linear-gradient(to left, #464445, #232223);
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  padding: 1rem;
  transition: background 0.5s ease, box-shadow 0.3s ease;
}

.sec-methods-active .background p {
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.sec-methods-active .flex {
  display: flex;
  align-items: center; /* Zarovnání obrázku a textového bloku na střed */
}

.sec-methods-active .flex > div {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Rozprostření textu */
  height: 100%; /* Aby se space-between uplatnil */
  min-height: 10em; /* Nastavení minimální výšky */
}

.sec-methods-active .background i {
  margin-right: 1rem;
  line-height: 1.5;
  font-size: 1rem;
}

.sec-methods-active .expand {
  pointer-events: none;
  padding: 1rem;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  background: #fff;
  color: #000;
}

.sec-methods-active .expand p {
  pointer-events: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.sec-methods-active .expand h3 {
  padding-top: 1rem;
}

.sec-methods-active .expand ul {
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.sec-methods-active .expand .no-dots {
  list-style-type:none;
}

.sec-methods-active .expand ul li {
  list-style-position: inside;
}

@media (min-width: 768px) {
  .sec-methods-active {
    text-align: left;
  }
}