html, body{
	background: #f8f9fa;
	min-width: 550px;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	position:relative;
}
pre,code{-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}
ol,ul{padding-left:2rem}
ol,ul,dl{margin-top:0;margin-bottom:1rem}
ol ol,ul ul,ol ul,ul ol{margin-bottom:0}
label{
	font-size:.75rem;
	font-weight:700;
	letter-spacing:.02em;
}

.fixed-plugin{
	position: fixed;
    left: 0;
    width: 64px;
    z-index: 1031;
    border-radius: 0 8px 8px 0;
    text-align: center;
    top: 130px;
}
.dressings{ cursor: pointer; transition: all .5s;}
.dressings:hover{ box-shadow: 0 0 1rem rgb(0 0 0 / 60%); }
.bg-default{
	background-image: url(../img/test.jpg);
}
.bg-test{
	background-image: url(../img/test2.jpg);
}
.bg-home-1{
	background-image: url(../img/home.top.png);
}
.bg-home-2{
	background-image: url(../img/bg-mariage.png);
}
.bg-home-3{
	background-image: url(../img/home.3.jpg);
}

.card.contact{
	cursor: pointer;
	transition: all .3s;
}
.card.contact:hover{
	box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.5) !important;
}
.card.contact.active{
	box-shadow: 0 0.5rem 2rem rgba(0,0,150,0.3);
	border: 1px solid rgba(0,0,150,0.3);
}

.card{
	border: none;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
	border-radius: 1rem;
}

.card-header{
	background-color: #fff;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
	border-bottom: none;
	padding: 2rem;
}
.card-profile .card-header {
    height: 9rem;
    background-position: center center;
    background-size: cover;
}
.card-profile-img {
    position: relative;
    max-width: 8rem;
    margin-top: -6rem;
    margin-bottom: 1rem;
    border: 3px solid #fff;
    border-radius: 100%;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    z-index: 2;
}
.card-header:first-child{
	border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0;
}

.card-heading{
	margin-bottom: 0;
    font-size: .9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.card-widget{
	display: flex;
	align-items: center;
	padding: 1.5rem;
	border-radius: 50rem;
	background: #fff;
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
	justify-content: space-between;
}

.card-widget-body{
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.card-footer {
    padding: 1rem 2rem;
    background-color: rgba(0,0,0,0.03);
    border-top: 1px solid rgba(0,0,0,0);
}
.card-footer:last-child {
    border-radius: 0 0 calc(1rem - 1px) calc(1rem - 1px);
}

footer.page-footer{
	bottom:0;
	color: #fff;
	box-shadow: inset 0px 11px 8px -10px #000;
}

/* bg social network */
.pinterest, .youtube, .linkedin, .twitter, .facebook, .instagram{
	transition: all .5s;
}
.instagram:hover {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.facebook:hover {
  background: #3b5998;
}
.twitter:hover {
  background: #00acee;
}
.linkedin:hover {
  background: #0e76a8;
}
.youtube:hover {
  background: #c4302b;
}
.pinterest:hover {
  background: #c8232c;
}
.pinterest:hover, .youtube:hover, .linkedin:hover, .twitter:hover, .facebook:hover, .instagram:hover{
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  margin-top: -1rem;
}

.recenter{
	transition: all 2s;
	opacity: 0;
}
.move-bg{animation: move-bg 150s ease-in-out infinite;}
@keyframes move-bg {
   0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: -100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}