body{
    background-color: #060f29;
    color: white;
    scroll-margin-top: 200px;
}
.main_area{
    
    background-color: #e9e8e8;
    color: black;
    
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: masonry;
    /* grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); */
    grid-gap: 1em;
    
    border-top: 2px solid rgb(255, 208, 8);

    transition: scale 0.1s;
}

@media only screen and (min-width: 900px){
    .main_area {
        border-radius: 10px;
        padding: 30px;    
        grid-template-columns: repeat(auto-fit,minmax(420px,1fr));
        /* grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); */
        grid-gap: 3em;
    }

}

.menu_separator {
    margin-top:1rem;
    margin-bottom:0rem;
    background-color: #FFD008;
    width: 100%;
    height: 3px;
}

a{
    color:#caab57;
    font-weight: 600;
    text-shadow: 0 0 1px #caab57, 0 0 5px #ffffff;
}

.a_style{
    color:#caab57;
    font-weight: 600;
    text-shadow: 0 0 1px #caab57, 0 0 5px #ffffff;
}
.a_style:hover{
    color:#caab57;
    font-weight: 600;
    text-shadow: 0 0 1px #caab57, 0 0 5px #ffffff;
}

li{
    padding:2px
}

.heading_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    padding: 5px;
}

.service_items {
    display: flex;
    justify-content: space-around;
}
.service_item{
    color:black;
    font-size: 0.9rem;
}
.service_item > img{
    height: 2.5rem;
    /*width: 5rem;*/
}
.service_item > span{
    display:block;
}

.center-text{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media only screen and (min-width: 900px){
    .heading_logo {
        width:80%;
        max-width: 600px;
        padding: 20px;
    }
    .col-full {
        grid-column-end: span 2;
        
    }
    .service_item{
        font-size: 1rem;
    }
    .service_item > img{
        height: 3rem;
        /*width: 5rem;*/
    }
    
    
}
@media only screen and (max-width: 900px){
 
    
    #rov_system_mail_link {
        display:none;
    }
    #rov_system_mail_link_reset{
        display:none;
    }
}


.fade-inn{
    transition: opacity 2s ease-in;
    animation: fadein 2s;

}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.scale-inn{
    transition: scale 1s ease-in;
    animation: scalein 1s;

}

@keyframes scalein {
    from { scale: 0; }
    to   { scale: 1; }
}


.level2 {
    margin-left: 10px;
}
.level2::marker {
    /* content: '✝ '; */
    content: '- ';
    font-size: 1.2em;
}

.level1_text{
    margin-left: 0px;
}
.level1_text::marker {
    /* content: '✝ '; */
    content: '';
    font-size: 1.2em;
}



h5{
    margin-top: 5px;
}

#load{
    text-align: center;
    color: gray;
}
.author{
    text-align: center;
    color: gray;
}

.panel{
    width: 100%;
    display: block;
    max-width: 900px;
    background-color: #fafafa;
    /* border-color: #dddddd;*/
    border-color: #cbcbcb;
    
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: 0px 2px 6px 1px rgb(199 199 199);
    -moz-box-shadow: 0px 2px 6px 1px rgba(199,199,199,1);
    box-shadow: 0px 2px 6px 1px rgb(199 199 199);
}


.col-full {
    /* grid-column-end: span 2; */
    max-width: 100%;
}