/********** Template CSS **********/
:root {
    --primary: #D81324;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 35px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 50px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}
.navbar-light .navbar-nav {
    margin-right: 50px;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    margin-right: 50px;
    width: 2rem;
    height: 1.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-caption h1 {
        font-size: 30px;
    }
    .carousel-caption p {
        text-align: justify;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/service5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Service ***/
.service {
    background-color: #f1f1f1;
}
.service .nav .nav-link {
    background: rgb(230, 230, 230);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/contact.jpeg) center right no-repeat;
    background-size: cover;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(23, 23, 23, 0.9), rgba(0, 0, 0, 0.9)), url(../img/bg2.jpeg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
#ultimate {
    color: red;
}
.wheeler-services {
    margin-top: 3rem;
    margin-bottom: 5rem;
}
.wheeler-services .container {
    display: flex;
}
.wheeler-services .container .old-img img{
    width: 350px;
    height: 400px;
    border-radius: 20px;
}
.wheeler-services .container .new-img img{
    width: 350px;
    height: 400px;
    border-radius: 20px;
}
.wheeler-services .container .service-content {
    padding: 20px;
}
.wheeler-services .container .service-content h2 {
    color: red;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
}
.wheeler-services .container .service-content p {
    color: black;
    font-size: 18px;
    text-align: justify;
}
.wheeler-services .container .service-content a {
    margin-left: 5rem;
}
@media (max-width:479px) {
    .wheeler-services {
        width: 100%;
    }
    .wheeler-services .container {
        display: grid;
    }
    .wheeler-services .container .old-img img{
        width: 300px;
        height: 200px;
        border-radius: 20px;
    }
    .wheeler-services .container .new-img img{
        width: 300px;
        height: 200px;
        border-radius: 20px;
    }
    .wheeler-services .container .service-content {
        width: 100%;
        padding: 5px;
    }
    .wheeler-services .container .service-content h2 {
        color: red;
        font-size: 20px;
        text-transform: uppercase;
        text-align: center;
    }
    .wheeler-services .container .service-content p {
        color: black;
        font-size: 14px;
        text-align: justify;
    }
    .wheeler-services .container .service-content a {
        width: 250px;
        font-size: 14px;
        margin-left: 15px;
    }
    .navbar-toggler {
        margin-left: 10px;
    }
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .wheeler-services {
        width: 100%;
    }
    .wheeler-services .container {
        display: flex;
    }
    .wheeler-services .container .old-img img{
        width: 200px;
        height: 300px;
        border-radius: 20px;
    }
    .wheeler-services .container .new-img img{
        width: 200px;
        height: 300px;
        border-radius: 20px;
    }
    .wheeler-services .container .service-content {
        width: 100%;
        padding: 5px;
    }
    .wheeler-services .container .service-content h2 {
        color: red;
        font-size: 20px;
        text-transform: uppercase;
        text-align: center;
    }
    .wheeler-services .container .service-content p {
        color: black;
        font-size: 14px;
        text-align: justify;
    }
    .wheeler-services .container .service-content a {
        width: 250px;
        font-size: 14px;
        margin-left: 15px;
    }
    .navbar-toggler {
        margin-left: 10px;
    }

}
/* Video background container */
.video-background {
    position: relative;
    height: 130vh;
    width: 100%;
    overflow: hidden;
}


#background-images {
    position: absolute;
    top: 0;
    left: 4rem;
    width: 90%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.913), rgba(86, 86, 86, 0.603)), url(../img/background.jpg) top center no-repeat;
    background-size: cover;
    background-position: top, center;
    background-repeat: no-repeat;
    border-radius: 20px;
}
#background-images h1 {
    color: rgb(243, 187, 2);
    text-align: center;
    width: 80%;
    font-size: 60px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    word-spacing: 1px;
    margin-top: 5rem;
    margin-left: 7rem;
}
#background-images h1 span {
    font-size: 26px;
}
#background-images h3 {
    color: white;
    text-align: center;
    width: 70%;
    font-size: 24px;
    margin-left: 10rem;
}
#background-images p {
    color: white;
    text-align: center;
    width: 70%;
    font-size: 34px;
    font-weight: 600;
    margin-left: 10rem;
}
.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: row;
}
.video-container .hummer {
    margin-right: 10px;
    margin-top: -15rem;
}
.video-container .hummer span{
    font-size: 30px;
}
.video-container .car img{
    margin-top: -15rem;
    width: 500px;
    height: 350px;
}
.video-player {
    width: 80%;
    max-width: 1200px;
    border-radius: 10px;
}

.play-icon {
    font-size: 50px;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid white;
    border-radius: 50px;
    padding: 5px 20px;
}

.close-icon {
    font-size: 30px;
    color: #000000;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 30px;
    padding: 1px 15px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 150px;
    z-index: 3;
    display: none;
}

@media (max-width:476px){
    #background-images {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.913), rgba(86, 86, 86, 0.603)), url(../img/background.jpg) top center no-repeat;
        background-size: cover;
        background-position: top, center;
        background-repeat: no-repeat;
        border-radius: 20px;
    }
    #background-images-page p{
        color: white;
        font-size: 12px;
        margin: 10px;
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }
    .play-icon {
        font-size: 40px;
        color: #ffffff;
        cursor: pointer;
        position: absolute;
        z-index: 2;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid white;
        border-radius: 50px;
        padding: 5px 18px;
    }
    #background-images h1 {
        color: rgb(243, 187, 2);
        text-align: center;
        width: 100%;
        font-size: 60px;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        word-spacing: 1px;
        padding-top: 4rem;
        margin: 5px;
    }
    #background-images h1 span {
        font-size: 26px;
    }
    #background-images h3 {
        color: white;
        text-align: center;
        width: 100%;
        font-size: 24px;
        margin: 5px;
    }
    #background-images p {
        color: white;
        text-align: center;
        width: 100%;
        font-size: 34px;
        font-weight: 600;
        margin: 10px;
    }
    .video-container .hummer {
        display: none;
        margin-left: 10px;
        margin-top: -15rem;
    }
    .video-container .hummer span{
        font-size: 30px;
    }
    .video-container .car img{
        margin-top: -15rem;
        width: 400px;
        height: 350px;
    }
    .video-background {
        position: relative;
        height: 150vh;
        width: 100%;
        overflow: hidden;
    }
}
@media only screen and (min-width:768px) and (max-width:991px) {
    #background-images {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.913), rgba(86, 86, 86, 0.603)), url(../img/background.jpg) top center no-repeat;
        background-size: cover;
        background-position: top, center;
        background-repeat: no-repeat;
        border-radius: 20px;
    }
    #background-images-page p{
        color: white;
        font-size: 12px;
        margin: 10px;
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }
    #background-images h1 {
        color: rgb(243, 187, 2);
        text-align: center;
        width: 100%;
        font-size: 60px;
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        word-spacing: 1px;
        padding-top: 4rem;
        margin: 5px;
    }
    #background-images h1 span {
        font-size: 26px;
    }
    #background-images h3 {
        color: white;
        text-align: center;
        width: 100%;
        font-size: 24px;
        margin: 5px;
    }
    #background-images p {
        color: white;
        text-align: center;
        width: 100%;
        font-size: 34px;
        font-weight: 600;
        margin: 10px;
    }
    
}
#whatsapp-icon {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 9999;
}

#whatsapp-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#background-images-page h2{
    padding-top: 50px;
    color: rgb(255, 255, 255);
    font-size: 42px;
    text-align: center;
}
#background-images-page p{
    color: white;
    font-size: 20px;
    margin: 10px;
    padding-top: 10px;
    width: 100%;
    text-align: center;
}

.video-container1 {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: -10rem;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}


.video-btn {
    display: flex;
    align-items: center;
    gap:50px; /* Add space between the items */
}
#video-icon {
    width: 20px;
    height: 20px;
    font-size: 26px;
    color: black;
    border: 1px solid rgb(95, 95, 95);
    border-radius: 30px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    line-height: 0;
}
#close-icon1 {
    font-size: 30px;
    color: #000000;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 30px;
    padding: 1px 15px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 3;
    display: none;
}

.youtube_video_area {
    margin: 20px;
}
/* line 5, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .col-xl-3:nth-child(3) .single_video {
  margin-left: 10px;
  padding-bottom: 5px;
}
.youtube_video_area .container-fluid h3{
    font-size: 40px;
    text-transform: uppercase;
    color: red;
    text-align: center;
    margin-top: 5rem;
}
.youtube_video_area .container-fluid p {
    margin-left: 10rem;
    margin-right: 10rem;
    margin-bottom: 3rem;
    color: #000000;
    text-align: center;
}
/* line 12, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video {
  position: relative;
  margin: 10px;
}

@media (max-width: 767px) {
  /* line 12, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video {
    margin: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 12, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video {
    margin: 0;
  }
}

/* line 22, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .thumb img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.thumb1 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

/* line 26, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/* line 34, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements .video {
  top: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 39, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements .video a {
  background: #ED1B1B;
  width: 58px;
  height: 58px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 58px;
  margin-bottom: 40px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

@media (max-width: 767px) {

    .youtube_video_area .single_video {
        margin-bottom: 10px;
    }
  /* line 39, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
    .youtube_video_area .single_video .hover_elements .video a {
    opacity: 1;
    margin-bottom: 0;
    }
    
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 39, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .video a {
    opacity: 1;
    margin-bottom: 0;
  }
  .youtube_video_area .single_video {
    margin-bottom: 10px;
}
.youtube_video_area .single_video .thumb img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
  }
  .thumb1 img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
  }
}

/* line 62, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements .hover_inner {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 62, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .hover_inner {
    bottom: 20px;
  }
}

/* line 69, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements .hover_inner span {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Muli", sans-serif;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  left: 30px;
  opacity: 0;
}

@media (max-width: 767px) {
  /* line 69, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .hover_inner span {
    left: 0;
    opacity: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 69, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .hover_inner span {
    left: 0;
    opacity: 1;
  }
}

/* line 87, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements .hover_inner h3 {
  margin-bottom: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  top: 30px;
  opacity: 0;
}

@media (max-width: 767px) {
  /* line 87, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .hover_inner h3 {
    top: 0;
    opacity: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 87, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .hover_inner h3 {
    top: 0;
    opacity: 1;
  }
}

/* line 101, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video .hover_elements .hover_inner h3 a {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1200px) {
  /* line 101, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
  .youtube_video_area .single_video .hover_elements .hover_inner h3 a {
    font-size: 18px;
  }
}

/* line 113, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video:hover .hover_elements {
  background: rgba(0, 0, 0, 0.2);
}

/* line 115, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video:hover .hover_elements .hover_inner {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

/* line 119, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video:hover .hover_elements .hover_inner span {
  left: 0px;
  opacity: 1;
}

/* line 123, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video:hover .hover_elements .hover_inner h3 {
  top: 0px;
  opacity: 1;
}

/* line 129, ../../Arafath/CL/Cl November/221. Music/HTML/scss/_video.scss */
.youtube_video_area .single_video:hover .hover_elements .video a {
  opacity: 1;
  margin-bottom: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
#service-container {
    background-color: #f9f9f9;
}
.button-video {
    display: flex;
}
.button-video div {
    margin-left: 5rem;
    padding: 8px 20px;
    line-height: 2.5;
    border: 1px solid red;
    border-radius: 30px;
}
@media (max-width:476px) {
    .button-video div {
        margin-left: 2rem;
        border: 1px solid red;
        border-radius: 30px;
    }
    .button-video {
        padding: 5px;
    }
    .button-video a {
        font-size: 13px;
        padding: 1px;
    }
}
#count {
    display: flex;
    margin-left: 6.5rem;
}
#count span{
    color: white;
    font-size: 26px;
    font-weight: 500;
}
