/* =====================================
Template Name: Precon
Author Name: ThemeLamp
Author URI: http://themelamp.com/
Template Provide By: https://www.codeglim.com/
Description: Precon is a Multipurpose Business HTML5 Template.
Version:	1.0
========================================*/

/*==================================
	Reset CSS
====================================*/ 
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #353535;
	background-color: #fff;
	line-height: 24px;
	position: relative;
}
a,button,input,textarea{
    font-family: 'Open Sans', sans-serif;
	font-weight:600;
	border:none;
}
a,button,input,li,textarea{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
	font-weight:600;
	margin:0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
h1 a,h2 a,h3 a,h4 a,h5 a, h6 a{
	font-family: 'Poppins', sans-serif;
	font-weight:600;
}
p {
	color:#555;
    margin: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul {
    list-style: none;
    margin-bottom: 0;
}
img {
    max-width: 100%;
	display:block;
}
select:focus,
select:active {
    box-shadow: 0;
    border: 0;
    outline: 0
}
a:hover,a:focus,a:active,input:hover,input:focus{
    text-decoration: none;
    outline: none;
}
img{
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
input,
input:focus,
input:active {
    outline: none;
}
button,a{
	cursor:pointer;
}
select{
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}
textarea:focus {
    outline: none !important;
    box-shadow: none !important
}
/* Remove Chrome Input Field's Unwanted Yellow Background Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* Button Style */
.btn {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	position:relative;
	color: #fff;
	padding: 13px 30px;
	text-transform: uppercase;
	border: none;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: #2A2D2F;
	border-radius: 3px;
	border: 2px solid #2A2D2F;
}
.btn i{
	margin-left:10px;
}
.btn.radius{
	border-radius:50px;
}
.btn.theme-1 {
	background: #379CB0;
	color: #fff;
	border: 2px solid #379CB0;
	-webkit-box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
	-moz-box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
	box-shadow: 0px 10px 25px rgba(55, 156, 176, 0.2);
}
.btn.theme-1:hover{
	background:#fff;
	box-shadow:none;
	color:#379CB0;
}
.btn.theme-1.no-style {
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
	color: #379CB0;
}
.btn.theme-1.no-style:hover{
	opacity:0.6;
}
.btn.theme-2 {
	background: #FC6761;
	color: #fff;
	border: 2px solid #FC6761;
	-webkit-box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
	-moz-box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
	box-shadow: 0px 10px 25px rgba(252, 103, 97, 0.2);
}
.btn.theme-2:hover{
	background:#fff;
	box-shadow:none;
	color:#FC6761;
}
.btn.theme-2.no-style {
	background: transparent;
	padding: 0;
	margin: 0;
	border: none;
	box-shadow: none;
	color: #FC6761;
}
.btn.theme-2.no-style:hover{
	opacity:0.7;
}

@-webkit-keyframes shine {
    100% {left: 125%;}
}
@keyframes shine {
    100% {left: 125%;}
}
/* Button Effect */
.btn.effect{
	overflow:hidden;
}
.btn.effect:before{
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 30%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.btn.effect:hover:before{
	-webkit-animation: shine 1.75s;
	animation: shine 1.75s;
}
.btn.theme-1.effect:before{
	background: -webkit-linear-gradient(left, rgba(55, 156, 176, 0.2) 0%, rgba(55, 156, 176, 0.2) 100%);
	background: linear-gradient(to right, rgba(55, 156, 176, 0.2) 0%, rgba(55, 156, 176, 0.2) 100%);
}
.btn.theme-2.effect:before{
	background: -webkit-linear-gradient(left, rgba(252, 103, 97, 0.2) 0%, rgba(252, 103, 97, 0.2) 100%);
	background: linear-gradient(to right, rgba(252, 103, 97, 0.2) 0%, rgba(252, 103, 97, 0.2) 100%);
}
/* Section Style */
section {
	z-index: 10;
	position: relative;
}
.section-padding{
    padding-top: 100px;
    padding-bottom: 100px;
	position:relative;
}
.section-title h2 {
	font-size: 32px;
	position: relative;
	margin-bottom: 15px;
	color: #353535;
	line-height: 32px;
}
.section-title h2 span {
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
	color: #FC6761;
	display: inline-block;
}
.section-title h2 span::before {
	position: absolute;
	right: 0;
	top: 0;
	width: 2px;
	height: 100%;
	content: "";
	background: #FC6761;
}
.section-title p {
	line-height: 24px;
}
.section-title p a {
	color: #FC6761;
	margin-left: 5px;
	display: inline-block;
}
/* Section Title  */
.section-title.white h2 {
	color: #fff;
}
.section-title.white h2 span {
	color: #fff;
}
.section-title.white h2 span:before {
	background: #fff;
}
.section-title.white p {
	color: #fff;
}
.section-title.white a {
	background: #fff;
	color: #353535;
	display: inline-block;
	padding: 5px 15px;
	border-radius: 30px;
}

/* Overlay Fix */
.overlay{
	position:relative;
}
.overlay::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	opacity: 0.4;
	background: #000;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Margin Top Fix */
.m-top-10{margin-top:10px;}
.m-top-20{margin-top:20px;}
.m-top-30{margin-top:30px;}
.m-top-40{margin-top:40px;}
.m-top-50{margin-top:50px;}
.m-top-60{margin-top:60px;}
.m-top-70{margin-top:70px;}
.m-top-80{margin-top:80px;}
.m-top-90{margin-top:90px;}
.m-top-100{margin-top:100px;}

/* Margin Bottom Fix */
.m-bottom-10{margin-bottom:10px;}
.m-bottom-20{margin-bottom:20px;}
.m-bottom-30{margin-bottom:30px;}
.m-bottom-40{margin-bottom:40px;}
.m-bottom-50{margin-bottom:50px;}
.m-bottom-60{margin-bottom:60px;}
.m-bottom-70{margin-bottom:70px;}
.m-bottom-80{margin-bottom:80px;}
.m-bottom-90{margin-bottom:90px;}
.m-bottom-100{margin-bottom:100px;}

/* Margin Left Fix */
.m-left-10{margin-left:10px;}
.m-left-20{margin-left:20px;}
.m-left-30{margin-left:30px;}

/* Margin Right Fix */
.m-right-10{margin-right:10px;}
.m-right-20{margin-right:20px;}
.m-right-30{margin-right:30px;}

/* Paddtin Top Fix */
.p-top-10{padding-top:10px;}
.p-top-20{padding-top:20px;}
.p-top-30{padding-top:30px;}
.p-top-40{padding-top:40px;}
.p-top-50{padding-top:50px;}
.p-top-60{padding-top:60px;}
.p-top-70{padding-top:70px;}
.p-top-80{padding-top:80px;}
.p-top-90{padding-top:90px;}
.p-top-100{padding-top:100px;}

/* padding Bottom Fix */
.p-bottom-10{padding-bottom:10px;}
.p-bottom-20{padding-bottom:20px;}
.p-bottom-30{padding-bottom:30px;}
.p-bottom-40{padding-bottom:40px;}
.p-bottom-50{padding-bottom:50px;}
.p-bottom-60{padding-bottom:60px;}
.p-bottom-70{padding-bottom:70px;}
.p-bottom-80{padding-bottom:80px;}
.p-bottom-90{padding-bottom:90px;}
.p-bottom-100{padding-bottom:100px;}

/* Padding Left Fix */
.p-left-10{padding-left:10px;}
.p-left-20{padding-left:20px;}
.p-left-30{padding-left:30px;}

/* Margin Right Fix */
.p-right-10{padding-right:10px;}
.p-right-20{padding-right:20px;}
.p-right-30{padding-right:30px;}

/* Scroll Up CSS */
#scrollUp {
	right: 15px;
	bottom: 12px;
	color: #fff;
	opacity: 0.8;
	font-size: 14px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 100%;
	background: #FC6761;
}
#scrollUp:hover {
	opacity:1;
}

/* Others Fix */
.mobile-nav{
	display:none;
}
.form-control:focus {
	border-color: #ccc;
	box-shadow: 0 0 0 ;
	outline: 0 none;
}
.navbar {
    margin-bottom: 0;
    border: 0;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
    text-decoration: none;
}
.nav-tabs > li > a {
    border: 0
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border: 0;
    outline: 0
}
.nav-tabs {
    border: 0
}
.nav-tabs > li > a:hover {
    border: 0
}
.slick-slide {
    outline: none !important;
}

/* Preloader CSS */
.preloader-main {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 99999;
	text-align: center;
}
.preloader {
	width: 64px;
	height: 64px;
	border: 3px solid transparent;
	border-top-color: #379CB0;
	border-bottom-color: #379CB0;
	border-radius: 50%;
	animation: spin 1.5s linear infinite;
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -32px 0 0 -32px;
}
.preloader::before {
	content: '';
	display: block;
	margin: auto;
	width: 16px;
	height: 16px;
	border: 3px solid #FC6761;
	border-radius: 50%;
	animation: pulse 1s alternate ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

/* Precon Options */  
.precon-options {
	position: fixed;
	display: block;
	z-index: 99998;
	padding: 20px;
	width: 245px;
	background: #fff;
	right: -245px;
	text-align: left;
	top: 50%;
	margin-top: -151.2px;
	-webkit-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
	box-shadow: -3px 0px 25px -2px rgba(0, 0, 0, 0.2);
}
.precon-options .icon {
	width: 22px;
	height: 22px;
	background: #968A8C;
	border-radius: 0px;
	top: 50%;
	line-height: 22px;
	cursor: pinter;
	font-size: 15px;
	position: absolute;
	left: -50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	border-radius: 5px 0 0 5px;
	background: #fff;
	color: #444;
	text-align: center;
	background: #379CB0;
	color: #fff;
	top: 0;
	cursor: pointer;
}
.precon-options .icon i {
	cursor: pointer;
}
.precon-options h4 {
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
}
.precon-options ul li{
	font-weight:500;
	font-size:14px;
}
.precon-options ul li a{
	color:#555;
}
.precon-options span {
	width: 48px;
	height: 40px;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	border: 2px solid #eee;
}
.precon-options .select-layout a {
	border: 1px solid #eee;
	text-align: center;
	padding: 5px 0;
	outline: none;
	display: inline-block;
	padding: 5px 13px;
	color: #353535;
	cursor: pointer;
	font-size: 13px;
}
.precon-options .select-layout a i {
	margin-right: 5px;
}
.precon-options .single-option {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	outline:none;
}
.precon-options .single-option:last-child{
	margin:0;
	padding:0;
	border:none;
}
.precon-options .bg-pattern li{
	display:inline-block;
}
.precon-options .bg-pattern li img {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
}
.precon-options span{
	position:relative;
}
.precon-options .pattern-main{
	overflow:hidden;
	opacity:0;
	visibility:hidden;
	transform: scale(0);
	height:0%;
	transform-origin: 0 0;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.precon-options .pattern-main.active{
	opacity:1;
	height:100%;
	visibility:visible;
    transform: scale(1);
}
/* Skin 1 */
.precon-options span.skin1:before,
.precon-options span.skin1:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin1:before{
	left:0;
	background:#379CB0;
}
.precon-options span.skin1:after{
	right:0;
	background:#FC6761;
}

/* Skin 2 */
.precon-options span.skin2:before,
.precon-options span.skin2:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin2:before{
	left:0;
	background:#2ECC71;
}
.precon-options span.skin2:after{
	right:0;
	background:#48CFAD;
}

/* Skin 3 */
.precon-options span.skin3:before,
.precon-options span.skin3:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin3:before{
	left:0;
	background:#5D9CEC;
}
.precon-options span.skin3:after{
	right:0;
	background:#8067B7;
}

/* Skin 4 */
.precon-options span.skin4:before,
.precon-options span.skin4:after{
	content:"";
	position:absolute;
	top:0;
	width:50%;
	height:100%;
}
.precon-options span.skin4:before{
	left:0;
	background:#9A88CC;
}
.precon-options span.skin4:after{
	right:0;
	background:#A4E01B;
}

/* Layout CSS */  
#layout.boxed-layout{
	position: relative;
	max-width: 1240px;
	background: #fff;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
#layout.boxed-layout .header.sticky .header-inner {
	max-width: 1240px;
	top: 0;
	left: auto;
	right: auto;
}
#layout.boxed-layout .testimonials .slick-dots {
	right: -30px;
}
#layout.boxed-layout .team button.PrevArrow {
	left: -40px;
}
#layout.boxed-layout .team button.NextArrow {
	right: -40px;
}
#layout.boxed-layout #footer-fixed {
	position: relative;
}
#layout.boxed-layout .footer-height {
	display: none;
}
.boxed-bg{
	background-repeat: repeat;
	background-attachment: inherit;
	background-size: inherit;
	background-color: #f1f2f3;
	/*background-image:url('../images/bg-pattern/bg-pattern-1.png')*/
}
/*==================================
	End Reset CSS
====================================*/ 