 html {
     background-color: #1b1b1b;
     margin: 0;
     padding: 0;
     font-size: inherit;
 }

 body {
     background-color: #1c1c1c;
     background-size: 4px 4px;
     background-image: radial-gradient(circle, rgb(26, 26, 26) 1px, rgb(0, 0, 0) 100%);
     width: 100vw;
     height: 100vh;
     padding: 0;
     margin: 0;
     color: #888;
     font-size: inherit;
     font-family: Arial, Helvetica, sans-serif;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -o-user-select: none;
     user-select: none;
   
 }

 #header {
     width: 100%;
     background-color: #000;
     background-image: linear-gradient(180deg, rgba(75, 75, 75, 0.8) 0%, rgba(14, 14, 14, 0.9) 100%);
     border-bottom: solid 1px rgba(0, 0, 0, 0.9);
     height: 60px;
     position: fixed;
     overflow: hidden;
     top: 0;
     left: 0;
     z-index: 5;
     font-size: inherit;
     min-width: 390px;
     box-shadow: 0 0px 40px rgb(0, 0, 0);
 }

 #wrapper {
     width: 100%;
     height: 100%;
     min-width: 390px;
     min-height: 740px;
     position: absolute;
     overflow: hidden;
     overflow-y: scroll;
 }

 .top-menu {
     width: fit-content;
     height: 60px;
     margin: 0 auto;
 }

 .buy {
     padding: 8px 15px;
     font-size: 1.2em;
     display: block;
     margin-top: 8px;
     border: solid 1.3px #fff;
     color: #fff;
     margin-top: 5px;
     position: absolute;
     text-transform: uppercase;
     background-color: rgb(133, 189, 23);
     background-image: linear-gradient(180deg, rgba(97, 97, 97, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
     text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.6);
     box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
     border-radius: 8px;
     cursor: pointer;
 }

 .button {
     border: 0;
     color: #999;
     z-index: 2;
     font-size: 25px;
     background: transparent;
     height: 60px;
     float: left;
     text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5);
     cursor: pointer;
     margin-right: 1px;
     padding: 0 12px 6px 11px;
     max-width: 140px;
     border-radius: 0;
     text-align: left;
     position: relative;
     box-shadow: 0 0 0 0;
     border-right: solid 1px rgba(0, 0, 0, 0.4);
     box-shadow: 1px 0 0 rgba(199, 199, 199, 0.1);
     outline: none;
     transition: 0.2s all;
 }

 .button small {
     font-size: 12px;
     color: rgb(140, 194, 33);
     margin-left: 1px;
 }

 .right {
     border-right: 0;
     box-shadow: 0 0 0;
 }

 .left {
     padding-right: 12px;
     color: rgb(140, 194, 33);
     margin-top: -2px;
     height: 62px;
 }
 
 .button.left:hover span {
     color: rgb(255, 255, 255);
 }

 .button span {
     float: left;
     margin-right: 3px;
     margin-top: 4px;
     position: relative;

 }

 .button:hover {
     color: white;
 }

 .button:hover span {
    color: rgb(140, 194, 33);
 }
.button strong {
    position: absolute;
    opacity: 0;
}
.button:hover strong {
    filter: blur(10px);
    color: white;
    opacity: 1;
}
.button:active {
    color: white;
}

 #welcome {
     background: radial-gradient(circle, rgb(43, 43, 43) 1px, rgb(0, 0, 0) 100%);
     width: 100%;
     height: 100%;
     position: fixed;
     z-index: 5;
     min-height: 650px;
 }

 .welcome {
     width: 100%;
     height: 100%;
     position: absolute;
     box-shadow: inset 0 0 100px rgba(0, 0, 0, 1);
     -webkit-animation: fadein 2s;
     -moz-animation: fadein 2s;
     -ms-animation: fadein 25s;
     -o-animation: fadein 2s;
     animation: fadein 2s;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .welcome img {
     width: 50%;
     height: 50%;
     object-fit: contain;
     position: relative;
     margin-top: -8%;
 }

 @keyframes fadein {
     from {
         opacity: 0;
         filter: blur(5px);
     }

     to {
         opacity: 1;
         filter: blur(0);
     }
 }

 @-moz-keyframes fadein {
     from {
         opacity: 0;
         filter: blur(5px);
     }

     to {
         opacity: 1;
         filter: blur(0);
     }
 }

 @-webkit-keyframes fadein {
     from {
         opacity: 0;
         filter: blur(5px);
     }

     to {
         opacity: 1;
         filter: blur(0);
     }
 }

 @keyframes lefttoright {
     from {
         left: -200px;
     }

     to {
         left: 0px;
     }
 }

 @keyframes righttoleft {
     from {
         left: 200px;
     }

     to {
         left: 0px;
     }
 }

 #studioname {
     text-align: center;
     position: absolute;
     left: 50%;
     bottom: 6%;
     width: 100%;
     text-align: center;
     transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
 }

 #studioname b,
 #studioname small,
 #studioname span,
 #studioname strong {
     text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
 }

 #studioname b {
     font-size: 3.2em;
     width: 100%;
     display: block;
     color: #67e1ff;
     font-weight: bold;
     position: relative;
     animation-name: lefttoright;
     animation-duration: 2s;
     line-height: normal;
 }

 #studioname small {
     font-size: inherit;
     color: #555;
     font-weight: normal;
     position: relative;
     width: 100%;
     display: block;
     animation-name: righttoleft;
     margin-top: 20px;
     line-height: normal;
     animation-duration: 2s;
 }

 #studioname span,
 #studioname strong {
     font-size: 1.2em;
     color: #afafaf;
     width: 100%;
     display: block;
     animation-name: lefttoright;
     animation-duration: 4s;
     position: relative;
     line-height: normal;
 }

 #studioname strong {
     animation-name: righttoleft;
     animation-duration: 4s;
     line-height: normal;
     font-size: 1.8em;
     color: #e2e2e2;
     margin-bottom: 4px;
 }

 #page {
     padding: 2%;
     margin-top: 60px;
 }

 #deeppro,
 #deeplite,
 #selfai {
     padding: 20px;
     background: rgba(255, 255, 255, 0.9);
     border-radius: 10px;
     font-size: inherit;
     color: #000;
 }

 #deeppro h1,
 #deeplite h1,
 #selfai h1,
 #deeppro h3,
 #deeplite h3,
 #selfai h3 {
     line-height: 0;
     margin-bottom: 20px;
 }

 #deeppro img,
 #deeplite img,
 #selfai img {
     width: 100%;
     height: auto;
     margin-bottom: 4px;
 }
.video-wrapper {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #000;
    display: inline-block;
    background-image: linear-gradient(180deg, rgba(94, 94, 94, 0.8) 0%, rgba(24, 24, 24, 0.7) 100%);
}
#video {
    width: 100%;
    height: auto;
}
 .er {
     position: absolute;
     background: orange;
     color: black;
     font-size: 16px;
     text-shadow: 1px 2px 4px #fff;
     margin-top: 48px;
     border-radius: 20px;
     margin-left: 25px;
     padding: 2px 12px;
 }

 .price {
     padding: 10px 20px 40px 20px;
     background-color: #5e5e5e;
     background-image: linear-gradient(80deg, rgba(156, 93, 192, 0.8) 0%, rgba(19, 77, 131, 0.7) 100%);
     color: #fff;
     width: fit-content;
     font-size: 2.5em;
     border-radius: 5px;
     text-shadow: 2px 2px 5px rgba(44, 44, 44, 0.8);
     box-shadow: 4px 4px rgba(0, 0, 0, 0.2);
     font-weight: bolder;
 }

 .content {
     width: 100%;
     height: auto;
 }

 .content img {
     width: 100%;
     height: auto;
 }
 .home-content {
     width: 100%;
     height: auto;
     overflow: auto;
     margin-bottom: 10px;
 }
 .home-content img {
     height: auto;
     width: 100%;
     object-fit: cover;
     object-position: top;
     min-height:300px;
     border-radius: 8px;
     box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
 }

 .content-inside {
     position: absolute;
     padding: 4% 5%;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
 }

 .home-content h1 {
     color: white;
     line-height: 0;
 }

 .home-content small {
     color: #eee;
 }

 .home-content p {
     color: #fff;
     margin-bottom: 6px;
 }
 #videosample {
    width: 100%;
    height: auto;
 }

 ::-webkit-scrollbar {
     width: 0px;
     height: 0px;
 }

 ::-webkit-scrollbar-track {
     background: transparent;
 }

 ::-webkit-scrollbar-thumb {
     background: transparent;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: transparent;
 }
 @media screen and (width:430px)  {
    #studioname strong {
        font-size: 1.1em;
    }

    #studioname span {
        font-size: 1em;
    }
 
    #studioname small {
        font-size: 0.8em;
    }
    .home-content img {
        height: auto;
        width: 100%;
        min-height: 300px;
        max-height: 400px;
        object-fit: cover;
        object-position: top;
        border-radius: 5px;
     }

 }
 @media screen and (width:414px)   {
    .home-content img {
        min-height: 300px;
        max-height: 390px;
     }
     .button {
        width: 112px;
        padding:10px  3px 10px 6px;
        font-size: 20px;
     }
     .button span {
        margin-top: -1px;
     }
     .button.button.left {
        width: 38px;
        padding-left: 0px;
     }
     .button.button.right {
        width: 83px;
        padding-right: 1px;
     }
 }
 @media screen and (width:412px)   {
    #studioname strong {
        font-size: 1.1em;
    }

    #studioname span {
        font-size: 1em;
    }
 
    #studioname small {
        font-size: 0.8em;
    }
    .home-content img {
        min-height: 300px;
        max-height: 390px;
     }
     .button {
        width: 112px;
        padding:10px  3px 10px 6px;
        font-size: 20px;
     }
     .button span {
        margin-top: -1px;
     }
     .button.button.left {
        width: 38px;
        padding-left: 0px;
     }
     .button.button.right {
        width: 83px;
        padding-right: 1px;
     }

 }
 @media screen and (width:375px)   {
    #studioname strong {
        font-size: 1.1em;
    }

    #studioname span {
        font-size: 1em;
    }
 
    #studioname small {
        font-size: 0.8em;
    }
    .home-content img {
        min-height: 300px;
        max-height: 390px;
     }
     .button {
        width: 112px;
        padding:10px  3px 10px 6px;
        font-size: 20px;
     }
     .button span {
        margin-top: -1px;
     }
     .button.button.left {
        width: 38px;
        padding-left: 0px;
     }
     .button.button.right {
        width: 83px;
        padding-right: 1px;
     }

 }
 @media screen and (width:390px) {
     #studioname strong {
         font-size: 1.3em;
     }

     #studioname span {
         font-size: 1.1em;
     }
     .welcome img {
        margin-top: -80px;
     }

     #studioname small {
         font-size: 0.8em;
     }
     .button {
        width: 112px;
        padding:10px  3px 10px 6px;
        font-size: 20px;
     }
     .button span {
        margin-top: -1px;
     }
     .button.button.left {
        width: 38px;
        padding-left: 0px;
     }
     .button.button.right {
        width: 83px;
        padding-right: 1px;
     }
     .home-content {
        margin-bottom: 4px;
     }
     .home-content img {
        height: auto;
        width: 100%;
        min-height: 300px;
        max-height: 400px;
        object-fit: cover;
        object-position: top;
        border-radius: 5px;
     }


 }
  
 @media screen and (width:1920px) {
#page {
    padding: 25px;
}
 }