 * {
     margin: 0px;
     padding: 0px;
 }

 .custom-size {
     /* width: 100vh; */
     height: 100vh;

     .owl-stage-outer {
         height: 100%;

         .owl-stage {
             height: 100%;

             .owl-item {
                 height: 100%;

                 div {
                     height: 100%;

                     img {
                         height: 100%;
                     }

                     video {
                         width: 100%;
                         height: 100%;
                         object-fit: fill;
                         display: block;
                     }

                     bdo {
                         position: fixed;
                         left: 0px;
                         right: 0px;
                         border: 10px;
                         bottom: 10px;
                         text-align: center;
                         text-decoration: none;
                         font-family: Arial, Helvetica, sans-serif;
                         transition: ease all 300ms;




                         a {
                             border: 1px solid #ad6226;
                             padding: 5px 10px;
                             border-radius: 4px;
                             text-decoration: none;
                             color: inherit;
                             font-size: 18px;
                             transition: ease all 300ms;
                             background-color: #ad6226;
                             color: #fff;

                             &:hover {
                                 background-color: #522806;
                                 color: #fff;
                                 transition: ease all 300ms;
                             }
                         }

                     }
                 }
             }
         }
     }

     .owl-dots {
         display: none;
     }

     .owl-nav {
         position: fixed;
         z-index: 10000;
         bottom: 10px;
         right: 10px;
         display: flex;
         gap: 10px;

         button {
             width: 50px;
             height: 50px;
             background-color: #f7f7f7 !important;
             display: inline-flex;
             align-items: center;
             justify-content: center;
             border: 1px solid #ddd !important;

             span {
                 font-size: 35px;
                 display: inline-flex;
                 align-items: center;
                 justify-content: center;
                 margin-top: -8px;
             }
         }
     }

 }