@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Regular.otf');
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#preload{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#preload img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flash-msg-center-box {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1010;
    animation-name: flash-msg-animation;
    animation-duration: 3s;
}

.flash-msg-center-box div {
    width: 400px;
    height: 50px;
    overflow: hidden;
    margin: 8px 0;
    border-radius: 5px;
}

.flash-msg-center-box span {
    float: left;
    width: 40px;
    height: 60px;
    font-size: 30px;
    text-align: center;
    transform: translateY(0px);
    color: white;
}

.flash-msg-center-box img {
    transform: translateY(9px);
}

.flash-msg-center-box p {
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 200;
    line-height: 50px;
    color: white;
}

.flash-msg-m1 {
    background: rgb(220,60,60);
}

.flash-msg-m1 span {
    background: #c0392b;    
}

.flash-msg-m2 {
    background: rgb(68,190,115);
}

.flash-msg-m2 span {
    background: #27ae60;    
}

@keyframes flash-msg-animation {
    0% {top: -5%;}
    10% {top: 10%;}
    90% {top: 10%;}
    100% {top: -5%;}
}

a {
    text-decoration: none;
    color: whitesmoke;
}

ul {
    list-style: none;
}

.active {
    color: #5fa8d3;
    text-decoration: underline;
    font-weight: bold;
}

/* Scroll on top button */
#ontop-btn {
    height: 50px;
    width: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #5fa8d36e;
    border: 1px solid whitesmoke;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

#ontop-btn:hover {
    background-color: #5fa8d3;
    border: 1px solid whitesmoke;
}

.arrow-up {
    border: solid whitesmoke;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    color: whitesmoke;
}

.policy {
    background-color: #274f66;
}

.plain-text {
    margin: 150px auto;
    width: 80%;
    padding: 0 40px;
    font-size: 12px;
}

.plain-text p {
    margin: 0;
    padding: 0;
    color: #000;
}

.plain-text ul {
    list-style: decimal;
}

.plain-text ul ul {
    list-style: circle;
}

.legal {
    margin-top: 50px;
}

.logo {
    display: none;
}

.limbo-logo {
    height: 50px;
    z-index: 2;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0px 30px;
}

.nav-links a:hover {
    color: #5fa8d3;
    font-weight: bold;
    cursor: pointer;
}

header {
    width: 100vw;
    height: 100vh;
    background-image: url('files/landing/0_banner_01.jpg');
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.header-content {
    margin-bottom: 250px;
    color: whitesmoke;
    text-align: center;
}

.header-content h2 {
    font-size: 4vmin;
}

.line {
    width: 150px;
    height: 4px;
    background: #5fa8d3;
    margin: 10px auto;
    border-radius: 5px;
}

.header-content h1 {
    font-size: 7vmin;
    margin-top: 20px;
    margin-bottom: 30px;
}

.ctn {
    padding: 15px 20px;
    background: #5fa8d3;
    border: 1px solid #5fa8d3;
    border-radius: 5px;
    color: whitesmoke;
}

.ctn:hover {
    background-color: whitesmoke;
    color: #5fa8d3;
    font-weight: bold;
    border: 1px solid #5fa8d3;
}

.menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;
    z-index: 1;
}

/* Sections */

.signup, .support {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin: 150px auto; */
    width: 320px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 60px;
}

.signup h2, .support h2 {
    margin: 0;
}

.signup .signup-subtext, .support .signup-subtext {
    margin-top: 3px;
    font-size: 10px;
    margin-bottom: 15px;
}

.signup form, .support form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.signup input[type="text"], input[type="email"], input[type="password"], .support input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    margin: 3px auto;
    height: 40px;
    border-radius: 5px;
    border: solid 2px #5fa8d3;
    padding: 20px 5px;
}

.textarea-form {
    margin-top: 3px;
    border-radius: 5px;
    border: solid 2px #5fa8d3;
    width: 100%;
    height: 155px;
    padding: 10px 5px;
    font-size: 13px;
    overflow: auto;
}

.textarea-form:focus {
    outline: none;
}

.signup input:focus, .support input:focus {
    outline: none;
}

.signup input[type="file"], .support input[type="file"] {
    width: 100%;
    margin: 5px auto;
    text-align: center;
    border-radius: 5px;
    border: solid 2px #5fa8d3;
    padding: 20px 5px;
}

.signup .ctn, .support .ctn {
    margin-top: 20px;
    font-weight: bold;
}

.signup .ctn:hover, .support .ctn:hover {
    cursor: pointer;
}

.signup p, .support p {
    margin: 20px auto;
    padding: 0;
    color: #000;
    font-size: 12px;
    text-align: center;
}

.signup a, .support a {
    color: #5fa8d3;
    font-weight: bold;
}

section {
    width: 100%;
    margin: 0px auto;
}

.row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.row .col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-col .ctn {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

h4 {
    font-size: 3vmin;
    color: #274f66;
    margin: 20px auto;
}

p {
    color: #274f66;
    padding: 0px 40px;
}

.content-col {
    /* background-color: #c0392b; */
    width: 40%;
}

.image-col {
    /* background-color: aquamarine; */
    width: 50%;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 700px;
    box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.15);
}

.documentation {
    padding: 80px;
}

.video-gallery {
    width: 700px;
    box-shadow: 0px 0px 35px lightblue;
}

.docs-top {
    margin-top: 50px;
}

.docs-intro {
    text-align: center;
    font-size: 13px;
    margin-bottom: 100px;
}

.docs-h1 {
    margin: 0;
}

.docs-p {
    font-size: 14px;
    margin: 0;
}

.docs-p a {
    color: #5fa8d3;
}

.docs-p a:hover {
    color: #5fa8d3;
    font-weight: bold;
}

.content-col h1 {
    font-size: 6vmin;
    font-weight: bold;
}

.content-col .line {
    margin-left: -1px;
}

.content-col p {
    padding: 0;
    margin: 30px auto;
    color: black;
}

.solutions {
    padding: 100px;
    /* background-color: #27ae60; */
}

section:nth-child(3n + 1) {
    background-color: #e6e6e6;
}

/* Prices */

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1241px;
    height: 500px;
    gap: 40px;
    margin-top: 80px;
}

.price-card {
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: start;
    align-items: start;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #5fa8d3;
    box-shadow: 0px 2px 12px 0px #5fa8d370;
}

.heading {
    text-align: center;
}

.heading h1 {
    font-size: 6vmin;
    font-weight: bold;
}

.heading p {
    color: black;
}

.price-wrapper {
    width: 100%;
    height: 100%;
    /* margin: 40px 0; */
}

.info {
    display: flex;
    /* padding: 0 18px; */
    gap: 18px;
    & p {
        font-size: 18px;
    }
    & b {
        font-size: 18px;
    }
}

.details {
    margin: 15px 0;
}

.details p {
    font-size: 14px;
    color: #000;
    padding: 0;
    margin-bottom: 15px;
}

.details .bold {
    font-size: 30px;
    color: black;
    font-weight: 700;
}

.text {
    margin-bottom: 20px;
}

.text span {
    font-size: 12px;
}

.special {
    font-size: 10px;
}

.details ul {
    transform: translateX(-28px);
    margin-bottom: 15px;
}

.details li {
    list-style: disc;
    font-size: 13px;
    margin: 16px auto;
}

.price-wrapper .ctn {
    display: flex;
    width: 100px;
    background-color: whitesmoke;
    color: #000;
    border: 1px solid #5fa8d3;
    font-weight: bold;
    padding: 12px 20px;
}

.price-wrapper .ctn:hover {
    background-color: #5fa8d3;
    color: whitesmoke;
}

.price-card:nth-child(even) {
    height: 550px;
    background-color: #5fa8d3;
    color: whitesmoke;
    font-weight: bold;
    & p, .bold {
        color: whitesmoke;
    }
    & .ctn {
        background-color: whitesmoke;
        color: #000;
    }
    .ctn:hover {
        color: whitesmoke;
        border-color: whitesmoke;
        background-color: #5fa8d3;
    }
    .price-wrapper {
        margin-top: 55px;
    }
}

/* Footer */

.footer {
    width: 100%;
    min-height: 100px;
    padding: 20px 80px;
    margin: 0px;
    margin-top: 50px;
    background-color: #e6e6e6;
}

.footer-top-section {
    margin-top: 30px;
    margin-bottom: 40px;
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.footer-limbo-logo {
    width: 300px;
}

.footer-product-section {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
}

.footer-product-col {
    margin-right: 120px;
}

.footer-product-section h1 {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.footer-product-section ul {
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.footer-product-section li {
    margin-bottom: 6px;
}

.footer-product-section li a {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

.footer-get-started {
    width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
}

.footer-get-started h1 {
    padding: 0;
    margin: 0;
}

.footer-get-started .ctn {
    width: 100px;
}

.footer-links {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-links li {
    font-size: 12px;
    margin-right: 30px;
}

.footer li a {
    color: #000;
}

.footer li a:hover {
    color: #5fa8d3;
    font-weight: bold;
}

.footer .line {
    width: 100%;
    height: 2px;
    background: #274f66;
    opacity: 0.5;
}

.footer p {
    font-size: 12px;
    padding: 0;
    margin: 0;
    color: black;
}

/* Mobile devices */
@media only screen and (max-width:1250px) {
    .menu-btn {
        display: block;
    }
    .navbar {
        padding: 0;
    }
    .logo, .limbo-logo {
        height: 50px;
        position: absolute;
        top: 25px;
        left: 30px;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background: #274f66;
        margin-top: -1400px;
        transition: all 0.05s ease;
    }
    .mobile-menu {
        margin-top: 0px;
        border-bottom-right-radius: 30%;
        z-index: 1;
    }
    .nav-links li {
        margin: 30px auto;
    }
    .solutions, .documentation {
        margin: 0px;
        padding: 10px 50px;
        width: 100vw;
    }
    .row {
        flex-direction: column;
    }
    .row .col {
        margin: 20px auto;
    }
    .col img {
        max-width: 100%;
    }
    .solutions .col, .documentation .col {
        width: 100%;
    }
    .image-gallery {
        justify-content: center;
        align-items: center;
    }
    .image-gallery img {
        width: 100%;
    }
    .video-gallery {
        width: 640px;
    }
    .docs-top {
        margin-top: 130px;
    }
    .docs-h1 {
        margin-bottom: 30px;
    }
    .docs-intro {
        width: 100%;
        font-size: 10px;
        text-align: justify;
        padding: 0;
        margin: 0;
        margin-bottom: 30px;
    }
    .container {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .price {
        display: inline-block;
    }
    .price-card {
        margin: 0 auto;
        margin-bottom: 80px;
        width: 30%;
        height: 80%;
    }
    .price-wrapper .ctn {
        padding: 20px 20px;
    }
    #ontop-btn {
        bottom: 10px;
        right: 20px;
        font-size: 14px;
        background-color: #5fa8d36e;
    }
    .footer {
        margin: 0;
        padding: 10px;
        width: 100%;
        transform: translateY(1100px);
    }

    .footer-top-section {
        display: none;
    }

    .footer .line {
        margin: 50px 0;
    }

    .footer .limbo-logo {
        display: none;
    }

    .footer .footer-links {
        display: block;
        width: 100%;
    }

    .footer li {
        text-align: center;
        padding: 3px;
    }
    .support {
        margin-top: 10px;
    }
}

@media only screen and (max-height:800px) {
    .signup {
        margin-top: 100px;
    }
    .support {
        margin-top: 120px;
    }
}

@media only screen and (max-height:950px) {
    .support {
        margin-top: 50px;
    }
}

@media only screen and (max-height:860px) {
    .support {
        margin-top: 100px;
    }
}

@media only screen and (max-height:780px) {
    .support {
        margin-top: 130px;
    }
}

@media only screen and (max-height:650px) {
    .signup {
        margin-top: 150px;
    }
}

@media only screen and (max-height:700px) {
    .support {
        margin-top: 180px;
    }
}

@media only screen and (max-width: 550px) {
    .plain-text {
        width: 100%;
    }
    .flash-msg-center-box div {
        width: 280px;
    }
    .flash-msg-center-box p {
        font-size: 11px;
    }
    .video-gallery {
        width: 320px;
    }
}

/* Animations */
.col img {
    transition: transform .3s ease;
}

.col img:hover {
    transform: scale(1.01);
}
