@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hubot+Sans:ital,wght@0,200..900;1,200..900&display=swap');


.jura-font {
    font-family: "Jura", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.hubot-sans-penang {
    font-family: "Hubot Sans", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}


header{ 
        background: #C04848;
            /* fallback for old browsers */
            background: -webkit-linear-gradient(to right, #480048, #C04848);
            /* Chrome 10-25, Safari 5.1-6 */
            background: linear-gradient(to right, #480048, #C04848);
            /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        font-family: "Jura", serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;  
        display:flex      
}

nav{
    background: #C04848;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #480048, #C04848);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #480048, #C04848);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

#home{

    font-size: 20px;
}


#services{
    background-color: rgb(247, 232, 248) !important;
    font-size: 20px;

}

.logo{
    width:200px;
}

#headertext{
    margin-top:2%
}

.intro{
    
        font-family: "Hubot Sans", serif;
            font-optical-sizing: auto;
            font-weight: 900;
            font-style: normal;
            font-variation-settings:
                "wdth" 100;
            font-size: 50px;
            margin-top: 50px;
            text-align: center;
}

.secondintro {

    font-family: "Hubot Sans", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 40px;
    margin-top: 50px;
    text-align: center;
}


p , li ,td{
        font-family: "Hubot Sans", serif;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
            font-variation-settings:
                "wdth" 100;
                font-size:20px

}

.flex-container{
    display: flex;
    flex-wrap:nowrap;
}

.flex-items{

    margin: 10px;
    border-radius: 10%;

}

.fleximage{
    background-color: #2a0570;
    border-radius: 50%;
}

.fleximage:hover{
    rotate: -10deg;
    transition: all 0.5s ease-in-out;
}

.video-container {
    position:relative;
    width: 100%;
    height: 100vh;   
}

iframe {
    position: relative;
    top:-10px;
    width: 99vw;
    height: 100vh;
    z-index:0;
}

.overlayabout {
    background: rgb(0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity:0.5;
}
.overlaytext {
    padding:30px;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.slider-container {
width:100%;

height: var(--height);
overflow: hidden;
}

.mylist{
    display:flex;
    width: 100%;
    min-width: calc(var(--width)* var(--quantity));
    position:relative
}

.slider-items{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left:100%;
    animation: autorun 10s linear infinite;
    animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1) - 3s);
}

.slider-items img{
    width: 100%;
}

#chartdiv {
    width: 100%;
    height: 60vh;
}

footer{
    background: #C04848;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #480048, #C04848);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #480048, #C04848);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        font-family: "Jura", serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        display: flex;
        color:white;
        justify-content: center;

}


@keyframes autorun{
    0%{
        left:100%;
    }
    100%{
        left: calc(var(--width)*-1);
    }
}

.featured{

    display:flex;
    flex-wrap:wrap;
     justify-content: center; /* Centers items horizontally */
         align-items: center; /* Centers items vertically */
   }
 
 .featureditems{
     padding:5px;
     order:2;
 }
 
.mobile{
    display:none;
}

.desktop {
    display: block;
}
#share {
    position: fixed;
    bottom: 50%;
    background-color: rgb(134, 31, 0);
    right: -10px;
    color: white;
    padding: 7px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    transform: rotate(90deg);
    font-size: 20px;
}

#sharegif {
    position: fixed;
    bottom: 45%;
    right: -900px;
    color: white;
    cursor: pointer;
    z-index: 1;
    transform: rotate(5deg);
}

@media screen and (max-width: 800px) {
.flex-container {
        display: flex;
        flex-wrap: wrap;
            justify-content: center;
    }

    .flex-items {
        margin: 10px;
        padding: 10px;
        border-radius: 10%;
        width: calc(50% - 45px);
   

    }

     .overlaytextinfodesktop {
        display:none;
     }

     iframe{
        display:none;
     }

    .video-container {
        background-image: url('./Images/webcompanyimage.webp');
        background-position: center;
        background-size: cover;
        position: relative;
        width: 100%;
        height: 70vh;
        mask-image: url('./Images/ink3.gif');
    }

    .videosection{
        background: linear-gradient(to bottom, #ff8282, #000000);
    }

    .featureditems {
    display: none     }

   .mobile {
    display: block;
     }

}

@media screen and (max-width:450px){     
#headertext{
    display:none;
}

.mobile {
    display: block;
}

.desktop {
    display: none;
}

}
