/* Feature blocks */

.feature {
  padding: 6rem 0 0;
  background-color: #f8f9fa;
  text-align: center;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.feature-blocks-container {
  padding: 1rem 1rem;
  background-color: #fff;
  margin-top: 2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  text-align: left;
  margin-bottom: 3rem;
}


.feature-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: center;
}


.feature-icon {
  width: 80px;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #08C0F9), color-stop(50%, #018DFC));

  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-self: center;
}

.feature-icon img {
  width: 30px;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--title-color);
}

.feature-container h2{
  margin-bottom: 1.5rem;
}

.feature-text {
  text-align: center;
  line-height: 1.8;
  color: var(--text-color);
  
  margin-bottom: 2rem;
}

.feature-description {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature .video {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.feature video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  font-family: "object-fit: cover; object-position: 50% 50%";
}



@media (min-width: 576px) {
  .feature-block {
    gap: 1.5rem;
    flex-direction: row;
    text-align: start;
  }
  .feature-blocks-container {
    padding: 1rem 3rem;
  }
  .feature-icon {
   
  }
}

@media (min-width: 1000px) {
  .feature-blocks {
    gap: 6rem;
    grid-template-columns: repeat(2, 1fr);
  }
}