.alsman-video-section {
  padding: 80px 0;
  background: #fff;
}

.alsman-video-section .container {
  margin: 0 auto;
  padding: 0 15px;
}

.alsman-video-section .title {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.alsman-video-section .title h2 {
  margin-top: 12px;
  font-family: var(--title-font-family);
  font-size: 36px;
  font-weight: 900;
  color: var(--title-text-color);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 20px;
}

.alsman-video-section .title p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-color);
  line-height: 1.6;
}

.alsman-video-section .video-wrapper {
  position: relative;
  display: block;
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--button-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alsman-video-section .video-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.alsman-video-section .video-wrapper img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.alsman-video-section .video-wrapper:hover img {
  transform: scale(1.05);
}

.alsman-video-section .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: transparent;
  z-index: 1;
}

.alsman-video-section .video-play img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.alsman-video-section .video-play:hover img {
  transform: scale(1.2);
}

@media screen and (max-width: 1280px) {
  .alsman-video-section {
    padding: 60px 0;
  }

  .alsman-video-section .video-play {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 768px) {
  .alsman-video-section {
    padding: 40px 0;
  }



  .alsman-video-section .title p {
    font-size: 15px;
  }

  .alsman-video-section .video-play {
    width: 50px;
    height: 50px;
  }
}



@media screen and (max-width: 1281px) {
  .alsman-video-section .title h2 {font-size: 34px;}
}
@media screen and (max-width: 1171px) {
  .alsman-video-section .title h2 {font-size: 30px;}
}
@media screen and (max-width: 992px) {
  .alsman-video-section .title h2 {font-size: 26px;}
}
@media screen and (max-width: 768px) {
  .alsman-video-section .title h2 {font-size: 24px;}
}
@media screen and (max-width: 480px) {
  .alsman-video-section .title h2 {font-size: 22px;}
}