/*mivtech brand*/
@font-face {
    font-family: 'Figtree SemiBold';
    src: url('fonts/Figtree-SemiBold.eot');
    src: url('fonts/Figtree-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('fonts/Figtree-SemiBold.woff2') format('woff2'),
         url('fonts/Figtree-SemiBold.woff') format('woff'),
         url('fonts/Figtree-SemiBold.ttf')  format('truetype'),
         url('fonts/Figtree-SemiBold.svg#Figtree SemiBold') format('svg');}
/*typography*/
@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Regular.eot');
    src: url('fonts/Nunito-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/Nunito-Regular.woff2') format('woff2'),
         url('fonts/Nunito-Regular.woff') format('woff'),
         url('fonts/Nunito-Regular.ttf')  format('truetype'),
         url('fonts/Nunito-Regular.svg#Nunito') format('svg');}
@font-face {
    font-family: 'Armata';
    src: url('fonts/Armata-Regular.eot');
    src: url('fonts/Armata-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/Armata-Regular.woff2') format('woff2'),
         url('fonts/Armata-Regular.woff') format('woff'),
         url('fonts/Armata-Regular.ttf')  format('truetype'),
         url('fonts/Armata-Regular.svg#Armata') format('svg');}
@font-face {
    font-family: 'Nunito Sans';
    src: url('fonts/NunitoSans-Regular.eot');
    src: url('fonts/NunitoSans-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/NunitoSans-Regular.woff2') format('woff2'),
         url('fonts/NunitoSans-Regular.woff') format('woff'),
         url('fonts/NunitoSans-Regular.ttf')  format('truetype'),
         url('fonts/NunitoSans-Regular.svg#Nunito Sans') format('svg');}
         
/* ----------------------------
    global typography
-------------------------- */
html {
    font-family: 'Nunito';
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    color: #666;
    /* color: #222;*/ /*light-mode*/
    transition: all 1s ease;
    }

/*heading typography*/
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-family: 'Armata';
    color: #02577a;
    text-transform: none;
    transition: all .3s ease;
}
    /*dark-mode heading typography*/
    .html-dark .uk-h1, .html-dark .uk-h2, .html-dark .uk-h3, .html-dark .uk-h4, .html-dark .uk-h5, .html-dark .uk-h6, .html-dark .uk-heading-2xlarge, .html-dark .uk-heading-large, .html-dark .uk-heading-medium, .html-dark .uk-heading-small, .html-dark .uk-heading-xlarge, .html-dark h1, .html-dark h2, .html-dark h3, .html-dark h4, .html-dark h5, .html-dark h6 {
        color: #02a9f7; /*f7blue*/
    }
    /** font-size standard
     * html                 = 19    px;
     * html>footer  : .8rem = 14.4  px; 
     * <small>              = 13    px
    */

/* ----------------------------
    COLOR THEORY
-------------------------- */
.background-mivtech{
    background: #02577a; /*rgb(2,87,122)*/
    color: #d4f0fc;
    transition: background 1s ease-out !important;
}
    .background-mivtech:hover{
        background: #02a9f7;
        color: #fff!important;
    }
    .background-mivtech:hover h2{
        color: #fff!important;
    }
.text-mivtech{
    color: #02577a;
}
.text-mivtechRed{
    color: #f0506e;
}
.text-mivtechOrange{
    background: #fff6ee;
    color: #faa05a;
}
    .html-dark .text-mivtech{
        color: #d4f0fc;
    }
        .background-mivtechSoft{
            background: #d4f0fc;
        }
        .background-mivtechLight{
            background: #89d6fb;
        }
        .background-mivtechBlue{
            background: #02a9f7;
            color: #fff;
        }   
        .background-mivtechDark{
            background: #01303f;
            color: #fff;
        }
.background-mivtechGrey{
    background: rgb(240,240,240);
    color: rgb(102, 102, 102);
}
    .background-mivtechGrey:hover{
        background: #d4f0fc;
        color: #02577a;
    }
.background-mivtechGreen{
    background: #80a7b7;
    color: #02577a;
}

        /*disabled button*/
            .background-mivtech-disabled{
                cursor: none!important;
                color: rgb(112 112 112 / 50%)!important;
                text-shadow: 0px 1px rgb(255 255 255)!important;
                background: #f2f2f2!important;
                border-color: rgb(255 255 255)!important;
                box-shadow: inset -1px 1px 2px 0px rgb(0 0 0 / 6%)!important;
                }

/* ----------------------------
    global override
-------------------------- */
    ::selection {
        background: #89d6fb;
        color: #fff;
        text-shadow: none;
    }
    /*link*/
    .uk-link, a {
        /*color: #1e87f0; //ori*/
        color: #02a9f7;
        text-decoration: none;
        cursor: pointer;
        transition: color .3s ease;
    }
        .active, .uk-link-toggle:hover .uk-link, .uk-link:hover, a:hover {
            /*color: #0f6ecd; //ori*/
            transition: color .3s ease;
            color: #02577a;
            /*font-weight: bolder;*/
            text-decoration: none;
        }
        /*link-dark*/
        .html-dark .uk-link-toggle:hover .uk-link, .html-dark .uk-link:hover, .html-dark a:hover {
            /*color: #0f6ecd; //ori*/
            color: #89d6fb;
            /*text-decoration: underline;*/
        }
    /*notification*/
    .uk-notification-message{
        top:8vh;
        position: relative;
        padding: 10px 15px;
        border: 0.5px #02a9f7 solid;
        border-radius: 50px;
        backdrop-filter: blur(15px);
        background: rgb(2 87 122 / 8%);
        box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
        font-size: small;
        color: #02a9f7;
        line-height: 1;
        cursor: pointer;
    }
        .uk-notification-message a, .uk-alert a{
            top:8px;
            right:10px;
            padding: 5px;
            color: #fff;
            border-radius: 20px;
            box-shadow: inset 0 5px 15px rgb(0 0 0 / 8%);
            transition: all .3s ease !important;
        }
        .uk-notification-message a:hover,.uk-alert a:hover{
            background-color: #fff;
            box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
        }
        /*alert*/
        .uk-alert {
            border-radius: 5px!important;
        }
    /*uk-alert*/
    /*.uk-alert{
        color: #02a9f7;
        border: 0.5px #02a9f7 solid;
        border-radius: 5px;
        backdrop-filter: blur(15px);
        background: rgb(2 87 122 / 8%);
        box-shadow: inset 0 0 2000px rgba(2, 87, 122, 0.15);
    }*/

    /*dark form*/
    .html-dark .uk-input, .html-dark .uk-select, .html-dark .uk-textarea{
      /*max-width: 100%;*/
      /*width: 100%;*/
      border: 0 none;
      padding: 0 10px;
      background: rgba(255, 255, 255, 0.1);
      color: #e5e5e5;
      border: 1px solid #e5e5e5;
      transition: .5s ease-in-out;
      transition-property: all;
      transition-property: color,background-color,border;
    }
    /*striped*/
    .uk-table-striped tbody tr:nth-of-type(odd), 
    .uk-table-striped>tr:nth-of-type(odd) {
        background: rgb(212 240 252 / 50%)!important;
        border-top:1px solid #518ba31c;
        border-bottom:1px solid #518ba31c;
        }
    .uk-table-hover tbody tr:hover, 
    .uk-table-hover>tr:hover {
        background: rgb(255 255 255);
        }
        /*striped-dark*/
        .html-dark .uk-table-striped tbody tr:nth-of-type(odd), 
        .html-dark .uk-table-striped>tr:nth-of-type(odd) {
            background: rgb(255 255 255 / 10%)!important;
            }
        .html-dark .uk-table-hover tbody tr:hover, 
        .html-dark .uk-table-hover>tr:hover {
            background: rgb(255 255 255 / 15%);
            }

    /*code*/
    :not(pre)>code, :not(pre)>kbd, :not(pre)>samp {
        font-family: Consolas,monaco,monospace;
        font-size: .875rem;
        color: #f0506e;
        white-space: nowrap;
        padding: 2px 6px;
        background: #f8f8f8;
    }
        .html-dark :not(pre)>code, .html-dark :not(pre)>kbd, .html-dark :not(pre)>samp {
            color: #f8f8f8;
            background: #f0506e;
        }
    /*modal*/
    .uk-modal{
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1010;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 15px;
        opacity: 0;
        transition: opacity .15s linear;
        backdrop-filter: blur(5px);
        background: rgb(2 87 122 / 10%);
        box-shadow: inset 0 0 2000px rgba(2, 87, 122, 0.15);
        }
        .uk-modal-dialog{
            margin: 15% auto;
            background: #fafafa;
            color: #666;
            border: 0.5px rgb(255 255 255) solid;
            border-radius: 5px;
            box-shadow: 0 14px 25px rgb(0 0 0 / 16%);
            transition: all .2s ease-out;
        }

        .uk-modal-header {
            background: rgb(2 87 122 / 50%);
            border-radius: 4px!important;
        }
        .uk-modal-footer {
            background: rgb(2 87 122 / 8%);
            border-radius: 4px!important;
        }

        .uk-modal-dialog:hover{
            color: #333;
            background: #ffffff;
            box-shadow: 0 14px 25px rgb(0 0 0 / 26%);
        }
        .uk-modal-dialog .uk-modal-title{
            font-size: 1.2rem;
        }
        /*modal-dark*/
        .html-dark .uk-modal{
            backdrop-filter: blur(5px);
            background: rgb(2 87 122 / 10%);
            }
            .html-dark .uk-modal-dialog{
                color: #89d6fb; /*fb-light*/
                border: 0.5px #02a9f7 solid;
                backdrop-filter: blur(15px);
                background: rgb(2 87 122 / 8%);
                transition: all .2s ease-out;
            }
                    .html-dark .uk-modal-dialog .uk-modal-title{
                        color: #02a9f7; /*f7blue*/
                    }
            .html-dark .uk-modal-dialog:hover{
                color: #d4f0fc; /*fc-soft*/
                backdrop-filter: blur(25px);
                background: rgb(2 87 122 / 8%);
            }
        /*input-focus*/
        .uk-input:focus, .uk-select:focus, .uk-textarea:focus, :focus-visible {
            outline: 0;
            color: #666;
            border-color: #02a9f7;
        }
            /*input-dark*/
            .html-dark .uk-input:focus, .html-dark .uk-select:focus, .html-dark .uk-textarea:focus, .html-dark :focus-visible {
                color: #e5e5e5;
            }
        :focus-visible {
            outline: 1px solid #02a9f7;
        }

    /* ----------------------------
        welcome
    -------------------------- */
    #logo{ margin-top:10% }
    .brand{
        margin-top: 5px;
        font-family: 'Figtree SemiBold';
        letter-spacing: -.8px;
        line-height: normal;
        font-size: 1.3rem;
        color:#02577a;}
    .contact{
        font-family: 'Nunito';
        font-size: smaller;
        margin-top: 10px;
        color: #666;}
        .contact .phone:before {
            content: attr(data-website) "\002D" attr(data-user);
            unicode-bidi: bidi-override;
            direction: rtl;}
        .contact .bullet {
            color:#999;}
        .contact .e-mail:before {
            content: attr(data-website) "\0040" attr(data-user);
            unicode-bidi: bidi-override;
            direction: rtl;}

    .enter{
        padding-top: 150px;
        height: 150px;
        }
    .enter a{
    display: inline-block;
    }
    .enter object{
        pointer-events: none;
    }

    /* ----------------------------
        header navigation
    -------------------------- */
    header{    
        background: rgb(229 229 229);
        background: linear-gradient(300deg, rgb(250 250 250) 0%, rgb(1 5 201) 40%, rgb(2 214 252) 100%);
    }
        header .logo-brand{
            gap: 0px;
           }
        header .logo-brand .logo{
            font-family: 'Figtree SemiBold';
            color: #fff;
            margin-left: 5px;
        }
        .uk-navbar-nav>li>a{
            font-family: 'Figtree SemiBold';
            color: #fff;
            font-size: .8rem;
            transition: color .6s ease-out;
        }
            .uk-navbar-nav>li>a:hover,.uk-navbar-nav>li>a.active,
            .uk-navbar-nav>li:hover>a, .uk-navbar-nav>li>a.uk-open, .uk-navbar-nav>li>a:focus {
                color: #89d6fb;
                text-shadow: 1px -1px rgb(1 48 63 / 50%);}
        .uk-navbar-nav>li>button,
        .uk-navbar-nav>li>form>button{
            font-family: 'Figtree SemiBold';
            color: #fff;
            transition: background 1s ease;
            border: 0.5px #02a9f7 solid;
            background: #02a9f7;
            border: 0.5px #f8f8f821 solid;
        }
            .uk-navbar-nav>li>button:hover,
            .uk-navbar-nav>li>form>button:hover{
                background: #0295d9;
                text-shadow: 1px -1px rgb(1 48 63 / 50%);
                }

    /* ----------------------------
        search
    -------------------------- */
    .uk-search-navbar .uk-search-input{
        color: #02a9f7;
        font-size: 1rem;
        border-radius: 10px;
        }
            ul#results {
                display: block;
                padding: 0px;
                border: 1px solid #518ba31c;
                backdrop-filter: blur(5px);
                background: rgb(2 87 122 / 1%);
                box-shadow: inset 0 0 2000px rgb(2 87 122 / 0%);
            }
                ul#results li.result {
                    list-style-type: none;
                    width: 98%;
                    margin-top: 3px;
                    margin-left: 1%;
                    padding: 10px 0px;
                    margin-bottom: 2px;
                    border-radius: 3px;
                    transition: all .8s ease;
                    backdrop-filter: blur(15px);
                    background: rgb(255 255 255 / 50%);
                    box-shadow: 0 2px 3px 1px rgb(0 0 0 / 10%);
                }
                    ul#results li.result:hover {
                        color: #02577a;
                        border: 1px solid rgb(81 139 163 / 50%);
                        background: rgb(2 87 122 / 50%);
                        box-shadow: inset 0 0 2000px rgb(2 87 122 / 15%);
                        }
                    ul#results li.result a{
                        color: #02a9f7;
                        text-decoration: none;
                    }
                        ul#results li.result a:hover{
                            color: #ffffff;
                        }
                    ul#results li.result:hover a{
                        color: #d4f0fc;
                    }
                    ul#results .liresult::first-child {
                        margin-bottom: 0px;
                    }
        .uk-search-navbar .uk-search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
              color: rgb(255, 255, 255, 30%) !important;
              opacity: 1; /* Firefox */
            }
            .uk-search-navbar .uk-search-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
              color: rgb(255, 255, 255, 30%) !important;
            }
            .uk-search-navbar .uk-search-input::-ms-input-placeholder { /* Microsoft Edge */
              color: rgb(255, 255, 255, 30%) !important;
            }
    /* ----------------------------
        canvas
    -------------------------- */
    .miv-canvas-button{
        color:#fff;
    }
    .miv-canvas .uk-offcanvas-bar {
        position: absolute;
        top: 0;
        bottom: 0;
        right: -270px;
        box-sizing: border-box;
        width: 270px;
        padding: 20px 20px;
        border-radius: 0 10px 10px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgb(2,87,122);
        background: linear-gradient(160deg, rgba(2,87,122,1) 0%, rgba(1,48,63,1) 26%, rgba(1,48,63,1) 100%);
        box-shadow: 14px 0px 14px rgb(0 0 0 / 16%);
        }
        .miv-canvas .brand{
                float: left;
                margin-right: 10px;}
                .miv-canvas .logo{
                    padding-top: 10px;
                    font-size: .8rem;}
        .miv-canvas ul li a{
            font-family: 'Nunito Sans';
            color:#999;
            transition: all .5s ease;
        }
        .miv-canvas ul li a:hover,.miv-canvas ul li a.active{
            color: #02a9f7;
        }
    /*right-offcanvas*/ 
    #sidenav .uk-offcanvas-bar{
        width: 250px;
        border: 1px solid #518ba31c;
        border-radius: 10px 0 0 10px;
        backdrop-filter: blur(15px);
        background: rgb(2,87,122,.05);
        box-shadow: inset 0 0 2000px rgba(2, 87, 122, 0.15);
        }
        #sidenav ul li{
            margin: 10px 0px;
            height: 18px;
            padding: 10px 10px 10px 0px;
        }
        #sidenav ul li a{
            font-family: 'Figtree SemiBold';
            font-size: .8rem;
            /* color: #424242; */
            color: #02577a;
            padding: 2px;
            background: #fff;
            box-shadow: inset -1px 0px 2px 0px rgb(1 48 63 / 50%);
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            transition: all 0.5s ease;
            /* box-shadow: 0px 0px 8px 0px rgb(17 17 17 / 34%) inset; */
            display: block;
            }
                #sidenav ul li a span{
                    border-radius: 3px;
                    background: #02a9f7;
                    border: 0.5px #f8f8f821 solid;
                    color: #fff;
                    transition: all 0.3s ease;
                    box-shadow: 0px 0px 6px -2px #111;
                    padding: 9px;
                    margin-right: 9px;
                    }
            #sidenav ul li a:hover,
            #sidenav ul li a.active{
                /*color:#d4f0fc;light*/
                background: rgba(2,87,122,1);
                text-shadow: 1px -1px rgb(1 48 63 / 50%);
    /*            border: 0.5px #f8f8f821 solid;*/
                color: #fff;
                transition: all 0.3s ease;
                box-shadow: 0px 0px 6px -2px rgb(2 87 122 / 50%);
            }
                #sidenav ul li a:hover span,
                #sidenav ul li a.active span{
                    background: rgba(2,87,122,1);
                    color: #fff;
                    }
    /* ----------------------------
        hero
    -------------------------- */
    .hero {
        position:relative;
        text-align:center;
/*        background: linear-gradient(300deg, #02a9f7 0%, rgba(2,87,122,1) 100%);*/
        }
        .background-animation{
            /*animated background*/
            background: linear-gradient(300deg, #02a9f7 0%, rgba(2,87,122,1) 100%);;
            background-size: 400% 400%;
            animation: gradient 30s ease infinite;
/*            height: 100vh;*/
            }

            @keyframes gradient {
                0% {
                    background-position: 0% 50%;
                }
                50% {
                    background-position: 100% 50%;
                }
                100% {
                    background-position: 0% 50%;
                }
            }
            /*animated background*/

        .hero-inner {
            /*height:65vh;*/
            width:100%;
            /* margin: 1vh 0;*/
            /* padding: 1vh 0;*/
            /* border: 1px dashed #fff;*/
          }
        /*.flex { Flexbox for containers
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            }*/

        .hero-illustration img{
            margin-right: 20px;
            float: left;}
        .hero-content h3{
                font-family: 'Armata';
                color: #89d6fb; 
                text-align: left;
                text-transform: none;
                }
        .hero-content p{
                color: #d4f0fc;
                text-align: left;
                }
            .hero-content p a{
                color: #89d6fb;
                transition: color .3s ease !important;
                padding: 5px 20px;
                border: 1px solid #89d6fb;
                border-radius: 4px;
                transition: border .5s ease;
                }
                .hero-content p a:focus,.hero-content p a:hover{
                    color: #d4f0fc;
                    text-decoration: none;
                    border: 1px solid #d4f0fc;
                    }
    .waves {
        position:relative;
        width: 100%;
        height:15vh;
        margin-bottom:-7px; /*Fix for safari gap*/
        min-height:100px;
        max-height:150px;
        }  
        .waves #mode{
        fill: #fff;
        transition: all 1s ease;
        }
            /*dark-mode*/
            .html-dark .waves #mode{
            fill: #121212;
            }

    /* Animation */
    .parallax > use {
        animation: move-forever 120s cubic-bezier(.55,.5,.45,.5) infinite;
        }
        .parallax > use:nth-child(1) {
            animation-delay: -2s;
            animation-duration: 53s;
            }
        .parallax > use:nth-child(2) {
            animation-delay: -3s;
            animation-duration: 55s;
            }
        .parallax > use:nth-child(3) {
            animation-delay: -4s;
            animation-duration: 57s;
            }
        .parallax > use:nth-child(4) {
            animation-delay: -5s;
            animation-duration: 60s;
            }
        @keyframes move-forever {
        0% {
            transform: translate3d(-90px,0,0);}
        100% { 
            transform: translate3d(85px,0,0);}
        }
    /*Shrinking for mobile*/
    @media (max-width: 768px) {
        .waves {
        height:40px;
        min-height:40px;
        }
        .content {
        height:30vh;
        }
    }
    /* ----------------------------
        content
    -------------------------- */
    .miv-content{
        margin-top: 60px;
    }
        /*left menu*/
        .miv-content .leftbar{
            font-family: 'Nunito Sans';
            }
            .miv-content .leftbar ul li a{
                color: #02577a; /*mivtech*/
                transition: all .3s ease-out;
                }
                /*dark-mode*/
                .html-dark .miv-content .leftbar ul li a{
                    color: #89d6fb; /*fb-light*/
                    }
            .miv-content .leftbar ul li a:hover,
            .miv-content .leftbar ul li a.active{
                color: #02a9f7;
                text-decoration: none;
                }
                    /*dark-mode*/
                    .html-dark .miv-content .leftbar ul li a:hover,
                    .html-dark .miv-content .leftbar ul li a.active{
                        color: #d4f0fc; /*soft*/
                        }
                .underline-ani {
                    display: inline-block;
                    position: relative;
                    }
                .underline-ani::after {
                    content: '';
                    position: absolute;
                    width: 100%;
                    transform: scaleX(0);
                    height: 1px;
                    bottom: 3px;
                    left: 0;
                    background-color: #02a9f7;
                    transform-origin: bottom right;
                    transition: transform 0.25s ease-out;
                    }
                .underline-ani:hover::after {
                    transform: scaleX(1);
                    transform-origin: bottom left;
                    }

        /*wrapper*/
        .miv-content .uk-card-default,
        .miv-content .uk-card-default.uk-card-hover:hover {
            background: #fafafa;
            color: #666;
            transition: all 1s ease;
            }
            /*dark-mode*/
            .html-dark .miv-content .uk-card-default{
                background: rgb(255 255 255 / 3%);
                color: #eee;
                }
            .html-dark .miv-content .uk-card-default.uk-card-hover:hover {
                background: rgb(255 255 255 / 7%);
                color: #eee;
                }
                .html-dark .miv-content .uk-card-default .uk-card-header {
                    background-image: url('img/miv_dots.png');
                    border-radius: 5px 5px 0 0;
                    }
                .html-dark .miv-content .uk-card-default .uk-card-body{
                    background-image: url('img/121212_dots.png');
                    }
                .html-dark .miv-content .uk-card-default .uk-card-footer {
                    background-image: url('img/dark_dots.png');
                    border-radius: 0 0 5px 5px;
                    }
        /*MAIN*/
        .miv-content main figure img{
            border-radius: 4px;
            }
        .miv-content main figure figcaption{
            font-size: small;
            }
            .miv-content main h1,
            .miv-content main h2,
            .miv-content main h3
                {margin:20px 0 0 0;}
            /*resize heading*/
            .miv-content main h1{font-size: 2rem;} /*title*/
            .miv-content main h2{font-size: 1.2rem;} /*commom heading*/
            .miv-content main h3{font-size: 1rem;} /*common sub heading*/
            .miv-content h4{font-size: 1.3rem;font-family: 'Nunito Sans';} /*menu heading*/
            .miv-content h5{font-size: .9rem;font-family: 'Armata';} /*property heading span*/
            /*line heading*/
            .miv-content main .uk-heading-line>::after, .uk-heading-line>::before {
                border-bottom: calc(.2px + .05em) solid #d1e1e7;
                }
                /*links*/
                .miv-content main .uk-link, 
                .miv-content main a {
                    color: #02a9f7;/*f7blue*/
                    text-decoration: none;
                    cursor: pointer;
                }
                .miv-content main .uk-link:hover, 
                .miv-content main a:hover {
                    color: #02577a;/*7amivtech-links*/
                    text-decoration: underline;
                }
                    /*links-dark*/
                    .html-dark .miv-content main .uk-link, 
                    .html-dark .miv-content main a {
                        color: #02a9f7;/*f7blue*/
                        text-decoration: none;
                        cursor: pointer;
                    }
                    .html-dark .miv-content main .uk-link:hover, 
                    .html-dark .miv-content main a:hover {
                        color: #89d6fb;/*fblight*/
                        text-decoration: underline;
                    }
                            
            /*Cards*/
            section.cardList{
                margin-bottom: 20px;
            }
                section.cardList #cardLast{
                    padding: 30px;
                }
                    section.cardList #cardLast div{
                        border: 1px #e5e5e5 solid;
                        transition: border 2s ease;
                    }
                    section.cardList #cardLast div:hover{
                        border: 1px #d7d7d7 dashed;
                        text-decoration: none;
                    }
                    section.cardList #cardLast div a{
                        text-decoration: none;
                        color: #999;
                        transition: all 1s ease;
                    }
                    section.cardList #cardLast div a:hover{
                        text-decoration: none;
                        color: #02577a;
                    }
                .cardList{
                    display: inline-block;
                    -webkit-transition: all 0.5s ease;
                    -moz-transition: all 0.5s ease;
                    -o-transition: all 0.5s ease;
                    transition: all 0.5s ease;
                    /*ready for setImgBg*/
                    background-position: center;
                    background-size: cover;
                    }
                    .cardList .cardPanel{
                        text-align: right;
                        background-color: #fff6ee; /*alert-warm-bg*/
                        border-radius: 5px 5px 0px 0px;
                        opacity: .4;
                        }
                    .cardList:hover .cardPanel{
                        opacity: .9;
                        }
                    .cardList .cardPanel small{
                        background-color: #faa05a;
                        color: #fff6ee;
                        border-radius: 5px 0px 8px 5px;
                        padding: 0px 5px;
                        line-height: 1.5em;
                        opacity: .4;
                        margin: 1px 1px;
                        border: 1px #fff solid;
                        }
                    .cardList .cardPanel small:hover{
                        opacity: 1;
                        }
                        .cardList .cardPanel input{
                            color: #faa05a;
                            background-color: transparent;
                            opacity: .5;
                            border: 1px transparent solid;
                            opacity: 1;
                            font-family: 'Nunito';
                            font-size: initial;
                            line-height: 1.7em;
                            padding: 0px 5px;
                            }
                            .cardList .cardPanel input:focus-visible {
                                outline: 1px solid #faa05a;
                                border-radius: 5px;
                            }
                        .cardList .cardPanel a{
                            font-size: smaller;
                            margin-right: 10px;
                            color: #faa05a;/*alert-warm-text*/
                            opacity: .5!important;
                            transition: all .5s ease-in;
                            }
                        .cardList .cardPanel a:hover{
                            opacity: 1;
                            text-decoration: none;
                            }
                            .cardList .cardPanel a.publishContent{
                                opacity: 1!important;
                                transition: none;
                                }
                        .cardList .cardPanel a.publishContent:hover .uk-icon-image{
                            background-image: url('img/save-hover.svg')!important;
                            }
                        .icon-image-save:hover,
                        .cardList .cardPanel .icon-image-save:hover{
                            background-image: url('img/save-hover.svg')!important;
                            }
                    .cardList .sectionConfig{
                        display: inline-block;
                        transition: all .5s ease-in;
                        }
                        /*card popup menu*/
                        .cardList .uk-dropdown {
                            padding: 0px!important;
                            border-radius: 0px 5px 5px 5px!important; 
                            background-color: rgb(255 255 255 / 5%)!important;
                            backdrop-filter: blur(15px);
                            }
                        .cardList .uk-dropdown a{
                            padding: 5px 15px!important;
                            transition: all .2s ease-in;
                            }
                            .cardList .uk-dropdown a:hover{
                                text-decoration: none;
                                backdrop-filter: blur(25px);
                                border-radius: 5px;
                                }
                    .cardList .sectionConfig input.sectionStatus{
                        /*color: #02a9f7!important; /*temporary display status*/
                        border: none!important;
                        font-style: italic!important;
                        border-radius: 5px!important;
                        margin-left: 5px!important;
                        background-color: rgb(255 255 255 / 5%)!important;
                        backdrop-filter: blur(15px)!important;
                        /*fade text*/
                        background-image: linear-gradient(to left, transparent, rgb(255 255 255 / 34%))!important;
                        -webkit-background-clip: text!important;
                        -webkit-text-fill-color: transparent!important;
                        }
                    .cardList .imageConfig{
                        float:right;
                        margin-left: 5px;
                        }

                /*cards-content*/
                .cardList table.custom-content{
                        width: 50%;
                        padding: 20px;
                        border-collapse:separate!important;
                        border:solid #25d366 3px!important;
                        border-radius:10px!important;
                    }
                .cardList table.custom-content tr td{border:none!important;}
                    .cardList .custom-content,.cardList .custom-content span{
                        font-size: small;}
                    .cardList .custom-content,.cardList .custom-content h1{
                        margin: 0!important;
                        color:#25d366!important;}
                    .cardList .custom-content,.cardList .custom-content h1 a{
                        color:#25d366!important;}
                    .cardList .custom-content,.cardList .custom-content h1 a:hover{
                    text-decoration: none;}

                /*themes*/
                .cardList .card-theme{
                    color   : #faa05a;/*alert-warm-text*/
                    /*color : #f0506e;/*alert-red-text*/
                    background-color: #fff6ee; /*alert-warm-bg*/
                    box-shadow: 0 1px 2px rgb(0 0 0 / 20%)!important;

                    -webkit-transition: all 0.5s ease;
                    -moz-transition: all 0.5s ease;
                    -o-transition: all 0.5s ease;
                    transition: all 0.5s ease;
                }
                    .cardList .card-theme a,
                    .cardList .card-theme h1,.cardList .card-theme h2,.cardList .card-theme h3,.cardList .card-theme h4,.cardList .card-theme h5
                    {
                        color: #faa05a;/*alert-warm-text*/
                    }
                    
            /*Content Editor*/
            .mce-panel {
                border-radius:6px!important;
                /*border: 0 solid #c5c5c5;*/ 
                background-color: rgb(255 255 255 / 25%)!important;
                backdrop-filter: blur(15px);
                border: none!important; 
                }
                .html-dark .mce-panel {
                    background-color: rgb(255 255 255 / 50%)!important;
                    }
                /*toolbar*/
                .mce-top-part::before {
                    content: ''; 
                    position: absolute;
                    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
                    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
                    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    pointer-events: none;
                    border-radius:5px !important;
                    }
                    /*button*/
                    .mce-btn{
                        border: none!important;
                        border-radius: 5px!important;
                    }
                    .mce-primary{
                        padding: 0px 10px!important;
                        line-height: 20px!important;
                        font-size: larger!important;
                        background-color: #02577a!important; /*button*/    
                        transition: background 1s ease-out !important;
                        }
                        .mce-primary:hover {
                            background-color: #02a9f7!important;
                            }
                        .mce-primary .mce-txt,.mce-primary .mce-text{
                            color: #fff!important; /*netralin mce-text*/
                            }
                /*popup title*/
                .mce-window-head .mce-title {
                    line-height: 24px!important;
                    font-size: 24px!important;
                    font-weight: normal!important;
                    font-family: 'Armata'!important;
                    color: #02577a!important; /*mivtech*/
                }
                /*form*/
                .mce-textbox{
                    border-radius: 5px!important;
                    font-size:12pt!important;
                    }
                .mce-textbox:focus, .mce-textbox.mce-focus{
                    border-color: #02577a!important;
                }
                /*tab*/
                .mce-tab {
                    font-family: 'Armata'!important;
                    color: #02577a!important; /*mivtech*/
                    border-radius: 5px 5px 0px 0px;
                    display: inline-block;
                    *display: inline;
                    *zoom: 1;
                    border: 1px solid #c5c5c5;
                    border-width: 0 1px 0 0;
                    background-color: #fff;
                    padding: 8px 15px;
                    text-shadow: 0 1px 1px rgb(255 255 255 / 75%);
                }
                    .mce-tab.mce-active {
                        color: #02a9f7!important;/*f7blue*/
                        background: #FDFDFD!important;
                        border-bottom-color: transparent;
                        margin-bottom: -1px;
                        }
                /*drop*/
                .mce-dropzone {
                    border-radius: 5px!important;
                    cursor: grab!important;
                    border: 1px dashed #02a9f7!important;/*f7blue*/
                    text-align: center;
                }
                    .mce-dropzone span {
                        font-family: 'Armata'!important;
                        color: #02577a!important; /*mivtech*/
                        text-transform: uppercase;
                        display: inline-block;
                        vertical-align: middle;
                    } 
                /*popup*/ 
                .mce-textbox,
                .mce-widget, .mce-reset,
                /*menu2*/
                .mce-txt,.mce-text{
                    font-family: 'Nunito'!important;
                    color: #02577a!important; /*mivtech*/
                    }
                /*selected*/
                .mce-menu-item.mce-active.mce-menu-item-normal{ 
                    background: #d4f0fc!important; /*soft*/
                    border-radius: 5px!important;
                    }
                /*active*/
                .mce-btn.mce-active, .mce-btn.mce-active:hover, .mce-btn.mce-active:focus, .mce-btn.mce-active:active {
                    box-shadow: none;
                    background: #89d6fb!important; /*light*/
                    border-radius: 5px!important;
                    }
                    .mce-ico {
                        color: #02577a!important; /*mivtech*/
                        }
                /*mce-tooltip*/
                .mce-tooltip-inner{font-size:11px;background: rgb(2,87,122)!important;background: linear-gradient(0deg, rgba(2,87,122,1) 0%, rgba(0,0,0,1) 95%, rgba(0,0,0,1) 100%)!important;border-radius:5px!important;color:white;font-family: 'Nunito'!important;max-width:200px;padding:5px 8px 4px 8px;text-align:center;white-space:normal}
                .mce-tooltip-inner{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}

            /*Text Editor*/
            .medium-editor-element {
                word-wrap: break-word;
                min-height: 100px;
                padding: 10px;
                border-radius: 5px;
                background: rgba(255, 255, 255);
                border: 1px solid #e5e5e5;
                backdrop-filter: blur(15px);
                max-width: 100%;
                transition: .2s ease-in-out;
                transition-property: color,background-color,border;
            }
                .html-dark .medium-editor-element {
                    background: rgba(255, 255, 255, 0.1);
                }
            /*dropzone*/
                .html-dark .dropzone{
                    background: rgba(255, 255, 255, 0.1);
                }
            /*table*/
            .miv-content main table{
                margin:0;
/*                border-top:1px solid #518ba31c;*/
                border:1px solid transparent;
                }
                .miv-content main table caption{
                    border-bottom:1px solid #518ba31c;
                    padding-bottom: 20px;
                    }
                .miv-content main table thead th{
                    padding-top: 20px;
                    }
                /*image*/
                .miv-content main table svg{
                    max-width: none;
                    }

            /*paging-default C14 templates*/
            ul.pagination{
                list-style: none!important;
                display: flex;
                flex-wrap: wrap;
                margin-left: 0;
                padding: 0;
                list-style: none;
                }
                ul.pagination li{
                    display: list-item;
                    text-align: -webkit-match-parent;
                    margin: 0px 5px;
                    border-radius: 5px;
                    border: 1px rgb(229 229 229) solid;
                    box-shadow: none;
                    }
                ul.pagination li.active, ul.pagination li.active:hover{
                    box-shadow: -1px -1px 3px #ffffff73, 0px 2px 4px rgb(0 0 0 / 8%);
                    }
                    ul.pagination li:hover{
                        box-shadow: inset 0px -2px 4px rgb(0 0 0 / 8%), inset 0px 1px 1px rgb(0 0 0 / 10%);
                        }
                ul.pagination li a, .uk-pagination li a{
                    font-size: .875rem;
                    color: #02a9f7;
                    display: block;
                    padding:3px 10px;
                    transition: color .1s ease-in-out;
                    text-decoration: none;
                    display: block;
                }
                    ul.pagination li.active a{
                        color:#ccc;
                        cursor: text;
                        }
            /*label*/
            .label-mivtech{
                display: inline-block;
                text-decoration: none;
                text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
                padding: 2px 5px;
                font-size: x-small;
                line-height: 14px;
                height: 14px;
                vertical-align: middle;
                -webkit-border-radius: 4px;
                -moz-border-radius: 4px;
                border-radius: 4px;
                -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
                -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
                box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
                background: linear-gradient(-300deg, #02a9f7 0%, rgba(2,87,122,1) 25%);
            }
                .label-mivtech:before  {
                    content: '\2022';
                    color: rgba(2,87,122,1);
                    margin-right: 4px;
                    font-size: 15px;
                    line-height: 13px;
                    height: 13px;
                    vertical-align: text-top;
                    text-shadow: 0 -1px -1px rgba(0, 0, 0, 0.2);
                }
                                
        /*right menu*/
        .miv-content .sidebar{ 
            font-family: 'Armata';
            }
            .miv-content .sidebar ul li a{
                color: #89d6fb; /*fb-light*/
                font-size: small;
                transition: all .3s ease;
                }
            .miv-content .sidebar ul li a:hover,.miv-content .sidebar ul li a.active{
                color: #d4f0fc; /*soft*/
                transition: all .3s ease;
                }
            .miv-content .sidebar ul li a.disable{
                color:#d4f0fc; 
                transition: all .3s ease;
                }
            #toggle-usage > tbody > tr td:nth-child(1),
            #toggle-usage > tbody > tr > td> span > svg{
                color: #02577a;
            }
                /*dark-mode*/
                .html-dark .miv-content .sidebar ul li a{
                    color:#d4f0fc;
                    }
                .html-dark .miv-content .sidebar ul li a:hover,.html-dark .miv-content .sidebar ul li a.active{
                    color:#02a9f7;
                    }
                .html-dark .miv-content .sidebar ul li a.disable{
                    color:#333; 
                    }

        /*order-step*/
        .miv-content .order-step .uk-card-header{background: #d4f0fc;}
        .miv-content .order-step .uk-card-body{background: rgb(212 240 252 / 25%);}
            .miv-content .order-step .uk-card-body h3,
            .miv-content .order-step .uk-card-body legend{color: #89d6fb;}
        .miv-content .order-step .uk-card-footer{background: #89d6fb;}
        .miv-content .order-step .uk-card-footer button.ani-more{
                font-size: .875rem;
                background: none;
                color: #d4f0fc;
                cursor: pointer;
                transition: all .5s ease;
                padding: 5px 20px 7px 20px;
                border: 1px solid #f0f7fa;
                border-radius: 5px;
            }
            .miv-content .order-step .uk-card-footer button.ani-more:hover{
                    font-size: .9rem;
                    color: #fff;
                }
            .miv-content .order-step .uk-card-footer a.ani-more:hover;{
                color: #fff!importantx`;
                }
    /* ----------------------------
        footer
    -------------------------- */
    footer{
        margin-top: 50px;
        font-size: .5rem;
        color: #e5e5e5;
        line-height: 22px;
        background: rgb(2,87,122);
        background: linear-gradient(175deg, rgba(2,87,122,1) 0%, rgba(1,48,63,1) 36%, rgba(1,48,63,1) 100%);
    }
        footer .brand{
            float: left;
            margin-right: 10px;}
            footer .logo{
                padding-top: 10px;
                font-size: larger;}
            footer .contact{
                font-size: inherit;
                clear: both;
                margin-top: 20px!important;}
            footer .contact, footer ul li{
                font-family: 'Nunito Sans';
                color:#999;}
        .footer h4{
            margin: 15px 0 15px 0;
            font-family: 'Armata';
            font-size: .9rem;
            color: #fff;
            text-transform: none;}
            .footer ul li a{
                transition: color .5s ease-out;
                color: #02a9f7}
            .footer ul li a:hover{
                color: #fff}
            .footer h5{ /*keep in touc*/
                margin: 15px 0 15px 0;
                color:#02a9f7;}
        .footer button{
            font-family: 'Figtree SemiBold';
            color:#fff;}
        .footer .uk-icon-button{
            transition: color 1s ease-out;
            transition: background 1s ease-out;
            }
        .footer .uk-icon-button:focus, .uk-icon-button:hover {
            background: #fff;
            color: #02a9f7;
            outline: 0;}
        .footer #subscribe > div.uk-width-1-1.uk-first-column > input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
              color: rgb(2, 87, 122, 80%) !important;
              opacity: 1; /* Firefox */
            }
            #subscribe > div.uk-width-1-1.uk-first-column > input:-ms-input-placeholder { /* Internet Explorer 10-11 */
              color: rgb(2, 87, 122, 80%) !important;
            }
            #subscribe > div.uk-width-1-1.uk-first-column > input::-ms-input-placeholder { /* Microsoft Edge */
              color: rgb(2, 87, 122, 80%) !important;
            }

    /* ----------------------------
        DARK MODE
    -------------------------- */
    .html-light {
        color: #666;
        background: #fff;
        transition: all 1s ease;
        }
    .html-dark {
        color: #eee;
        background: #121212;
        }
        /*switch styles*/
        div.btn-switch{
          margin-right: 5px!important;
          display: table-cell;
          vertical-align: middle;
          text-align: center;}
            div.btn-switch label {
              font-family: 'Figtree SemiBold';
              font-size: .6rem;
              /* color: #424242;*/
              color: #02577a;
              }
          .btn-color-mode-switch{
              display: inline-block;
              margin: 0px 10px 0px 0px;
              position: relative;}

            /*switch holder*/
            .btn-color-mode-switch > label.btn-color-mode-switch-inner{
                margin-top: 9px;
                width:  72px;
                height: 38px;
                background: #fff;
                box-shadow: inset -1px 0px 2px 0px rgb(1 48 63 / 50%);
                border-radius: 5px;
                overflow: hidden;
                position: relative;
                transition: all 0.5s ease;
                /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
                display: block;}

            /*right-off/holder-before*/
            .btn-color-mode-switch > label.btn-color-mode-switch-inner:before{
                content: attr(data-dark);
                position: absolute;
                font-size: .5rem;
                top: 13px;
                right: 8px;
                }

            /*left-off/button*/
            .btn-color-mode-switch > label.btn-color-mode-switch-inner:after{
                content: attr(data-off);
                width: 34px;
                height: 18px;
                background: #02a9f7;
                border: 0.5px #f8f8f821 solid;
                color: #fff;
                border-radius: 3px;
                position: absolute;
                left: 2px;
                top: 2px;
                text-align: center;
                transition: all 0.3s ease;
                box-shadow: 0px 0px 6px -2px #111;
                padding: 9px 0px 5px 0px;}
            .btn-color-mode-switch > .alert{
                display: none;
                background: #FF9800;
                border: none;
                color: #fff;}
            .btn-color-mode-switch input[type="checkbox"]{
                cursor: pointer;
                width: 40px;
                height: 26px;
                opacity: 0;
                position: absolute;
                top: 0;
                z-index: 1;
                margin: 0px;}

            /*left-on/holder-after*/
            .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner{
                background: rgba(2,87,122,1);
                box-shadow:inset -1px 0px 3px 1px rgb(1 48 63 / 50%);
                color:  #eee;}

            /*right-on/button*/
            .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after{
                content: attr(data-on);
                left: 34px;
                background: #02a9f7;
                border: 0.5px #f8f8f821 solid;}
            
            /*left-off/holder-before*/
            .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before{
                content: attr(data-dark);
                right: auto;
                left: 5px;}
            .btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner{
                /*background: #66BB6A;*/
                /*color: #fff;*/}
            .btn-color-mode-switch input[type="checkbox"]:checked ~ .alert{
                display: block;}


    /* ----------------------------
        CUSTOM-HOMEPAGE-DESIGN
    -------------------------- */
    /*section-features*/
    section.miv-first-feature{
        padding-bottom: 20px;
    }
        .miv-divider {
            animation: gradient 240s ease infinite;
        }
    section.miv-custom-feature{
    /*background: #d4f0fc;*/
    }
            /*deal-solusi*/
            .miv-custom-feature li span.miv-check{
                background-color: rgb(2,87,122);
                border-radius: 10px;
                color: #ffffff;
                padding: 5px;
            }
            .miv-custom-feature li:hover{
                color: rgb(2,87,122);
            }
            .miv-custom-bg {
                opacity: 0.1;
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: auto;
                background-attachment: fixed;
            }

    /*animate - arrow*/
    .ani-direct a svg{
        transition: .4s ease;
        }
        .ani-direct a:hover svg{
            margin-left: 2px;
            margin-right: 2px;
            -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
            transition: .4s ease;
            }
    /*animate - action button*/
    .ani-action a{
        transition: .4s ease;
        }
        .ani-action a:hover{
            -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
            transform: scale(1.2);
            transition: .4s ease;
            }
    /*animate - more link*/
    .ani-more span{
        transition: .4s ease!important;
        }
        .ani-more:hover span{
            margin-left: 2px;
            -webkit-transform: scale(1.2)!important;
            -ms-transform: scale(1.2)!important;
            transform: scale(1.2)!important;
            transition: .4s ease!important;
            }

    /*latets-work*/
    .miv-content main .project-slider img{
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
        -webkit-transition: all 1s ease;
        }
        .miv-content main .project-slider .uk-card-media-top:hover img,
        .miv-content main .project-slider ul li:hover img{
            filter: grayscale(0%)!important;
            filter: gray!important;
            -webkit-filter: grayscale(0%)!important;
            filter: none!important;
            transition: 1s ease!important;
            }
    .miv-content main .project-slider h3{
        color: #02577a!important;
    }
    .miv-content main .project-slider small.date{
        background: #fff6ee;
        color: #faa05a;
        border-radius: 5px;
    }