

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

/** [00. General css] **/
body {
	padding: 0;
	margin: 0;
	font-size: 12px;
	color: #000;
	font-family: 'Open Sans', sans-serif;
}
a {
	outline: none !important;
	text-decoration: none;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover,
a:focus,
select:focus,
button:focus {
	outline: none;
	text-decoration: none;
}
* {
	margin: 0;
	padding: 0;
}
img {
	border: none;
	vertical-align: middle;
	width: 100%;
}
li {
	list-style: none;
}
p{
	letter-spacing: .01rem;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea,
button {
	outline: none !important;
	font-family: 'Poppins', sans-serif;
}
input,
textarea,
select {
	/*-moz-appearance: none; -webkit-appearance: none;*/
}
.section_bg{
	background: #f8f8f8;
}
header {
	width: 100%;
	margin: 0px;
	padding: 0px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.logowebsite{
    width: 50px;
    margin-right: 5px;
}
.nav_sec {
	width: 100%;
	margin: 0;
	padding: 16px 0;
	background-color: #03440e;
}
.nav_sec .navbar-brand {
	padding: 0;
	margin: 0;
	font-family: 'Poppins', sans-serif;
font-size: 23px;
	color: #5bc86d;
	font-weight: 600;
}
.logo-text{
	color: white;
	
}
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
	color: #fff;
}
.nav_sec .navbar {
	padding: 0;
}

.nav_sec .navbar-nav {
	margin-top: 7px;
}
.nav_sec .navbar-light .navbar-nav li {
	margin: 0 0 0 30px;
	position: relative;
}
.nav_sec .navbar-light .navbar-nav .nav-link {
	margin: 0;
	padding: 0 0 5px 0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #fff;
}
.nav_sec .navbar-light .navbar-nav .nav-link:hover:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
}
.nav_sec .navbar-light .navbar-nav li.active:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -2px;
}
.dropdown-toggle:after {
	position: relative;
	top: 2px;
}
.nav_sec .dropdown-menu {
	margin-top: 8px;
	border-radius: 0;
	border: none;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
	padding: 5px;
}
.nav_sec .dropdown-item {
	padding: 5px 10px;
	font-size: 14px;
	color: #333;
}
.nav_sec .dropdown-item:hover,
.nav_sec .dropdown-item.active {
	color: #fff;
}
section {
	width: 100%;
	margin: 0px;
	padding: 100px 0;
}
.global_title {
	margin: 0 0 40px 0;
	padding: 0;
	font-size: 45px;
	color: #111;
	font-weight: 600;
	line-height: 33px;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 99;
}
.global_title.left {
	text-align: left;
}
.global_title.white {
	color: #fff;
}
.owl-carousel .owl-dots{
	margin-top: 30px;
}

/** Loader css **/
.fixed-action-btn {
	position: fixed;
	right: 23px;
	bottom: 23px;
	padding-top: 15px;
	margin-bottom: 0;
	z-index: 99999;
}
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #5076db;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 1001;
}
#loader-logo {
	display: block;
	position: absolute;
	left: 48%;
	top: 46%;
	z-index: 1001;
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff;
	-webkit-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #5bc86d;
	-webkit-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #222222;
	z-index: 1000;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
	left: 0;
}
#loader-wrapper .loader-section.section-right {
	right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}

/** Color panel **/
.skin-switcher {
	display: none;
	position: fixed;
	right: -158px;
	top: 150px;
	width: 158px;
	z-index: 998;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.skin-switcher .option-box-title {
	background: #5076db;
	padding: 3px 15px;
}
.skin-switcher .option-box-title h3 {
	color: #fff;
	margin: 0;
	font-size: 18px;
	text-align: center;
	padding: 6px 9px;
}
.skin-switcher ul {
	background: #fff;
	padding: 15px;
	overflow: auto;
	border: 2px solid #5076db;
}
.skin-switcher .section i {
	font-size: 16px;
	margin-right: 10px;
}
.skin-switcher a.color-option-box {
	position: absolute;
	right: 158px;
	width: 40px;
	height: 40px;
	color: #000;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 25px;
	z-index: -1;
	text-decoration: none;
	background: #fff;
	top: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px 0 0 10px;
	/* border: 1px solid #333; */
}
.skin-switcher ul li {
	width: 48px;
	height: 25px;
	margin: 7px;
	display: inline-flex;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
}
.skin-switcher ul li span{
	cursor: pointer;
}
.skin-switcher .color{
	width: 50px;
	height: 25px;
	display: flex;
}
.skin-switcher .skin a {
	display: block;
	width: 70px;
	height: 30px;
	margin-left: 0;
	margin-top: 0;
	margin-right: 5px;
	text-align: center;
	line-height: 30px;
	border: 2px transparent solid;
}
#color-1 {
	background: linear-gradient(to right, #5076db 0%, #5076db 50%, #5bc86d 50%, #5bc86d 100%);
}
#color-2 {
	background: linear-gradient(to right, #143d57 0%, #143d57 50%, #f4b41a 50%, #f4b41a 100%);
}
#color-3 {
	background: linear-gradient(to right, #5b0e2e 0%, #5b0e2e 50%, #ffa781 50%, #ffa781 100%);
}
#color-4 {
	background: linear-gradient(to right, #2f2e2a 0%, #2f2e2a 50%, #ff6f28 50%, #ff6f28 100%);
}
#color-5 {
	background: linear-gradient(to right, #b78338 0%, #b78338 50%, #ba9f72 50%, #ba9f72 100%);
}
#color-6 {
	background: linear-gradient(to right, #922a8e 0%, #922a8e 50%, #dc83b6 50%, #dc83b6 100%);
}
.btn_info {
	width: 100%;
	margin: 0;
	padding: 0;
}
#ltr_btn {
	margin: 7px;
	padding: 8px 45px;
	display: inline-block;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
}
#rtl_btn {
	margin: 7px;
	padding: 8px 45px;
	display: inline-block;
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
}

/** [01. Hero section css] **/
/** Home page hero section css **/
.hero_slider .item .home{
    height: 100vh;
}
.slider_sec {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	position: relative;
}
.slider_sec .home-slider-image-1{
	background: url(../images/slider_img_1.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3);
    /*position: absolute;*/
}
.slider_sec .home-slider-image-2{
	background: url(../images/slider_img_2.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3);
}
.slider_sec .home-slider-image-3{
	background: url(../images/background_bg.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3);
}
.slider_sec .home-slider-image-4{
	background: url(../images/manegment-img.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3);
}
.slider_sec .caption_info {
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.slider_sec .caption_info .inner {
	width: 100%;
	max-width: 840px;
	margin: 7px auto 0 auto;
	padding: 0;
}
.slider_sec .caption_info h1 {
	margin: 0 0 32px 0;
	padding: 0;
	font-size: 75px;
	color: #fff;
	font-weight: 700;
	line-height: 90px;
	position: relative;
	z-index: 999;
}
.slider_sec .caption_info h1 .type{
	color: #fff;
}
.store_btn {
	margin: 0 8px;
	padding: 20px 28px 20px 28px;
	display: inline-block;
	border-radius: 30px;
	font-size: 13px;
	color: #fff;
	line-height: 20px;
	position: relative;
	text-align: left;
	font-weight: 300;
	position: relative;
	z-index: 99;
}
.store_btn strong {
	display: block;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;

}
.store_btn i {
	font-size: 30px;
	position: absolute;
	top: 13px;
	left: 22px;
}
.store_btn:hover {
	background: #fff !important;
	color: #fff;
}
.slider_sec .owl-carousel .owl-dots {
	width: 100%;
	margin: 0 0 -4px 0;
	padding: 0;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	z-index: 999;
}
.slider_sec .owl-carousel .owl-dot {
	margin: 0 3px;
	display: inline-block;
}
.slider_sec .owl-carousel .owl-dot span {
	width: 11px;
	height: 11px;
	display: block;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}
.slider_sec .owl-carousel .owl-dot.active span {
	background: #fff;
	border: 3px solid #000;
	box-shadow: 0px 0px 0.1px 2px #fff;
}
.slider_sec .owl-carousel .owl-nav button.owl-prev,
.slider_sec .owl-carousel .owl-nav button.owl-next {
	width: 45px;
	height: 45px;
	font-size: 0;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	background: none !important;
	z-index: 555;
	border: 2px solid rgba(255, 255, 255, 0.3);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.slider_sec .owl-carousel .owl-nav button.owl-prev {
	left: 30px;
}
.slider_sec .owl-carousel .owl-nav button.owl-prev:after {
	content: "\21BC";
	font-family: 'FontAwesome';
	font-size: 25px;
	color: #fff;
}
.slider_sec .owl-carousel .owl-nav button.owl-next {
	right: 30px
}
.slider_sec .owl-carousel .owl-nav button.owl-next:after {
	content: "\21C0";
	font-family: 'FontAwesome';
	font-size: 25px;
	color: #fff;
}

/** Inner page hero section **/
.service_block img {
	width: 150px;
}
#africa-box {
	margin-top: 63px !important;
	padding-bottom: 35px;
}
#ghanabox{
	margin-top: 63px !important;
	padding-bottom: 20px;
}
#asante-box{
	padding-bottom: 40px;
}
#waterwahlm-img{
	width: 88px;
}
.inner_banner {
	width: 100%;
	height: 70vh;
	margin: 0;
	background: url(../images/about-bg.jpg) center center no-repeat;
	background-size: cover;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inner_banner-contact {
	width: 100%;
	height: 90vh;
	margin: 0;
	background: url(../images/contact-banner.jpg) center center no-repeat;
	background-size: cover;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}.inner_banner-client {
	width: 100%;
	height: 70vh;
	margin: 0;
	background: url(../images/sbg.webp) center center no-repeat;
	background-size: cover;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inner_banner-services{
	width: 100%;
	height: 70vh;
	margin: 0;
	background: url(../images/about-us.jpg) center center no-repeat;
	background-size: cover;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.inner_banner h1 ,.inner_banner-client h1,.inner_banner-contact h1,.inner_banner-services h1 {
	margin: 0;
	padding: 0;
	font-size: 70px;
	color: #fff;
	font-weight: 700;
	line-height: 80px;
}
ul.breadcrum {
	width: 100%;
	margin: 0;
	padding: 20px 0;
	position: absolute;
	bottom: 0;
	left: 0;
}
ul.breadcrum li {
	margin: 0 8px;
	padding: 0;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	position: relative;
}
ul.breadcrum li:before {
	content: "\f105";
	font-family: 'FontAwesome';
	font-size: 16px;
	color: #fff;
	position: absolute;
	top: 0;
	right: -12px;
}
ul.breadcrum li:last-child:before {
	display: none;
}
ul.breadcrum li a {
	color: #fff;
}

/** [02. About section css] **/
.about_sec {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}
.more-details{
	font-size: 17px;
	color: rgb(91, 200, 109) !important;
	font-weight:700 ;
}

.about_sec .about-img
{
	margin: -5px auto 0 auto;
	max-width: 600px;
	max-height: 600px;
	position: relative;
}
.about_sec .about-img:before {
	content: "";
	width: 190px;
	height: 190px;
	position: absolute;
	top: 0;
	right: 0;
	background-size: 100%;
	background-repeat: no-repeat;
    z-index: 3;
}
.about_sec .about-img:after {
	content: "";
	width: 110px;
	height: 110px;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	opacity: .5;    
	z-index: 3;
	-webkit-animation: mover_img 2s infinite  alternate;
    animation: mover_img 2s infinite  alternate;
}
@-webkit-keyframes mover_img {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}
@keyframes mover_img {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}
.about_sec .about-img img {
	width: 100%;
	background-size: 100%;
	position: relative;
	z-index: 2;
}
.about_sec .about-img .back-img{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: url(../images/about/doter-bg.png);
	background-size: 100%;
	background-repeat: no-repeat;
	z-index: 1;
}
.about_sec .detail {
	width: 100%;
	margin: 0;
	padding: 0;
}
.about_sec .detail h3 {
	margin: -8px 0 14px 0;
	padding: 0;
	font-size: 18px;
	color: #555;
	line-height: 30px;
	font-weight: 400;
	/*text-transform: uppercase;*/
}
.about_sec .detail p {
	margin-bottom: 15px;
	padding: 0;
	font-size: 14px;
	color: #797979;
	line-height: 24px;
	font-weight: 300;
}
.about_sec .detail p:last-child{
	margin-bottom: -5px;
}
.about_sec .join_btn {
	margin: 10px 0 -5px 0;
}
.ss{
	cursor: pointer;
}
/** [03. Service section css] **/
/** Home page service section css **/
.services-under-title{
	font-size: 18px;
	text-align: center;
	line-height: 35px;
	color: #555;
}
.ddd{
	display: grid;
	grid-template-columns: 300px 600px  !important; 
	gap: 50px
	;
   justify-content: center; 
	margin-left: 250px;
}
.mangement-hr{
	margin-top: 30px !important;
}
.contact-us-footer{
	margin-right: 100px;
}
.popup.my-popup .popup-body {
    color: #000000;
    /* margin-left: 3%; */
    /* margin-right: 3%; */
    line-height: auto;
    /* font-size: min(25px, 5.5vw); */

    text-align: center !important;
	font-family: 'Open Sans', sans-serif;
}
.popup-title{
	margin-top: 3vh;
font-weight: 700 !important;
font-size: 25px !important;
}
.popup.my-popup1 .popup-body, .popup.my-popup7 .popup-body ,.popup.my-popup2 .popup-body,.popup.my-popup3 .popup-body,.popup.my-popup4 .popup-body,.popup.my-popup5 .popup-body,.popup.my-popup .popup-body{
font-size: 20px;
}

.service_sec .space-lg-3 > div:nth-last-child(-n + 3){
	margin: 30px 0 0 0;
}
.business-set-up{
	margin-top: 30px;
 
}
.service_sec .service_block {
	width: 100%;
       height: 300px;
	   padding: 20px ;
	border: 1px solid #e6e6e6;
    border-radius: 10px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	position: relative;
	z-index: 3;
}
.panthera-box{
	margin-top: 32px !important;
}
.service_sec .service_block {
	margin-top: 30px !important;
}
.service_sec .service_block:hover{
	border: 1px solid transparent;
}
.service_sec .service_block:before {
	content: "";
	height: 90px;
	background: url(../images/service_block_curve.png) top center no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: -15px;
	left: -15px;
	right: -15px;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	z-index: -2;
}
.service_sec .service_block:after {
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	z-index: -1;
	background: #fff;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	border-radius: 10px;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}
.service_sec .service_block figure {
	width: 100%;
    max-width: 61px;
    height: 56px;
    margin: 0 0 16px 0;
    padding: 0;
    background-size: 100% 100%;
    opacity: 1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.service_sec .service_block h3 {
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 22px;
	color: #333;
	font-weight: 500;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.service_sec .service_block p {
	margin: 0 0 2px 0;
	padding: 0;
	font-size: 14px;
	color: #797979;
	line-height: 24px;
	font-weight: 300;
}
.service_sec .move_link {
	margin: 0;
	padding: 0;
	font-size: 28px;
	color: #797979;
	line-height: 38px;
}
.service_sec .service_block:hover:before {
	opacity: 1;
}
.service_sec .service_block:hover:after {
	opacity: 1;
}
.service_sec .service_block:hover figure {
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.service_sec .service_block:hover h3 {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
/** Inner pages service section css **/
.service_sec.service_inn {
	background: none;
	padding: 100px 0;
}
.service_sec.service_inn .global_title {
	margin-top: 80px;
}
.service_sec.service_inn .inner {
	width: 100%;
	margin: 0;
	padding: 0;	
	background-size: auto auto;
}
.service_sec.service_inn .inner:before {
	display: none;
}
.service_sec.service_inn .left_info {
	width: 100%;
	margin: 0;
	padding: 0;
}
.service_sec.service_inn .right_info {
	width: 100%;
	margin: 0;
	padding: 0;
}
.service_sec.service_inn .right_info .service_inn_block .detail {
	padding: 0 0 0 12px;
	text-align: left;
}
.service_sec .service_inn_block {
	width: 100%;
	margin: 0 0 50px 0;
	padding: 0;
}
.service_sec .service_inn_block figure {
	width: 80px;
	height: 80px;
	float: right;
	margin: 0;
	padding: 0;
	border: 2px solid #dcdcdc;
	border-radius: 50px;
}
.service_sec .service_inn_block .detail {
	margin: 0;
	padding: 0 12px 0 0;
	overflow: hidden;
	text-align: right;
}
.service_sec .service_inn_block .detail h3 {
	margin: 0 0 12px 0;
	padding: 0;
	font-size: 25px;
	color: #333;
	font-weight: 600;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.service_sec .service_inn_block .detail p {
	margin: 0 0 2px 0;
	padding: 0;
	font-size: 16px;
	color: #797979;
	line-height: 23px;
}
.service_sec.service_inn .left_info .service_inn_block:nth-child(1) {
	margin-left: 100px;
}
.service_sec.service_inn .left_info .service_inn_block:nth-child(2) {
	padding-right: 20px;
}
.service_sec.service_inn .left_info .service_inn_block:nth-child(3) {
	padding-right: 50px;
}
.service_sec.service_inn .right_info .service_inn_block:nth-child(1) {
	margin-left: -100px;
}
.service_sec.service_inn .right_info .service_inn_block:nth-child(2) {
	padding-left: 20px;
}
.service_sec.service_inn .right_info .service_inn_block:nth-child(3) {
	padding-left: 50px;
}
.service_style_2 .service-space  > div:nth-last-child(-n + 4){
	margin-top: 30px;
}



/** [07. Team section css] **/
/** Home pages team section css **/
.team_sec {
	width: 100%;
	margin: 0;
	background: #f8f8f8;
	text-align: center;
}
.team_sec .container{
	padding:0;
}
.team_sec .inner {
	width: 100%;
	margin: 0;
	padding: 0;
}
.team_sec .team_block {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 15px 15px 0 15px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e1e1e1;
	position: relative;
	/*overflow: hidden;*/
}
.team_sec .team_block:before {
	content: "";
	height: 90px;
	background: url(../images/instagram_dot.png) top center no-repeat;
	position: absolute;
	bottom: -15px;
	left: -15px;
	right: -15px;
	background-size: 100% 100%;
	z-index: -1;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .team_block figure {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .team_block figure img {
	width: 100%;
	display: inline-block;
}
.team_sec .team_block h3 {
	margin: 0;
	padding: 10px;
	font-size: 22px;
	color: #333;
	font-weight: 500;
	line-height: 25px;
    border-radius: 0 0 10px 10px;
	background: #fff;
	border-top: 1px solid #e1e1e1;
	position: absolute;
	bottom: 0;
	left: -15px;
	right: -15px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .team_block h3 small {
	display: block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #858585;
	line-height: 26px;
}
.team_sec .caption_global {
	height: 100%;
	padding: 15px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 10px;
	text-align: center;
	z-index: 99;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .caption_global .cap_inn {
	width: 100%;
	height: 100%;
	display: table;
}
.team_sec .caption_global .cap_info {
	height: 100%;
	vertical-align: middle;
	display: table-cell;
}
.team_sec .caption_global h4 {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 22px;
	color: #fff;
	font-weight: 500;
	clear: both;
}
.team_sec .caption_global h4 small {
	margin-top: 5px;
	display: block;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
}
.team_sec .caption_global p {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 14px;
	color: #fff;
	line-height: 24px;
	font-weight: 300;
	letter-spacing: .03rem;
}
ul.team_social {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul.team_social li {
	margin: 0 4px;
	padding: 0;
	display: inline-block;
}
ul.team_social li a {
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	line-height: 34px;
	font-size: 15px;
	color: #fff;
	overflow: hidden;
}
ul.team_social li a:hover {
	color: #fff;
}
.team_sec .team_block:hover .caption_global {
	opacity: 1;
}
.team_sec .team_block:hover h3 {
	opacity: 0;
}
.team_sec .team_block:hover:before {
	opacity: 1;
}
.team_sec .owl-carousel.owl-drag .owl-item {
	padding: 0 15px;
}
.team_sec .owl-carousel .owl-dots {
	width: 100%;
	margin: 18px 0 -5px 0;
	padding: 0;
	text-align: center;
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
}
.team_sec .owl-carousel .owl-dot {
	margin: 0 5px;
	display: inline-block;
}
.team_sec .owl-carousel .owl-dot span {
	width: 11px;
	height: 11px;
	display: block;
	border-radius: 5px;
	opacity: 0.5;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .owl-carousel .owl-dot.active span {
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .owl-carousel .owl-nav button.owl-prev,
.team_sec .owl-carousel .owl-nav button.owl-next {
	width: 45px;
	height: 45px;
	font-size: 0;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	background: none !important;
	z-index: 555;
	border: 2px solid #e1e1e1;
	color: #97979b;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.team_sec .owl-carousel .owl-nav button.owl-prev {
	left: -65px;
}
.team_sec .owl-carousel .owl-nav button.owl-prev:after {
	content: "\21BC";
	font-family: 'FontAwesome';
	font-size: 25px;
}
.team_sec .owl-carousel .owl-nav button.owl-next {
	right: -65px
}
.team_sec .owl-carousel .owl-nav button.owl-next:after {
	content: "\21C0";
	font-family: 'FontAwesome';
	font-size: 25px;
}
.team_sec .owl-carousel .owl-nav button.owl-prev:hover,
.team_sec .owl-carousel .owl-nav button.owl-next:hover {
	color: #fff;
}
ul.team_social li a:hover i {
	-webkit-animation: toTopFromBottom 0.3s forwards;
	-moz-animation: toTopFromBottom 0.3s forwards;
	animation: toTopFromBottom 0.3s forwards;
}
@-webkit-keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toTopFromBottom {
	49% {
		-moz-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toTopFromBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

/** Inner pages team section css **/
.team_sec.team_inn .team_block:before {
	z-index: 0;
}
.team_sec .team-space {
	margin-bottom: -20px;
}
.team_sec .team-space > div:nth-last-child(-n + 4){
	margin-top: 10px;
}

/** [08. Package section css] **/
/** Home page package section css **/
.package_sec {
	width: 100%;
	margin: 0;
	background: url(../images/package_bg.jpg) center center no-repeat fixed;
	background-size: cover !important;
    background-repeat: no-repeat;
    background-position: top;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}
.package_sec .inner {
	width: 100%;
	margin: -8px 0 0 0;
	padding: 0;
	position: relative;
	z-index: 98;
}
.package_sec .package_block {
	width: 100%;
	margin: 0;
	padding: 25px 30px;
	background: #fff;
	border-radius: 10px;
	text-align: center;
}
.package_sec .package_block h3 {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 500;
}
.package_sec .package_block .price {
	display: block;
	margin: 10px 0;
	padding: 0;
	font-size: 45px;
	font-family: 'Poppins', sans-serif;
	color: #333;
	font-weight: 700;
	position: relative;
	z-index: 2;
}
.package_sec .package_block .price small {
	font-size: 16px;
	color: #959599;
	font-weight: 300;
}
.package_sec .buy_btn {
	margin-top: 10px;
	padding: 10px 35px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.package_sec .package_block.first {
	border-radius: 10px 0 0 10px;
}
.package_sec .package_block.last {
	border-radius: 0 10px 10px 0;
}
ul.package_list {
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0;
	text-align: center;
}
ul.package_list li {
	margin: 0 8px 15px 0;
	display: block;
	font-size: 14px;
	color: #797979;
	position: relative;
	font-weight: 300;
}
ul.package_list li i {
	font-size: 16px;
	margin-right: 8px;
}
ul.package_list li span {
	color: #555;
	font-weight: 600;
}
.package_sec .owl-item.active.center {
	position: relative;
	z-index: 999;
}
.package_sec .owl-item.active.center:before {
	content: "";
	height: 90px;
	background: url(../images/package_dot.png) top center no-repeat;
	position: absolute;
	bottom: 5px;
	left: -30px;
	right: -30px;
	background-size: 100% 100%;
}
.package_sec .owl-item.active.center .package_block {
	width: 95%;
	padding: 25px 30px;
	margin: auto;
	transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.package_sec .owl-item.active.center .package_block .price {
	color: #fff;
}
.package_sec .owl-item.active.center .package_block .price small {
	color: #fff;
	opacity: 0.7
}
.package_sec .owl-item.active.center .package_block ul.package_list li {
	color: #ddd;
}
.package_sec .owl-item.active.center .package_block ul.package_list li:before {
	color: #fff;
}
.package_sec .owl-item.active.center .package_block ul.package_list li span {
	color: #fff;
}
.package_sec .owl-item.active.center .radial-out:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.package_sec .owl-item.active.center .radial-out:hover {
	background: #fff;
	color: #000;
}
.bb{
	background-color: #5bc86d !important;
}
.package_sec .owl-carousel.owl-drag .owl-item {
	padding: 30px 0 40px 0;
}
.package_sec .owl-carousel .owl-dots {
	width: 100%;
	margin: 32px 0 -5px 0;
	padding: 0;
	text-align: center;
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
}
.package_sec .owl-carousel .owl-dot {
	margin: 0 5px;	
	display: inline-block;
}
.package_sec .owl-carousel .owl-dot span {
	width: 11px;
	height: 11px;
	display: block;
	border-radius: 10px;
	background: #fff;
	opacity: 0.5;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.package_sec .owl-carousel .owl-dot.active span {
	background: #fff;
	opacity: 1;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.package_sec .owl-carousel .owl-nav button.owl-prev,
.package_sec .owl-carousel .owl-nav button.owl-next {
	width: 45px;
	height: 45px;
	font-size: 0;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	background: none !important;
	z-index: 555;
	border: 2px solid #fff;
	color: #fff;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.package_sec .owl-carousel .owl-nav button.owl-prev {
	left: -65px;
}
.package_sec .owl-carousel .owl-nav button.owl-prev:after {
	content: "\21BC";
	font-family: 'FontAwesome';
	font-size: 25px;
}
.package_sec .owl-carousel .owl-nav button.owl-next {
	right: -65px
}
.package_sec .owl-carousel .owl-nav button.owl-next:after {
	content: "\21C0";
	font-family: 'FontAwesome';
	font-size: 25px;
}
.package_sec .owl-carousel .owl-nav button.owl-prev:hover,
.package_sec .owl-carousel .owl-nav button.owl-next:hover {
	color: #fff;
}

/** Inner pages package css **/


/** [10. Work section css] **/
.work_sec {
	width: 100%;
	margin: 0;
	background: url(../images/work_bg.jpg) center center no-repeat fixed;
	background-size: cover;
	text-align: center;
	overflow: hidden;
	background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.8);
}
.work_sec_container{
	margin-bottom: -5px;
}
.work_sec p {
	margin: -8px auto 20px auto;
    padding: 0;
    font-size: 14px;
    color: #fff;
    line-height: 29px;
    font-weight: 300;
    max-width: 500px;
    letter-spacing: .03rem;
}

/** [11. Blog section css] **/
/** Home page blog section css **/


/** [13. Contact us section css] **/
/** Home page contact us css **/
.form_info {
	width: 100%;
	margin: 0;
	background: url(../images/map_bg.png) center center no-repeat;
	background-size: auto auto;
	overflow: hidden;
}
.form_info .form-control {
	height: 50px;
	margin: 0 0 30px 0;
	padding: 0 24px;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #797979;
	border: 2px solid #e1e1e1;
	box-shadow: none;
	border-radius: 30px;
}
.form_info .form-control.field {
	height: 130px;
	padding-top: 15px;
}
.form_info .buy_btn {
	cursor: pointer;
}
.buy_btn {
	margin: 0;
	padding: 10px 20px;
	display: inline-block;
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	border-radius: 30px;
	border: none;
    letter-spacing: .01rem;
}
.buy_btn:hover {
	color: #fff;
}
.form_info input::placeholder, .form_info textarea::placeholder{
    color: #bdbdbd;
    font-weight: 200; 
} 
  
.form_info input:-ms-input-placeholder, .form_info textarea:-ms-input-placeholder { 
    color: #bdbdbd; 
    font-weight: 200;
} 
  
.form_info input::-ms-input-placeholder, .form_info textarea::-ms-input-placeholder {
    color: #bdbdbd; 
    font-weight: 200;
}
.buniness-img{
	object-fit: cover !important;
	height: 450px;
}
.manegment-title-page{
	margin-top: 15px;
	font-size: 30px !important;
	
}
  .client-titles{

	margin-top: 8px !important;

}  
.ghana-title{
	font-size: 18.2px !important;
}
/** Inner pages contact us css **/
.form_info.form_inn {
	background: url(../images/map_bg.png)  center no-repeat;
}
.form_info.form_inn .inner {
	width: 100%;
	max-width: 970px;
	margin: 0 auto 50px auto;
	padding: 0;
}
.form_info .map_info {
	width: 100%;
	margin: 0 0 -5px 0;
	padding: 0;
	position: relative;
}
.form_info .map_info .cap_info {
	width: 100%;
	max-width: 330px;
	margin: 0;
	padding: 30px 30px 12px 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 10px;
	right: 10px;
}
ul.c_info {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul.c_info li {
	margin: 0 0 18px 0;
	padding: 0;
	display: block;
	font-size: 15px;
	color: #bebebe;
	line-height: 25px;
	position: relative;
}
ul.c_info li .detail {
	display: flex;
	align-items: center;
}
ul.c_info li .detail .text {
	margin-left: 15px; 
}
ul.c_info li a {
	color: #bebebe;
}
ul.c_info li i {
	width: 38px;
	height: 38px;
	display: block;
	border: 2px solid #cccccc;
	border-radius: 50%;
	text-align: center;
	line-height: 34px;
	font-size: 16px;
	color: #10131c;
	/*position: absolute;
	top: 0;
	left: 0;*/
}

/** [14. Footer css] **/
footer {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
.footer_detail {
	width: 100%;
	margin: 0;
	padding: 50px 0 0 0;
	background: #10131c;
	position: relative;
	overflow: hidden;
}
.footer_detail .inner {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 99;
}
.footer_detail h3 {
	margin: -4px 0 25px 0;
	padding: 0;
	font-size: 22px;
	color: #fff;
	font-weight: 500;
}
ul.footer_link {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul.footer_link li {
	margin: 0 0 7px 0;
	padding: 0;
	display: block;
	font-size: 15px;
	font-weight: 300;
    letter-spacing: .01rem;
	color: #bebebe;
}
ul.footer_link li:last-child{
	margin-bottom: 0;
}
ul.footer_link li a {
	color: #bebebe;
}
ul.add_info {
	width: 100%;
	margin: 0;
	padding: 0;
}
.left-footer-details{
	display: flex;
}
.text-location-container{

	display: flex;
	flex-direction: column;
	gap: 10px;
}
ul.add_info li {
	margin: 0 0 20px 0;
	padding: 0;
	display: block;
	font-size: 15px;
	color: #bebebe;
	line-height: 28px;
	position: relative;
}
ul.add_info li .detail {
	display: flex;
    align-items: center;
}
ul.add_info li .detail .text {
    margin-left: 21px;
    font-weight: 300;
    letter-spacing: .01rem;
}

ul.add_info li:last-child {
	margin-bottom: 0;
}
ul.add_info li i {
	width: 38px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.20);
	border-radius: 50%;
	font-size: 18px;
	color: #bebebe;
	text-align: center;
	line-height: 34px;
}
.fa-map-marker{
	width: 38px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.20);
	border-radius: 50%;
	font-size: 18px;
	color: #bebebe;
	text-align: center;
	line-height: 34px;
	margin-right: 20px;
}


ul.add_info li a {
	color: #bebebe;
}
.text-location{
	color: #bebebe;
font-size: 14px;
    font-weight: 300;
    letter-spacing: .01rem;
}
.text-location strong{
	color: white;
	font-size: 16px !important;
}

.footer_detail .form-control {
	height: 50px;
	margin: 20px 0 15px 0;
	padding: 0 24px;
	background: none;
	border: 2px solid rgba(255, 255, 255, 0.20);
	box-shadow: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #bebebe;
	border-radius: 30px;
}
.footer_detail .subscribe_btn {
	margin: 0; 
    padding: 10px 20px;
    display: inline-block;
    border-radius: 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    border: none;
    cursor: pointer;
    letter-spacing: .01rem;
}
ul.footer_social {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul.footer_social li {
	margin: 0 0 10px 0;
	padding: 0 0 0 50px;
	display: block;
	position: relative;
	line-height: 36px;
}
ul.footer_social li a {
	margin: 0;
	padding: 0;
	display: inline-block;
	font-size: 15px;
	font-weight: 300;
    letter-spacing: .01rem;
	color: #bebebe;
}
ul.footer_social li i {
	width: 38px;
	height: 38px;
	display: inline-block;
	border: 2px solid rgba(255, 255, 255, 0.20);
	border-radius: 50%;
	text-align: center;
	font-size: 16px;
	color: #bebebe;
	line-height: 34px;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

/********  Copyright  ********/
.copyright {
	width: 100%;
	margin: 40px 0 0 0;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.20);
	text-align: center;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: .01rem;
	color: #bebebe;
	line-height: 20px;
}

/** Back to top button **/
#return-to-top {
	position: fixed;
	bottom: 70px;
	right: 15px;
	width: 45px;
	height: 45px;
	display: none;
	border-radius: 50%;
	text-decoration: none;
	text-align: center;
	border: 2px solid #fff;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 999;
}
#return-to-top.show {
	opacity: 1;
	visibility: visible;
}
#return-to-top span {
	color: #fff;
	margin: 0;
	position: relative;
	left: 0;
	top: 2px;
	font-size: 25px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#return-to-top:hover span {
	color: #fff;
	top: -1px;
}

/*** Btn Hover Animation ***/
.radial-out {
	font-size: 20px;
	overflow: hidden;
	position: relative;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.radial-out:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.radial-out:hover:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/** [15. WhatsChat css] **/
