@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --mainblue: #0fcde7;
    --mainpurple: #934ac8;
    --defpad: 100px;
    --defminpad: 50px
}

a {
    color: inherit !important;
    text-decoration: none;
}

a:hover {
    color: inherit !important;
}

body {
    color: rgb(75, 75, 75);
    font-family: 'Ubuntu', sans-serif;
}

.bg-video {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    object-fit: cover;
    top: 0px;
    left: 0px;
    z-index: -2;
}

.blank-space {
    height: 50px;
}

.bg-blue {
    background: var(--mainblue);
}

.bg-grey {
    background: grey;
}

.main-bg-img {
    width: 100%;
    height: 100%;
    position: fixed;
    background: url(../images/jmbo.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -2;
}

.main-bg-shade {
    width: 100%;
    height: 100%;
    position: fixed;
    /* background: rgb(15, 205, 231);
    background: linear-gradient(90deg, rgba(15, 205, 231, 1) 23%, rgba(69, 76, 87, 0) 74%); */
    z-index: -1;
}

.mainlogo {
    height: 80px;
}

.bold-link {
    background-color: var(--mainblue);
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    transition: all 0.2s linear;
    margin-left: 10px;
    margin-right: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.bold-link:hover {
    background-color: var(--mainpurple);
}

.norm-btn {
    background-color: white;
    transition: all 0.2s linear;
    padding: 10px 20px;
}

.norm-btn:hover {
    background-color: var(--mainpurple);
    color: white !important;
}

.jumbo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jumbo-in {
    /* width: 80%; */
    color: white;
}

.jumbo-in-right {
    /* width: 90%; */
    color: white;
    text-align: center;
}

.jumbo-link {
    color: white;
    padding: 10px 20px;
    font-size: 150%;
    display: inline-block;
    margin: 10px;
    font-weight: 700;
    transition: all 0.5s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.jumbo-link:hover {
    background-color: var(--mainpurple);
}

/* .hero-buttons-container {
    margin-top: -100px;
    -webkit-box-shadow: 10px 10px 15px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 10px 10px 15px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 1;
    padding: 20px;
} */

.down-arrow {
    padding: 20px;
    margin-top: -100px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 95%);
}

.arrow {
    height: 60px;
}

.hero-link {
    color: var(--mainpurple);
    padding: 15px 30px;
    font-size: 200%;
    display: inline-block;
    margin: 10px;
    font-weight: 700;
    transition: all 0.5s ease;
    text-align: center;
    background-color: white;
}

.hero-link:hover {
    color: var(--mainblue);
}

.free-trial-link {
    font-size: 200%;
}

.free-trial-link-2 {
    background-color: var(--mainblue);
    margin-top: 50px;
    margin-bottom: 50px;
}

.center-box {
    display: grid;
    place-items: center;
}

.play-btn {
    font-size: 500%;
}

.feature-box {
    margin-top: 20px;
    margin-bottom: 20px;
}

.feature-head {
    padding: 100px 100px 40px 100px;
    text-align: left;
    border-bottom: 1px solid rgb(235, 235, 235);
}

.feature-item {
    padding: 40px;
    text-align: center;
}

.feature-icon-box {
    text-align: center;
    display: grid;
    place-items: center;
    height: 100px;
}

.f-icon-b {
    position: relative;
    background: white;
    width: 100px;
    opacity: 0;
}

.f-icon-f {
    position: relative;
    background: white;
    width: 100px;
    opacity: 1;
    transition: all 0.2s ease;
    margin-top: -100px;
}

.f-icon-f:hover {
    opacity: 1;
}

.feature-item:hover .f-icon-f {
    opacity: 1;
}

.feature-foot {
    padding: 40px 100px 100px 100px;
    text-align: center;
    border-top: 1px solid rgb(235, 235, 235);
}

.about-img {
    background: url(../images/about.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.try-img {
    background: url(../images/try.jpg) no-repeat center center;
    /* background: white; */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.prices-box {
    font-size: 250%;
}

.prices-box-bold {
    font-weight: 700;
}

.text-box {
    padding: var(--defpad);
}

.usecase-logo {
    width: 90%;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid silver !important;
    border-radius: 0px !important;
    box-sizing: border-box !important;
    resize: vertical !important;
    font-weight: bold !important;
    color: inherit !important;
    background-color: #ffffff !important;
    margin-bottom: 10px !important;
}

input[type="submit"] {
    background-color: var(--mainblue);
    color: white;
    padding: 12px 20px;
    border: 0px solid #272c33;
    border-radius: 0px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.contact-img {
    background: url(../images/cont.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sol-img {
    background: url(../images/sol.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.feat-img {
    background: url(../images/feat.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.footerlink {
    margin-left: 10px;
    margin-right: 10px;
}

.foot-icons {
    font-size: 200% !important;
}

.footer-box {
    padding: 50px;
    text-align: center;
}

.footer-bar li {
    display: inline-block;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
}

.video-scene {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sol-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-img {
    width: 80px;
    vertical-align: bottom;
}

.pic-box {
    display: grid;
    place-items: center;
}

.footer-bar {
    padding: 0px;
}

@media (max-width: 1399.98) {}

@media (max-width: 1199.98px) {
    .bold-link {
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 4px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --defpad: 80px;
        --defminpad: 60px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --defpad: 70px;
        --defminpad: 50px;
    }

    .main-bg-shade {
        background: rgb(15, 205, 231);
        background: linear-gradient(180deg, rgba(15, 205, 231, 1) 23%, rgba(15, 205, 231, 0.4) 74%);
    }

    .blank-space {
        height: 30px;
    }

    .pic-here {
        height: 300px;
    }

    .prices-box {
        font-size: 200%;
    }
}

@media (max-width: 575.98px) {
    :root {
        --defpad: 40px;
        --defminpad: 30px
    }

    .jumbo-in {
        padding-bottom: 20px;
    }

    .jumbo-in-right {
        padding: 20px;
    }

    .feature-head {
        padding: 40px 40px 40px 40px;
        text-align: center;
    }

    .blank-space {
        height: 10px;
    }

    .feature-item {
        padding: 10px;
    }

    .f-icon-f {
        opacity: 1;
    }

    .feature-box {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .feature-foot {
        padding: 40px 40px 40px 40px;
        text-align: center;
    }

    .footer-box {
        padding: 20px;
    }

    .pic-box {
        min-height: auto;
    }

    .prices-box {
        font-size: 150%;
    }
}