@import url(https://fonts.googleapis.com/css?family=Poiret+One|Roboto|Tangerine|Didact+Gothic:400,500,700);

.vertical-align {
    display: flex;
    align-items: center;
}
.surMesure{
		font-family:'Poiret One';
		font-size: 130%;
}
.close{
	font-family:'Roboto';
	width:10%;
	font-size: 40px;
}
.table{
	font-family:'Roboto';
}
.services {
	margin: 10px 0;
}

.checkbox-inline, .checkbox {
   font-family:'Poiret One';
		font-size: 70%;
}
.cadCol{
	font-family:'Poiret One';
	font-size: 90%;
    border: 1px solid rgba(102,102,102,1);
}
.breadcrumb{
	font-family:'Poiret One';
		font-size: 110%;
	
}
.service {
	width: 100%;
	height: 420px;
	margin: 10px 0;
	text-align: center;
	border: 1px solid #ddd;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor:pointer;
}
.servicebox {
	width: 100%;
	height: 420px;
	margin: 10px 0;
	text-align: center;
	border: 1px solid #ddd;
	cursor:pointer;
}


.service .icon-holder {
	position: relative;
	top: 20px;
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px;
	background: white;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service .heading {
	font-family:'Poiret One', cursive;
	position: relative;
	/*top: 40px;*/
	-webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service .icon-holder > img.icon {
	width: 200px;
}

.service:hover {
	border-color: #54b7e8;
}

.service:hover .icon-holder {
	top: -50px;
	-webkit-transform: scale(.5);
	-ms-transform: scale(.5);
	transform: scale(.5);

}

.service:hover .heading {
	top: -120px;
}

.service .description {
	/*font-family:'Poiret One', cursive;*/
	font-family:'Didact Gothic', cursive;
	width: 80%;
	margin: 0 auto;
	opacity: 0;
	-webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.service:hover .description {
	top: -120px;
	opacity: 1;
	-webkit-transform: scale(2);
	-ms-transform: scale(1);
	transform: scale(1);
	-ms-transform: translateY(-100px); /* IE 9 */
    -webkit-transform: translateY(-100px); /* Safari */
    transform: translateY(-100px);
}

.titleModal {
	font-family:'Roboto', serif;
	-webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.titleModele {
	font-family:'Poiret One', cursive;
	-webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	font-size: 130%;
}
.title{
	font-family:'Poiret One', cursive;
	font-size: 110%;
}
.titleh4{
	font-family:'Poiret One', cursive;
}
.stitle{
	font-family:'Poiret One', cursive;
	width: 80%;
	font-size: 90%;
}
.ref{
	font-family:'Poiret One', cursive;
	width: 80%;
	font-size: 80%;
}
.modal-popup {
	position: relative;
	/*padding: 45px 30px;*/
	text-align: center;
	/*box-shadow: 1px 1px 2px black;
	border-radius: 20px;*/
}


.popup-form {
	width: 90%;
	max-width: 375px;
	/*margin: 60px auto;*/
	margin:20px auto;

}

.popup-form .form-control {
	margin: 20px 0;
}

.popup-form .form-control.dropdown {
	text-align: left;
}

.popup-form .form-control.dropdown:after {
	content: '\f0d7';
	font-family: 'FontAwesome';
	display: inline-block;
	float: right;
	color: white;
}

.popup-form .dropdown .dropdown-menu {
	top: 65px;
	width: 100%;
	padding: 0;
	border: 2px solid white;
	border-top: 0;
	border-radius: 0;
	background: white;
	box-shadow: none;
}

.popup-form .dropdown .dropdown-menu li {
	font-size: 16px;
	width: 100%;
	background: transparent;
}

.popup-form .dropdown .dropdown-menu li a {
	width: 100%;
	padding: 15px 30px;
	color: #00a8ff;
}

.popup-form .dropdown .dropdown-menu li:hover a {
	color: #fff;
	background: #00a8ff;
}

/* Checkbox */

.checkbox-holder {
	white-space: nowrap;
}

.checkbox {
	position: relative;
	display: block;
}

.checkbox {
	position: relative;
}

.checkbox label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
	border: 2px solid white;
	background: transparent;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.checkbox input[type=checkbox]:focus + label:before {
	background: rgba(255,255,255,0.2);
}

.checkbox label:after {
	content: '';
	position: absolute;
	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	opacity: 0;
	background: white;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.checkbox input[type=checkbox] {
	opacity: 0;
	position: absolute;
	width: 0;
	height: 0;
}

.checkbox input[type=checkbox]:checked + label:after {
	opacity: 1;
}

.checkbox-holder span {
	position: relative;
	display: inline-block;
	margin: 0 0 0 10px;
	white-space: normal;
	color: #fff;
}
button {
  font-family:'Poiret One', cursive;
  width: 80%;
 padding:10px 10px 14px 14px
	
}
.btn.btn-submit {
	width: 100%;
	margin-top: 30px;
	color: #00a8ff;
	border: 2px solid #fff;
	background: #fff;
}

.btn.btn-submit:focus {
	font-weight: bold;
}

.btn.btn-submit:hover {
	color: #00a8ff;
	background: #fff;
}
.colorRow{
	padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 481px) and (max-width: 767px) {
	.services {
		margin: 0px 0;
	}
	.container{
		padding-right: 0px;
		padding-left: 0px;
	}
	.serviceSM {
			width: 100%;
			/*height: 420px;*/
			margin: 1px 0;
			text-align: center;
			border: 0px solid #ddd;
			cursor:pointer;
	}
	.serviceSM .heading {
		font-family:'Poiret One', cursive;
	
	}



}
@media (max-width: 480px){
	.services {
		margin: 0px 0;
	}
    .container{
		padding-right: 0px;
		padding-left: 0px;
	}
	.serviceSM {
			width: 100%;
			/*height: 420px;*/
			margin: 1px 0;
			text-align: center;
			border: 0px solid #ddd;
			cursor:pointer;
	}
	.serviceSM .heading {
		font-family:'Poiret One', cursive;
	
	}

}

