﻿

#bgvid {
    min-width: 100%;
    min-height: 100%;
    filter: grayscale(1) blur(3px) brightness(0.2);
    z-index: 0;
    position: fixed;
    top: calc(var(--topbar-height) + 3px);
}

.home-page-content {
    position: absolute;
    width: 100%;
    z-index: 2;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    overflow-y: auto;
}



/* top header */

.home-page-content-call {
    width: 100%;
    height: calc(80vh - (var(--topbar-height) * 2));
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    
}


.home-page-content-call-label {
    width:100%;
    text-align:center;
    justify-content:center;
    font-size:56px;
    padding:0px;
}


.home-page-content-call-description {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px;
}

.home-page-content-call-buttons {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px;
}

    .home-page-content-call-buttons a, .home-page-content-bottom-call a {
        cursor: pointer;
        font-weight: 600;
        font-size: 18px;
        padding: 6px;
        padding-right: 12px;
        padding-left: 12px;
        border-radius: 6px;
        border: 1px solid var(--transparency);
        background-color: #111;
        min-width: 160px;
        margin-left: 6px;
        margin-right: 6px;
        text-decoration: none;
    }

    .home-page-content-call-buttons a.highlight, .home-page-content-bottom-call a.highlight {
        border: 1px solid transparent;
        background-color: #fff;
        min-width: 160px;
        color: #000;
    }

    .home-page-content-call-buttons a:hover, .home-page-content-bottom-call a:hover {
        background-color: var(--transparency);
    }

        .home-page-content-call-buttons a.highlight:hover, .home-page-content-bottom-call a.highlight:hover {
            background-color: #ddd;
        }

.home-page-content-call-links {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 6px;
    font-size: 12px;
}

.home-page-content-call-links a {
    text-decoration:none;
    font-weight:600;
}


    .home-page-content-call-links a:hover {
        text-decoration: underline;
    }


.home-page-content-features-tittle {    
    font-size:24px;
    padding-bottom:20px;
    text-align:center;
}

.home-page-content-features-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10%;
    padding-left: 10%;
}
.home-page-content-features {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    max-width: 1020px;
    padding-bottom: 20px;
    
}


.home-feature-card {
    width: 100%;
    min-width:250px;
    background-color:var(--transparency-smaller);
    border: 1px solid var(--transparency);
    border-radius:6px;
    min-height:140px;
    padding:10px;
    position:relative;
    
    
}

.home-feature-card-header {
    align-items:center;
    display:flex;
    padding-bottom:10px;
}
.home-feature-card-header i {
    font-size:28px;
    /*position:absolute;
    right:10px;
    z-index:0;    
    top:10px;*/
    padding-right:10px;
}

.home-feature-card-header span {
    font-size: 20px;
}

.home-feature-card-body {
    color:gray;
}

.home-page-content-bottom-call {
    background-color: var(--body-background);
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: fit-content;
    min-height: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: var(--border);
    margin-top: 50px;
}

.home-page-content-bottom-call .tittle {
    font-size:24px;
    font-weight:bold;
    color:dodgerblue;
}