html, body {
    scroll-behavior: smooth;
}


.hero-section {
    position: relative;
    padding-top: 100px;
    border-radius: 0 0 0 50px;
    background-image: url(/images/landing/hero.jpg); background-size: cover;
    /*height: 100vh;*/
}
.hero-section:before {
    position: absolute; content: "";
    top: 0; left: 0; right: 0; bottom: 0; opacity: 0.8;
    background: linear-gradient(-45deg, rgba(15, 56, 236, 0.8), #710fba, rgba(15, 56, 236, 0.8));
    background-size: 400% 400%;
    -webkit-animation: gradient 35s ease infinite;
    animation: gradient 35s ease infinite;
    border-radius: 0 0 0 50px;
}
.hero-section .hero-wrapper {
    z-index: 1; position: relative;
}

@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.font-weight-lighter {
    font-weight: lighter;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.device-block {
    text-align: center;
    z-index: 9;
    position: relative;
}
.device-block .db-img img {
    max-width: 300px;
    margin: 0 auto;
    max-height: 150px;
}
.device-block .db-name {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bolder;
    font-size: 24px;
    letter-spacing: 1px;
    color: #fff;
}

.adelay-100 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.adelay-200 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.adelay-300 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
}
.hero-text p {
    font-size: 20px;
    line-height: 30px;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    transition: background-color 0.3s;
}
#header.blue-bg {
    background: linear-gradient(140deg, #0f38ec, #710fba);
}
.floating {
    -webkit-animation-name: floating;
    animation-name: floating;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, 0px);
    }
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, 0px);
    }
}
.bonding-line {
    position: relative;
}
.bonding-line:after {
    content: "";
    display: block;
    position: absolute;
    width: 80%;
    top: 50%;
    height: 2px;
    background: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0) 100%);
    left: 10%;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    .bonding-line:after {
        display: none;
    }
}

#mobileMenu {
    transform: translateX(150%);
    margin-top: 80px;
}
#mobileMenu.open-mobile-menu {
    display: block;
    transform: translateX(0);
}

.section-header {
    text-transform: uppercase;
    color: #000;
    font-size: 26px;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    letter-spacing: 2px;
    font-family: "Roboto", sans-serif;
    display: inline-block;
    margin: 0 auto;
    font-weight: bolder;
}
.section-header.text-white {color: #fff;}
.section-header:before {
    content: "";
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    background-color: #710fba;
    opacity: 0.1;
}
.section-header.pt-0 {padding-top:0;}
.cta-section .btn-snti:hover {background-color: #fff;}
.cta-section .btn-snti.btn-white:hover {background-color: #0f38ec; color: #fff; border-color: #fff;}
.parallax-section {
    background-image: url(/images/landing/ioblu.jpg); background-size: cover; background-attachment: fixed; background-position: center;
}
.basic-text {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 16px; line-height: 22px;
}
.basic-text.text-white {
    color: #fff;
}

.bg-lightgray {background-color: #fafafa;}

.device-tile {
    background-color: #fff;

    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}
.device-tile .device-image {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    /*border: 2px solid #ABABAB;*/
    /*background-color: #fff;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0 0 35px #ababab;*/
}
.device-tile:not(.usage-tile):not(.no-tile):hover .device-image{
    transform: rotateY( 180deg ) ;
    transition: transform 0.5s;
}
.device-tile .device-image {

}
.device-tile .device-image .front { position: relative; z-index:1; background-color: #fff; backface-visibility: hidden;
}
.device-tile .device-image .back {
    position: absolute; transform: rotateY( 180deg ); backface-visibility: hidden; margin: 5px; width: calc(100% - 10px);

}
.device-tile.usage-tile {
    box-shadow: 0 10px 50px -20px rgba(113, 15, 186, 0.2);
    transition: box-shadow .3s, transform .3s;
}
.device-tile.usage-tile:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 60px -20px rgba(113, 15, 186, 0.3);
}
.device-tile:not(.usage-tile) .device-image {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ABABAB;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 25px -5px #ababab, inset 0 0 12px -4px #ababab;
}
.device-tile:not(.usage-tile) .device-image {
    max-height: 200px; max-width: 200px; margin: 0 auto; height: 100%;
}
.device-tile:not(.usage-tile) .device-image svg {width: 80px; height: 80px;}
.device-tile:not(.usage-tile) .device-image svg path {
    fill: #ABABAB;
}
.device-tile .device-name {
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: bolder;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.device-tile .device-desc {
    text-align: justify;
}
.device-tile .device-btn {
    text-align: center;
}
.device-tile .device-btn a {
    background-color: #0f38ec;

    line-height: 30px;
    display: inline-block;
    font-size: 14px;
    font-weight: bolder;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    margin: 20px auto 0;
    letter-spacing: 1px;
    border: 2px solid #0f38ec;
    /*background: linear-gradient(140deg, rgba(15, 56, 236, 0.7), rgba(113, 15, 186, 0.7));*/
    background-size: 100% 100%;
    transition: background-color .3s, color .3s;
}
.device-tile .device-btn a:hover {
    /*background-size: 200% 100%;*/
     background-color: transparent; color: #0f38ec; border: 2px solid #0f38ec;
}
.device-tile:hover {
    /*transform: scale(1.05);*/
}

.info-device-tile {
    text-align: center;
}
.info-device-tile .idt-img {
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 20px;
    display: inline-block;
    box-shadow: 0 20px 50px -20px rgba(113, 15, 186, 0.2);
    padding: 15px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-device-tile .idt-img .dev-feature-icon {
    max-width: 60px;
    width: 50%;
}
.info-device-tile h6 {
    font-weight: bolder;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.lightgray {
    background: whitesmoke;
}

.btn-snti {
    display: inline-block;
    background-color: #0f38ec;
    color: #fff;
    border: 2px solid #0f38ec;
    line-height: 30px;
    border-radius: 20px;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 20px;
    letter-spacing: 1px;
    font-size: 14px; font-weight: bolder;
    /*background: linear-gradient(140deg, rgba(15, 56, 236, 0.7), rgba(113, 15, 186, 0.7));*/
    background-size: 100% 100%;
    transition: background-color .3s, color .3s;
}
.btn-snti:hover {
    /*background-size: 200% 100%;*/
    background-color: transparent;
    color: #0f38ec;
}
.btn-snti.btn-white {
    border: 2px solid #fff; background-color: #fff; color: #0f38ec;
}

.platform-screen img {
    width: 100%;
}

.platform-info {
    padding: 30px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 50px -20px rgba(15, 56, 236, 0.2);
    margin-bottom: 20px;
}
.platform-info .info-name {
    margin-bottom: 10px;
}
.platform-info .info-name h3 {
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1px;
}
.platform-info ul {
    list-style: none;
}
.platform-info ul li {
    position: relative;
    padding-left: 20px;
}
.platform-info ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0f38ec;
    z-index: 1;
}

.device-image .icon {
    max-width: 80px;
}

.color-section {
    background: linear-gradient(-45deg, #0f38ec, #710fba);
}
.color-section .section-header {
    color: #fff;
}
.color-section .section-header:before {
    background-color: rgba(255, 255, 255, 0.67);
}

.text-rest-api {
    background-color: #fff;
    box-shadow: 20px 20px 50px -20px rgba(15, 56, 236, 0.2), -20px -20px 50px -20px rgba(113, 15, 186, 0.2);
    border-radius: 25px;
    text-align: justify;
    font-size: 16px;
}
.text-rest-api p {
    ling-height: 24px;
    margin-bottom: 10px;
}

.form-wrapper {
    max-width: 640px;
    box-shadow: 20px 20px 50px -20px rgba(15, 56, 236, 0.2), -20px -20px 50px -20px rgba(113, 15, 186, 0.2);
    border-radius: 25px;
    background-color: #fff;
    padding: 25px;
    margin: 0 auto;
    width: 100%;
}
.form-wrapper .form-group {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: left;
}
.form-wrapper .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    letter-spacing: 1px;
}
.form-wrapper .form-group:first-of-type {
    margin-top: 0;
}
.form-wrapper .form-group:last-of-type {
    margin-bottom: 0;
}
.form-wrapper .form-group.text-center {
    text-align: center;
}
.form-wrapper input {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 5px;
}
.form-wrapper textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 5px;
    min-height: 140px;
}

footer {
    color: #fff;
}
footer h5 {
    font-weight: bolder;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    footer {
        text-align: center;
    }
}
footer .footer-list li {
    margin-top: 5px;
    margin-bottom: 5px;
    /*font-weight: lighter;*/
}
footer .footer-list li a {
    transition: padding-left 0.3s;
    /*font-weight: lighter;*/
}
footer .footer-list li a:hover {
    padding-left: 10px;
}
.cta-section {
    background-image: url(/images/landing/cta.jpg);
    background-size: cover; background-attachment: fixed;
}
@media screen and (max-width: 768px) {
    footer .footer-list {
        text-align: center;
        margin-bottom: 30px;
    }
}
