html {
    height: 100%
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    margin-top: 50px;
    font-family: "Verdana", sans-serif;
    line-height: 1.8;
    font-size: 12px;
    height: 100%;
}

.t-center {
  	text-align: center
}

#topnav {
   position: fixed;
   top: 0;
   width: 100%;
   background-color: #0B0B0B;
   overflow: hidden;
   z-index: 1;
   box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16) , 0 3px 10px 0 rgba(0, 0, 0, 0.12) 
}

.toplogo {							
  	float: left;
  	color: #0B0B0B;
  	font-size: 12px;
  	font-weight: bold;
  	padding-top: 10px;
  	padding-left: 10px;
  	padding-bottom: 10px;
}

.mainlogo{
	width:150px;
}

#mainmenu {
    display: none;
    float: right
}

#topnav a.sbicon {
    float: right
}

.mainlink {
    float: left
}

.mainlink a, .sbicon {
    display: block;
    color: #fff;
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 3px solid #0B0B0B
}

.mainlink a:hover, .sbicon:hover {
    border-bottom: 3px solid #fff
}

#sidebar {
    display: none;
    height: 100%;
    width: 200px;
    background-color: #0B0B0B;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
    overflow: auto;
    animation: sbanimate .4s;
    box-shadow: -3px 0 5px 0 rgba(0, 0, 0, 0.16) , 0 2px 10px 0 rgba(0, 0, 0, 0.12) 
}

@keyframes sbanimate {
    from {
        right: -200px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

#sidebar a {
    display: block;
    text-align: left;
    color: #fff;
    padding: 10px;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase
}

#sidebar a:hover {
    text-decoration: underline
}

#sidebar a.active {
    text-decoration: underline
}

.main {
    padding: 16px 32px;
    max-width: 1400px;
    margin: auto
}

footer {
    padding: 12px;
    height: 5%;
    color: #fff;
    background-color: #0B0B0B
}

footer a {
    color: #fff;
    text-decoration: none
}

.fdivrow::after {
    content: "";
    display: table;
    clear: both
}

[class*="maindiv"] {
    float: left;
    margin-right: 3%;
    padding-right: 32px;
    padding-top: 10px;
    width: 100%;
    /*
    color: #fff;
    background-color: #0B0B0B;
    */
}

.bgimg-1 {
    background-image: url('./images/image4.JPG');
    min-height: 40%;
    /*min-height: 100%;*/
}

.bgimg-2 {
    background-image: url('./images/image4.JPG');
    min-height: 15%
}

.bgimg-3 {
    background-image: url('./images/image4.JPG');
    min-height: 15%
}

.bgimg-1, .bgimg-2, .bgimg-3 {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1
}

.ftext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 16px;
    background-color: #0B0B0B;
    font-size: 10px;
    animation: opac .5s;
    opacity: 0.9;
    letter-spacing: 1px 
}

.ftext1 {
    top: 50%;
    left: 30%;
    transform: translate(-15%, -50%);
    font-size: 10px; 
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 0.9
    }
}

.recform {
    width: 100%;
    font-size: 12px;
    box-shadow: 4px -4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: .3s 
}

.reclabelcol {
    float: left;
    width: 100%;
    margin-top: 0
}

.recvaluecol {
    float: left;
    width: 100%;
    padding-bottom: 6px;
    margin-top: 0
}

.label {
    padding-bottom: 2px;
    display: inline-block;
    font-weight: bold
}

.recformrow:after {
    content: "";
    display: table;
    clear: both
}

.avatar {
  vertical-align: middle;
  width: 70px;
  height: 70px;
  border-radius: 10%;
}

@media screen and (min-width:800px ) {
    #mainmenu {
        display: block
    }

    body {
        font-size: 14px 
    }

    .sbicon {
        display: none
    }

    .maindiv20 {
        width: 20%
    }
    
    .maindiv30 {
        width: 30%
    }

    .maindiv25 {
        width: 25%
    }

    .maindiv40 {
        width: 40%
    }
    
    .maindiv45 {
        width: 45%
    }

    .maindiv50 {
        width: 50%
    }

    .maindiv60 {
        width: 60%
    }

    .maindiv100 {
        width: 100%
    }

    .reclabelcol {
        width: 10%;
        margin-top: 6px 
    }

    .recvaluecol {
        width: 90%;
        margin-top: 6px 
    }

    .ftext {
        padding: 24px;
        font-size: 15px;
        letter-spacing: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) 
    }
    
   .bgimg-1 {
    	min-height: 38%;
    	/*min-height: 100%;*/
	}

	.bgimg-2 {
    	min-height: 10%
	}

	.bgimg-3 {
    	min-height: 10%
	}
    
}

@media screen and (min-width:950px ) {
    .recform {
        font-size: 12px 
    }
	 .mainlogo{
		  width:267px;
	 }	
    .ftext1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) 
    }
}

@media only screen and (max-device-width:1366px ) {
    .bgimg-1, .bgimg-2, .bgimg-3 {
        background-attachment: scroll
    }
    .ftext {
        padding: 10px;
        font-size: 12px;
        letter-spacing: 1px 
    }
}

