/*=============================
	Global CSS 
===============================*/



:root {
    scroll-behavior: inherit;
}

/* base style for all buttons */
.btn {
    padding: 0.95rem 1.9rem;
    background: transparent;
    font-weight: 700;
	font-size:var(--text-sm);
    border-radius: 100px;
	text-transform: uppercase;
    cursor: pointer;
	letter-spacing: 1px;
  }

  /* variations */
  .btn-primary {
    background: var(--primary);
    color: var(--white);
  }

  .btn-secondary {
    background: var(--secondary);
    color: var(--white);
  }

  .btn-success {
    background: var(--success);
    color: var(--white);
  }

  .btn-error {
    background: var(--error);
    color: var(--white);
  }

  .btn-link {
    color: var(--primary);
  }

/* base style for bg-primary all color */
	.bg-primary{background-color:var(--primary) !important;}
	.bg-secondary{background-color:var(--secondary) !important;}
	.bg-black{background-color:var(--black) !important;}
	.bg-orange{background-color:var(--orange) !important;}
	.bg-green{background-color:var(--green) !important;}
	.bg-gray{background-color:var(--gray) !important;}
	.bg-white{background-color:var(--white) !important;}
	.bg-graylight{background-color:var(--graylight) !important;}

/* base style for all color */
  	.text-primary{color:var(--primary) !important;}
	.text-secondary{color:var(--secondary) !important;}
	.text-black{color:var(--black) !important;}
	.text-orange{color:var(--orange) !important;}
	.text-green{color:var(--green) !important;}
	.text-gray{color:var(--gray) !important;}
	.text-graylight{color:var(--graylight) !important;}
	.text-white{color:var(--white) !important;}

/* base style for all font size */
	.text-xs{font-size: var(--text-xs);}
	.text-sm{font-size: var(--text-sm);}
	.text-base{font-size: var(--text-base);}
	.text-md{font-size: var(--text-md); line-height: 1.9rem;}
	.text-lg{font-size: var(--text-lg);}
	.text-xl{font-size: var(--text-xl);}
	.text-2xl{font-size: var(--text-2xl);}
	.text-3xl{font-size: var(--text-3xl);}
	.text-4xl{font-size: var(--text-4xl);}


/* base style for all font typography */
  	h1 {
		font-family:var(--font-heading);
		font-size:var(--text-4xl);
		line-height: 5.5rem;
		letter-spacing: -1px;
	}

	h2 {
		font-family:var(--font-heading);
		font-size:var(--text-3xl);
		letter-spacing: -1px;
	}
	
	h3 {
		font-family:var(--font-heading);
		font-size:var(--text-2xl);
	}

	h4 {
		font-family:var(--font-heading);
		font-size:var(--text-xl);
	}

	h5 {
		font-family:var(--font-content);
		font-size:var(--text-lg);
	}

	h6 {
		font-family:var(--font-content);
		font-size:var(--text-md);
	}

	p {
		font-family:var(--font-content);
		margin-bottom:20px
	}
  
body{
    font-family: var(--font-content);
	font-weight: 400;
	font-size:var(--text-base);
	color:var(--gray);
}
.pro-features {
	position: fixed;
	right: -300px;
	width: 300px;
	height: auto;
	line-height: 46px;
	font-size: 14px;
	background: #fff;
	text-align: left;
	color: #333;
	top: 50%;
	transform:translateY(-50%);
	box-shadow: -4px 0px 5px #00000036;
	color: #fff;
	z-index: 9999;
	padding:20px 30px 30px 30px;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.pro-features.active{
	right:0;
}
.pro-features li.big-title {
	font-weight: 600;
	color: var(--primary);
	font-size: 15px;
}
.pro-features li.title {
	font-weight: 600;
	color: var(--primary);
	font-size: 15px;
}
.pro-features .button{}
.pro-features .button .btn {
	width: 100%;
	text-align: center;
	margin-top: 8px;
	display: inline-block;
	float: left;
	font-size: 13px;
	width: 100%;
	text-transform: capitalize;
}
.pro-features li {
	color: #333;
	margin: 0;
	padding: 0;
	line-height: 22px;
	margin-bottom: 10px;
}
.get-pro {
	position: absolute;
	left: -80px;
	width:80px;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
	border-radius: 5px 0 0 5px;
	background: var(--primary);
	text-align: center;
	color: #fff;
	top: 0;
	cursor: pointer;
	box-shadow: -4px 0px 5px #00000036;
}
.get-pro:hover{
	
}
#scrollUp {
	bottom: 15px;
	right: 15px;
	padding: 10px 20px;
	background: var(--primary);
	color: #fff;
	font-size: 25px;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	padding: 0;
	border-radius: 3px;
	box-shadow: 0px 0px 10px #00000026;
}
#scrollUp:hover{
	background:#2C2D3F;
}
.sub-heading{
	text-transform: uppercase;
	font-weight: 500;
}
/* Color Plate */
.color-plate {
	position: fixed;
	display: block;
	z-index: 99998;
	padding: 20px;
	width: 245px;
	background: #fff;
	right: -245px;
	text-align: left;
	top: 30%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	-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);
}
.color-plate.active{
	right:0;
}
.color-plate .color-plate-icon {
	position: absolute;
	left: -48px;
	width: 48px;
	height: 45px;
	line-height: 45px;
	font-size: 21px;
	border-radius: 5px 0 0 5px;
	background: var(--primary);
	text-align: center;
	color: #fff !important;
	top: 0;
	cursor: pointer;
	box-shadow: -4px 0px 5px #00000036;
}
.color-plate h4 {
	display: block;
	font-size: 15px;
	margin-bottom: 5px;
	font-weight: 500;
}
.color-plate p {
	font-size: 13px;
	margin-bottom: 15px;
	line-height: 20px;
}
.color-plate span {
	width: 42px;
	height: 35px;
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	margin-right: 3px;
}
.color-plate span:hover{
	cursor:pointer;
}
.color-plate span.color1{
	background:var(--primary);
}
.color-plate span.color2{
	background:#2196F3;
}
.color-plate span.color3{
	background:#32B87D;
}
.color-plate span.color4{
	background:#FE754A;
}
.color-plate span.color5{
	background:#F82F56;
}
.color-plate span.color6{
	background:#01B2B7;
}
.color-plate span.color7{
	background:#6c5ce7;
}
.color-plate span.color8{
	background:#85BA46;
}
.color-plate span.color9{
	background:#273c75;
}
.color-plate span.color10{
	background:#FD7272;
}
.color-plate span.color11{
	background:#badc58;
}
.color-plate span.color12{
	background:#44ce6f;
}
/*=============================
	End Global CSS 
===============================*/

/*===================
	Start Header CSS 
=====================*/
.header{
	background-color:#fff;
	position:relative;
	font-size:var(--text-sm)
}
.header .navbar-collapse{
	padding:0;
}
/* Topbar */
.header .topbar{
	background-color: var(--primary);
  	color: #fff;
}
.header .topbar{
	padding:10px 0;
}

.header .top-link li{
	display:inline-block;
	margin-right:15px;
}
.header .top-link li:last-child{
	margin-right:0px;
}
.header .top-link li a{
	color:#2C2D3F;
	font-size:14px;
	font-weight:400;
}
.header .top-link li:hover a{
	color:var(--primary);
}

.header .top-contact li{
	display:inline-block;
	margin-right:25px;
	color:var(--white);
}
.header .top-contact li:last-child{
	margin-right:0;
}

.header .top-contact li a:hover{
	color:var(--white);
}
.header .top-contact li i{
	color:var(--secondary);
	margin-right:8px;
}
.header .header-inner {
	background:#fff;
	z-index:999;
	width:100%;
	box-shadow: 0px 0px 13px #00000054;
}

.get-quote .btn{
	color:#fff;
}
.header .logo {
	padding: 10px 0;
}
.header .navbar {
	background: none;
	box-shadow: none;
	border: none;
	margin: 0;
	height: 0px;
	min-height: 0px;
}
.header .nav li{
	margin-right: 8px;
    float: left;
	position:relative;
}
.header .nav li:last-child{
	margin:0;
}
.header .nav li a {
	color: var(--primary);
	font-weight: 700;
	text-transform: capitalize;
	padding: 25px 6px;
	position: relative;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
}
.header .nav li a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width:0%;
	background: var(--secondary);
	border-radius: 5px 5px 0 0;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.header .nav li.active a:before{
	opacity:1;
	visibility:visible;
	width: 100%;
}
.header .nav li.active a{
	color:var(--secondary);
}
.header .nav li:hover a:before{
	opacity:1;
	width: 100%;
	visibility:visible;
}
.header .nav li:hover a{
	color:var(--secondary);
}
.header .nav li a i {
	display: inline-block;
	margin-left: 1px;
	font-size: 13px;
}
/* Middle Header */
.header.style2 .header-inner {
	border-top: 1px solid #eee;
}
.header.style2 .logo {
	margin-top:6px;
}
.header .middle-header {
	background: #fff;
	padding: 20px 0px;
}
.header .widget-main{
	float:right;
}
.header.style2 .get-quote {
	margin-top: 0;
}
.header .single-widget {
	position: relative;
	float: left;
	margin-right: 30px;
	padding-left: 55px;
}
.header .single-widget:last-child{
	margin:0;
}
.header .single-widget .logo{
	margin:0;
	padding:0;
	margin-top: 7px;
}
.header .single-widget i {
	position: absolute;
	left: 0;
	top: 6px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	color: #fff;
	background: var(--primary);
	border-radius: 4px;
	text-align: center;
	font-size: var(--text-lg);
}
.header .single-widget h4 {
	font-size: 15px;
	font-weight: 500;
}
.header .single-widget p {
	margin-bottom: 5px;
	text-transform: capitalize;
}
.header .single-widget.btn{
	margin-left:0;
}
/* Dropdown Menu */
.header .nav li .dropdown {
	background: #fff;
	width: 220px;
	position: absolute;
	left:-24px;
	top: 100%;
	z-index: 999;
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 5px #3333334d;
	transform-origin: 0 0 0;
	transform: scaleY(0.2);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
	top: 74px;
	border-left:3px solid var(--secondary);
}
.header .nav li:hover .dropdown{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.header .nav li .dropdown li{
	float:none;
	margin:0;
	border-bottom:1px dashed #eee;
}
.header .nav li .dropdown li:last-child{
	border:none;
}
.header .nav li .dropdown li a {
	padding: 12px 15px;
	color: var(--primary);
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	background: transparent;
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.header .nav li .dropdown li a:before{
	display:none;
}
.header .nav li .dropdown li:last-child a{
	border-bottom:0px;
}
.header .nav li .dropdown li:hover a{
	color:var(--secondary);
}
.header .nav li .dropdown li a:hover{
	border-color:transparent;
	color:var(--secondary); 
}

/* Right Bar */
.header.style2 .main-menu{
	display:inline-block;
	float:left;
}
.header .right-bar {
	float: right;
}
.header .right-bar {
	padding-top:20px;
}
.header .right-bar {
	display: inline-block;
}
.header .right-bar a {
	color: #fff;
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	background: var(--primary);
	border-radius: 4px;
	display: block;
	font-size: 12px;
}
.header .right-bar li a:hover{
	color:#fff;
	background:#27AE60;
}
.header .search-top.active .search i:before{
	content:"\eee1";
	font-size:15px;
}
/* Search */
.header .search-form {
	position: absolute;
	right: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	top: 74px;
	box-shadow: 0px 0px 10px #0000001c;
	border-radius: 4px;
	overflow: hidden;
	transform:scale(0);
}
.header .search-top.active .search-form {
	opacity:1;
	visibility:visible;
	transform:scale(1);
}
.header .search-form input {
	width: 282px;
	height: 50px;
	line-height: 50px;
	padding: 0 70px 0 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 3px;
	border: none;
	background: #fff;
	color: #2C2D3F;
}
.header .search-form button {
	position: absolute;
	right: 0;
	height: 50px;
	top: 0;
	width: 50px;
	background: var(--primary);
	border: none;
	color: #fff;
	border-radius: 0 4px 4px 0;
	border-left:1px solid transparent;
}
.header .search-form button:hover{
	background:#fff;
	color:var(--primary);
	border-color:#e6e6e6;
}
/* Header Sticky */
.header.sticky .header-inner{
	position:fixed;
	z-index:999;
	top:0;
	left:0;
	bottom:initial;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	animation: fadeInDown 0.5s both 0.1s;
	box-shadow:0px 0px 13px #00000054;
}
.header.sticky .logo img{
	width: 150px;
}
/*=========================
	End Header CSS
===========================*/

/*===========================
	Start Hero Area CSS
=============================*/
.video-top{
	position: absolute;
}
.video-content{
	color:var(--white);
}
.slider .single-slider .video-content h1,
.slider .single-slider .video-content p,
.slider .single-slider p{
	color:var(--white);
}
.slider-content{
	height:100%;
	z-index: 1;
}
.slider-content .row{
	height:100%
}
.slider .single-slider .video-content h1 span{
	color:var(--white);
}
.slider .single-slider {
	height: 700px;
	background-size: cover;
	background-position: center;
	background-repeat:no-repeat;
	position:relative 
}

.slider .single-slider h1 {
	color: var(--white);
	margin: 0;
	padding: 0;
}
.slider .single-slider h1 span{
	color:var(--primary);
}
.slider .single-slider p {
	line-height: 27px;
	margin-top: 20px;
	font-weight: 400;
}
.slider .owl-carousel .owl-nav {
	margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
	margin-top:-25px;
}
.slider .owl-carousel .owl-nav div {
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	background: var(--primary);
	color: #fff;
	font-size: 26px;
	position: absolute;
	margin: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 0;
	border-radius: 50%;
}
.slider .owl-carousel .owl-nav div:hover{
	background:#2C2D3F;
	color:#fff;
}
.relative{
	position: relative;
}
.slider .owl-carousel .owl-controls .owl-nav .owl-prev{
	left:20px;
}
.slider .owl-carousel .owl-controls .owl-nav .owl-next{
	right:20px;
}
.single-slider:before{
	content:"";
	background:rgba(19, 27, 46, 0.3);
	position: absolute;
	left:0;
	right:0;
	width:100%;
	height:100%;
	z-index: 1;
}

.middle-banner{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}

.single-slider h5{
	text-transform: uppercase;
	font-weight: normal;
	margin-bottom: 10px;
}

/* Slider Animation */
.owl-item.active .single-slider h5{
    animation: fadeInUp 1s both 0.3s;
}
.owl-item.active .single-slider h1{
    animation: fadeInUp 1s both 0.6s;
}
.owl-item.active .single-slider p{
    animation: fadeInUp 1s both 1s;
}
.owl-item.active .single-slider .button{
    animation: fadeInUp 1s both 1.5s;
}
/*===========================
	End Hero Area CSS
=============================*/



/*=============================
	Start Feautes CSS
===============================*/

.Feautes.index2{
	padding-top:100px;
}
.Feautes.testimonial-page{
	padding-top:100px;
}
.Feautes .single-features{
	text-align:center;
	position:relative;
	padding:10px 20px;
}
.Feautes .single-features::before {
	position: absolute;
	content: "";
	right: -72px;
	top: 60px;
	width: 118px;
	border-bottom: 3px dotted var(--primary);
}
.Feautes .single-features.last::before{
	display:none;
}
.Feautes .single-features .signle-icon{
	position:relative;
}
.Feautes .single-features .signle-icon i{
	font-size:50px;
	color:var(--primary);
	position:absolute;
	left:50%;
	margin-left:-50px;
	top:0;
	height:100px;
	width:100px;
	line-height:100px;
	text-align:center;
	border:1px solid #dddddd;
	border-radius:100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.Feautes .single-features:hover .signle-icon i{
	background:var(--primary);
	color:#fff;
	border-color:transparent;
}
.Feautes .single-features h3{
	padding-top: 128px;
	color:#2C2D3F;
	font-weight:600;
	font-size:21px;
}
.Feautes .single-features p {
	margin-top: 20px;
}
/*=============================
	End Feautes CSS
===============================*/
.circle-rounded{
	width: 85px;
	height: 85px;
	text-align: center;
}

.price-block{
	width: 133px;
	height: 110px;
	text-align: center;
	background: var(--primary);
	color:var(--white);
	font-weight: 500;
	position: relative;
	border:10px solid #d8dae0;
}

.price-section{
	background:#eeeff0
}

.price-picture img{
	height: 283px;
  	object-fit: cover;
}

.add-block{
	background: rgb(203,209,212);
	background: linear-gradient(1800deg, rgba(203,209,212,1) 0%, rgba(118,127,136,1) 100%);
}
/*=========================
	Start Footer CSS
===========================*/
.footer{
	position:relative;
}
.footer .footer-top{
	padding:70px 0px;
	position:relative;
	background:var(--primary);
}
.footer .footer-top:before{
	position:absolute;
	content:"";
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#000;
	opacity:0.1;
}

.footer .single-footer .social li{
	display:inline-block;
	margin-right:10px;
}
.footer .single-footer .social li:last-child{
	margin-right:0px;
}
.footer .single-footer .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	text-align: center;
	padding: 0;
	border-radius: 100%;
	display: block;
	color:#fff;
	font-size: 16px;
}
.footer .single-footer .social li a:hover{
	color:var(--primary);
	background:#fff;
	border-color:transparent;
}

.footer .single-footer.f-link li a i{
	margin-right:10px;
}
.footer .single-footer.f-link li{
	display:block;
	margin-bottom:12px;
}
.footer .single-footer.f-link li:last-child{
	margin:0;
}
.footer .single-footer.f-link li a {
	display: block;
	color: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
}
.footer .single-footer.f-link li a:hover{
	padding-left:8px;
}
.footer .single-footer h4{
	color:var(--white);
	text-transform:uppercase;
	margin-bottom:30px;
	position:relative;
}
.footer .single-footer h4::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: -6px;
	height: 3px;
	width: 100px;
	background: var(--secondary);
}
.footer .single-footer .time-sidual{
	margin-top:15px;
}
.footer .single-footer .time-sidual{
	overflow:hidden;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span{
	display:inline-block;
	float:right;
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p{
	color:#fff;
}
.footer .single-footer .newsletter-inner{
	margin-top:20px;
	position:relative;
}
.footer .single-footer .newsletter-inner input {
	background: transparent;
	border: 1px solid #fff;
	height: 50px;
	line-height: 42px;
	width: 100%;
	margin-right: 15px;
	color: #fff;
	padding-left: 18px;
	padding-right: 70px;
	display: inline-block;
	float: left;
	border-radius: 0px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
	border-radius: 5px;
}
.footer .single-footer .newsletter-inner input:hover{
	padding-left: 22px;
}
.footer input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-ms-input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer input::input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer .single-footer .newsletter-inner .button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	line-height: 50px;
	width: 50px;
	background: #fff;
	border-left: 1px solid #fff;
	text-shadow: none;
	box-shadow: none;
	display: inline-block;
	border-radius: 0px;
	border: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0 5px 5px 0;
	color: var(--primary);
	font-size: 25px;
}
.footer .single-footer .newsletter-inner .button i{
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.footer .single-footer .newsletter-inner .button:hover i{
	color:#2C2D3F;
}
.footer .copyright{
	background:var(--primary);
	padding:25px 0px 25px 0px;
	text-align:center;
}
.footer .copyright .copyright-content p{
	color:var(--white);
}
.footer .copyright .copyright-content p a{
	color:var(--white);
	font-weight:400;
	text-decoration:underline;
	display:inline-block;
	margin-left:4px;
}
/*=========================
	End Footer CSS
===========================*/

.logo img{
	max-width: 230px; 
  width: 100%;
  height: 73px;
}

.discover-image{
	height: 460px;
  width: 100%;
}

.price-section .p-4 h4{
	font-size: 22px;
  min-height: 173px;
}

/*========= page internal ============*/

.banner-center{
	background-position: center center;
}

.divider{
	height: 1px;
	background: #ddd;
	margin: 35px 0;
}

.banner-inner-pic img{
	height:400px;
	object-fit: cover;
	width:100%
}

.banner-inner-content{
	position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.banner-internal .container{
	z-index: 1;
}

.slider .carousel-slider .owl-nav{
	left: 0;
  	right: 0;
}

.carousel-slider{
	padding: 0 85px;
}

/*===========================*/