/*******************************************************
</ \>				<=/ Popup \=>
********************************************************/
.popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	opacity: 0;
	z-index: 99999;
	visibility: hidden;
	-webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	-moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
	transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.popup-container {
	position: absolute;
	width: 820px;
	height: 449px;
	background: url('../img/popup-bg.jpg') no-repeat center center;
	background-size: cover;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	border-radius: .25em .25em .4em .4em;
	text-align: left;
	padding: 30px 0 0 0;
	/*box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);*/
	/* Force Hardware Acceleration in WebKit */
	-webkit-backface-visibility: hidden;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-moz-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.popup-logo {
	display: block;
	text-align: center;
}
.popup-logo img {
	display: inline-block;
}

.popup-container .top-text {
	margin-left: 72px;
	width: 490px;
	font-size: 22px;
	font-style: italic;
	color: #fff;
	font-weight: 300;
	margin-bottom: 45px;
}

.popup-container .top-text span {
	font-weight: 400;
}

.popup-container .contact-line {
	width: 830px;
	left: -10px;
	height: 131px;
	position: relative;
}

.contact-line .pink-side {
	background: linear-gradient(to top, #ce4034 0%, #e1594c 100%), linear-gradient(to right, rgba(219, 70, 57, 0) 0%, #d34639 100%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	width: 60%;
	float: left;
	height: 100%;
}

.popup-container .contact-line a {
	font-weight: 700;
	font-size: 48px;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	display: block;
	line-height: 56px;
	margin: 35px;
	transition: all ease-in-out .3s;
}

.pink-side a:hover {
	transition: all ease-in-out .3s;
	transform: scale(1.1);
	text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.contact-line .blue-side {
	background-image: linear-gradient(to right, rgba(36,122,191,.8) 0%, rgba(18,79,130,.8) 100%);
	width: 40%;
	float: left;
	height: 100%;
	position: relative;
}

.contact-line .blue-side img {
	position: absolute;
  right: 20px;
  bottom: 60%;
}

.blue-side .call-text {
	background-color: #247abf;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
	margin: 30px 0 0 30px;
	position: relative;
	padding: 30px 0 30px 30px;
	width: 292px;
}

.call-text p {
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	margin-bottom: 0;
	font-style: italic;
	line-height: 32px;
}

.call-text p span {
	font-weight: 700;
}


.popup-control {
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	z-index: 99;
}
.popup-control .circle {
	width: 40px;
	height: 40px;
	background: transparent;
	border: 4px solid #fff;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	display: inline-block;
	margin: 10px;
}
.popup-control .circle:focus {
	outline: 0;
}
.popup-control .circle:after {
	width: 24px;
	height: 4px;
	background-color: #fff;
	content: "";
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -2px;
	position: absolute;
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	/*@include transform-origin(100%,100%);*/
}
.popup-control .circle:before {
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -2px;
	width: 24px;
	height: 4px;
	background-color: #fff;
	content: "";
	position: absolute;
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	/*@include transform-origin(0%,0%);*/
}
.popup-control .circle + p {
	text-transform: lowercase;
	font-size: 14px;
	margin-bottom: 10px;
}
.popup-control .circle[data-animation="showShadow"] {
-moz-box-shadow: 0px 0px 0px 0px #fff inset;
-webkit-box-shadow: 0px 0px 0px 0px #fff inset;
box-shadow: 0px 0px 0px 0px #fff inset;
-moz-transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
-o-transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
-webkit-transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
border: 0px solid white;
}
.popup-control .circle[data-animation="showShadow"]:before, .popup-control .circle[data-animation="showShadow"]:after {
-moz-transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
-o-transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
-webkit-transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
transition: cubic-bezier(0.175, 0.885, 0.52, 1.775) 200ms;
}
.popup-control .circle[data-animation="showShadow"]:not(.showShadow):hover {
-moz-box-shadow: 0px 0px 0px 3px #fff inset;
-webkit-box-shadow: 0px 0px 0px 3px #fff inset;
box-shadow: 0px 0px 0px 3px #fff inset;
}
.popup-control .circle[data-animation="showShadow"]:not(.showShadow):hover:before {
-moz-transform: scale(0.7) rotate(45deg);
-ms-transform: scale(0.7) rotate(45deg);
-webkit-transform: scale(0.7) rotate(45deg);
transform: scale(0.7) rotate(45deg);
-moz-transition-delay: 100ms;
-o-transition-delay: 100ms;
-webkit-transition-delay: 100ms;
transition-delay: 100ms;
}
.popup-control .circle[data-animation="showShadow"]:not(.showShadow):hover:after {
-moz-transform: scale(0.7) rotate(-45deg);
-ms-transform: scale(0.7) rotate(-45deg);
-webkit-transform: scale(0.7) rotate(-45deg);
transform: scale(0.7) rotate(-45deg);
-moz-transition-delay: 100ms;
-o-transition-delay: 100ms;
-webkit-transition-delay: 100ms;
transition-delay: 100ms;
}
.popup-control .circle.showShadow {
-moz-transition: ease-out 300ms;
-o-transition: ease-out 300ms;
-webkit-transition: ease-out 300ms;
transition: ease-out 300ms;
-moz-transform: scale(0);
-ms-transform: scale(0);
-webkit-transform: scale(0);
transform: scale(0);
opacity: 0;
}

.popup-small {
	height: 160px;
	width: 160px;
	background: transparent;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	bottom: 20px;
	cursor: pointer;
	z-index: 99;
	border-radius: .25em .25em .4em .4em;
	/*box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);*/
	-moz-transform: translateX(-200px);
	-ms-transform: translateX(-200px);
	-webkit-transform: translateX(-200px);
	transform: translateX(-200px);
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.popup-small-container {
	height: 160px;
}

.popup.is-visible, .popup-small.is-visible {
	opacity: 1;
	visibility: visible;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.popup.is-visible .popup-container, .popup-small.is-visible .popup-container {
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.popup-small.is-visible {
	opacity: 1;
	visibility: visible;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

@media screen and (max-width:768px){
	.popup-container{
		width: 92%;
		margin: auto;
		padding: 15px 0 0 0;
	}
	.popup-control .circle{
		margin: -30px 10px;
	}
	.popup-container .top-text {
    font-size: 20px;
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
	}
	.popup-container .top-text b {
		font-size: 28px;
	}

	.popup-container .contact-line {
		display: block;
    width: 100%;
    float: none;
		position: initial;
	}

	.contact-line .pink-side {
		display: block;
		float: none;
		width: 100%;
		height: auto;
	}

	.popup-container .contact-line a {
		margin: 0;
		padding: 20px 10px;
	}

	.contact-line .blue-side {
		display: block;
		float: none;
		width: 100%;
		height: auto;
	}

	.blue-side .call-text {
		width: 295px;
		padding: 30px 0 30px 20px;
	}

	.contact-line .blue-side img {
		display: none;
	}

	.popup-control {
	    right: 0px;
	    top: 10px;
	    width: 50px;
	}
}
