

/*===== MAIN SETTINGS ====*/
/*================================================================================*/
body {
	font-family: 'Open Sans', sans-serif;
	font-size : 13px;
	color: #383838;
	background-attachment: fixed;
	background-size: cover;
	margin: 0;
	overflow-x: hidden;
	background-color: #f7f7f7;
}





::selection {
    background: #dedede;
}

.clear{clear:both;}

/*===== HEADER ====*/
/*================================================================================*/
.ha-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	z-index: 50;
	font-family: 'Lato', Arial, sans-serif;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.ha-header-perspective {
	width: 100%;
	max-width:1100px;
	height: 100%;
	padding:0 10px;
	margin:0 auto;
	position: relative;
	-webkit-perspective: 1100px;
	-moz-perspective: 1100px;
	perspective: 1100px;
	-webkit-perspective-origin: 50% 0;
	-moz-perspective-origin: 50% 0;
	perspective-origin: 50% 0;
}

.scroll-effect a{
	text-decoration:none;
}

.ha-header-perspective > div::after {
    content: '';
    display: inline-block;
    width: 100%;
}

.ha-header-small .logo img{
	width:100%;
}

.ha-header h1 {
	font-weight: 100;
	font-size: 3.2em;
	margin: 0;
	padding: 0 1em 0 0;
	color: #2d383f;
	cursor: default;
	height: 100%;
	z-index: 1;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.ha-header h1::before,
.ha-header nav::before {
	content: '';
	height: 100%;
}
/*===== Changing header with scroll ====*/
/*===== First, Large header ====*/
.ha-header-large {
	width:100%;
	height:48px;
	padding:10px 0;
	background:white;
	border-top:	4px solid #ff6899;
	border-bottom:1px solid #eeeeee;
	position:fixed;
	opacity:1;
}
.logo {
	width:115px;
	height:100%;
	cursor:pointer;
	display:block;
	background:none;
	float:left;
	margin-top:11px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.logo a img{
	width:115px;
}

/*===== end First, Large header ====*/
/*===== Second, Small header ====*/
.ha-header-small {
	width:100%;
	height:47px;
	padding:0;
	background:white;
	border-bottom:2px solid #ff6899;
	position:fixed;
	z-index:30;
}
.ha-header-small .logo {
	width:90px;
	cursor:pointer;
	display:block;
	background:none;
	position:relative;
	float:left;
	top:3px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

/*===== Navigation ====*/
.navigation{
	width:auto;
	height:100%;
	margin:0;
	padding:0;
	float:right;
	right:0;
	display:block;
}

.navigation a {
	position: relative;
	display: inline-block;
	margin: 18px 0px;
	outline: none;
	cursor:pointer;
	color:black;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 100;
	font-size: 11px;
}

.navigation a:hover,
.navigation a:focus {
	outline: none;
	color:#d9366b;
}

.navigation a::before,
.navigation a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}

.navigation a::before {
	margin-right: 10px;
	color:#d9366b;
	content: '|';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px);
}

.navigation a::after {
	margin-left: 10px;
	color:#d9366b;
	content: '|';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
}

.navigation a:hover::before,
.navigation a:hover::after,
.navigation a:focus::before,
.navigation a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

.active{
	color:#d9366b !important;
}

/*===== DL Menu, for mobile devices ====*/
/*================================================================================*/
.dl-menuwrapper {
	width: 100%;
	max-width: 260px;
	float: right;
	position: relative;
	right:20px;
	top:24px;
	display:none;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	-moz-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}

.dl-menuwrapper:first-child {
	margin-right: 100px;
}

.dl-menuwrapper button {
	background: #ccc;
	border: none;
	width: 35px;
	height: 32px;
	float:right;
	top:-15px;
	text-indent: -900em;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
}

.dl-menuwrapper button:hover,
.dl-menuwrapper button.dl-active{
	background: #d9366b;
}

.dl-menuwrapper button:after {
	content: '';
	position: absolute;
	width: 45%;
	height: 2px;
	background: #fff;
	top: 10px;
	left: 26%;
	box-shadow: 
		0 5px 0 #fff, 
		0 10px 0 #fff;
}

.dl-menuwrapper ul {
	padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dl-menuwrapper li {
	position: relative;
	background: #d9366b;
}

.dl-menuwrapper li:hover{
	background: #fff;
}

.dl-menuwrapper li:hover a{
	color: #d9366b;
}


.dl-menuwrapper li a {
	display: block;
	position: relative;
	padding: 14px 13px 10px;
	text-decoration:none;
	font-size: 12px;
	line-height: 20px;
	font-weight: 300;
	color: #fff;
	outline: none;
}

.dl-menuwrapper li.dl-back > a {
	padding-left: 30px;
	background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
	position: absolute;
	top: 0;
	line-height: 50px;
	font-family: 'icomoon';
	speak: none;
	-webkit-font-smoothing: antialiased;
	content: "\e000";
}

.dl-menuwrapper li.dl-back:after {
	left: 10px;
	color: rgba(212,204,198,0.3);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
	right: 10px;
	color: rgba(0,0,0,0.15);
}

.dl-menuwrapper .dl-menu {
	margin: 5px 0 0 0;
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	display:block;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/*===== SLIDER ====*/
/*================================================================================*/
.responsive-slider{
	position:relative;
	width:100%;
	height:836px;
	overflow:hidden;
}

.slider-wrapper{
	position:relative;
	overflow:hidden;
	width:100%;
	height:100%;
	min-height:836px;
	background:url(../../pink/images/slider.jpg) no-repeat fixed;
}

.slider{
	position:relative;
	width:100%; 
	height:100%;
/*	height:00px; when responsive, comment this out */
	margin:270px auto;	
	bottom:0px;
}

.slide{
	font-weight:100;
	text-transform:uppercase;
}

.fraction-slider{
	position:relative;
	width:100%;
	overflow:visible;
	top:0;
}

.fraction-slider .slide{
	display:none; width:100%; height:100%;
	position:absolute;
	z-index:2;
}

.fraction-slider .active-slide{
	z-index:1;
	height:100%;
}

.fraction-slider .fs_obj{
	display:block; display:none;
	position:absolute;
	top:0px; left:100%;
}

.fraction-slider .fs_fixed_obj{
	z-index:1;
	left:0;
	position:absolute;
}

.fraction-slider .fs_obj *{
	display:inline-block;
	position:relative;
	top:0px; left:0px;
}

.fs_loader{
	width:100%; height:600px;
	background:url(../images/loader.gif) center center no-repeat;
	z-index:9999;
}

/*===== Slider Controls ====*/
.responsive-slider .prev,
.responsive-slider .next{
	opacity:0;
	position:absolute;
	width:61px; height:61px;
	z-index:2;
	cursor:pointer;
}

.responsive-slider .prev{
	left:-13%; top:22%;
	background:url(../../pink/images/arrows.png) 0px 0px no-repeat transparent;
}
.responsive-slider .prev:hover{
	background:url(../../pink/images/arrows.png) -61px -61px no-repeat transparent;
}

.responsive-slider .next{
	right:-13%; top:22%;
	background:url(../../pink/images/arrows.png) 0px -61px no-repeat transparent;
}
.responsive-slider .next:hover{
	background:url(../../pink/images/arrows.png) -61px 0px no-repeat transparent;
}

.slider-wrapper:hover .prev,
.slider-wrapper:hover .next{
	opacity:1;
}

/*===== end Slider Controls ====*/

/*===== Slider 1 ====*/
.teaser{
	padding:0.5% 1.5%;
	font-size:35px;
	line-height:100%;
	color:#fff;
	font-weight:100;
	text-align:center;
	max-width:700px;
}
.teaser-text{
	display:block;
	padding:0.5% 1.5%;
	font-size:17px;
	line-height:100%;
	color:#fff;
	font-weight:100;
	text-align:center;
	width:700px;
}
.button{
	position:absolute;
	z-index:9000;
	display:block;
	line-height:100%;
	cursor:pointer;
	width:169px;
	background:white;
	font-size:15px;
	border-radius:6px;
	text-align:center;
	color:#d9366b;
	font-weight:600;
	padding:15px 0;
}

.button:hover{
	background:#d9366b;
	color:white;
}

.button:hover a{
	color:white;
}

.button a{
	color:#d9366b;
}

/*===== Slider 2 ====*/
.big-round{
	width:450px;
	height:450px;
	background:rgba(244,231,242,0.9);
	border-radius:500px;
	display:block;
}

span.first{
	color:#d681cd;
}

span.last{
	color:#f660a3;
}

.text1{
	color:#daa9d3;
	font-size:30px;
	font-weight:600;
	width:450px;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}
.text2{
	color:#daa9d3;
	font-size:60px;
	font-weight:600;
	width:450px;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}
.text3{
	color:#daa9d3;
	width:450px;
	font-size:20px;
	font-weight:600;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}
.text4{
	color:#daa9d3;
	width:450px;
	font-size:20px;
	font-weight:600;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}

.text5{
	color:#daa9d3;
	width:450px;
	font-size:70px;
	font-weight:600;
	transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
}

.m-button{
	width:76px;
	height:118px;
	position:relative;
	border-radius:300px;
	background:#daa9d3;
	padding:6px 25px;
}

.m-button a{
	width:100%;
	height:100%;
	border-radius:300px;
	text-align:center;
	font-size:22px;
	font-weight:600;
	color:white; 
	z-index:999;
	margin-top:50px;
	display:block;
	transform: rotate(-6deg);
	-ms-transform: rotate(-6deg);
	-webkit-transform: rotate(-6deg);
}

.m-button:hover{
	background:white;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;

}

.m-button:hover a{
	color:#f660a3;
}
/*===== end Slider 2 ====*/

/*===== About Us ====*/
/*================================================================================*/
.about{
	width:100%;
	margin:0;
	height:auto;
	background:#d9366b;
	padding:20px 0;
	position:relative;
	overflow:hidden;
}

.about:after{
	background: url(../../pink/images/i1.jpg);
	width:100%;
	height:100%;
	opacity:0.1;
	bottom:0;
	left:0;
	position:absolute;
	z-index: 1;
 	content: "";
	display:block;
}

.content{
	position:relative;
	z-index:5;
}

.ca-menu{
    padding:0;
    margin:0px auto;
    max-width: 1170px;
	text-align:center;
}
/*===== About menu, li ====*/
.ca-menu li{
	display:block;
    width: 20%;
    height: 330px;
	padding:0 12px;
	cursor:default;
    overflow: hidden;
	border-radius:8px;
    position: relative;
    float:left;
	text-align:center;
    background: none;
    margin:1% 10px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.ca-menu li:last-child{
    margin-right: 0px;
}

.ca-icon{
    font-family: 'WebSymbolsRegular', cursive;
    font-size: 35px;
    color: white;
	border:1px solid white;
	border-radius:100px;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.8);
    line-height: 97px;
    position: absolute;
    width: 100px;
    height: 100px;
	margin:0 auto;
    left: 50%;
    top: 25px;
    text-align: center;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: auto;
    top: 40%;
	clear:both;
}
.ca-main{
    font-size: 20px;
	font-weight:100;
	margin-top:6%;
	color:white;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-sub{
	font-weight:100;
    text-align:center;
    font-size: 12px;
	top:10px;
	position:relative;
    color: white;
    line-height: 22px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-link{
	font-weight:100;
	font-size:14px;
	color:white;
	display:block;
	width:108px;
	margin:10% auto;
	height:auto;
	padding:10px 0;
	text-align:center;
	background:none;
	border:1px solid white;
	border-radius:6px;
	cursor:pointer;
}
/*===== About menu, li rollovers ====*/
.ca-menu li:hover{
    background:#c62b5d;
}
.ca-menu li:hover .ca-icon{
    color:#d83b6c;
	background:white;

}
.ca-menu li:hover .ca-main{
    -webkit-animation: moveFromTop 400ms ease;
    -moz-animation: moveFromTop 400ms ease;
    -ms-animation: moveFromTop 400ms ease;
}
.ca-menu li:hover .ca-sub{
    -webkit-animation: moveFromTop 600ms ease;
    -moz-animation: moveFromTop 600ms ease;
    -ms-animation: moveFromTop 600ms ease;
}

.ca-menu li:hover .ca-link{
    -webkit-animation: moveFromTop 800ms ease;
    -moz-animation: moveFromTop 800ms ease;
    -ms-animation: moveFromTop 800ms ease;
}

.ca-link:hover{
	background:white;
	color:#d81353;
}
/*===== end About menu, li ====*/

/*===== Text Place ====*/
/*================================================================================*/
.textplace{
	width:100%;
	height:auto;
	padding:27px 0;
	background:#be2355;
	text-align:center;
	margin:0;
}

.textplacet{
	width:1100px;	
	height:auto;;
	margin:0 auto;
}

.textplacet{
	display:block;
	height:auto;
	width:100%;
	text-align:center;
	font-size:20px;
	font-weight:100;
	color:white;
}

.textplacet span{
	text-transform:uppercase;
	font-size:30px;
}
/*===== end Text Place ====*/

/*===== Services ====*/
/*================================================================================*/
.services{
	background: url(../../pink/images/i2.jpg) center center repeat fixed;
	width:100%;
	height:auto;
	left:0;
	min-height:1085px;
	position:relative;
	margin:0;
}

.services:after{
	background: url(../images/pattern.png) repeat;
	width:100%;
	height:auto;
	min-height:1085px;
	bottom:0;
	left:0;
	position:absolute;
	z-index: 1;
 	content: "";
	display:block;
}

.services-r{
	width:100%;
	max-width:880px;
	height:auto;
	min-height:1085px;
	position:relative;
	margin:0 auto;
	z-index:2;
}
/*===== Services Rounds ====*/
.round{
	width:49%;
	height:430px;
	position:absolute;
	border-radius:500px;
	cursor:pointer;
	z-index:1;
	opacity:0.5;
	-webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
}

.round:hover{
	opacity:1;
	z-index:2;
}
/*===== Services Rounds colors ====*/
.services-r .green{
	background:#98ca00;
	top:106px;
	left:25%;
}

.services-r .blue{
	background:#2092e2;
	top:330px;
	left:0;
	float:left;	
}

.services-r .orange{
	background:#f89200;
	top:330px;
	right:0;
	float:right;
}

.services-r .pink{
	background:#f11ba3;
	left:25%;
	bottom:106px;
}
/*===== end Rounds colors ====*/

/*===== round elements ====*/
.round-link{
	width:77%;
	height:77%;
	display:block;
	padding:50px;
	cursor:pointer;
	border-radius:500px;
	position:relative;
}
.sv-icon{
    font-family: 'WebSymbolsRegular';
    position: relative;
    width: 30%;
	display:block;
    height: auto;
    top: 50%;
	margin:0 auto;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
	-webkit-transform: translateY(-25%) translateY(-25%);
	transform: translateY(-25%) translateY(-25%);
}
.sv-icon img{
	width:100%;
}
.sv-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 50%;
	opacity:0;
}

.round:hover .sv-content{
	opacity:1;
}

.sv-main{
    font-size: 500%;
	font-weight:600;
    color: white;
	text-transform:uppercase;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.services-r a:hover .sv-icon{
	top:17%;
    color: white;
    -webkit-animation: moveFromBottom 400ms ease;
    -moz-animation: moveFromBottom 400ms ease;
    -ms-animation: moveFromBottom 400ms ease;
	-webkit-transform: translateY(0) translateY(0);
	transform: translateY(0) translateY(0);
}
.services-r a:hover .sv-main{
    color: white;
    -webkit-animation: moveFromTop 300ms ease;
    -moz-animation: moveFromTop 300ms ease;
    -ms-animation: moveFromTop 300ms ease;
}
/*===== end round elements ====*/

/*===== Page Slide ====*/
#pageslide {
    /* These styles MUST be included. Do not change. */
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 2;
    width: 100%;
    padding: 0px;
    color: #fff;
}
#pageslide > div{
	height:100%;
}

.pageslide{
	height:auto;
	text-align:center;
	color:white;
	font-weight:100;
	top:50%;
	position:relative;
	width:80%;
	margin:0 auto;
	-webkit-transform: translateY(-25%) translateY(-25%);
	transform: translateY(-25%) translateY(-25%);
}

.pageslide .icon{
	width:auto;
	height:auto;
	margin: 0 auto;
}

.pageslide .header{
	width:100%;
	height:auto;
	font-size:60px;
	text-align:center;
	text-transform:uppercase;
	margin:10px 0 0;
}

.pageslide .desc{
	width:100%;
	height:auto;
	font-size:14px;
	text-align:center;
	line-height:22px;
}
.pageslide .desc h4{
	font-size:20px;
	margin:10px auto;
	display:block;
	font-weight:100;
}
.pageslide .close{
	width:70px;
	height:70px;
	display:block;
	border-radius:150px;
	background:white;
	font-size:80px;
	text-align:center;
	margin:20px auto;
	padding:20px;
	line-height:70px;
	text-decoration:none;
	-webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*===== Page Slide Colors ====*/
#pink {
	background: #f11ba3;
	display:none;
}
#pink a{
	color:#f11ba3;
}
#pink a:hover{
	color:#fff;
	background:#db0a8f;
}

#orange {
	display: none; 
	background: #f89200;
}
#orange a{
	color:#f89200;
}
#orange a:hover{
	color:#fff;
	background:#e98900;
}

#blue {
	display: none; 
	background: #2092e2;
}
#blue a{
	color:#2092e2;
}
#blue a:hover{
	color:#fff;
	background:#127ec9;
}

#green {
	display: none; 
	background: #98ca00;
}
#green a{
	color:#98ca00;
}
#green a:hover{
	color:#fff;
	background:#87b300;
}
/*===== end Page Slides ====*/

/*===== Transform effects ====*/
@-webkit-keyframes moveFromTop {
    from {
        -webkit-transform: translateY(-50%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromTop {
    from {
        -moz-transform: translateY(-50%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromTop {
    from {
        -ms-transform: translateY(-50%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(50%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(50%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(50%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}
/*===== end Transform effects ====*/

/*===== Inner scroll styles ====*/
.scroll {
   background:none;
   overflow-y: hidden;
   -ms-scrollbar-base-color: #d9366b; 
}
.scroll:hover{
	overflow-y:scroll;
}
.scroll::-webkit-scrollbar {
    width: 3px;
	background:none;
	margin:5px;
	display:none;
}

.scroll::-webkit-scrollbar-track {
	border:1px solid #c62b5d;
	border-radius: 10px;
	height:30px;
	display:none;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
	width:15px;
	border:2px solid #d9366b;
	height:5px;
	display:none;
	
}
/*===== end Inner scroll styles ====*/

/*===== Loader Keyframes ====*/
@-webkit-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@-moz-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}
/*===== end Loader Keyframes ====*/

/*===== matters ====*/
/*================================================================================*/
.matters{
	width: 100%;
	height: auto;
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	background-image: url(../../images/tile_bg.png);
	background-repeat: repeat;
}
/*===== matters header ====*/
.matters-header{
	width:100%;
	height:200px;
	max-width:980px;
	margin:0 auto;
	text-align:center;
	position:relative;
	color:#a2a2a2;
	font-weight:100;
	text-transform:uppercase;	
}

.matters-header header.sk-header{
	font-size:35px;
	text-align:center;
}

header.sk-header span{
	font-size:55px;
}

.matters-header .matters-icon{
	font-family:'WebSymbolsRegular';
	width:100%;
	height:20px;
	position:relative;
	text-align:center;
	color:#e93d75;
	top:40px;
	font-size:20px;
	font-weight:100;
}

.matters-header h3.sk-desc{
	font-size:16px;
	top:90px;
	position:relative;
}

.matters-header h3.sk-desc span{
	font-weight:600;
	color:#e93d75;
}
/*===== end matters header ====*/

/*===== matters Boxes ====*/
.matters-inner{
	width:100%;
	max-width:980px;
	height:auto;
	text-align:center;
	margin:50px auto 200px;
	position:relative;
}

.sk-box{
	width:100%;
	height:340px;
	position:relative;
	float:left;
	margin:0 20px;
	font-weight:100;
	text-transform:uppercase;
	color:#8a8a8a;
}


.sk-box p{
	color: #B12E42;
	font-size: 15px;
	line-height: 20px;
	font-weight: 300;
	padding-top: 20px;
	text-transform: none;
}



.sk-bar{
	width:230px;
	height:230px;
	position:relative;
	margin:0 auto;
}

.chart {
  position: relative;
  display: inline-block;
  width: 230px;
  height: 230px;
  text-align: center;
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.easyPieChart {
  display: inline-block;
  z-index: 2;
  position:relative;
  font-weight:100;
  font-size:30px;
}

.sk-box-header{
	width:100%;
	font-size:20px;
	top:5px;
	position:relative;
}




.sk-box-desc{
	font-size: 20px;
	top: 20px;
	position: relative;
	height: auto;
	color: #FFF;
	font-style: normal;
	text-transform: none;
	line-height: 30px;
}
/*===== end Skill Boxes ====*/

/*===== LATEST-WORKS ====*/
/*================================================================================*/
.latest-works{
	width: 100%;
	height: 765px;
	position: relative;
	background-image: url(../images/i88.jpg);
	background-repeat: no-repeat;
}
/*===== L-W Header ====*/
.latest-works-header{
	width:100%;
	max-width:980px;
	height:120px;
	position:relative;
	margin:0 auto;
	top:80px;
}

.latest-works div.lw-signature{
	font-family:'rage';
	width:100%;
	color:#a28e82;
	top:25px;
	position:relative;
	text-align:center;
	text-transform:uppercase;
	font-weight:100;
	font-size:35px;
}

.latest-works-header h1.lw-header{
	width:100%;
	color:white;
	text-align:center;
	display:block;
	text-transform:uppercase;
	font-weight:100;
	font-size:35px;
}
.latest-works-header h1.lw-header span{
	font-size:55px;
}


.latest-works-header a.lw-desc{
	width:100%;
	color:white;
	text-align:center;
	display:block;
	margin:0 auto;
	text-transform:uppercase;
	font-weight:100;
	font-size:20px;
}
/*===== end L-W Header ====*/

/*===== L-W containers ====*/
.lt-container{
	position:relative;
	margin:0 auto;
	width:100%;
	max-width:980px;
	height:450px;
	top:125px;
	overflow:hidden;
}
.lt-wrapper{
	width:100%;
	height:100%;
	position:relative;
	
}
.lt-item{
	position:relative;
	float:left;
	width:328px;
	height:100%;
	text-align:center;
}
.lt-more{
	position: absolute;
	display:block;
	bottom: -30px;
	left:42%;
	width:50px;
	height:50px;
	border-radius:100px;
	padding:0;
	font-size:40px;
	text-align:center;
	background: #a14d68 url(../../pink/images/latest-works/more-icon.png) center center no-repeat;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.lt-item-main:hover .lt-more,
.lt-more:hover{
	background-color:#ff6899;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.lt-close{
	position:absolute;
	top:20px;
	right:20px;
	background:#fff url(../../pink/images/latest-works/cross.png) no-repeat center center;
	width:27px;
	height:27px;
	text-indent:-9000px;
	outline:none;
	opacity:0.7;
}
.lt-close:hover{
	opacity:1.0;
}
.lt-item-main{
	width:285px;
	height:310px;
	padding:17px 10px 10px;
	left:10px;
	position:absolute;
	background:#fff;
	overflow:visible;
	border-top:7px solid #a14d68;
	-moz-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.lt-item-main:hover{
	border-top:7px solid #ff6899;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.lt-icon{
	width:265px;
	height:190px;
	position:relative;
	margin:0 auto;
	background:url(../../pink/images/latest-works/lt1.jpg) no-repeat center center;
}
/*===== About Icons ====*/
.lt-item-2 .lt-icon{
	background-image:url(../../pink/images/latest-works/lt2.jpg);
}
.lt-item-3 .lt-icon{
	background-image:url(../../pink/images/latest-works/lt3.jpg);
}
.lt-item-4 .lt-icon{
	background-image:url(../../pink/images/latest-works/lt4.jpg);
}
.lt-item-5 .lt-icon{
	background-image:url(../../pink/images/latest-works/lt5.jpg);
}
.lt-item-6 .lt-icon{
	background-image:url(../../pink/images/latest-works/lt6.jpg);
}
/*===== end About Icons ====*/
.lt-item h3{
	text-transform:uppercase;
	font-size:22px;
	color:#91837a;
	height:auto;
	text-align:center;
	display:block;
	top:10px;
	position:relative;
}
.lt-item h4{
	font-style:italic;
	text-transform:uppercase;
	color:#91837a;
	font-size:12px;
	text-align:left;
	text-align:center;
	line-height:18px;
	top:10px;
	margin:10px 10px 15px;
	position:relative;
}
/*===== end L-W containers ====*/

/*===== L-W opening wrapper ====*/
.lt-content-wrapper{
	background:white;
	position:absolute;
	width:0px; /* expands to width of the wrapper minus 1 element */
	height:auto;
	top:0px;
	text-align:left;
	z-index:9;
	overflow:hidden;
}
.lt-content{
	width:100%;
	overflow:hidden;
}
.lt-content-text{
	font-size: 12px;
	margin:17px 10px;
	padding:0px 20px;
	line-height:24px;
	font-weight:100;
	text-transform:uppercase;
}
.lt-content-text p{
	padding-bottom:5px;
}
.lt-content h6{
	margin:17px 20px 0px 27px;
	font-size:30px;
	padding-bottom:10px;
	color:#91837a;
	border-bottom:1px solid #e7d9d0;
	text-transform:uppercase;
}
.lt-content ul{
	margin:20px 27px;
	height:30px;
}
.lt-content ul li{
	float:left;
	margin:0px 2px;
}
.lt-content ul li a{
	color:#ac9281;
	font-size:14px;
	text-decoration:none;
	text-transform:uppercase;
	font-weight:100;
}
.lt-content ul li a:hover{
	color:black;
}
.lt-nav span{
	font-family:'WebSymbolsRegular';
	width:100%;
	height:auto;
	position:absolute;
	top:90%;
	left:48%;
	font-size:25px;
	color:#fff;
	cursor:pointer;
	z-index:100;
	opacity:0.5;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.lt-nav span.lt-nav-next{
	left:51%;
}
.lt-nav span:hover{
	opacity:1;
}

.lt-nav span.lt-nav-next:hover{
	background-position:top right;
}
/*===== end L-W opening wrapper ====*/

/*===== other_sec ====*/
/*================================================================================*/
.other_sec{
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	padding: 0 0 50px;
	background-color: #FFF;
}

.other_sec .other_sec-inner{
	width:100%;
	max-width:980px;
	height:100%;
	min-height:300px;
	margin:0 auto;
	position:relative;
	top:80px;
}
/*===== What We Do Header ====*/
.other_sec-header{
	width:90%;
	text-transform:uppercase;
	margin:0 auto;
	height:240px;
}
.other_sec-header h1.ww-header{
	text-align:center;
	font-size:35px;
	color:#939393;
	font-weight:100;
}

.other_sec-header h1 span{
	font-size:55px;
}

.other_sec-header .ww-icon{
	font-family:'WebSymbolsRegular';
	width:100%;
	height:20px;
	position:relative;
	text-align:center;
	color:#ff6899;
	top:40px;
	font-size:20px;
	font-weight:100;
}

div.ww-desc{
	width:100%;
	text-align:center;
	display:block;
	font-weight:100;
	position:relative;
	top:90px;
	
}
div.ww-desc span{
	color:#ff6899;
	font-weight:600;
}
/*===== end What We Do Header ====*/

/*===== coloumns ====*/
.other_sec .column{
	width:30%;
	height:auto;
	position:relative;
	float:left;
	margin:30px auto 50px;
	padding:13px 0px 0;
}

.column .ww-icon{
	width:90px;
	height:90px;
	top:0;
	position:relative;
	margin:0 auto;
/*	border:1px solid #eeeeee;*/
	<!--border-radius:150px;-->
	background-position:center center;
	background-repeat:no-repeat;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.column:hover,
.column:hover .ww-icon{
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.column h3.ww-header{
	width: 100%;
	line-height: 25px;
	font-size: 18px;
	text-align: center;
	color: #a5a5a5;
}

.column h3.ww-header a{
	color: #a5a5a5;
}

.column h3.ww-header a:hover{
	color: #6B6B6B;
}


.column .cl-desc{
	width:100%;
	line-height:20px;
	font-size:12px;
	text-align:center;
	color:#a5a5a5;
	font-weight:100;
}

/*===== coloumn-icons ====*/
.column .icon1{
	background-image:url(../../pink/images/icon1.png)
}
.column:hover .icon1{
	background-image:url(../../pink/images/icon1-h.png)
}

.column .icon2{
	background-image:url(../../pink/images/icon2.png)
}
.column:hover .icon2{
	background-image:url(../../pink/images/icon2-h.png)
}

.column .icon3{
	background-image:url(../../pink/images/icon3.png)
}
.column:hover .icon3{
	background-image:url(../../pink/images/icon3-h.png)
}

.column .icon4{
	background-image:url(../../pink/images/icon4.png)
}
.column:hover .icon4{
	background-image:url(../../pink/images/icon4-h.png)
}
/*===== end coloumn-icons ====*/

/*===== chairman ====*/
/*================================================================================*/
.chairman{
	width: 100%;
	position: relative;
	display: block;
	height: 830px;
	padding-top:50px;
	overflow: hidden;
	background-color: #FFF;	/*background-size: cover;*/	/*-moz-background-size: cover;*/  /* Firefox 3.6 */
	/*background-position: center;*/  /* Internet Explorer 7/8 */
	/*background-image: url(../images/i88.jpg);*/
}

.chairman-inner{
	width:100%;
	max-width:1100px;
	height:100%;
	position:relative;
	margin:0 auto;
}

.chairman-inner p{ color:#B12E42; font-size:15px; line-height:20px; font-weight:500; padding-top:20px;}


.chairman title{
	display:block;
	position:relative;
}
/*===== oppurtunity left images ====*/
.chairman-images{
	position:absolute;
	top:0;
	right:45%;
	z-index:1;
	height:100%;
	float:right;
}

.chairman-images img{
	height:850px;
	z-index:2;
	position:relative;
}
/*===== oppurtunity Color Rounds ====*/
.chairman-blue-round{
	width:200px;
	height:200px;
	border-radius:500px;
	top:160px;
	left:230px;
	position:absolute;
	z-index:1;
	opacity:0.4;
	background:#cad7e8;
}

.chairman-green-round{
	width:250px;
	height:250px;
	border-radius:500px;
	top:160px;
	left:490px;
	position:absolute;
	z-index:1;
	opacity:0.3;
	background:#8dc92f;
}

.chairman-purple-round{
	width:320px;
	height:320px;
	border-radius:500px;
	top:370px;
	left:200px;
	position:absolute;
	z-index:1;
	opacity:0.4;
	background:#e0c8e5;
}

.chairman-red-round{
	width:70px;
	height:70px;
	border-radius:500px;
	top:430px;
	left:590px;
	position:absolute;
	z-index:1;
	opacity:0.4;
	background:#d06e48;
}

.chairman-pink-round{
	width:240px;
	height:240px;
	border-radius:500px;
	top:430px;
	left:460px;
	position:absolute;
	z-index:1;
	opacity:0.4;
	background:#eabbc6;
}

.chairman-green2-round{
	width:90px;
	height:90px;
	border-radius:500px;
	top:680px;
	left:490px;
	position:absolute;
	z-index:1;
	opacity:0.4;
	background:#c2dc97;
}
/*===== end chairman Color Rounds ====*/
/*===== end chairman left images ====*/

/*===== chairman right details ====*/
.chairman-detail{
	position:relative;
	top:50%;
	right:20px;
	width:40%;
	z-index:2;
	height:auto;
	float:right;
	font-weight:100;
	-webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
	-webkit-transform: translateY(-25%) translateY(-25%);
	transform: translateY(-25%) translateY(-25%);
}

.chairman-detail header{
	text-align: right;
	color: #CCCCCC;
	font-size: 48px;
	font-weight: 100;
	text-transform: uppercase;
	line-height: 47px;
}

.chairman-detail  header a{
	font-size: 23px;
	font-weight:700;
	color: #FFF;
}

.chairman-detail  header span{
	color:#ff6899;
}

.chairman-detail .text{
	position: relative;
	text-align: right;
	color: #FFFFFF;
	line-height: 20px;
	font-size: 15px;
	font-weight: 100;
	display: block;
	width: 100%;
	top: 10px;
	max-height: 400px;
	overflow: hidden;
}

.chairman-detail a.opp-button{
	width:120px;
	height: auto;
	margin-top:40px;
	right:0;
	padding:3px 5px;
	float:right;
	color:white;
	text-align:center;
	position:relative;
	font-size:14px;
	display:block;
	background:#E74C3C;
	border-radius:8px;
	text-decoration:none;
	cursor:pointer;
	-webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}

.chairman-detail a.opp-button:hover{
	background:white;
	color:inherit;
}

.chasec{ width:100%; float:left; text-align:center; padding-top:20px;}





/* end oppurtunity right details ====*/

/*===== GALLERY ====*/
/*================================================================================*/
.gallery{
	width:100%;
	height:auto;
	position:relative;
	 background: #f7f7f7;
}
/*===== gallery header ====*/
.gallery-header{
    margin:0 auto;
    position: relative;
    width: 100%;
	max-width:1100px;
	font-weight:100;
	text-transform:uppercase;
    height: 200px;
}

.gallery-header h1{
    color: grey;
    font-size: 35px;
	font-weight:100;
    line-height: 40px;
	text-align:center;
	max-width:980px;
	display:block;
	margin:0 auto;
	top:60px;
	position:relative;
}
.gallery-header h1 span{
	font-size:55px;
	color: #ff6899;
}

.gallery-header .g-icon{
	font-family:'WebSymbolsRegular';
	width:100%;
	height:20px;
	position:relative;
	text-align:center;
	color:#ff6899;
	top:100px;
	font-size:20px;
	font-weight:100;
}
/*===== end gallery header ====*/

/*===== gallery filters ====*/
.gallery-filter{
	width:100%;
	max-width:1100px;
	margin:5px auto 25px;
	text-align:center;
}

.gallery-filter li{
	display: inline-block;
	margin:0 2px;
}

.gallery-filter li a.g-button{
	text-decoration:none;
	font-weight:100;
	text-transform:uppercase;
	color:#666;
	width:auto;
	padding:5px 15px;
	font-size:13px;
	display:block;
	font-style:italic;
	border:1px solid #d7d7d7;
	-webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear
}

.gallery-filter li a.g-button:hover{
	color:#fff;
	border:1px solid #ff6899;
	background:#ff6899;
	-webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear
}

.gallery-filter li a.selected{
	color:#ff6899;
	border:1px solid #ff6899;
}
/*===== end gallery filter ====*/

/*===== gallery items ====*/
#gallery-items {
	text-align:center;
	width: 1920px;
}
.element{
	width:25%;
	float:left;
	min-height:445px;
}
.element a{
	display:block;
	border:none;
	text-decoration:none;
	outline:none;
	overflow:hidden;
	width:100%;
}

.element .gallery-image img{
	-webkit-transition: -webkit-transform 0.4s, opacity 0.3s;
	   -moz-transition: -moz-transform 0.4s, opacity 0.3s;
	        transition: transform 0.4s, opacity 0.3s;
}

.element:hover .gallery-image img{
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.gallery-image{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
/*===== gallery item descriptions ====*/
.element h3{
	margin-top:15px;
	text-align:center;
	text-transform:uppercase;
	font-size:20px;
	font-weight:100;
	color:#233548;
}

.element p.gallery-categories{
	width:100%;
	text-align:center;
	margin-bottom:15px;
	font-size:14px;
	font-weight:100;
	color:#233548;
}
/*===== end gallery item descriptions ====*/

/*===== gallery isotope effects ====*/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
  width:25%;
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
		  
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/*===== disabling Isotope CSS3 transitions ====*/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}
/*===== End: Recommended Isotope styles ====*/

/*===== disable CSS transitions for containers with infinite scrolling ====*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}
/*===== end gallery isotope effects ====*/

/*===== Blog ====*/
/*================================================================================*/
.blog{
	width:100%;
	height:auto;
	position:relative;
	background:url(../images/pattern2.png);
}
/*===== Blog header ====*/
.blog-header{
	width:70%;
	max-width:1100px;
	height:250px;
	position:relative;
	margin:0 auto;
	top:70px;
	text-transform:uppercase;
}

.blog-header h1{
	width:100%;
	text-align:center;
	font-size:35px;
	color:#afafaf;
	font-weight:100;
}

.blog-header h1 span{
	font-size:55px;
	color:#ff6899;	
}

.blog-header .blog-icon{
	font-family:'WebSymbolsRegular';
	width:100%;
	height:20px;
	position:relative;
	text-align:center;
	color:#ff6899;
	top:40px;
	font-size:20px;
	font-weight:100;
}

.blog-header .blog-desc{
	width:100%;
	max-width:900px;
	margin:0 auto;
	height:20px;
	position:relative;
	text-align:center;
	color:#8d8d8d;
	top:90px;
	font-size:15px;
	font-weight:100;
}
/*===== end Blog header ====*/

/*===== Blog inner ====*/
.blog-inner{
	width:100%;
	height:680px;
	max-width:1100px;
	margin:0 auto;
	position:relative;
	top:30px;
}
/*===== Flex Slider ====*/
.flexslider{
	position:relative;
	height:600px;
}

.flexslider .slides > li {
position:relative;
	display: none;
	-webkit-backface-visibility: hidden;
}
.flexslider .slides img {
	width: 100%;
	display: block;
}
/*===== end Flex Slider ====*/

/*===== circle post item ====*/
.blog-inner .post{
	width:100%;
	height:auto;
	position:relative;
	left:0;
	margin-top:70px;
}

.post-detail{
	width:100%;
	max-width:1100px;
	z-index:999;
	height:0;
	margin:0 auto;
	position:relative;
}

.post-detail-inner{
	width:260px;
	height:180px;
	border-radius:500px;
	background:#d9366b;
	position:absolute;
	font-weight:100;
	padding:90px 50px;
	top:55px;
	left:5%;
	z-index:999;
}

.post-detail-inner .post-header{
	width:100%;
	color:white;
	font-weight:bold;
	font-size:25px;
	line-height:40px;
	position:relative;
	text-align:center;
	text-transform:uppercase;
}

.post-detail-inner .desc{
	width:100%;
	color:white;
	text-align:center;
	font-size:13px;
	position:relative;
	top:5px;
	line-height:20px;
	height:125px;
}

.post-detail-inner a.all-posts{
	width:100%;
	color:#fff;
	margin:0 auto;
	display:block;
	text-align:center;
	font-size:15px;
	text-transform:uppercase;
	position:relative;
	top:10px;
	line-height:20px;
	height:20px;
	text-decoration:none;
	-webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear
}
.post-detail-inner a.all-posts:hover{
	color:white;
	-webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear
}

.post-detail-inner a.date{
	width:55px;
	height:55px;
	border-radius:100px;
	display:block;
	background:#fff;
	position:absolute;
	z-index:1;
	padding:5px;
	left:18px;
	top:25px;
	text-transform:uppercase;
	font-size:12px;
	color:#d9366b;
	text-align:center;
	font-weight:100;
	cursor:default;
}

a.date span{
	font-size:25px;
	width:40px;
	display:block;
	text-align:center;
	margin:0 auto;
}
/*===== end circle post item ====*/

/*===== blog control icons ====*/
.flex-control-nav{
	position:absolute;
	z-index:5;
	bottom:6px;
	display:none;
}

.flex-control-nav li{
	float:left;
	width:10px;
	height:10px;
	background:#e24f17;
	border-radius:20px;
	text-indent:-9999px;
	margin:3px;
	cursor:pointer;
}

.flex-direction-nav{
	position:absolute;
	z-index:5;
	bottom:-10px;
	left:47%;
	opacity:0;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.flex-direction-nav li{
	font-family:'WebSymbolsRegular';
	float:left;
	margin:6px;
}


.flex-direction-nav li a{
	text-decoration:none;
	font-size:20px;
	color:#be2355;
	border:none;
}

.flex-direction-nav li a:hover{
	color:#f9548a;
}

.flexslider:hover .flex-direction-nav{
	opacity:1;
	bottom:0;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
/*===== end blog control icons ====*/

/*===== MAP ====*/
/*================================================================================*/
.map{
	width:100%;
	height:938px;
	background:#d9366b;
	position:relative;
	overflow:hidden;
}

/*===== Map Pattern ====*/
.map:after{
	background: url(../images/pattern1.png);
	width:100%;
	height:938px;
	opacity:0.2;
	bottom:0;
	left:0;
	position:absolute;
	z-index: 1;
 	content: "";
	display:block;
}
/*===== end Map Pattern ====*/

/*===== Map Header ====*/
.map .map-header{
	width:100%;
	max-width:1100px;
	height:auto;
	top:100px;
	margin:0 auto;
	position:relative;
	font-weight:100;
	font-size:35px;
	color:#fff;
	text-align:center;
	text-transform:uppercase;
}

.map .map-header span{font-size:55px;}

.map .map-header a{
	display:block;
	line-height:40px;
	font-size:20px;
	position:relative;
	text-align:center;
	width:100%;
}
/*===== end Map Header ====*/

/*===== World Map ====*/
.map .map-img{
	width:100%;
	max-width:1100px;
	position:relative;
	margin:0 auto;
	top:180px;
}

.map .map-img img{
	width:100%;
}

.map .map-img div{
	width:50px;
	height:41px;
	border-radius:100px;
	border: 18px solid rgba(255, 255, 255, 0.5);
	position:absolute;
	z-index:2;
	background:#be2355;
	background-clip: padding-box;
	color:rgba(255, 255, 255, 0.5);
	text-align:center;
	padding:9px 0 0;
	font-size:25px;
	cursor:pointer;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.map .map-img div:hover{
	color:rgba(255, 255, 255, 0.7);
	border: 18px solid rgba(255, 255, 255, 0.7);
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.map .map-img .here1{
	top:20%;
	left:22%;
}
.map .map-img .here2{
	top:26%;
	left:50%;
}
.map .map-img .here3{
	top:65%;
	left:25%;
}
.map .map-img .here4{
	top:45%;
	left:77%;
}
/*===== end World Map ====*/

/*===== tools ====*/
.tip-white {
	z-index:2;
	text-align:left;
	padding:15px;
	min-width:50px;
	max-width:470px;
	color:#68424f;
	border-radius:7px; 
	background-color:white;
	
}
.tip-white .tip-inner {
	font-weight:100;
	font-size:13px;
	margin-top:-2px;
	text-align:center;
	padding:0px 8px 5px;
}

.tip-inner span{
	font-size:19px;
}

/*===== Configure an arrow image - the script will automatically position it on the correct side of the tip ====*/
.tip-white .tip-arrow-top {
	margin-top:-7px;
	margin-left:15px;
	top:0;
	left:0;
	width:16px;
	height:10px;
	background:url(../images/tip-white_arrows.png) no-repeat;
}
.tip-white .tip-arrow-right {
	margin-top:-9px; /* approx. half the height to center it */
	margin-left:-4px;
	top:50%;
	left:100%;
	width:10px;
	height:20px;
	background:url(../images/tip-white_arrows.png) no-repeat -16px 0;
}
.tip-white .tip-arrow-bottom {
	margin-top:-6px;
	margin-left:15px;
	top:103%;
	left:41%;
	width:16px;
	height:13px;
	background:url(../images/tip-white_arrows.png) no-repeat -32px 0;
}
.tip-white .tip-arrow-left {
	margin-top:-9px; /* approx. half the height to center it */
	margin-left:-6px;
	top:50%;
	left:0;
	width:10px;
	height:20px;
	background:url(../images/tip-white_arrows.png) no-repeat -48px 0;
}
/*--- end tools ====*/

/*===== Contact ====*/
/*================================================================================*/
.contact{
	width:100%;
	height:auto;
	min-height:548px;
	background-color:#000;
/*	background:url(../images/i7.jpg) fixed;*/
	overflow:hidden;
}

.contact-inner{
	position:relative;
	z-index:2;
	width:100%;
	max-width:1100px;
	margin:0 auto;
	height:auto;
	top:65px;
}
/*===== Contact Forms ====*/
.contact-inner .form{
	width:100%;
	max-width:770px;
	height:auto;
	min-height:275px;
	margin:10px auto;
	position:relative;
	text-align:center;
}

.form input{
	width:206px;
	height:20px;
	color:#a9a9a9;
	float:left;
	font-size:13px;
	padding:15px;
	margin:0 10px;
	background:#383838;
	border:1px solid #303030;
	border-radius:7px;
	outline:none;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.form input:hover,
.form input:focus{
	border:1px solid #d9366b;
	color:white;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.form input:first-child{
	margin-left:0;
}

.form input:last-child{
	margin-right:0;
}

.form textarea{
	width:100%;
	max-width:716px;
	height:110px;
	color:#a9a9a9;
	float:left;
	font-size:13px;
	padding:20px;
	background:#383838;
	margin:10px 0px 0 0;
	border:1px solid #303030;
	border-radius:7px;
	outline:none;
	overflow:hidden;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.form textarea:hover,
.form textarea:focus{
	border:1px solid #d9366b;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.form .form-button{
	top:10px;
	position:relative;
	width:340px;
	height:52px;
	margin:0 auto;
}
.form-button .btn{
	cursor:pointer;
	width:155px;
	height:49px;
	margin:0 5px;
	background:#a9a9a9;
	border-radius:7px;
	border:none;
	outline:none;
	text-transform:uppercase;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.form-button .btn:hover{
	background:#d9366b;
	color:white;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
/*===== end Contact Forms ====*/

/*===== Email send message ====*/
#message{
	color:white;
	background:none;
	font-style:italic;
	font-weight:100;
	display:block;
	padding:10px;
}
/*===== end Email send message ====*/

/*===== Socials ====*/
.socials{
	position:relative;
	z-index:2;
	width:295px;
	height:55px;
	margin:0 auto;
	top:35px;
	text-align:center;
}
.socials a{
	display:block;
	float:left;
	width:51px;
	height:51px;
	margin:0 4px;
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.socials a:first-child:{margin-left:0;}
.socials a:last-child:{margin-right:0;}

.socials a:hover{
	transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
/*===== Social icons ====*/
.socials a.facebook{
	background:url(../../pink/images/socials/facebook.png);
}
.socials a.google{
	background:url(../../pink/images/socials/google.png);
}
.socials a.tumblr{
	background:url(../../pink/images/socials/tumblr.png);
}
.socials a.twitter{
	background:url(../../pink/images/socials/twitter.png);
}
.socials a.vimeo{
	background:url(../../pink/images/socials/vimeo.png);
}
/*===== end Socials ====*/
/*===== end Social icons ====*/

/*===== company area ====*/
.company{
	width:100%;
	max-width:260px;
	font-weight:100;
	text-align:center;
	text-transform:uppercase;
	color:#b6b6b6;
	height:auto;
	min-height:120px;
	position:relative;
	margin:50px auto;
}

.company a.company-logo{
	width:auto;
	height:auto;
	margin:0 auto;
	display:block;
}
.company a.company-logo img{
	width:75px;
	height:auto;
}
.company span.company-text{
	width:100%;
	height:auto;
	margin:0 auto;
	display:block;
	position:relative;
	top:15px;
}

span.company-text a{
	color:#d9366b;
	text-decoration:none;
}
/*===== end company area ====*/

/*===== Scroll Animation ====*/
.cbp-so-scroller {
	margin-top: 3em;
	overflow: hidden;
}
/*===== Clear floats of children ====*/
.cbp-so-section:before,
.cbp-so-section:after {
	content: " ";
	display: table;
}

/*===== Sides ====*/
.cbp-so-side {
	-webkit-transition: all 1.5s;
	-moz-transition: all 1.5s;
	transition: all 1.5s;
}
/*===== Clear floats of children ====*/
.cbp-so-side:before,
.cbp-so-side:after {
	content: " ";
	display: table;
}

/*===== Initial state (hidden or anything else) ====*/
.cbp-so-init .cbp-so-side {
	opacity: 0;
}

.cbp-so-init .cbp-so-side-left {
	-webkit-transform: translateX(-120px);
	-moz-transform: translateX(-120px);
	transform: translateX(-120px);
}

.cbp-so-init .cbp-so-side-right {
	-webkit-transform: translateX(120px);
	-moz-transform: translateX(120px);
	transform: translateX(120px);
}

.cbp-so-init .cbp-so-side-top {
	-webkit-transform: translateY(-120px);
	-moz-transform: translateY(-120px);
	transform: translateY(-120px);
}

.cbp-so-init .cbp-so-side-bottom {
	-webkit-transform: translateY(120px);
	-moz-transform: translateY(120px);
	transform: translateY(120px);
}

.cbp-so-init .cbp-so-side-left-o{
	-webkit-transform: translateX(-120px);
	-moz-transform: translateX(-120px);
	transform: translateX(-120px);
}

.cbp-so-init .cbp-so-side-right-o {
	-webkit-transform: translateX(120px);
	-moz-transform: translateX(120px);
	transform: translateX(120px);
}

.cbp-so-init .cbp-so-side-top-o{
	-webkit-transform: translateY(-120px);
	-moz-transform: translateY(-120px);
	transform: translateY(-120px);
}

.cbp-so-init .cbp-so-side-bottom-o {
	-webkit-transform: translateY(120px);
	-moz-transform: translateY(120px);
	transform: translateY(120px);
}
/*===== Animated state ====*/
/*===== add you final states (transition) or your effects (animations) for each side ====*/
.cbp-so-section.cbp-so-animate .cbp-so-side-top,
.cbp-so-section.cbp-so-animate .cbp-so-side-bottom,
.cbp-so-section.cbp-so-animate .cbp-so-side-left,
.cbp-so-section.cbp-so-animate .cbp-so-side-right {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
	display:block;
}

.cbp-so-section.cbp-so-animate .cbp-so-side-top-o,
.cbp-so-section.cbp-so-animate .cbp-so-side-bottom-o,
.cbp-so-section.cbp-so-animate .cbp-so-side-left-o,
.cbp-so-section.cbp-so-animate .cbp-so-side-right-o {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	display:block;
}

/*===== Move Animations ====*/
@-webkit-keyframes moveFromLeft{
    from {
        -webkit-transform: translateX(-50%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromLeft{
    from {
        -moz-transform: translateX(-50%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromLeft{
    from {
        -ms-transform: translateX(-50%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromRight {
    from {
        -webkit-transform: translateX(50%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromRight {
    from {
        -moz-transform: translateX(50%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromRight {
    from {
        -ms-transform: translateX(50%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(50);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(50%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(50%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}
/*===== end Move Animations ====*/