* {
	margin: 0;
	padding: 0;
}
#logo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	background-size: cover;
}
.screen {
	position: relative;
}
.section1 {
	background-size:100% 100%;
	background-position: center top;
	background-attachment: fixed;
	color: #fff;
}
#girl{
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	background-size: cover;
}
h2::before{
	content:"";
	display: block;
	height: 5px;
	width: 100px;
	position: absolute;
	margin-top: 50px;
}
.section1 h2::before{
	background: #fff;
}
.section2 h2::before{
	background: #00caff;
}
.section3 h2::before, .section7 h2::before{
	background: #9651f1;
}
.section3 h2, .section7 h2{
	color: #333;
}
h2 {
	font-size: 36px;
	text-transform: uppercase;
	line-height: 1.4;
	margin-bottom: 16px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}
body, p, .name, .email, .mesaj {
	font-size: 16px;
	line-height: 1.4;
	font-family: 'Roboto', sans-serif;
}
.section1 .caption,.section3 .caption{
	position:relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 40%;
	padding-left: 3%;
}
.section2 .caption{
	position:absolute;
	transform: translateY(50%);
	-webkit-transform: translateY(50%);
	padding: 60px;
	background: rgba(67,6,148,0.7);
	  text-align: center;
	  color:#fff;
	  bottom: 0;
	  left:0;
	  right: 0;
	  margin: auto;
	  width: 50%;
	  z-index: 999;
}
.section2 h2:before {
  left:0;
  right: 0;
  margin: 50px auto auto;
}
ul li{
	list-style: none;
}
.btn.hvr-rectangle-out,
.caption .btn,
.btn.save-request3 {
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	font-size: 18px;
	font-family: 'Roboto', sans-serif;
	padding: 18px 66px;
	background: #fff;
	border-radius: 33px;
	margin-top: 36px;
	font-weight: bold;
}
.section3 .btn{
 	background-clip: padding-box;
    position: relative;
	background-size: 400% 400%;
}
.section7 .btn{
	background: #9651f1;
	border-color: #9651f1;
	color: #fff;
	border: none;
	margin: 0;
}
.section3 .btn::after{
	position: absolute;
    top: -4px; bottom: -4px;
    left: -4px; right: -4px;
    content: '';
    z-index: -1;
    border-radius: 35px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4a72ee+0,9651f1+100 */
	background: #4a72ee; /* Old browsers */
	background: -moz-linear-gradient(left, #4a72ee 0%, #9651f1 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #4a72ee 0%,#9651f1 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #4a72ee 0%,#9651f1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a72ee', endColorstr='#9651f1',GradientType=1 ); /* IE6-9 */

}
.section3 .btn:hover,.products{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4a72ee+0,9651f1+100 */
	background: #4a72ee; /* Old browsers */
	background: -moz-linear-gradient(left, #4a72ee 0%, #9651f1 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #4a72ee 0%,#9651f1 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #4a72ee 0%,#9651f1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a72ee', endColorstr='#9651f1',GradientType=1 ); /* IE6-9 */
}

.section4 {
	background: #fff;
}
.products .item{
	width: 25%;
	position: relative;
	overflow: hidden;
	float: left;
}
.products .item img{
	display: block;
	max-width: 100%;
	height: auto;
	z-index: 0;
	position: relative;
}
.cleafix{
	clear: both;
}
.products .caption {
	position: absolute;
	z-index: 1;
	bottom: 5%;
	left: 5%;
	font-weight: bold;
	font-style: italic;
	font-size: 18px;
	color: #fff;
	border-bottom: 5px solid #fff;
}
.products .item span {
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	opacity: 0;
}
.products .item:hover span{
	color:#9651f1;
	border-bottom: 5px solid #9651f1;
	opacity: 1;
}
.products .item{
	-webkit-animation: opac 6s ease infinite;
	-moz-animation: opac 6s ease infinite;
	animation: opac 6s ease infinite;
}
.products .item:nth-child(2),.products .item:nth-child(5){
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.products .item:nth-child(3),.products .item:nth-child(6){
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.products .item:nth-child(4),.products .item:nth-child(7){
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
@-webkit-keyframes opac {
    0%{opacity: 0.1;}
    50%{opacity: 0.3;}
    100%{opacity: 0.1;}
}
@-moz-keyframes opac {
    0%{opacity: 0.1;}
    50%{opacity: 0.3;}
    100%{opacity: 0.1;}
}
@keyframes opac {
    0%{opacity: 0.1;}
    50%{opacity: 0.3;}
    100%{opacity: 0.1;}
}
.products .item:hover{
	-webkit-animation: opaci 2s ease ;
	-moz-animation: opaci 2s ease ;
	animation: opaci 2s ease;
}
.products .item img {transition-duration: 1s;-webkit-transition-duration: 1s;}
.products .item:hover img{
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	}
@-webkit-keyframes opaci {
    0%{opacity: 0.3;}
    50%{opacity: 1;}
}
@-moz-keyframes opaci {
    0%{opacity: 0.3;}
    50%{opacity: 1;}
}
@keyframes opaci {
    0%{opacity: 0.3;}
    50%{opacity: 1;}
}
.img-container .arrow {
	position: absolute;
	top: 50%;
	left: 36%;
	display: block;
	height: auto;
	width: 300px;
}
.img-container .bg5{
	width: 100%;
	height: auto;
	display: block;
}
.img-container{
	position: relative;
}
.ct-left,.ct-right {
	width: 50%;
	float: left;
}
.name, .email{
	width: calc(48% - 36px);
	width: -webkit-calc(48% - 36px);
	float: left;
}
.name{margin-right: 3%;}
.mesaj {
	width: calc(99% - 36px);
	width: -webkit-calc(99% - 36px);
	margin: 3% 0;
}
.name, .email, .mesaj{
	border: 1px solid #ddd;
	background: #f2f2f2;
	font-style: italic;
	padding: 18px;
}
.name:focus, .email:focus, .mesaj:focus{
	border-color: #4a72ee;
	background: #4a72ee;
	box-shadow: rgba(0,186,255,0.5) !important;
	color: #fff;
}
.name:hover, .email:hover, .mesaj:hover{
	cursor: url(ic-pen.svg), auto;
}
.section7 {
	padding: 4% 3%;
}

.name:focus::-webkit-input-placeholder,
.email:focus::-webkit-input-placeholder,
.mesaj:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.name:focus::-moz-placeholder,
.email:focus::-moz-placeholder,
.mesaj:focus::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.name:focus:-ms-input-placeholder,
.email:focus:-ms-input-placeholder,
.mesaj:focus:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.name:focus:-moz-placeholder,
.email:focus:-moz-placeholder,
.mesaj:focus:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.contact-data a{position: relative;padding-left: 20px;}
.contact-data a,.contact-data a:hover{
	text-decoration: none;
}
.ct-phone::before {background: url(ic-phone.svg) no-repeat;}
.ct-mail::before {background: url(ic-mail.svg) no-repeat;}
.ct-phone::before,.ct-mail::before {
	content:"";
	display: block;
	height: 12px;
	width: 12px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.social-media li {
	display: inline-block;
	margin: 15px;
}

.social-media li:first-child {
	margin-left: 0;
}




/* Rectangle Out */
.hvr-rectangle-out {
	color: #9651f1;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
.hvr-rectangle-out:before{
	background: #00caff;
	z-index: -2;

}
.hvr-rectangle-out:after{
	background: #9651f1;
	z-index: -1;

}
.hvr-rectangle-out:before,.hvr-rectangle-out:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 50px;
  opacity:0;
}
.hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
   -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  opacity: 1;

}
.hvr-rectangle-out:hover:after {
-webkit-transform: scale(1);
  transform: scale(1);
   -webkit-transition-timing-function: cubic-bezier(1.64, 0.52, 0.37, 0.66);
  transition-timing-function: cubic-bezier(1.64, 0.52, 0.37, 0.66);
  opacity: 1;
  animation: pulse 4s infinite;
}
@keyframes pulse{
	0%{box-shadow: inset 0 0 0 5px rgba(0,202,255,1), 0 0 0 0 rgba(0,202,255,0.5);}
	50%{box-shadow: inset 0 0 0 5px rgba(0,202,255,1), 0 0 20px 10px rgba(0,202,255,0.5);}
	100%{box-shadow: inset 0 0 0 5px rgba(0,202,255,1), 0 0 0 0 rgba(0,202,255,0.5);;}
}
/*end Rectangle out*/

.rotative-img{
	display: block;
	margin: 0 auto auto;
	width: 70%;
	height: auto;
}
.inner360{
	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto
}
.inner360 img{
	width: 100%;
}
