html {
  color: #444;
	box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
	background: url(/img/back.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
*, *:before, *:after { 
	box-sizing: inherit; 
	
}

body{
  margin: 0px;
  padding: 0px;
}

.profile{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.profile .front {
	height: inherit;
  position: relative;
  top: 0px;
  transform: translate(-50%, -50%);
	z-index: 900;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	   -moz-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
    /* Box Style Front*/
    background-color: #fff;
    width: 260px;
	padding-bottom: 100px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.4);
}
.profile .front:hover{
  box-shadow: 0px 5px 25px rgba(0,0,0,0.8);
}

.profile .back {
	height: inherit;
  position: absolute;
  top: 0px;
	z-index: 1000;
	-webkit-transform: rotateY(-180deg);
	   -moz-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	   -moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
    /* Box Style Back*/
    background-color: #8C9EFF;
    width: 260px;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.4);
}
.profile .back:hover{
  box-shadow: 0px 5px 25px rgba(0,0,0,0.8);
}
.profile.flip .front {
	z-index: 900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.profile.flip .back {
	z-index: 1000;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
}

/*  Front Style
----------------------*/
.profile_banner{
  width: 100%;
  height: auto;
  padding: 60px 0px;
  background-color: #007eff;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: -50px;
}
.profile_photo{
  width: 100px;
  height: 100px;
  background-color: #eee;
  margin: 0px auto;
  border-radius: 100%;
}

.profile_photo img{ width: 100%; border-radius: 100%; opacity: 0.9;}

.profile_name{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
}
.profile_des{
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin-top: 05px;
  color: #9e9e9e;
}

.btn{
  display: block;
  width: 90px;
  text-align: center;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #dd3636;
  color: #fff;
  text-decoration: none; 
  margin:0 auto;
  border-radius: 50px;
  margin-top: 20px;
}

.profile_social{
  width: 100%;
  margin: 0px auto;
  border-top: 1px solid #eee;
  background-color: #fafafa;
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  bottom: 0px;
}

.profile_link{
  width: 85%;
  list-style: none;
  margin: 0px auto;
  padding: 0px;
}
.profile_link li{
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
}

.profile_link li a{
  color: #999;abb6c5
}
.profile_link li a:hover{
  color: #abb6c5;
}

/*  Form
----------------------*/
.contact{
  padding: 60px 20px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact input, .contact textarea{
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 20px;
  border: 0px;
  border-radius: 3px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
  margin-top: 10px;
  background-color: #fff;
}

.submit{
  padding: 10px 20px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

/*  Thankyou
----------------------*/
.thankyou{
  width: 100%;
  padding: 0px 20px;
  display: none;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thankyou_title{
  text-align: center;
  color: #fff;
  text-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

.link{
  display: block;
  text-align: center;
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
}
