:root {
	--c1: #010e3d;
	--c2: #0d52a0;
}

body {

}

a {
	text-decoration: none;
}



/*navMain*/
.navMain .nav-item .nav-link {
	color: #fff;
}

/*intro2*/
.intro2 {
	background-image: linear-gradient(to right, #82dce4, #1d4aa7);
}

/*cate*/
.cate figure {
	transition: box-shadow 0.3s;
}
.cate figure:hover {

	box-shadow: 0 .5rem 1rem rgba(0,0,0, .15)!important;
}

/*project*/
.project figure {
	position: relative;
}
.project figcaption {
	position: absolute;
	width: 100%;
	bottom: 0px;
	left: 0px;
	background-color: rgba(255, 255, 255, .75);
	
}
.project .mask {
	position: relative;
	overflow: hidden;
}
.project .mask img {
	transition: all 0.3s;
}
.project .mask:hover img {
	transform: scale(1.2);
}

.contact {
	background-image: url('../images/data/bg-form.jpg');
	background-size: cover;
	min-height: 200px;
}



/*public*/
.text-c1 {
	color: var(--c1);
}
.text-c2 {
	color: var(--c2);
}

.bg-c1 {
	background-color: var(--c1);
}
.bg-c2 {
	background-color: var(--c2);
}


/*go-top*/
.go-top {
	border:1px solid #ccc;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background-color: rgba(150,150,150,0.75);
	position: fixed;
	text-align: center;
	line-height: 30px;
	right:20px;
	transform: translateY(-50%);
	top: 50%;
	transition: background-color 0.3s, color 0.3s;
	cursor:pointer;
	display: none;
}
.go-top:hover {
	color:#eee;
	background-color: rgba(120,120,120,0.55);
}

@media (min-width: 576px) {

}
@media (min-width: 768px) {
	.navMain .navbar-nav .nav-item:hover .dropdown-menu {
		visibility: visible;
		top:100%;
	}
	.navMain .navbar-nav .dropdown-menu {
		transition: top 0.3s;
		margin-top: 0px;
		display: block;
		top:130%;
		visibility: hidden;
	}
}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}
@media (min-width: 1400px) {

}

@media (max-width: 575px) {

}