html {
    background-color: rgba(255, 255, 255, 0.06);
/*    background-image: -webkit-linear-gradient(270deg,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 100%);*/
/*    background-image: linear-gradient(270deg,rgb(230,233,233) 0%,rgb(216,221,221) 100%);*/
    -webkit-font-smoothing: antialiased;
    height: 100%;
}
body {
    margin: 0 auto;
    padding: 0px;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
img {
    -webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
}

button {
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
    outline:none;
    
    -webkit-appearance: none;
    appearance: none;
    
/*    background-color: #3077E1;*/
    background-color: #008bf0;
    color: white;
    font-size: 20px;
    font-weight: 600;
    
    border-radius: 10px;
    
    box-shadow: 2px 2px 10px rgba(64, 64, 64, 0.68);
    -webkit-box-shadow: 1px 1px 10px rgba(64, 64, 64, 0.54);
}

/*Menu*/
.menu_bar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background-color: #1F2240;
    z-index: 100;
}

.menu_logo {
    position: fixed;
    top: 10px;
    left: 10px;
    height: 40px;
}

.menu_contact {
    position: fixed;
    top: 10px;
    right: 10px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

/*Used By Banner*/

.used_by_banner {
    
/*    animation: .7s ease-out 0s 1 slideInFromTop;*/
    animation: 1.2s ease-out 0s 1 slideInFromTop;
    
    width: 100%;
    margin-top: 60px;
    height: auto;
/*    padding: 10px;*/
    
    background-color: rgba(0, 139, 240, 0.66);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    
    padding-top: 10px;
    padding-bottom: 10px;
    
}

.used_by_banner_text {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 17px;
    color: white;
    width: 90%;
    margin: auto;
}

/*
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
*/
@keyframes slideInFromTop {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

/*Welcome*/
.welcome_div {
    width: 90%;
    margin: auto;
    text-align:center;
}

.welcome_card {
        width: 300px;
/*    height: 160px;*/
    
 display: inline-block;
 vertical-align: top;   
 text-align: center;
 margin: 10px;    
 padding: 5px;
    
/*
    border-radius: 10px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(64, 64, 64, 0.68);
    -webkit-box-shadow: 1px 1px 10px rgba(64, 64, 64, 0.54);
*/
}

.download_button {
    margin: auto;
    padding: 0px;
    width: 180px;
    height: 44px;
    margin-top: 20px;
}

/*Main Content*/
.sub_heading {
    font-size: 30px;
    text-align: left;
    margin-left: 24px;
    margin-bottom: 10px;
    margin-top: 60px;
}

.scrolling_content_div {
    width: 100%;
    height: 440px;
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
/*    background-color: #dddddd;*/
    white-space: nowrap;
}
.article_link {
    text-decoration: none;
    color: black;
}
.article_div {
/*    float: left;*/
    display: inline-block;
    width: 180px;
    height: 360px;
/*    height: 330px;*/
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    background-color: #ffffff;
    padding: 10px;
    
    border-radius: 10px;
    
    box-shadow: 2px 2px 10px rgba(64, 64, 64, 0.68);
    -webkit-box-shadow: 1px 1px 10px rgba(64, 64, 64, 0.54);
}

.article_thumbnail_div {
    width: 180px;
/*    height: auto;*/
    height: 240px;
    object-fit: fill;
    object-position: center;
    overflow: hidden;
    margin: auto;
}
.plan_thumbnail_img {
    margin: auto;
    border-radius: 4px;
    
    border-style: solid;
    border-width: 1px;
    border-color: #d0d0d0;
}
.plan_title {
    width: 180px;
    height: 46px;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.purchase_button {
    width: 160px;
    height: 44px;
/*    margin-top: 20px;*/
}

/*FAQ*/
.faq_div {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(242, 242, 242, 0.39);
    margin-top: 60px;
    
    color: #008bf0;
}
.faq_question {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 24px;
}
.faq_answer {
    margin-top: 0px;
    font-size: 22px;
/*    font-weight: 600;*/
}

/*Footer*/
.footer {
    width: 100%;
    height: 70px;
    background-color: #1F2240;
    
    color: #ffffff;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
}
.footer_copyright {
    float: left;
    position: absolute;
    left: 10px;
    margin-top: 10px;
/*    bottom: 10px;*/
/*    padding-top: 10px;*/
}

.footer_contact {
    float: right;
    position: absolute;
    right: 10px;
    margin-top: 10px;
/*
    position: relative;
    right: 200px;
    top: 10px;
*/
/*    margin-right: 10px;*/
/*    padding-top: 10px;*/
}

.footer_built_by {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    margin-top: 34px;
/*
    margin-left: 10px;
    padding-top: 10px;
*/
}



@-webkit-keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}

@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}