@import "nav.css";
@import "settings.css";
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:300,400|Roboto:300,400&display=swap');

 html {
  scroll-behavior: smooth !important;
}

body{
      font-family: 'Segoe UI', sans-serif !important;
      font-weight: 400;
}

.main{
    color: white;
    background: rgba(15,15,15,1);
}

a.sec-link{
    color: white;
    text-decoration: underline;
}

.toggler:focus {
    outline: none !important;
    border: none  !important;
}

.bg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    background: linear-gradient(to left, #18907d, #059c6d, #18907d);
    /* background-image: url('../img/gradient-2.jpg');
    background-size: cover; */
}
.bg-column{
    flex-direction: column;
}
.bg-75{
    min-height: 75vh;
}
.bg-100{
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.image-center{
    width: 20%;
    transition: all 300ms ease-in-out;
}
.flipped {
    /* transform: scale(-1, 1); */
    transform: rotateY(180deg);
}
h4#brand-subtitle{
    transition: all 300ms ease-in-out;
}
@media screen and (max-width: 768px) {
    .image-center{
        width: 40%;
    }
    h4#brand-subtitle{
        font-size: 110%;
        text-align: center;
    }
}


/*------------------------ CONTENT -----------------------*/

.container, .container-fluid{
    box-shadow: inset 0 2px 5px 0 rgba(0,0,0,.06), inset 0 2px 10px 0 rgba(0,0,0,.02);
}

.container{
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1024px) {
    .container-fluid{
        padding-left: 100px;
        padding-right: 100px;
    }
}

section.col-md-6{
    padding: 50px 25px;
}

#downarrow{
    position: absolute;
    bottom: 25vh;
    animation: blinkmove 1.3s ease-in-out infinite;
}
#downarrow a{
    font-size: 1.7rem;
    color: #cfcfcf;
}

@keyframes blinkmove {
    0% {opacity: 0; transform: translateY(-50px);}
  100% {opacity: 1; transform: translateY(0px);}
}
/*------------------------ VISION ------------------------*/

#vision{
    min-height: 50vh;
    padding-bottom: 100px;
    background: url("../img/robot-gray.png") no-repeat right/30%, #14695b;
    background-attachment: fixed;
}
.bg-container{
    /* background: url("../img/robot-gray.png") no-repeat right/35%; */
    /* background: url("../img/logo-gray.png") no-repeat right/35%; */
    padding-bottom: 80px;
}

#vision-txt{
    max-width: 850px;
    margin: 0 auto;
    overflow: visible !important;
}
#vision-txt p{
    font-size: 1.5rem;
    font-weight: 300;
}
@media screen and (max-width: 420px) {
    #vision-txt p{
        font-size: 1.3rem;
    }
}
#vision-txt span{
    display: inline-block;
    float: left;
    font-size: 2.6rem;
    font-weight: 400;
    padding: 40px 10px 45px 20px;
    font-family: 'Roboto Mono', monospace;
    background: url("../img/bubble-gray.png") no-repeat;
    background-size: contain;
}



/*------------------------ FEATURES ------------------------*/

#features{
    /* background: #115b4f; */
    padding-bottom: 50px;
    background: url("../img/robot-gray.png") no-repeat left/30%, #115b4f;
    background-attachment: fixed;
}

.text-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.text-block-right{
    justify-content: center;
    text-align: left;
}

.img-block{
    text-align: center;
}
img.screenshot{
    max-height: 600px;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.36), 0 5px 20px 0 rgba(0,0,0,.32);
}
/*------------------------ FEATURES END --------------------*/
/*------------------------ PRICING --------------------*/
section#pricing{
    /* background-color: #18907d; */
    padding-bottom: 100px;
    background: url("../img/robot-gray.png") no-repeat right/30%, #18907d;
    background-attachment: fixed;
}

.section-header h2{
    font-size: 3.2rem;
    text-align: center;
    padding-top: 100px;
}

section#sec-pricing{
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 5em 0;
}


.pricing-box{
    max-width: 300px;
    background-color: #f2f2f2;
    color: #111;
    padding: 10px 25px;
    margin: 7px;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.26), 0 5px 20px 0 rgba(0,0,0,.22);
}
@media screen and (max-width: 767px){
    section#sec-pricing{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5em 0;
    }
    .pricing-box{
        width: 330px;
    }
    #price-standard{
        transform: none !important;
        z-index: 0;
    }
}

#price-standard{
    transform: scale(1.1,1.1);
    z-index: 1;
}

.price-head{
    padding: 20px 0;
}
.price-head h2{
    text-align: center;
    color: #18907d;
}

.price-tag{
    padding: 20px 0;
}
.price-tag span{
    font-size: 1.6rem;
    font-weight: 300;
}
.price-tag p{
    font-size: 1rem;
    text-align: right;
    font-weight: 300;
}
.price-feat{
    padding: 20px 0;
}

.price-feat table td{
    font-size: 1.2rem;
    padding: 10px 0;
}
.price-feat i{
    font-size: 20px;
    padding-right: 15px;
}
.price-feat p{
    margin-bottom: 0;
}


.btn-block{
    display: flex;
    justify-content: center;
}
.subscribe{
    margin: 35px auto 15px auto;
    background-color: #18907d;
    color: white;
    transition: transform 300ms 0s;
}
.subscribe:hover{
    background-color: #12675a;
    color: white;
    transform: scale(1.05,1.05);
}

/*------------------------ PRICING END --------------------*/

/*------------------------ FAQ & Support --------------------*/
div.section-header{
    margin-bottom: 40px;
}

section#support{
    padding-bottom: 100px;
    /* background-color: #14695b; */
    background: url("../img/robot-gray.png") no-repeat left/30%, #14695b;
    background-attachment: fixed;
}
section#support a{
    color: #DCF9C5;
}

div.panel{
    text-align: center;
    padding: 10px;
}

div.panel-collapse{
    max-width: 85%;
    margin: 0 auto;
}

.support-box{
    text-align: center;
    padding: 40px 20px 0 20px;
}


/*------------------------ CONTENT END --------------------*/


/*------------------------ LOGIN PAGE --------------------*/

.no-bx-sh{
    box-shadow: none !important;
}

#scancode{
    max-width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}
@media screen and (max-width: 420px) {
    #scancode{
        max-width: 100%;
        margin-top: 100px;
    }
}
@media screen and (max-width: 992px) {
    #scancode{
        max-width: 100% !important;
        margin-top: 100px;
    }
}

.boxed{
    background-color: #fff;
    color: black;
    box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
    padding: 25px;
    margin: 10px;
    border-radius: 9px;
}
@media screen and (max-width: 420px) {
    .boxed-login{
        margin-top: 100px;
    }
}

.instr-box{
    color: black;
}

h3#instr-title{
    margin-bottom: 30px;
}

ol.instructions{
    padding-left: 15px;
}

li.instr-li{
    padding: 5px 0;
}

.img-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}
#stay-loggedin{
    padding: 10px;
    color: black;
}
#stay-loggedin input{
    margin-right: 10px;
}
/*------------------------ LOGIN PAGE END ----------------*/



/*------------------------ FOOTER ----------------*/

.footer-custom{
    width: 100%;
    background: rgba(15,15,15,1);
    color: #e8e8e8;
    font-size: 12px;
    border-top: 1px solid #181818;
    text-align: center;
}
.footer-custom .container{
    box-shadow: none;
}

/*------------------------ FOOTER END ------------*/
