@charset "utf-8";
@import url("lato.css");

* {
	margin: 0; 
	padding: 0; 
	outline: none;
    color: #1a1a1a;
}

html, body {
    height: 100%;
}

body {
	font-family: 'LatoLatinRegular', sans-serif;
    font-variant-ligatures: discretionary-ligatures;
    -moz-font-feature-settings: "dlig";
    -webkit-font-feature-settings: "dlig";
    font-feature-settings: "dlig";
	color: #1a1a1a;
	background-color: #f9f9f9;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    float: left;
    width: 100%;
}

.hider {
    display: none !important;
}
.left {
    float: left;
}
.pointer {
    cursor: pointer;
}
.fade {
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}
.fade:hover {
	opacity: 0.2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=20);
}

.nstec-width {
    max-width: 1072px;
}

.nstec-panel {
    position: relative; 
    width: 100%;
    height: 100%;
    padding-top: 120px;
    background-color: lightseagreen;
}
.nstec-panel .nstec-menus {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    background-color: darkmagenta;
}
.nstec-panel .nstec-board {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: orchid;  
}

.nstec-panel .nstec-board .item-box {
    position: absolute;
    margin-right: 16px;
}
.nstec-panel .nstec-board .item-box img {
    float: left;
    width: 100%;
    height: auto;
}
.nstec-panel .nstec-board .item-box img:hover {
    opacity: 0.5;
}



@media all and (max-width: 540px) {
    
    .nstec-panel .nstec-board {
        margin-top: 24px;
    }
    .nstec-panel .nstec-board .item-box {
        position: relative;
        float: left;
        margin-top: 0 !important;
        margin-left: 5% !important;
        margin-right: 0 !important;
        max-width: none !important;
        width: 90% !important;
        height: auto !important;
        margin-bottom: 16px !important;
    }
    
}