
.figure img {
    width: 100%;
    height: fit-content;
  }
  
.preloader {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
  }
  
  .preloader .middle {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .preloader .middle .fa {
    color: #c74dae;
    font-size: 58px;
    float: left;
    margin-right: 5px;
  }
  
  .preloader .middle .fa:last-child {
    margin-right: 0;
  }
  
  .preloader .middle i:first-child {
    -webkit-animation: preloaderAnimation 0.6s infinite alternate;
    animation: preloaderAnimation 0.6s infinite alternate;
  }
  
  .preloader .middle i:nth-child(2) {
    -webkit-animation: preloaderAnimation 0.6s 0.3s infinite alternate;
    animation: preloaderAnimation 0.6s 0.3s infinite alternate;
  }
  
  .preloader .middle i:nth-child(3) {
    -webkit-animation: preloaderAnimation 0.6s 0.6s infinite alternate;
    animation: preloaderAnimation 0.6s 0.6s infinite alternate;
  }
  
  .preloader .middle i:last-child {
    -webkit-animation: preloaderAnimation 0.6s 0.9s infinite alternate;
    animation: preloaderAnimation 0.6s 0.9s infinite alternate;
  }
  
  @-webkit-keyframes preloaderAnimation {
    from {
      opacity: 1;
    }
    to {
      opacity: 0.2;
    }
  }
  
  @keyframes preloaderAnimation {
    from {
      opacity: 1;
    }
    to {
      opacity: 0.2;
    }
  }
  
/* Styles for the splash screen */
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

h1.title,
.footer-copyright a {
    font-family: 'Architects Daughter', cursive;
    text-transform: uppercase;
    font-weight: 900;
}

/* start welcome animation */

body.welcome {
    background: #512da8;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.welcome .splash {
    height: 0px;
    padding: 0px;
    border: 130em solid #039be5;
    position: fixed;
    left: 50%;
    top: 100%;
    display: block;
    box-sizing: initial;
    overflow: hidden;

    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: puff 0.5s 1.8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, borderRadius 0.2s 2.3s linear forwards;
}

.welcome #welcome {
    background: #311b92;
    width: 56px;
    height: 56px;
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards, moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards, hide 2s 2.9s ease forwards;
}

/* moveIn */
.welcome header,
.welcome a.btn {
    opacity: 0;
    animation: moveIn 2s 3.1s ease forwards;
}

@keyframesinit {
    0% {
        width: 0px;
        height: 0px;
    }

    100% {
        width: 56px;
        height: 56px;
        margin-top: 0px;
        opacity: 1;
    }
}

@keyframespuff {
    0% {
        top: 100%;
        height: 0px;
        padding: 0px;
    }

    100% {
        top: 50%;
        height: 100%;
        padding: 0px 100%;
    }
}

@keyframesborderRadius {
    0% {
        border-radius: 50%;
    }

    100% {
        border-radius: 0px;
    }
}

@keyframesmoveDown {
    0% {
        top: 50%;
    }

    50% {
        top: 40%;
    }

    100% {
        top: 100%;
    }
}

@keyframesmoveUp {
    0% {
        background: #311b92;
        top: 100%;
    }

    50% {
        top: 40%;
    }

    100% {
        top: 50%;
        background: #039be5;
    }
}

@keyframesmateria {
    0% {
        background: #039be5;
    }

    50% {
        background: #039be5;
        top: 26px;
    }

    100% {
        background: #311b92;
        width: 100%;
        height: 64px;
        border-radius: 0px;
        top: 26px;
    }
}

@keyframesmoveIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframeshide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
#preloader .preloader-title {
    font-size: 20pt;
    color: currentColor;
    line-height: 0.9;
    position: absolute;
    top: 41px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: "Playfair Display", serif;
  }
  #preloader .preloader-title small {
    color: currentColor;
    line-height: 0.9;
    font-size: 12pt;
  }
  
  .loading-heart {
    fill: transparent;
    stroke: #dd51ba;
    stroke-width: 11;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    display: inline-block;
  }
  .loading-heart svg {
    overflow: visible;
    width: 11rem;
  }
  .loading-heart path {
    stroke-dashoffset: 0;
    stroke-dasharray: 1550;
    transform-origin: center;
    -webkit-animation: stroke-animation 3s ease-in-out infinite forwards;
    -khtml-animation: stroke-animation 3s ease-in-out infinite forwards;
    -moz-animation: stroke-animation 3s ease-in-out infinite forwards;
    -ms-animation: stroke-animation 3s ease-in-out infinite forwards;
    -o-animation: stroke-animation 3s ease-in-out infinite forwards;
    animation: stroke-animation 3s ease-in-out infinite forwards;
  }

.badge{
    display: inline-block;
    padding: 5px;
    font-size: x-small!important;
    font-weight: 700!important;

}
.ribbon {
    display: block;
    height: 20px;
    width: 28%;
    background-color: #02c955;
    border-radius: 25px;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    position: absolute;
    margin-top: 5px;
    right: 0;
    z-index: 10000;
}

.ribbon-tag {
    display: block;
    padding: 5px !important;
    font-size: small !important;
    border-radius: 25px;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    position: absolute;
    margin-top: 5px;
    right: 0;
    z-index: 10000;
}

.ribbon-right {
    display: block;
    height: 20px;
    width: 28%;
    background-color: #02c955;
    border-radius: 25px;
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    position: absolute;
    margin-top: 5px;
    right: 0;
    z-index: 10000;
}

.ribbon-xl {
    width: 15%;
    top: 325px;
}

.ribbon::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 25px;
    border-top: 15px solid rgba(0, 0, 0, 0);
    border-left: 15px solid rgba(0, 0, 0, 0);
    border-bottom: 15px solid rgba(0, 0, 0, 0);
}

.ribbon::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 25px;
    border-left: 25px solid rgba(0, 0, 0, 0);
    border-bottom: 25px solid rgba(0, 0, 0, 0);
    transform: rotate(45deg);
    border-radius: 25px;
    z-index: -1;
}


    /* common */
    .ribbonc {
        width: 120px;
        height: 120px;
        overflow: hidden;
        position: absolute;
        z-index:1;
    }

        .ribbonc::before,
        .ribbonc::after {
            position: absolute;
            z-index: -1;
            content: '';
            display: block;
            border: 5px solid #2980b9;
        }

        .ribbonc span {
            position: absolute;
            display: block;
            width: 125px;
            padding: 2px 0;
            background-image: linear-gradient(310deg, #f53939 0%, #fbcf33 100%);
            box-shadow: 0 5px 10px rgba(0,0,0,.1);
            color: #fff;
            font: 600 11px/1 'Lato', sans-serif;
            text-shadow: 0 1px 1px rgba(0,0,0,.2);
            text-transform: uppercase;
            text-align: center;
        }

    /* top left*/
    .ribbonc-top-left {
        top: -10px;
        left: -10px;
    }

        .ribbonc-top-left::before,
        .ribbonc-top-left::after {
            border-top-color: transparent;
            border-left-color: transparent;
        }

        .ribbonc-top-left::before {
            top: 0;
            right: 0;
        }

        .ribbonc-top-left::after {
            bottom: 0;
            left: 0;
        }

        .ribbonc-top-left span {
            right: 20px;
            top: 20px;
            transform: rotate(-45deg);
        }

    /* top right*/
    .ribbonc-top-right {
        top: -10px;
        right: -10px;
    }

        .ribbonc-top-right::before,
        .ribbonc-top-right::after {
            border-top-color: transparent;
            border-right-color: transparent;
        }

        .ribbonc-top-right::before {
            top: 0;
            left: 0;
        }

        .ribbonc-top-right::after {
            bottom: 0;
            right: 0;
        }

        .ribbonc-top-right span {
            left: -25px;
            top: 30px;
            transform: rotate(45deg);
        }

    /* bottom left*/
    .ribbonc-bottom-left {
        bottom: -10px;
        left: -10px;
    }

        .ribbonc-bottom-left::before,
        .ribbonc-bottom-left::after {
            border-bottom-color: transparent;
            border-left-color: transparent;
        }

        .ribbonc-bottom-left::before {
            bottom: 0;
            right: 0;
        }

        .ribbonc-bottom-left::after {
            top: 0;
            left: 0;
        }

        .ribbonc-bottom-left span {
            right: -25px;
            bottom: 30px;
            transform: rotate(225deg);
        }

    /* bottom right*/
    .ribbonc-bottom-right {
        bottom: -10px;
        right: -10px;
    }

        .ribbonc-bottom-right::before,
        .ribbonc-bottom-right::after {
            border-bottom-color: transparent;
            border-right-color: transparent;
        }

        .ribbonc-bottom-right::before {
            bottom: 0;
            left: 0;
        }

        .ribbonc-bottom-right::after {
            top: 0;
            right: 0;
        }

        .ribbonc-bottom-right span {
            left: -25px;
            bottom: 30px;
            transform: rotate(-225deg);
        }

/* social media icons sizes */
.fab,  .far, .f-xl {
    font-weight: 600;
    font-size: xx-large;
}

.fab, .far, .f-lg {
    font-weight: 500;
    font-size: x-large;
}

.v-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}





/*Preloader command Demo video input Browser styles*/
.preloader-title img {
    width: 116px;
    max-width: none;
    margin-top: 10px;
}

.hero-wrapper .hero-subtitle {
    font-size: 13pt;
    padding: 0 220px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #d2d2d2;
}

    .section-title::after {
        display: none;
    }

.section-divider-bottom-1 {
    padding-bottom: 250px !important;
}

.demo {
    margin-bottom: 80px;
}

    .demo h2 {
        font-size: 20pt;
    }

        .demo h2 small {
            font-size: 15pt;
            display: block;
            margin-top: 10px;
        }

.outer-browser {
    position: relative;
    overflow: hidden;
    width: 480px;
    height: 450px;
    margin: 0 auto 20px;
    max-width: 100%;
    -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.inner-browser {
    position: absolute;
    top: 26px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    height: 450px;
}

.outer-browser-sm {
    position: relative;
    overflow: hidden;
    width: 480px;
    height: 300px;
    margin: 0 auto 20px;
    max-width: 100%;
    -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.inner-browser-sm {
    position: absolute;
    top: 26px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    height: 300px;
}

.outer-browser-md {
    position: relative;
    overflow: hidden;
    width: 480px;
    height: 400px;
    margin: 0 auto 20px;
    max-width: 100%;
    -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.inner-browser-md {
    position: absolute;
    top: 26px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.outer-browser-lg {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    margin: 0 auto 20px;
    max-width: 100%;
    -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.inner-browser-lg {
    position: absolute;
    top: 26px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.outer-browser-xl {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 850px;
    margin: 0 auto 20px;
    max-width: 100%;
    -webkit-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.inner-browser-xl {
    position: absolute;
    top: 26px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    height: 850px;
}

.img-wrapper {
    -webkit-transition: all 4s;
    -moz-transition: all 4s;
    -o-transition: all 4s;
    transition: all 4s;
}

    .img-wrapper.t-1s {
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .img-wrapper video {
        max-width: 100%;
    }

.feature {
    text-align: center;
    margin-bottom: 60px;
}

    .feature img {
        width: 80px;
        height: auto;
        -khtml-opacity: 0.5;
        -moz-opacity: 0.5;
        opacity: 0.5;
        margin-bottom: 20px;
    }

    .feature h4 {
        font-weight: 900;
        font-size: 16pt;
    }

#footer-onepage .footer-widget-area {
    padding: 25px 0;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 90pt;
    }

    .hero-wrapper h1.hero-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .hero-wrapper .hero-subtitle {
        padding: 0 80px;
    }

    .hero-wrapper::before {
        left: -90px;
    }

    .hero-wrapper::after {
        right: -90px;
    }

    .outer-browser {
        height: 251px;
    }

    .inner-bro.wser {
        height: 225px;
    }

    #footer-onepage .footer-widget-area img {
        margin: 25px 0;
    }
}

@media (max-width: 767px) {
    .hero-wrapper .hero-subtitle {
        padding: 0 20px;
    }

    #hero {
        padding-bottom: 180px !important;
        padding-top: 20px;
    }

    .hero-wrapper::before,
    .hero-wrapper::after {
        content: "";
        width: 359px;
        height: 650px;
    }

    .hero-wrapper::before {
        left: -230px;
    }

    .hero-wrapper::after {
        right: -230px;
    }

    .hero-wrapper .hero-title {
        font-size: 90pt;
    }

    .outer-browser {
        height: 191px;
    }

    .inner-browser {
        height: 165px;
    }

    .feature h4 {
        font-size: 12pt;
    }
}

@media (max-width: 576px) {
    #hero {
        padding-bottom: 190px !important;
        padding-top: 55px;
    }

    .hero-wrapper h1.hero-title {
        padding: 0 90px;
    }

    .hero-wrapper::before,
    .hero-wrapper::after {
        content: "";
        width: 359px;
        height: 650px;
    }

    .hero-wrapper::before {
        left: -205px;
    }

    .hero-wrapper::after {
        right: -205px;
    }

    .outer-browser {
        width: 80vw;
        height: 49vw;
    }

    .inner-browser {
        height: calc(49vw - 26px);
    }
}
