h2{font-size:15px;font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;margin-top:10px;font-weight:bold;padding-top:10px;}
h3{font-size:14px;font-weight:bold;}

.nav-item img{width:20px;}
h2::first-letter {
  text-transform: uppercase;
}

.playframe{height:600px; width:100%;}
.verads{height:100%;width:100%;background:orange;}

.logo{height:30px;marign-right:10px;}
.form-inline{margin-left:10px;}
.image-hover-wrapper {
        display: inline-block;
        overflow: hidden;
        border-radius: 12px;
    }
    .image-hover-wrapper img {
        width: 100%;
        transition: all 0.3s ease;
    }
    .image-hover-wrapper:hover img {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 12px !important;
    }
	
.ratio-box {
  --aspect-ratio: calc(9 / 16 * 100%);
  position: relative;
  padding-top: var(--aspect-ratio);
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.ratio-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.hover-zoom:hover .ratio-box {
  transform: scale(1.05);
  z-index: 10;
}

.hover-zoom:hover .ratio-box img {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}