
@import url('https://fonts.googleapis.com/css2?family=Play&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');
body {
	font-size: 15px;
	font-family: 'Play', sans-serif;
	color: #8b8c90

}
a {
	display: inline-block;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	text-decoration: none;
	color: #8b8c90
}
a:hover {
	text-decoration: none;
	color: #21a2da
}
a:focus {
	text-decoration: none
}
button {
	outline: 0!important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none
}
button:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #201f25;
	font-weight: 700

}
h3 {
	font-size: 20px;
	line-height: 1.4
}
.d-table {
	width: 100%;
	height: 100%
}
.d-table-cell {
	vertical-align: middle
}
p {
	font-size: 15px;
	margin-bottom: 15px;
	line-height: 1.8
}
p:last-child {
	margin-bottom: 0
}
img {
	max-width: 100%;
	height: auto
}
ul {
	list-style: none;
	padding: 0;
	margin: 0
}
.form-control {
	height:40px;
	color: #21a2da;
	border: 1px solid #ebebeb;
	background-color: #fff;
	border-radius: 0;
	font-size: 14px;
	padding: 10px 20px;
	width: 100%
}
.form-control::-webkit-input-placeholder {
	color: #676a6a
}
.form-control:-ms-input-placeholder {
	color: #676a6a
}
.form-control::-ms-input-placeholder {
	color: #676a6a
}
.form-control::placeholder {
	color: #676a6a
}
.form-control:focus {
	color: #000;
	background-color: transparent;
	-webkit-box-shadow: unset;
	box-shadow: unset;
	outline: 0;
	border: 1px solid #21a2da
}
.form-control:hover:focus,
.form-control:focus {
	-webkit-box-shadow: unset;
	box-shadow: unset
}
textarea.form-control {
	height: 120px;
}
.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px
}
.ptb-70 {
	padding-top: 70px;
	padding-bottom: 70px
}
.ptb-50 {
	padding-top: 50px;
	padding-bottom: 50px
}
.pt-100 {
	padding-top: 100px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-60 {
	padding-top: 60px !important;
}
.pb-60 {
	padding-bottom: 60px !important;
}
.pb-70 {
	padding-bottom: 70px;
}
.mt-minus-100 {
	margin-top: -100px;
}
.mt-30 {
	margin-top: 30px;
}
.mb-30 {
	margin-bottom: 30px;
}
.bg-color {
	background-color: #f9fafb;
}
.default-btn:hover {
    background: #000;
}
.default-btn {
	font-size: 14px;
	color: #fff;
	padding: 15px 40px;
	line-height: 1;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	text-align: center;
	background-color:#21a2da;
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 4px;
	text-transform: uppercase;
	font-weight: 600;
}
.default-btn span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(#21a2da ), to(transparent));
	background: linear-gradient(top, #21a2da , transparent);
	width: 2px;
	height: 100%;
	opacity: 0
}
.default-btn span::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	background: -webkit-gradient(linear, left bottom, left top, from(#21a2da), to(transparent));
	background: linear-gradient(bottom, #21a2da, transparent);
	width: 2px;
	height: 100%;
	opacity: 0
}
.default-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear, right top, left top, from(#21a2da), to(transparent));
	background: linear-gradient(right, #21a2da, transparent);
	width: 100%;
	height: 2px;
	opacity: 0
}
.default-btn::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, right top, from(#21a2da), to(transparent));
	background: linear-gradient(left, #21a2da, transparent);
	width: 100%;
	height: 2px;
	opacity: 0
}
.default-btn:hover {
	background-color: #21a2da;
	color: #fff
}
.default-btn:hover::before {
	-webkit-animation: right 2s linear infinite;
	animation: right 2s linear infinite;
	opacity: 1
}
.default-btn:hover::after {
	-webkit-animation: left 2s linear infinite;
	animation: left 2s linear infinite;
	opacity: 1
}
.default-btn:hover span::before {
	-webkit-animation: top 2s linear infinite;
	animation: top 2s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	opacity: 1
}
.default-btn:hover span::after {
	-webkit-animation: bottom 2s linear infinite;
	animation: bottom 2s linear infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	opacity: 1
}
@-webkit-keyframes left {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}
@keyframes left {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}
@-webkit-keyframes right {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}
@keyframes right {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}
@-webkit-keyframes top {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}
@keyframes top {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}
@-webkit-keyframes bottom {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
}
@keyframes bottom {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%)
	}
	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%)
	}
}
.read-more {
	font-weight: 500;
	font-size: 15px;
	color: #201f25
}
.read-more i {
	position: relative;
	position: relative;
	top: 1.7px;
	margin-left: 5px
}
.read-more:hover {
	color: #21a2da
}
.section-title {
	max-width: 750px;
	margin: -5px auto 50px;
	text-align: center;
	position: relative
}
.navbar-area .main-nav .navbar .navbar-brand img {
    width: 400px;
}
.section-title span {
	font-size: 16px;
	display: block;
	margin-bottom: 15px;
	color: #21a2da
}
.section-title h2 {
	font-size:26px;
	text-transform: uppercase;
	position: relative
}
.section-title h2:last-child {
	margin-bottom: 0
}
.section-title.white-title span {
	color: #21a2da
}
.section-title.white-title h2 {
	color: #fff
}
.section-title.white-title p {
	color: #fff
}
.section-title.left-title {
	margin-left: 0;
	margin-right: auto;
	text-align: left
}


.top-bar {
    background-color: #21a2da;
    padding: 0 0;
}
.top-bar-inner {
	display:flex;
	align-items:center;
	justify-content:space-between;
	color:#fff
}
.top-bar .top-left li {
	font-size:14px;
	color:#fff;
	display:inline-block;
	padding-right:20px;
	padding-left:20px;
	border-right:1px solid #ffffff40;
	margin:0;
	padding-top:7px;
	padding-bottom:7px
}
.top-bar .top-left li:first-child {
	border-left:1px solid #ffffff40;
}
.top-bar .top-left li a {
	color:#fff;
	text-decoration:none
}
.top-bar .top-social {
	padding:8px 20px;
	border-right:1px solid #ffffff40;
	border-left:1px solid #ffffff40;
}
.top-bar .top-social li {
	display:inline-block;
	margin-left:6px
}
.top-bar .top-social li:first-child {
	margin-left:0
}
.top-bar .top-social li a {
    color: #fff;
    background: #92c942;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
}
.top-bar .top-social li a:hover {
	color:#ddd
}

.top-bar .top-left li,
.top-bar .top-left li:first-child {
	border:none
}
.top-bar .top-left li {
	padding-left:0;
	padding-right:20px
}

.navbar-area .main-nav {
	padding-top: 0;
	padding-bottom: 0
}
.navbar-area .main-nav .navbar {
	padding: 0
}
.navbar-area .main-nav .navbar .navbar-brand {
	font-size: 0;
	padding: 0
}
.navbar-area .main-nav nav .navbar-nav .nav-item {
	position: relative;
	padding: 0
}
.top-bar .top-left li a:hover {
    color: #92c942;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a.active {
    color: #21a2da;
}
.navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-size: 14px;
    font-weight: 600;
    color:#323232;
    text-transform: uppercase;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    margin-left: 0;
    margin-right: 0;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    margin: 0 20px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-left: 4px;
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
	color: #21a2da;
}
.ml-auto {
    margin-left: auto;
}
a.dtbtn {
    border: none;
    display: block;
    font-size: 14px;
    margin-left: 30px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #21a2da;
    border-radius: 50px;
    color: #fff;
    padding: 10px 30px;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
    background-color: #21a2da;
    color: #fff !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
	position: absolute;
	top: 130%;
	left: 15px;
	opacity: 0;
	width: 320px;
	visibility: hidden;
	z-index: 99;
	display: block;
	padding: 0;
	background-color:#6fa744;
	border: none;
	border-radius: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	margin-top: 6px;
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li {
	position: relative;
	padding: 0
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
	font-size: 14px;
	color: #fff;
	position: relative;
	padding: 10px 15px;
	border-bottom: 1px solid #87b861;
	margin-left: 0;
	margin-right: 0;
	text-transform: uppercase;
	display: block;
	font-weight: 500
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
	float: right;
	top: 12px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	font-size: 20px
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
	display: none
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
	color: #21a2da
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
	color: #21a2da
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	left: 100%;
	top: 0
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
	border-bottom: none
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	position: absolute;
	left: -98%;
	top: 20px!important;
	opacity: 0!important;
	visibility: hidden!important
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
	position: absolute;
	right: -100%;
	top: 0;
	opacity: 0!important;
	visibility: hidden!important
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
	color: #201f25;
	text-transform: capitalize;
	font-size: 14px;
	font-weight: 600
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover {
	color: #21a2da
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
	color: #21a2da
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
	color: #21a2da
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
	opacity: 1!important;
	visibility: visible!important;
	top: -4px!important
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
	opacity: 1!important;
	visibility: visible!important;
	top: -20px!important
}
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu:last-child .dropdown-menu {
	left: auto;
	right: -100%
}
.navbar-area .main-nav nav .navbar-nav .nav-item:hover ul {
	opacity: 1;
	visibility: visible;
	top: 92%
}
.navbar-area .others-option {
	position: relative;
	top: -2px
}
.navbar-area .others-option .call-us {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-right: 20px
}
.navbar-area .others-option .call-us i {
	font-size: 20px;
	position: relative;
	top: 4px;
	color: #21a2da ;
	margin-right: 5px
}
.top-bar .top-left li i {
    color: #fff;
    margin-right: 3px;
}
.donate-btn-header a.dtbtn {
    border-radius: 4px;
}
.navbar-area .others-option .call-us a {
	font-weight: 600
}
.navbar-area .others-option .option-item {
	color: #8b8c90;
	display: inline-block;
	line-height: 1;
	position: relative;
	top: 2px
}
.navbar-area .others-option .option-item .search-overlay {
	display: none
}
.navbar-area .others-option .option-item .search-overlay.search-popup {
	position: absolute;
	top: 100%;
	width: 300px;
	right: 0;
	background: #fff;
	z-index: 2;
	padding: 20px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	margin-top: 20px
}
.navbar-area .others-option .option-item .search-overlay.search-popup .search-form {
	position: relative
}
.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-input {
	display: block;
	width: 100%;
	height: 50px;
	line-height: initial;
	border: 1px solid #eee;
	color: #201f25;
	outline: 0;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	font-size: 15px;
	padding-top: 4px;
	padding-left: 15px
}
.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
	border-color: #21a2da
}
.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	background: #21a2da;
	border: none;
	width: 50px;
	outline: 0;
	color: #fff;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	padding: 0
}
.navbar-area .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
	background-color: #201f25
}
.navbar-area .others-option .option-item .search-btn {
	cursor: pointer;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	color:#323232;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%
}

.navbar-area .others-option .option-item .close-btn {
	cursor: pointer;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	color: #323232;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	display: none
}

.navbar-area .others-option .option-item .close-btn.active {
	display: block;
}
.navbar-area .others-option .cart-icon {
	display: inline-block;
	margin-left: 20px;
	position: relative;
	top: 2px;
	margin-right: 10px
}
.navbar-area .others-option .cart-icon a i {
	font-size: 20px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	text-align: center;
	display: inline-block;
	color: #fff;
	border-radius: 50px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #21a2da 
}
.navbar-area .others-option .cart-icon a span {
	position: absolute;
	top: -2px;
	right: -7px;
	width: 18px;
	height: 18px;
	line-height: 17px;
	background-color: #21a2da;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	font-size: 15px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.navbar-area .others-option .cart-icon a:hover i {
	color: #fff;
	background-color: #21a2da
}
.navbar-area .others-option .cart-icon a:hover span {
	background-color: #21a2da 
}
.navbar-area.navbar-area-two .others-option {
	position: relative;
	top: 5px
}
.navbar-area.navbar-area-two .others-option .call-us {
	top: -9px
}
.navbar-area.navbar-area-two .others-option .option-item {
	top: -6px
}
.navbar-area.navbar-area-two .others-option .cart-icon {
	top: -5px;
	margin-right: 8px
}
.navbar-area.navbar-area-two .others-option .flag-area .flag-item-top .flag-bar img {
	border-color: #21a2da ;
	width: 38px
}
.navbar-area.navbar-area-two .others-option .flag-area .flag-item-top .flag-bar span {
	color: #201f25
}
.navbar-area.navbar-area-two .others-option .flag-area .flag-item-top .flag-bar i {
	color: #201f25
}
.navbar-area.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	background-color: #fff;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown
}
.mobile-nav {
	display: none
}

.others-option-for-responsive .dot-menu {
	padding: 0 10px;
	height: 30px;
	cursor: pointer;
	z-index: 9991;
	position: absolute;
	right: 60px;
	top: 21px
}
.others-option-for-responsive .dot-menu .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 30px
}
.others-option-for-responsive .dot-menu .inner .circle {
	height: 5px;
	width: 5px;
	border-radius: 100%;
	margin: 0 2px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	background-color: #21a2da
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
	background-color: #21a2da 
}
.others-option-for-responsive .container {
	position: relative
}
.others-option-for-responsive .container .container {
	position: absolute;
	right: 0;
	top: 10px;
	max-width: 262px;
	margin: auto;
	opacity: 0;
	visibility: hidden;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	z-index: 2;
	padding-left: 15px;
	padding-right: 15px
}
.others-option-for-responsive .container .container.active {
	opacity: 1;
	visibility: visible
}
.others-option-for-responsive .option-inner {
	padding: 15px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	background-color: #fff
}
.others-option-for-responsive .option-inner .others-option {
	background-color: #fff;
	padding: 10px;
	position: absolute;
	top: 60px;
	right: 0;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05)
}
.others-option-for-responsive .option-inner .others-option .option-item {
	margin-left: 15px;
	padding-left: 15px;
	position: relative
}
.others-option-for-responsive .option-inner .others-option .option-item:first-child {
	margin-left: 0;
	padding-left: 0
}
.others-option-for-responsive .sidebar-menu {
	display: inline-block;
	margin-left: 10px
}
.others-option-for-responsive .sidebar-menu a i {
	font-size: 25px;
	background-color: #21a2da;
	height: 50px;
	width: 50px;
	line-height: 50px;
	display: inline-block;
	text-align: center;
	color: #fff;
	border-radius: 50px
}
.banner-area {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 820px;
	position: relative;
	z-index: 1
}
.banner-area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .5;
	z-index: -1
}

.banner-area .banner-one-bottom-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0
}
.banner-area.banner-area-two::before {
	display: none
}
.banner-area.banner-area-two .banner-content {
	text-align: left;
	max-width: 100%;
	margin-top: 20px
}
.banner-area.banner-area-two .banner-content h1 {
	color: #201f25;
	font-size: 60px
}
.banner-area.banner-area-two .banner-content p {
	color: #8b8c90
}
.banner-area.banner-area-two .banner-img {
	text-align: right
}
.banner-area.banner-area-two .banner-shape-1 {
	position: absolute;
	top: 90px;
	left: 0;
	z-index: -1
}
.banner-area.banner-area-two .banner-shape-2 {
	position: absolute;
	top: 250px;
	left: 100px;
	z-index: -1;
	-webkit-animation: moveBounceY 5s linear infinite;
	animation: moveBounceY 5s linear infinite
}
.banner-content {
	overflow: hidden;
	max-width: 880px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 90px;
	text-align: center
}
.banner-content h1 {
	font-size: 70px;
	font-weight: 900;
	margin-bottom: 30px;
	color: #fff
}
.banner-content p {
	color: #fff;
	margin-bottom: 35px;
	font-size: 17px
}
.banner-content .default-btn {
	background-color: #21a2da
}
.hero-slider-area {
	z-index: 1;
	position: relative;
	overflow: hidden
}
.hero-slider-area .slider-item {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height:70vh;
	overflow: hidden;
	position: relative;
	z-index: 1
}

.hero-slider-area .slider-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height: 100%;
	background-color: rgb(18 18 18 / 50%);
	z-index: -1
}
a.default-btn.maxcom{
	background-color: transparent !important;
	border: 1px solid #fff;
	margin-left: 10px;
}
.hero-slider-area .slider-item .slider-text {
    position: relative;
    max-width: 800px;
    z-index: 1;
    overflow: hidden;
}
.hero-slider-area .slider-item .slider-text .top-title {
	color: #21a2da;
	font-size: 15px;
	display: block;
	margin-bottom: 10px
}
.hero-slider-area .slider-item .slider-text h1 {
    font-size:34px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.hero-slider-area .slider-item .slider-text h1 span {
    color: #21a2da;
}
.hero-slider-area .slider-item .slider-text p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 35px
}
.hero-slider-area .slider-item .slider-text .slider-btn .default-btn {
	background-color:#21a2da;
}

.hero-slider-area .owl-item.active .slider-text.overflow-hidden {
	overflow: hidden
}
.hero-slider-area .owl-item.active .slider-text .top-title {
	-webkit-animation: 2s .2s fadeInDownBig both;
	animation: 2s .2s fadeInDownBig both
}
.hero-slider-area .owl-item.active .slider-text h1 {
	-webkit-animation: 2s .2s fadeInLeft both;
	animation: 2s .2s fadeInLeft both
}
.hero-slider-area .owl-item.active .slider-text p {
	-webkit-animation: 2s .2s fadeInRight both;
	animation: 2s .2s fadeInRight both
}
.hero-slider-area .owl-item.active .slider-text .slider-btn {
	-webkit-animation: 2s .2s fadeInUpBig both;
	animation: 2s .2s fadeInUpBig both
}
.hero-slider-area .owl-prev i {
	background-color: transparent!important;
	border-radius: 50%;
	border: 1px solid #fff
}

.hero-slider-area .owl-next i {
	background-color: transparent!important;
	border-radius: 50%;
	border: 1px solid #fff
}

.hero-slider-area .owl-next {
	position: absolute;
	top: 35%;
	right: 0px;
	margin: 0!important;
	border-radius: 0!important;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0;
	-webkit-transform: translateY(60px);
	transform: translateY(60px)
}
.hero-slider-area .owl-next i {
	background-color: #21a2da;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	font-size: 26px;
	border-radius: 100%;
}

.hero-slider-area .owl-prev {
	position: absolute;
	top: 35%;
	left: 0px;
	margin: 0!important;
	border-radius: 0!important;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0;
	-webkit-transform: translateY(60px);
	transform: translateY(60px)
}
.hero-slider-area .owl-prev i {
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	font-size: 26px;
	border-radius: 100%;
}

.hero-slider-area:hover .owl-prev {
	opacity: 1
}
.hero-slider-area:hover .owl-next {
	opacity: 1
}
.hero-slider-area .owl-theme .owl-nav {
	margin-top: 0!important
}
.hero-slider-area .owl-theme .owl-nav[class*=owl-]:hover {
	background-color: transparent
}
.feature-area-three {
	position: relative;
	z-index: 1
}
.feature-area-three .single-feature {
	padding: 30px;
	padding-left: 100px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	border: 1px dotted #21a2da 
}
.feature-area-three .single-feature i {
	left: 30px;
	top: 30px
}
.feature-area-three .single-feature:hover {
	border-color: #21a2da
}
.single-feature {
	position: relative;
	padding-left: 80px;
	margin-bottom: 30px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.single-feature i {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 50px;
	line-height: 1;
	color: #21a2da
}
.single-feature h3 {
	margin-bottom: 10px
}
.single-feature:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}

.about-area-three .container-fluid {
	max-width: 100%
}
.about-area-three .about-bg-img {
	background-image: url(../images/ser4.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%
}
.about-area-three .about-content-bg {
	background-color: #21a2da ;
	padding: 50px;
	position: relative
}
.about-area-three .about-content-bg .about-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: .1
}
.about-area-three .about-content {
	max-width: 600px;
	margin-bottom: 0
}
.about-area-three .about-content h2 {
	color: #fff
}
.about-area-three .about-content h2::before {
	background-color: #fff
}
.about-area-three .about-content p {
	color: #fff
}
.about-area-three .about-content .default-btn {
	background-color: #21a2da
}
.about-area-three .about-content .default-btn:hover {
	background-color: #201f25
}
.about-img {
	margin-bottom: 30px
}
.about-content {
	margin-left: 40px;
	margin-bottom: 30px
}
.about-content .top-title {
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
	color: #21a2da;
	font-weight: 500
}
.about-content h2 {
	font-size:28px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px
}
.about-content h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: #21a2da;
}
.about-content .default-btn {
	margin-top: 8px
}


/*abt-css*/
.about-content.about-main p {
    text-align: justify;
}
.about-content.about-main {
    margin-left: 0;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.about-list li i {
    color: #21a2da;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #21a2da;
    display: inline-block;
    margin-right: 20px;
    margin-top: 5px;
}
.about-list-content {
    flex: 1;
}
.about-list-content h3 {
    color: #21a2da;
    font-weight: 500;
}
.about-list li .whatsapp {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #13287c;
    margin-left: 30px;
    margin-top: 6px;
}
.about-list li .whatsapp i {
    color: #25d366;
    font-size: 40px;
    margin-right: 10px;
    border: none;
}
.partner-area {
	text-align: center
}
.partner-area .owl-carousel .owl-item {
	line-height: 1
}
.partner-area .owl-carousel .owl-item img {
	width: auto;
	opacity: .7;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.partner-area .owl-carousel .owl-item:hover img {
	opacity: 1
}


/*=====================service end================*/

.cleint-img {
    height: 100px;
    width: 100px;
    margin-right: auto;
    margin-left: auto;
    display: table;
    overflow: hidden;
    border-radius: 100%;
    margin-bottom: 20px;
}

.gallery-area {
    background-position: center;
    background-size: cover;
    position: relative;
    background: #152332;
    background-image: url(../images/map-bg.png);
}
.gallery-area .owl-nav {
	margin-top: 0;
	text-align: center;
	margin-right: 0
}
.gallery-area .owl-nav .owl-prev i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #8b8c90;
	display: inline-block;
	font-size: 20px;
	border-radius: 50%;
	color: #21a2da;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.gallery-area .owl-nav .owl-prev:hover i {
	background-color: #21a2da;
	color: #fff;
	border-color: #21a2da
}
.gallery-area .owl-nav .owl-next i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #8b8c90;
	display: inline-block;
	font-size: 20px;
	border-radius: 50%;
	color: #21a2da;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.gallery-area .owl-nav .owl-next:hover i {
	background-color: #21a2da;
	color: #fff;
	border-color: #21a2da
}
.gallery-area .owl-nav[class*=owl-] {
	margin: 0 5px
}
.gallery-area .owl-nav[class*=owl-]:hover {
	background-color: transparent
}
.gallery-area.gallery-area-three {
	background-image: none;
	overflow: hidden;
	z-index: 1
}
.gallery-area.gallery-area-three .container-fluid {
	max-width: 1335px;
	padding-right: 0;
	margin-left: auto;
	margin-right: 0
}
.gallery-area.gallery-area-three::before {
	background-color: #21a2da ;
	width: 1200px;
	z-index: -1
}
.gallery-area.gallery-area-three::after {
	display: none
}
.gallery-area.gallery-area-three .owl-nav {
	margin-right: 30px
}
.gallery-area.gallery-area-three .gallery-shape-3 {
	position: absolute;
	top: 0;
	left: 0;
	opacity: .1;
	z-index: -1
}
.single-gallery {
	position: relative;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.single-gallery img {
    height: 300px;
}
.top-header.top-header-three .call-us a:hover {
    color: #797a7d;
}
.single-gallery .view-gallery {
	background-color:rgb(0 123 255 / 50%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	-webkit-transform: scaleX(0);
	transform: scaleX(0)
}
.single-gallery .view-gallery i {
	font-size: 40px
}
.single-gallery:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
.single-gallery:hover .view-gallery {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.we-area-form {
	text-align: center;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	background-color: #fff;
	padding: 50px;
	margin-bottom: 30px
}
.we-area-form .we-area-title {
	margin-bottom: 30px;
	margin-top: -6px
}
.we-area-form .we-area-title h2 {
	font-size: 30px
	text-transform: capitalize;
}
.we-area-form .nice-select {
	width: 100%;
	border-radius: 0;
	height: 50px;
	background-color: #f9f9f9
}
.we-area-form .nice-select .current {
	position: relative;
	top: 4px
}
.we-area-form .nice-select:focus {
	border-color: #21a2da
}
.we-area-form .form-group {
	margin-bottom: 30px
}
.we-area-form .form-group .form-control {
	background-color: #f9f9f9
}
.we-area-form .default-btn {
	width: 100%
}
#banner-backs:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 24, 40, 0.7);
    z-index: -1;
}
#banner-backs label{
	color: #fff;
}
#banner-backs .contact-wrap .contact-title h2{
	color: #fff;
	text-align: center;
	font-weight: 600;
}

#banner-backs {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.contact-info-bg {
	padding: 50px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1
}
.contact-info-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #21a2da ;
	opacity: .9;
	z-index: -1
}
.single-contact-info {
	padding-left: 80px;
	position: relative
}
.single-contact-info i {
	position: absolute;
	left: 15px;
	top: 0;
	font-size: 50px;
	line-height: 1;
	color: #fff
}
.single-contact-info h3 {
	color: #fff;
	margin-bottom: 15px
}
.single-contact-info span {
	color: #fff
}
.single-contact-info a {
	display: block;
	color: #fff
}
.single-contact-info a:hover {
	color: #21a2da
}
.single-blog-post {
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	margin-bottom: 30px
}
.single-blog-post .news-content {
	background-color: #f9fafb;
	padding: 30px
}
.single-blog-post .news-content h3 {
	margin-bottom: 15px
}
.single-blog-post .news-content h3 a {
	color: #201f25
}
.blog-img.news-ak a {
    position: relative;
}

.blog-img.news-ak a:before {
    content: "";
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #f00;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .7);
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: 999;
    -webkit-transition: .5s;
    transition: .5s;
    display: none;
}
.single-blog-post:hover .blog-img.news-ak a:before{
	display: block;
	transition: 1s ease-in-out;
}
.blog-img.news-ak a img{
	-webkit-transition: .5s;
    transition: .5s;
    display: block;
}
.single-blog-post .news-content ul {
	line-height: 1;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 25px
}
.news-content ul li i {
    color: #21a2da;
    margin-right: 5px;
    font-size: 12px;
}
.single-blog-post .news-content ul li {
	display: inline-block;
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
	font-size:12px;
}
#wp-calendar {
    border: 0px solid #e5e5e5;
    margin-bottom: 20px;
    overflow: auto;
    vertical-align: top;
    width: 100%;
    margin: 0;
    color: #333333;
}
#wp-calendar caption {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
}
table#wp-calendar th {
    border: 1px solid #e5e5e5;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}
.blog-top-content .news-content ul {
    margin-bottom: 15px;
}
.blog-top-content .news-content ul li i {
    margin-right: 5px;
    font-size: 12px;
}
.blog-top-content .news-content ul li {
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
}
.blog-top-content .news-content ul li:hover {
    color: #21a2da;
}
table#wp-calendar tbody td {
    border: 1px solid #e5e5e5;
    color: #444444;
    padding: 5px 10px;
    text-align: center;
    vertical-align: top;
    font-size: 14px;
}
table#wp-calendar tfoot td {
    border: 1px solid #e5e5e5;
    color: #444444;
    padding: 5px 10px;
    text-align: center;
    vertical-align: top;
    font-size: 14px;
}
table#wp-calendar td#today {
    color: #fff;
    background-color: #21a2da;
}
.single-blog-post .news-content ul li:last-child {
	padding-right: 0;
	margin-right: 0
}
.upcoming-events .news-block .image-box img {
    height: 250px;
}

.blog-img.news-ak a {
    display: block;
    -webkit-transition: .5s;
    transition: .5s;
}
.single-blog-post .news-content ul li:last-child::before {
	display: none
}
.single-blog-post .news-content p {
	margin-top: -5px
}
.single-blog-post:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
.single-blog-post:hover .news-content h3 a {
	color: #21a2da
}
.blog-area.blog-area-two {
	position: relative;
	z-index: 1
}
.blog-area.blog-area-two .blog-shape-1 {
	position: absolute;
	top: 50px;
	left: 50px;
	z-index: -1;
	-webkit-animation: moveBounceX 5s linear infinite;
	animation: moveBounceX 5s linear infinite
}
.blog-area.blog-area-two .blog-shape-2 {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: -1;
	-webkit-animation: moveBounceX 5s linear infinite;
	animation: moveBounceX 5s linear infinite
}

.footer-area {
	background-color:#191f23;
	position: relative;
}
.footer-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/bg2.png);
}

.single-footer-widget {
	margin-bottom: 30px
}
.single-footer-widget .logo {
	margin-bottom: 25px
}
.single-footer-widget h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 500;
}
.single-footer-widget h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #35353a
}
.single-footer-widget .address .location {
	padding-left: 40px;
	position: relative
}
.single-footer-widget .address .location i {
	position: absolute;
	color: #21a2da;
	left: -2px;
	top: 5px;
	font-size: 25px
}
.single-footer-widget .address li {
	padding-left: 40px;
	position: relative;
	margin-bottom: 16px
}
.single-footer-widget .address li a {
	display: block
}
.single-footer-widget .address li a:hover {
	color: #21a2da
}
.single-footer-widget .address li:last-child {
	margin-bottom: 0
}
.single-footer-widget .address li i {
	position: absolute;
	color: #21a2da;
	left: 0;
	top: 2px;
	font-size: 25px
}
.single-footer-widget .import-link li {
	margin-bottom: 10px;
	position: relative
}
.single-footer-widget .import-link li:last-child {
	margin-bottom: 0
}
.single-footer-widget .import-link li:hover a {
	color: #21a2da
}
.copy-right-area {
	background-color:#191f23;
	border-top: 1px solid #35353a;
	padding-top: 15px;
	padding-bottom: 15px;
}
.text-rights {
    text-align: right;
}
.others-option-for-responsive {
    display: none;
}
.widget-nwesletter form {
    position: relative;
}

.widget-nwesletter form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px 10px;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    background: #21a2da;
    border: 2px solid #21a2da;
}
.gallery-image a img {
    width: 100%;
}
.gallery-image{
	margin-bottom: 15px;
} 
.gallery-image:hover a:before{
	display: block;
}
.gallery-image a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .45;
    background-color: #21a2da;
    display: none;
}
.gallery-image a{
	position: relative;
}
.widget-nwesletter form input {
    border: 1px solid #39534c;
    display: block;
    width: 100%;
    background: transparent;
    padding: 5px 70px 5px 5px;
    margin-bottom: 15px;
    box-shadow: none;
    resize: none;
    height: 35px;
    transition: 0.3s ease;
}
.copy-right-area p {
    color: #8b8c90;
    font-size: 14px;
}
.copy-right-area p a {
	color: #21a2da
}
.copy-right-area p i {
	position: relative;
	top: 2px
}

.single-team {
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.single-team .image img {
    width: 100%;
}
.single-team .image {
	position: relative
}
.single-team .image .social {
	list-style-type: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0
}
.single-team .image .social li {
	display: inline-block;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: all .3s ease-in-out 0s;
	transition: all .3s ease-in-out 0s;
	opacity: 0;
	visibility: hidden
}
section.our-services-area.homess .single-services img {
    height: auto;
}
.single-team .image .social li a {
	display: block;
	width: 40px;
	height: 40px;
	background-color: #92c942;
	text-align: center;
	position: relative;
	font-size: 16px;
	color: #fff;
	border-radius: 30px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.single-team .image .social li a i {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-left: auto;
	margin-right: auto
}
.single-team .image .social li a:hover {
	color: #fff;
	background-color: #21a2da
}
.single-team .image .social li:nth-child(1) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s
}
.single-team .image .social li:nth-child(2) {
	-webkit-transition-delay: .3s;
	transition-delay: .3s
}
.single-team .image .social li:nth-child(3) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s
}
.single-team .image .social li:nth-child(4) {
	-webkit-transition-delay: .5s;
	transition-delay: .5s
}
.single-team .content {
	background-color: #fff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	padding: 30px;
	position: relative;
	margin: 0 auto;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.single-team .content h3 {
	margin-bottom: 0;
	font-size: 20px
}
.single-team .content span {
	display: block;
	color: #21a2da;
	font-size: 14px;
	margin-top: 6px;
	font-weight: 600
}
.single-team:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
.single-team:hover .image .social li {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible
}

.counter-area{
	margin-bottom: 50px;
}
.counter-area {
    position: relative;
    overflow: hidden;
    background: transparent url(../images/counter-img-1.jpg) center center/cover no-repeat scroll;
}
.counter-area .counter-shape-1 {
	position: absolute;
	bottom: -50px;
	left: 50px;
	-webkit-animation: moveBounceX 5s linear infinite;
	animation: moveBounceX 5s linear infinite
}
.counter-area .counter-shape-2 {
	position: absolute;
	bottom: -50px;
	right: 50px;
	-webkit-animation: moveBounceX 5s linear infinite;
	animation: moveBounceX 5s linear infinite
}
.single-counter:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    height: 40%;
}

.single-counter:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    height: 40%;
}
.single-counter:hover:before{
	 border-color: #21a2da !important;
}
.single-counter:hover:after{
	 border-color: #21a2da !important;
}
.single-counter {
    position: relative;
    padding: 30px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
}
.single-counter:hover {
    background: #21a2da;
    border-color: #21a2da !important;
}
.single-counter h2 {
	font-size: 30px;
	color: #fff;
}
.icon-counter {
    margin-bottom: 15px;
}

.icon-counter i {
    font-size: 30px;
    color: #fff;
    text-align: center;
}
.single-counter h3 {
	position: relative;
	top: -10px;
	color:#fff;
	font-weight: 600;
}
@-webkit-keyframes moveBounceY {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	50% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
}
@keyframes moveBounceY {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
	50% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px)
	}
}
@-webkit-keyframes moveBounceX {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
}
@keyframes moveBounceX {
	0% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
	50% {
		-webkit-transform: translateX(20px);
		transform: translateX(20px)
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px)
	}
}


/*==================page bredcrume css===============*/


.page-title{
	position:relative;
	padding: 100px 0;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	text-align:center;
}

.page-title:before{
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background:#000000;
	opacity: .50;
	position:absolute;
}

.page-title .inner-container{
	position: relative;
}

.page-title h1{
	position:relative;
	float: left;
	font-size:40px;
	color:#ffffff;
	line-height: 50px;
	font-weight: 500;
	text-shadow: 0 5px 10px #222222; 	
}

.page-title .bread-crumb {
    position: relative;
    padding: 15px 0;
    text-align: center;
    margin-left: auto;
    display: table;
}

.page-title .bread-crumb li{
	position: relative;
	float: left;
	font-size: 16px;
	line-height: 20px;
	color: #21a2da;
	font-weight: 400;
	text-transform: uppercase;
	cursor: default;
	padding-right:  10px;
	margin-right: 10px;
}

.page-title .bread-crumb li:before{
	position: absolute;
	right: -3px;
	font-size: 16px;
	line-height: 20px;
	color: #21a2da;
	content: "/";
}

.page-title .bread-crumb li:last-child{
	padding-right: 0;
	margin-right: 0;
}

.page-title .bread-crumb li:last-child:before{
	display: none;
}

.page-title .bread-crumb li a{
	color:#ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.page-title .bread-crumb li a:hover{
	color:#21a2da;	
}

.blog-details-content .blog-top-content {
	background-color: #f9fafb;
	padding: 20px;
	margin-bottom: 35px
}
.blog-details-content .blog-top-content .blog-details-img {
	margin-bottom: 30px
}
.blog-details-content .blog-top-content .news-content h3 {
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	margin-bottom: 15px;
	font-size: 25px
}
.blog-details-content .blog-top-content .news-content .admin {
	padding-bottom: 30px;
	margin-bottom: 30px;
	position: relative
}
.blog-details-content .blog-top-content .news-content .admin::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #cdced0;
	width: 150px;
	height: 1px
}
.blog-details-content .blog-top-content .news-content .admin::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 1px;
	background-color: #8b8c90
}
.blog-details-content .blog-top-content .news-content .admin li {
	display: inline-block;
	position: relative;
	padding-right: 15px;
	margin-right: 15px
}
.blog-details-content .blog-top-content .news-content .admin li::before {
	content: "";
	position: absolute;
	top: 0;
	right: -5px;
	background-color: #8b8c90;
	width: 1px;
	height: 100%;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg)
}
.blog-details-content .blog-top-content .news-content .admin li:last-child {
	padding-right: 0;
	margin-right: 0
}
.blog-details-content .blog-top-content .news-content .admin li:last-child::before {
	display: none
}
.blog-details-content .news-content-2 {
	margin-bottom: 20px
}
.blog-details-content .news-content-2 h3 {
	font-size: 24px
}
.blog-details-content .news-content-3 ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px
}
.blog-details-content .news-content-3 ul li:last-child {
	margin-bottom: 0
}
.blog-details-content .news-content-3 ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #201f25
}
.blog-details-content .recent-posts h3 {
	font-size: 25px;
	margin-bottom: 15px
}
.blog-details-content .recent-posts p {
	margin-bottom: 30px
}
.blog-details-content .single-blog-post-img {
	margin-bottom: 30px
}
.blog-details-content .tag-list {
	background-color: #fff;
	margin-top: 30px;
	margin-bottom: 30px
}
.blog-details-content .tag-list span {
	margin-right: 10px;
	font-weight: 600;
	font-size: 18px;
	color: #201f25
}
.blog-details-content .tag-list ul {
	display: inline-block
}
.blog-details-content .tag-list ul li {
	display: inline-block
}
.blog-details-content .tag-list ul li a {
	border: 1px solid #eee;
	padding: 5px;
	margin-right: 10px
}
.blog-details-content .tag-list ul li a:hover {
	background-color: #21a2da;
	color: #fff;
	border-color: #21a2da
}
.blog-details-content .tag-list ul li:last-child a {
	margin-right: 0
}
.blog-details-content .tag-list .social {
	float: right
}
.blog-details-content .tag-list .social li {
	display: inline-block
}
.blog-details-content .tag-list .social li:last-child {
	margin-right: 0
}
.blog-details-content .tag-list .social li a {
	border-radius: 50%;
	border: none;
	padding: 0
}
.blog-details-content .tag-list .social li a i {
	width: 30px;
	height: 30px;
	line-height: 29px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 50%
}
.blog-details-content .related-posts {
	margin-bottom: 5px
}
.blog-details-content .related-posts .related-posts-title {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 30px;
	font-size: 25px
}
.blog-details-content .related-posts .related-posts-title::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #201f25
}
.blog-details-content .comments {
	background-color: #f9fafb;
	padding: 20px;
	margin-bottom: 35px
}
.blog-details-content .comments h3 {
	margin-bottom: 30px;
	font-size: 24px;
	position: relative;
	display: inline-block;
	padding-bottom: 10px
}
.blog-details-content .comments h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #201f25
}
.blog-details-content .comments ul li {
	position: relative;
	padding-left: 100px;
	margin-bottom: 30px
}
.blog-details-content .comments ul li:last-child {
	margin-bottom: 0
}
.blog-details-content .comments ul li img {
	margin-bottom: 20px;
	position: absolute;
	left: 0;
	top: 0
}
.blog-details-content .comments ul li h3 {
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 16px;
	padding-left: 0
}
.blog-details-content .comments ul li h3::before {
	display: none
}
.blog-details-content .comments ul li span {
	display: block;
	margin-bottom: 15px
}
.blog-details-content .comments ul li a {
	font-size: 14px;
	font-weight: 600
}
.blog-details-content .comments ul li a:hover {
	letter-spacing: 1px
}
.blog-details-content .comments ul li a i {
	margin-right: 5px
}
.blog-details-content .leave-reply {
	background-color: #f9fafb;
	padding: 20px
}
.blog-details-content .leave-reply .star {
	color: #ff0018
}
.blog-details-content .leave-reply h3 {
	margin-bottom: 30px;
	font-size: 24px;
	position: relative;
	display: inline-block;
	padding-bottom: 10px
}
.blog-details-content .leave-reply h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #201f25
}
.blog-details-content .leave-reply p {
	margin-bottom: 30px
}
.blog-details-content .leave-reply .form-group {
	margin-bottom: 25px
}
.blog-details-content .leave-reply .form-group #chb1 {
	margin-right: 5px
}
.blog-details-content .leave-reply .form-group label {
	margin-bottom: 10px
}
.blog-details-content .leave-reply input[type=checkbox],
.blog-details-content .leave-reply input[type=radio] {
	margin-right: 5px;
	position: relative;
	top: 1px
}
.sidebar-widget {
	margin-bottom: 35px;
	position: relative;
	padding: 20px;
	background-color: #f9fafb
}
.sidebar-widget.recent-post ul li a img {
    width: 80px;
    height: 80px;
}
.sidebar-widget h3 {
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	margin-top: -5px;
	display: inline-block;
	padding-left: 10px
}
.sidebar-widget h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: #21a2da
}
.sidebar-widget.search .search-form {
	background-color: #fff
}
.sidebar-widget.search .search-form .search-button {
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background-color: #21a2da;
	top: 20px;
	right: 20px;
	font-size: 20px;
	color: #fff;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.sidebar-widget.search .search-form .search-button:hover {
	background-color: #201f25
}
.sidebar-widget.recent-post ul li {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
	position: relative;
	padding-left: 90px
}
.sidebar-widget.recent-post ul li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0
}
.sidebar-widget.recent-post ul li a {
	font-size: 16px;
	color: #201f25;
	margin-bottom: 10px;
	font-weight: 600
}
.sidebar-widget.recent-post ul li a:hover {
	color: #21a2da
}
.sidebar-widget.recent-post ul li a img {
	position: absolute;
	top: 0;
	left: 0
}
.sidebar-widget.recent-post ul li span {
	display: block;
	font-size: 14px
}
.sidebar-widget.categories ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 17px;
	position: relative;
	padding-left: 20px
}
.sidebar-widget.categories ul li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	background-color: #21a2da
}
.sidebar-widget.categories ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none
}
.sidebar-widget.tags ul li {
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 10px
}
.sidebar-widget.tags ul li a {
	border: 1px solid #eee;
	padding: 8px 12px
}
.sidebar-widget.tags ul li a:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	background-color: #21a2da;
	color: #fff;
	border-color: #21a2da
}
.sidebar-widget.tags ul li:last-child {
	margin-bottom: 0
}
#murer-service .service-thumb img {
    height: 260px;
    width: 100%;
}
.services-details-content .services-contents {
	margin-bottom: 20px
}
.services-details-content .services-contents h2 {
	font-size:28px;
	margin-bottom: 0
}
.service-section.main-service .service-card {
    margin-top: 30px;
}
.service-section.main-service {
    padding-top: 40px;
    padding-bottom: 40px;
}
.services-details-content .services-contents .services-details-one {
	margin-bottom: 30px
}
.services-details-content .services-contents ul li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px
}
.services-details-content .services-contents ul li:last-child {
	margin-bottom: 0
}
.services-details-content .services-contents ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #201f25
}
.services-sidebar .services-category {
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	background-color: #fff;
	border: 1px solid #d9d9d9;
	margin-bottom: 30px
}
.services-sidebar .services-category ul li a {
    font-weight: 500;
    color: #fff;
    padding: 20px;
    border-bottom: 1px solid #d9d9d9;
    display: block;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    background: #21a2da;
}
.services-sidebar .services-category ul li a i {
	float: right;
	font-size: 20px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.services-sidebar .services-category ul li:last-child a {
	border-bottom: none
}
.services-sidebar .services-category ul li:hover a {
	color: #fff;
	background-color: #21a2da
}
.services-sidebar .services-category ul li:hover a i {
	color: #fff
}
.services-sidebar .address {
	background-color: #21a2da ;
	padding: 30px
}
.services-sidebar .address h3 {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: #fff
}
.services-sidebar .address h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #fff
}
.services-sidebar .address ul li {
	color: #fff;
	margin-bottom: 10px
}
.services-sidebar .address ul li:last-child {
	margin-bottom: 0
}
.services-sidebar .address ul li a {
	color: #fff
}
.services-sidebar .address ul li a:hover {
	color: #21a2da
}
.services-sidebar .address ul li.location {
	position: relative;
	padding-left: 65px
}
.services-sidebar .address ul li.location span {
	position: absolute;
	left: 0;
	top: 0
}
.our-services-area.our-services-area-three .single-services .services-content {
	padding: 15px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05)
}
.our-services-area.our-service-area-three .single-services {
	padding:15px;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1
}
.our-services-area.our-service-area-three .single-services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ff8c00;
	opacity: .7;
	z-index: -1
}
.our-services-area.our-service-area-three .single-services::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: -1;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.our-services-area.our-service-area-three .single-services span {
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.our-services-area.our-service-area-three .single-services p {
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.our-services-area.our-service-area-three .single-services:hover::after {
	opacity: 0
}
.our-services-area.our-service-area-three .single-services:hover span {
	color: #fff
}
.our-services-area.our-service-area-three .single-services:hover h3 a {
	color: #fff
}
.our-services-area.our-service-area-three .single-services:hover p {
	color: #fff
}
.our-services-area.our-service-area-three .services-content {
	margin-bottom: 30px
}
.our-services-area.our-service-area-three .services-content h2 {
	font-weight: 500;
	font-size: 35px;
	padding-bottom: 0
}
.our-services-area.our-service-area-three .services-content h2::before {
	display: none
}
.our-services-area.our-service-area-three .services-content .default-btn {
	margin-top: 0;
	margin-bottom: -7px
}
.services-content {
	margin-bottom: 30px
}
.services-content .top-title {
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
	color: #ff8c00;
	font-weight: 500
}
.services-content h2 {
	font-size: 40px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px
}
.services-content h2::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #201f25
}
.services-content .default-btn {
	margin-top: 8px
}
.single-services {
	margin-bottom: 30px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.single-services span {
	font-size: 50px;
	color: #00ccff;
	line-height: 1;
	margin-bottom: 20px;
	display: block
}
.single-services h3 {
	margin-bottom: 15px
	text-transform:uppercase;
}
.single-services h3 a {
    color: #201f25;
}
.services-content {
    text-align: center;
}
.single-services h3:hover a {
	color: #21a2da
}
.single-services:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
.causes-btn .bnt-1:hover {
    background-color: #21a2da;
}
.causes-btn .bnt-2:hover {
    background-color: #21a2da;
    color: #fff;
}
.causes-btn .bnt-1 {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background: #6fa744;
    text-transform: uppercase;
}
.single-services h3 {
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 600;
    font-size:20px;
}
.causes-btn .bnt-2 {
    color: #333;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background: #f3eef0;
    float: right;
}

.go-top {
	position: fixed;
	cursor: pointer;
	top: 82%;
	right: -10%;
	background-color: #21a2da;
	z-index: 4;
	width: 40px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s
}
.go-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #fff;
	-webkit-transition: .5s;
	transition: .5s;
	font-size: 20px
}
.go-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%
}
.go-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #21a2da;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .5s;
	transition: .5s
}
.go-top:hover {
	color: #fff;
	background-color: #21a2da
}
.go-top:hover::before {
	opacity: 1;
	visibility: visible
}
.go-top:hover i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden
}
.go-top:hover i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%
}
.go-top:focus {
	color: #fff
}
.go-top:focus::before {
	opacity: 1;
	visibility: visible
}
.go-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden
}
.go-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%
}
.go-top.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	right: 3%;
	top: 82%
}

.nice-select .list {
	width: 100%;
	border-radius: 0
}
.nice-select .option:hover {
	background-color: #21a2da;
}
.nice-select .option.selected.focus {
	color: #21a2da
}
.nice-select .current {
    color: #8b8c90;
}
.pagination-area {
	margin-top: 10px;
	text-align: center
}
.pagination-area .page-numbers {
	width: 40px;
	height: 40px;
	line-height: 37px;
	color: #201f25;
	text-align: center;
	display: inline-block;
	position: relative;
	margin-left: 3px;
	margin-right: 3px;
	font-size: 17px;
	background-color: #f5f6fa;
	border: 1px solid #d7d7d7
}
.pagination-area .page-numbers:hover {
	color: #fff;
	border-color: #21a2da;
	background-color: #21a2da
}
.pagination-area .page-numbers i {
    position: relative;
    font-size: 20px;
    top: 2px;
}
.pagination-area .page-numbers.current {
	color: #fff;
	border-color: #21a2da;
	background-color: #21a2da
}
.overly-one {
	position: relative;
	-webkit-transition: all ease .5s;
	transition: all ease .5s
}
.overly-one::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(#21a2da), to(transparent));
	background: linear-gradient(left, #21a2da, transparent);
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0;
	z-index: 1
}
.overly-one::after {
	content: "";
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 2px;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(#21a2da), to(transparent));
	background: linear-gradient(top, #21a2da, transparent);
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0
}
.overly-one .overly-two::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), to(#21a2da));
	background: linear-gradient(left, transparent, #21a2da);
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0
}
.overly-one .overly-two::after {
	content: "";
	position: absolute;
	top: -100%;
	right: 0;
	width: 2px;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, from(#21a2da), to(transparent));
	background: linear-gradient(bottom, #21a2da, transparent);
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	opacity: 0
}
.overly-one:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px)
}
.overly-one:hover .overly-two::before {
	left: 30px;
	opacity: 1
}
.overly-one:hover .overly-two::after {
	top: 30px;
	opacity: 1
}
.overly-one:hover::before {
	right: 30px;
	opacity: 1
}
.overly-one:hover::after {
	bottom: 30px;
	opacity: 1
}
.tab .tabs_item {
	display: none
}
.tab .tabs_item:first-child {
	display: block
}



/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position: relative;
	margin-bottom: 60px;
}

.sec-title .title{
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #777777;
	font-weight: 400;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.sec-title h2{
	position: relative;
	display: block;
	font-size: 36px;
	line-height: 1.2em;
	color: #222222;
	font-weight: 700;
	padding-bottom: 25px;
}

.sec-title h2:before{
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 80px;
	background-color: #21a2da;
	content: "";
	display: inline-block;
}

.sec-title .text{
	display: block;
	font-size: 15px;
	line-height: 30px;
	color: #777777;
	font-weight: 400;
	margin-top: 37px;
}

.sec-title.text-center h2:before{
	right: 0;
	margin: 0 auto;
}

.sec-title.light h2{
	color: #ffffff;
}

.sec-title.light .title{
	color: #bbbbbb;
}




.services-details-one img {
    width: 100%;
}

a.facebook-iocns i:hover{
    background-color: #3c5b9b !important;
    color: #fff !important;
    border: none !important;
} 
a.twitter-icon i:hover {
    background-color: #40c1df !important;
    color: #fff !important;
    border: none !important;
}
a.youtube-icons i:hover {
    background-color: #db2d29 !important;
    color: #fff !important;
    border: none !important;
}
a.instagrame-icons i:hover {
    background-color: #9f0f07 !important;
    color: #fff !important;
    border: none !important;
}


/*------------*/
.quote-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.quote-content p {
    text-align: justify;
}
.quality-lisitng {
    margin-top: 20px;
}
.quality-lisitng h5 {
    color: #6fa744;
    font-size: 18px;
}
.quality-lisitng ul li:before {
    position: absolute;
    font-family: FontAwesome;
    color:#21a2da;
    left: 0;
    top: 0;
    content: "\f111";
}

.quality-lisitng ul li {
    margin-top: 15px;
    position: relative;
    padding-left: 25px;
}
.quote-wrapper .contact-wrap .form-group {
    margin-bottom:15px;
}
.quote-wrapper .contact-wrap .form-group .nice-select{
	margin-bottom: 15px;
}
.quote-wrapper {
    background: url(../images/background-form.png) no-repeat right top;
    padding: 30px;
    margin-top: -170px;
    position: relative;
    z-index: 10;
}
.quote-header {
    margin-bottom: 20px;
    padding-right: 50px;
}

.quote-header p {
    color: #fff;
}
.quote-header h2 {
    color: #fff;
    text-shadow: #21a2da 0px 1px 2px;
    text-transform: uppercase;
}
.quote-wrapper .form-control {
    background: #fff !important;
}
.estimate-sect {
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.estimate-sect:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(13 13 13 / 50%);
    z-index: -1;
}
.estimate-content h2 {
    color: #fff;
    margin: 40px 0;
}
.estimate-content .default-btn {
    background: #f3f2f2;
    display: block;
    color: #6fa744;
    font-weight: 600;
}
/*--------------subscribe---------------*/
.subscribe-area {
    background: #21a2da;
}

.subscribe-area .container {
    max-width: 960px;
    margin: auto;
    border-bottom: 1px solid #35353a;
}
.subscribe-area .subscribe-content span {
	color: #fff;
	font-size: 16px;
	display: block;
	margin-bottom: 10px
}
.subscribe-area .subscribe-content h2 {
    font-size: 30px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}
.subscribe-area .newsletter-form {
	position: relative;
	margin-right: 100px
}
.subscribe-area .newsletter-form .form-control {
	height:57px;
	background-color: transparent;
	color: #fff
}
.subscribe-area .newsletter-form .form-control::-webkit-input-placeholder {
	color: #fff
}
.subscribe-area .newsletter-form .form-control:-ms-input-placeholder {
	color: #fff
}
.subscribe-area .newsletter-form .form-control::-ms-input-placeholder {
	color: #fff
}
.subscribe-area .newsletter-form .form-control::placeholder {
	color: #fff
}
.subscribe-area .newsletter-form .form-control:focus {
	border-color: #fff
}
.subscribe-area .newsletter-form .default-btn {
	position: absolute;
	top: 6px;
	right: -100px;
	background-color: #6fa744;
}
.subscribe-area .newsletter-form .default-btn:before{
	display: none;
}
.subscribe-area .newsletter-form .default-btn:after{
	display: none;
}
.subscribe-area .newsletter-form #validator-newsletter {
	color: #fff;
	font-size: 14px;
	position: absolute;
	bottom: -30px;
	left: 0
}

.maid-box {
    background-color: #f7f7f7;
    border-radius: 50% 50% 0 0;
}
.maid-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.maid-content h3 a {
    color: #212529;
}
.maid-content {
    text-align: center;
    padding: 20px;
}
.maid-box {
    margin-bottom: 30px;
}
.maid-servies {
    padding-top: 50px;
    padding-bottom: 30px;
}
.maid-content h3 a:hover {
    color: #21a2da;
}
.maid-img .icon-wrap {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 140px;
}
.maid-img img {
    margin: 0 auto;
    display: block;
}
.maid-img {
    position: relative;
}
.section-btn {
    margin-right: auto;
    margin-left: auto;
    display: table;
    margin-top: 20px;
    margin-bottom: 20px;
}
a.btn-black {
    background: #6fa744;
    color: #fff;
    padding: 15px 50px;
    border-radius: 4px;
    display: inline-block;
    transition: all ease-in-out 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
a.btn-black:hover {
    background: #21a2da;
}
.footer-social li:hover {
    background: #50afe4;
    border-color: #50afe4;
}
.footer-social li:hover a{
	color: #fff;
}
ul.footer-social {
    margin-top: 40px;
}
.footer-social li {
    display: inline-block;
    margin-right: 8px;
    border: 1px solid;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    border-radius: 50%;
}
/*---------------testimonial----------*/
.contact-home .form-control {
    margin-bottom: 20px;
}
.testimonial .section-title h2 {
    color: #fff;
}
.testi-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}
.testi-inner img {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}
.testi-inner h3 {
    margin-left: -100px;
}
.testi-inner h3 span {
    font-size: 14px;
    color: #247ffb;
    font-weight: 600;
    letter-spacing: 0;
    font-family: "Heebo",sans-serif;
    display: block;
}
.ratings li {
    display: inline-block;
}
.ratings li i {
    color: #fba311;
}
.testimonial .owl-carousel .owl-item img{
	width: auto;
}
.testimonial-wrapper {
    background:#f9fafa;
    padding: 40px;
    margin-bottom: 30px;
        -webkit-box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
}
.testimonial-detail p {
    font-size: 16px;
    line-height: 28px;
    font-style: italic;
    margin-bottom: 0;
    text-align: justify;
}
body::-webkit-scrollbar {
  width:6px;  
}
body::-webkit-scrollbar-track {
  background: #fff;     
}
body::-webkit-scrollbar-thumb {
  background-color:#21a2da;    
  border-radius: 15px;      
}

.section-title img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}
/*---------team css--------------*/
.single-services img {
    height: 300px;
}
.services-contents p {
    text-align: justify;
}
.services-sidebar .services-category ul li a:hover {
    background: #92c942;
}
#main-gallery .single-gallery{
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}
#main-gallery .single-gallery img{
	width: 100%;
}
/*============faq css==============*/
.faq-area {
	position: relative;
	z-index: 1
}
.faq-area .faq-shape-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0
}
.faq-area .faq-shape-2 {
	z-index: -1;
	position: absolute;
	bottom: 50px;
	left: 50px;
	-webkit-animation: moveBounceX 5s linear infinite;
	animation: moveBounceX 5s linear infinite
}
.faq-bg {
	max-width: 700px;
	margin: auto
}
.faq-accordion {
	max-width: 600px;
	margin-left: auto
}
.faq-accordion .faq-title {
	margin-bottom: 25px
}
.faq-accordion .faq-title h2 {
	font-size: 40px
}
.faq-accordion .faq-title span {
	font-size: 18px
}
.faq-accordion .accordion {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0
}
.faq-accordion .accordion .accordion-item {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #eee;
    padding: 10px;
    background-color: #fff;
}
.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0
}
.faq-accordion .accordion .accordion-item.active {
	margin-bottom: 0
}
.faq-accordion .accordion .accordion-title {
	padding: 15px 15px 15px 30px;
	color: #201f25;
	text-decoration: none;
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 600
}
.faq-accordion .accordion .accordion-title i {
	position: absolute;
	left: unset;
	left: 0;
	top: 20px;
	font-size: 16px;
	-webkit-transition: all ease .5s;
	transition: all ease .5s;
	color: #50afe4
}
.faq-accordion .accordion .accordion-title.active i::before {
	content:"\f068";
}
.faq-accordion .accordion .accordion-content {
	display: none;
	position: relative;
	margin-top: -5px;
	padding: 30px;
	padding-bottom: 0;
	padding-left: 30px
}
.faq-accordion .accordion .accordion-content span {
	font-weight: 500;
	color: #201f25
}
.faq-accordion .accordion .accordion-content p {
	margin-bottom: 0
}
.faq-accordion .accordion .accordion-content.show {
	display: block
}
.form-title {
    margin-bottom: 20px;
}
.form-title h4 span {
    font-weight: 400;
}
.form-title h4 {
    color: #fff;
    font-weight: 600;
}
.faq-title {
    margin-bottom: 20px;
}

.faq-title h4 span {
    font-weight: 400;
    color: #50afe4;
}
.faq-title h4 {
    font-weight: 600;
}
.main-contact-area .contact-wrap .form-group {
    margin-bottom: 30px;
}
.user-area-style .contact-form-action {
    max-width:800px;
    border-bottom: none;
    background-color: #f9fafb;
    padding: 30px;
    margin: auto;
}
.user-area-style .contact-form-action form .form-group .form-control {
    background-color: #ffffff;
}
.user-area-style .contact-form-action form .form-group {
    margin-bottom: 30px;
}
.user-area-style .contact-form-action form .login-action {
    margin-bottom: 30px;
}
.user-area-style .contact-form-action p {
    margin-top: 25px;
    line-height: 1;
}
.account-titles {
    margin-bottom: 50px;
}

.account-titles img {
    margin-right: auto;
    margin-left: auto;
    display: table;
}

/*------booking css----------*/
.book-area {
    border: 1px solid #d5dee3;
    box-shadow: 0 4px 4px #ccc;
    -webkit-box-shadow: 0 4px 4px #ccc;
    padding: 20px;
}
.book-area .form-group {
    margin-bottom: 20px;
}
.booking-title {
    text-align: center;
    padding: 20px 0;
}
.top-heading {
    margin-top: 20px;
    margin-bottom: 20px;
}
.selectors .control .control-indicator {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 15px;
    background-size: 50% 40%;
    background-color: #FFF;
    background: #21a2da;
    color: #fff;
    display: block;
    line-height: 36px;
    margin: auto;
    text-align: center;
    user-select: none;
    width: 100%;
    padding: 0px 20px;
}
.selectors .control input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}.selectors .control {
    color: #172C42;
    cursor: pointer;
    display: inline-block;
    font-weight: normal;
    position: relative;
    padding-right: 10px;
}
.selectors .control .control-label {
    color: #505D6D;
    font-size: 14px;
    margin-top: 6px;
    display: inline-block;
}
.postAJob_Group h3 {
    font-size: 20px;
    margin-bottom: 20px;
}
.postAJob_Group {
    margin-top: 40px;
}
.job-post-form hr{
    margin-top: 30px;
}
 .partial_where .zip-text {
    margin: auto;
    width: 72px;
}
 .partial_where span{
    margin-top: 10px;
    display: block;
 }
 .bg-dark1 {
    background-color: #6fa744!important;
}
.qty .count {
    color: #172C42;
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 0 2px;
    min-width: 35px;
    text-align: center;
}
.postAJob_Group.slt select {
    height: 45px;
    color: #1b0238;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    border: 1px solid #eeeeee;
    background-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 6px;
    padding: 0 0 0 15px;
    font-weight: 500;
    font-size: 14px;
    font-style: italic;
    width: 350px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
} 
.selectors .control.segment-control .control-indicator {
    border-radius: 0px;
    padding: 0px 25px;
    min-height: 30px;
    line-height: 30px;
    max-width: none;
}
.selectors .control.segment-control.segment-multi-select .control-indicator {
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}
.selectors .control input:checked ~ .control-indicator {
    color: #FFF;
    background-color: #92c942;
}
.selectors.recurring.days-selection {
    margin-bottom: 20px;
}.payment-img {
    margin-bottom: 15px;
}
.booking-footer {
    padding: 20px 0;
}
.booking-footer button {
    display: block;
    width: 100%;
}
.booking-sidebar {
    border: 1px solid #d5dee3;
    box-shadow: 0 4px 4px #ccc;
    -webkit-box-shadow: 0 4px 4px #ccc;
    padding: 20px;
}
.side-widget {
    padding: 20px;
    margin-bottom:20px;
}

.side-widget h4 {
    font-size: 18px;
}
.side-widget i {
    color: #20b894;
    font-size: 24px;
    margin-bottom: 15px;
}
.side-widget {
    text-align: center;
}
.booking-total li {
    margin-bottom: 20px;
}

.booking-total ul li .icon_1 {
    margin-right: 12px;
    font-size: 18px;
    color: #21a2da;
}
.booking-total h2 {
    font-size: 22px;
    text-align: center;
    color: #21a2da;
}
.booking-total {
    border: 1px solid #d5dee3;
    box-shadow: 0 4px 4px #ccc;
    -webkit-box-shadow: 0 4px 4px #ccc;
    padding: 20px;
    margin-top: 30px;
}
.totalss .pricess {
    font-size: 28px;
    float: right;
    color: #189f77;
    font-weight: 700;
}

.totalss .ttttl {
    font-size: 20px;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
}