#wearthermax {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

#wearthermax .weartherImg {
  transform: scale(0.8);
  transition: transform 1s ease;
  will-change: transform;
}

#wearthermax.in-view .weartherImg {
  transform: scale(1);
}

#wearthermax .weartherImg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* #wearthermax .weartherImg video {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 1s
} */

#wearthermax .playbt {
    width: 110px;
    height: 110px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#wearthermax .playbt img {
    width: 100%
}

#wearthermax .container {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 1;
    padding-top: 30px
}

#wearthermax .common_tile {
    transition: .5s
}

#wearthermax .LabelTitle {
    margin: auto;
    margin-bottom: 10px;
    font-weight: 600 !important;
    width: fit-content;
    font-size: 14px;
    color: #ED3438;
}

#wearthermax:hover .LabelTitle { color: #FFF;}

/* #wearthermax:hover video {
    transform: scale(1)
}
 */
#wearthermax:hover .common_tile {
    color: #fff
}

#wearthermax .mutebt {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    transition: background 0.2s ease;
}
#wearthermax .mutebt:hover {
    background: rgba(0, 0, 0, 0.65);
}
#wearthermax .mutebt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Show correct icon based on muted state */
#wearthermax .mutebt .icon-unmuted { display: none; }
#wearthermax .mutebt .icon-muted   { display: block; }
#wearthermax .mutebt.is-unmuted .icon-unmuted { display: block; }
#wearthermax .mutebt.is-unmuted .icon-muted   { display: none; }

@media only screen and (min-device-width: 768px)and (max-device-width: 1024px)and (orientation: landscape) {
    #wearthermax .container {
        position: relative
    }
    #wearthermax .weartherImg video {
        transform: scale(1);
        margin-top: 30px
    }
    #wearthermax .playbt {
        width: 110px;
        height: 110px;
        transform: translate(-50%, 0%)
    }
}

@media only screen and (min-device-width: 768px)and (max-device-width: 1024px)and (orientation: portrait) {
    #wearthermax .container {
        position: relative
    }
    #wearthermax .weartherImg video {
        transform: scale(1);
        margin-top: 30px
    }
    #wearthermax .playbt {
        width: 110px;
        height: 110px;
        transform: translate(-50%, 0%)
    }
}

@media(min-width: 320px)and (max-width: 767px) {
    #wearthermax .container {
        position: relative
    }
    #wearthermax .weartherImg video {
        transform: scale(1);
        margin-top: 30px;
        height: 530px;
        
    }
    #wearthermax .playbt {
        width: 50px;
        height: 50px;
        transform: translate(-50%, 50%)
    }
    #wearthermax:hover .common_tile {
    color: #000;
}
    .common_tile br {
        display: inline;
    }

    #wearthermax .mutebt {
       top: 170px;
    right: 20px;
    }
}

/*# sourceMappingURL=mid-video-section.css.map */